org.apache.xmlrpc

Interface TypeFactory

Known Implementing Classes:
DefaultTypeFactory

public interface TypeFactory

Allows server developers to customize the type of Java objects created for a corresponding XML-RPC type.
Author:
Andrew Evers
Since:
1.2
See Also:
DefaultTypeFactory

Method Summary

Object
createBase64(String s)
Create a local object for a <base64> tag.
Object
createBoolean(String s)
Create a local object for a <boolean> tag.
Object
createDate(String s)
Create a local object for a <dateTime.iso8601> tag.
Object
createDouble(String s)
Create a local object for a <double> tag.
Object
createInteger(String s)
Create a local object for an <int> or <i4> tag.
Object
createString(String s)
Create a local object for a <string> tag.

Method Details

createBase64

public Object createBase64(String s)
Create a local object for a <base64> tag.

createBoolean

public Object createBoolean(String s)
Create a local object for a <boolean> tag.

createDate

public Object createDate(String s)
Create a local object for a <dateTime.iso8601> tag.

createDouble

public Object createDouble(String s)
Create a local object for a <double> tag.

createInteger

public Object createInteger(String s)
Create a local object for an <int> or <i4> tag.

createString

public Object createString(String s)
Create a local object for a <string> tag.

Copyright B) 1999-2002 Apache Software Foundation. All Rights Reserved.