net.sf.crispy
Interface Property


public interface Property

Properties to config the ServiceManager.

Author:
Linke
To Do:
Security is not used (user/password).

Field Summary
static java.lang.String ASYNCHRONOUS_CALLBACK_CLASS
          If all execution of service invocation are asynchronous, then set a implementation from the interface net.sf.crispy.AsynchronousCallback.
static java.lang.String ASYNCHRONOUS_MAX_SIZE_OF_THREADS
          Define the max size of Threads for the asynchronus communication.
static java.lang.String DEBUG_MODE_ON
          Property for set extra debug mode for more information by problems to on/off.
static java.lang.String DYNAMIC_PROXY_CLASS
          Property for Dynamic-Proxy-Class-Name.
static java.lang.String EJB_HOME_INTERFACE
          Service-Interface-Name + EJB_HOME_INTERFACE.
static java.lang.String EXECUTOR_CLASS
          Executor-Class-Name.
static java.lang.String INTERCEPTOR_CLASS
          Class with Interceptor-Interface.
static java.lang.String INTERCEPTOR_CLASS_2
           
static java.lang.String INTERCEPTOR_CLASS_3
           
static java.lang.String INVOCATION_STRATEGY
          Implementation from the InvocationStrategy interface.
static java.lang.String INVOCATION_STRATEGY_NAMESPACE
          Name space for InvocationStrategy interface.
static java.lang.String MODIFIER_CLASS
          Class with Modifier-Interface.
static java.lang.String NULL_VALUE
          If object properties can be null and the transport not supported null values (XML-RPC for example) you can substitute the null value with this property.
static java.lang.String REMOTE_URL_AND_PORT
          Property for Url and Port from Server
static java.lang.String SECURITY_PASSWD
          password.
static java.lang.String SECURITY_USER
          username.
static java.lang.String STATIC_PROXY_CLASS
          Property for Static-Proxy-Class-Name.
static java.lang.String VALUE_FOR_CGLIB_DYNAMIC_PROXY
          Short-Name for the dynamic CGLIB Proxy.
static java.lang.String VALUE_FOR_JAVASSIST_DYNAMIC_PROXY
          Short-Name for the dynamic Javassist Proxy.
static java.lang.String VALUE_FOR_JDK_DYNAMIC_PROXY
          Short-Name for the dynamic JDK (reflection) Proxy.
static java.lang.String WITH_CONVERTER
          net.sf.crispy.util.Converter is used or not.
 

Field Detail

EXECUTOR_CLASS

public static final java.lang.String EXECUTOR_CLASS
Executor-Class-Name. Simulate Stubs.

See Also:
Constant Field Values

STATIC_PROXY_CLASS

public static final java.lang.String STATIC_PROXY_CLASS
Property for Static-Proxy-Class-Name.

See Also:
Constant Field Values

DYNAMIC_PROXY_CLASS

public static final java.lang.String DYNAMIC_PROXY_CLASS
Property for Dynamic-Proxy-Class-Name.

See Also:
Constant Field Values

REMOTE_URL_AND_PORT

public static final java.lang.String REMOTE_URL_AND_PORT
Property for Url and Port from Server

See Also:
Constant Field Values

INVOCATION_STRATEGY

public static final java.lang.String INVOCATION_STRATEGY
Implementation from the InvocationStrategy interface.

See Also:
Constant Field Values

INVOCATION_STRATEGY_NAMESPACE

public static final java.lang.String INVOCATION_STRATEGY_NAMESPACE
Name space for InvocationStrategy interface. If is not set, than is package of service class the name space.

See Also:
Constant Field Values

EJB_HOME_INTERFACE

public static final java.lang.String EJB_HOME_INTERFACE
Service-Interface-Name + EJB_HOME_INTERFACE.
Example:
   Properties prop = new Properties();
   prop.put(EjbService.class.getName() + Property.EJB_HOME_INTERFACE, EjbServiceHome.class.getName());
 

See Also:
Constant Field Values

WITH_CONVERTER

public static final java.lang.String WITH_CONVERTER
net.sf.crispy.util.Converter is used or not. The converter convert complex objects in primitive datatypes and back. Value for this property is true or false.

See Also:
Converter, Constant Field Values

SECURITY_USER

public static final java.lang.String SECURITY_USER
username.

See Also:
Constant Field Values

SECURITY_PASSWD

public static final java.lang.String SECURITY_PASSWD
password.

See Also:
Constant Field Values

INTERCEPTOR_CLASS

public static final java.lang.String INTERCEPTOR_CLASS
Class with Interceptor-Interface.

See Also:
Constant Field Values

INTERCEPTOR_CLASS_2

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

INTERCEPTOR_CLASS_3

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

MODIFIER_CLASS

public static final java.lang.String MODIFIER_CLASS
Class with Modifier-Interface.

See Also:
Constant Field Values

VALUE_FOR_JDK_DYNAMIC_PROXY

public static final java.lang.String VALUE_FOR_JDK_DYNAMIC_PROXY
Short-Name for the dynamic JDK (reflection) Proxy.

See Also:
Constant Field Values

VALUE_FOR_CGLIB_DYNAMIC_PROXY

public static final java.lang.String VALUE_FOR_CGLIB_DYNAMIC_PROXY
Short-Name for the dynamic CGLIB Proxy.

See Also:
Constant Field Values

VALUE_FOR_JAVASSIST_DYNAMIC_PROXY

public static final java.lang.String VALUE_FOR_JAVASSIST_DYNAMIC_PROXY
Short-Name for the dynamic Javassist Proxy.

See Also:
Constant Field Values

DEBUG_MODE_ON

public static final java.lang.String DEBUG_MODE_ON
Property for set extra debug mode for more information by problems to on/off. Default is off (false).

See Also:
Constant Field Values

NULL_VALUE

public static final java.lang.String NULL_VALUE
If object properties can be null and the transport not supported null values (XML-RPC for example) you can substitute the null value with this property.

See Also:
Constant Field Values

ASYNCHRONOUS_CALLBACK_CLASS

public static final java.lang.String ASYNCHRONOUS_CALLBACK_CLASS
If all execution of service invocation are asynchronous, then set a implementation from the interface net.sf.crispy.AsynchronousCallback.

See Also:
Constant Field Values

ASYNCHRONOUS_MAX_SIZE_OF_THREADS

public static final java.lang.String ASYNCHRONOUS_MAX_SIZE_OF_THREADS
Define the max size of Threads for the asynchronus communication.

See Also:
Constant Field Values


Copyright © 2005-2006 Crispy. All Rights Reserved.