|
|||||||||||
PREV PACKAGE NEXT PACKAGE | FRAMES NO FRAMES |
See:
Description
Class Summary | |
ClassMethodMapInvocationStrategy | Put Class-Name and Method-name in a Map:
Map map = new HashMap(1);
map.put(className, methodName);
|
ClassWithOutPackageInvocationStrategy | Convert class with package name in class name only:
from test.crispy.example.service.Calculator
to Calculator . |
NameInvocationStrategy | Return the Interface-Name. |
NameSpacePlusMethodInvocationStrategy | Example:
namespace (class): test.crispy.example.service.Calculator or const: my_namespace invocation string = method name: add convert result: test.crispy.example.service.Calculator.add or convert result: my_namespace.add |
RestInvocationStrategy | Call Class: test.crispy.example.service.Calculator with Method: add :
class=test.crispy.example.service.Calculator&method=add OR
method=service.calculator.add . |
UrlPlusClassNameInvocationStrategy | Example:
the url (namespace = InvocationStrategy.URL) = http://localhost:8080/axis/services invoke of the class (InvocationStrategy.CLASS_NAME): test.crispy.example.service.Calculator convert result: http://localhost:8080/axis/services/Calculator |
Implementation of the interface net.sf.crispy.InvocationStrategy. It are mapping of name space and invocation string to real call strings.
|
|||||||||||
PREV PACKAGE NEXT PACKAGE | FRAMES NO FRAMES |