Skip navigation links

Oracle Fusion Middleware Java API Reference for Oracle Service Bus
11g Release 1 (11.1.1.4.0)

E15033-02


com.bea.wli.sb.transports.ejb
Interface ITypeConverter


public interface ITypeConverter

marker interface for runtime type conversion. Classes of this type are used at runtime to convert an EJB argument or return type into another that can be understood for marshalling/unmarshalling. Implementing classes must have a single public static method named "convert" with one argument and returning a non-void type. example: public static class ListToString implements ITypeConverter { public static String[] convert(List strings) { return (String[])strings.toArray(new String[0]); } }


Field Summary
static java.lang.String CONVERT_METHOD_NAME
           

 

Field Detail

CONVERT_METHOD_NAME

static final java.lang.String CONVERT_METHOD_NAME
See Also:
Constant Field Values

Skip navigation links

Oracle Fusion Middleware Java API Reference for Oracle Service Bus
11g Release 1 (11.1.1.4.0)

E15033-02


Copyright © 2008, 2010, Oracle. All rights reserved.