|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Uses of MethodSignature in it.imolinfo.jbi4corba.webservice.descriptor |
---|
Methods in it.imolinfo.jbi4corba.webservice.descriptor that return types with arguments of type MethodSignature | |
---|---|
List<MethodSignature> |
ProviderServiceDescriptor.getMethodSignatures()
|
Method parameters in it.imolinfo.jbi4corba.webservice.descriptor with type arguments of type MethodSignature | |
---|---|
void |
ProviderServiceDescriptor.setMethodSignatures(List<MethodSignature> methodSignatures)
|
Uses of MethodSignature in it.imolinfo.jbi4corba.webservice.generator |
---|
Methods in it.imolinfo.jbi4corba.webservice.generator that return types with arguments of type MethodSignature | |
---|---|
List<MethodSignature> |
UtilJavaSourceParsing.extractMethodSignature(String absPath,
String fullQualifiedName)
This method extract the method's signature defined in the java source file. |
static Map<String,List<MethodSignature>> |
Util.extractMethodSignatureOfTheCorbaOperations(String sourceDir)
This method extracts all the MethodSignature in the 'Operations' source files. |
List<MethodSignature> |
ServerCorbaClassesHolder.getMethodSignatures()
|
List<MethodSignature> |
ClientCorbaClassesHolder.getMethodSignatures()
|
Methods in it.imolinfo.jbi4corba.webservice.generator with parameters of type MethodSignature | |
---|---|
protected static String |
Util.generateTheBodyOfTheMethodForImplTie(MethodSignature methodSignature,
boolean addRemoteSupport)
This method is used to generate the body of the methods of the the class that must be implement the skeleton (tie) previously created. |
static void |
HolderUtils.populateChangedMethod(MethodSignature methodSignature,
String classesDir,
Set<String> unionTypes,
Set<String> interfaceTypes)
If the method contains holder parameters, the signature can be changed, so try to conect the Method object. |
protected void |
UnionTypeUtils.setMethodTypes(MethodSignature methodSignature,
Set<String> typeList)
|
protected void |
InterfaceTypeUtils.setMethodTypes(MethodSignature methodSignature,
Set<String> typeList)
|
protected void |
AnyTypeUtils.setMethodTypes(MethodSignature methodSignature,
Set<String> typeList)
|
protected abstract void |
TypeUtils.setMethodTypes(MethodSignature methodSignature,
Set<String> typeList)
Add MethodType to methodSignature |
Method parameters in it.imolinfo.jbi4corba.webservice.generator with type arguments of type MethodSignature | |
---|---|
protected static String |
Util.methodImplementation(List<MethodSignature> msList,
boolean addRemoteSupport)
This method is used to generate the source code of the methods in the list. |
static void |
HolderUtils.populateCorbaHolderValueType(String classesDir,
List<MethodSignature> methodSignatures,
Set<String> unionTypes,
Set<String> interfaceTypes)
Calculate the Corba Holder value type class and set it in the Param of the MethodSignature . |
void |
ServerCorbaClassesHolder.setMethodSignatures(List<MethodSignature> methodSignatures)
|
void |
ClientCorbaClassesHolder.setMethodSignatures(List<MethodSignature> methodSignatures)
|
protected boolean |
ProviderServiceClassesGenerator.setOnewayPropertyOnTheMethodSignature(String onewayMethod,
List<MethodSignature> methodSignatureList)
This method searches the right signature and set to true the 'oneway' property. |
protected void |
ProviderServiceClassesGenerator.updateOnewayMethodSignature(Map<String,List<String>> onewayMap,
Map<String,List<MethodSignature>> mapOperationsMethod)
This method is used to update the 'oneway' property of the method signature. |
Uses of MethodSignature in it.imolinfo.jbi4corba.webservice.generator.bcm |
---|
Fields in it.imolinfo.jbi4corba.webservice.generator.bcm with type parameters of type MethodSignature | |
---|---|
protected List<MethodSignature> |
WebServiceAnnotationAdapter.methodSignatureList
The list of method's signature. |
Methods in it.imolinfo.jbi4corba.webservice.generator.bcm that return MethodSignature | |
---|---|
protected MethodSignature |
WebServiceAnnotationAdapter.findFirstMethodSignature(String methodName)
Find a method. |
Methods in it.imolinfo.jbi4corba.webservice.generator.bcm with parameters of type MethodSignature | |
---|---|
protected void |
WebServiceAnnotationAdapter.addMethodSignatureAnnotation(org.objectweb.asm.MethodVisitor methodVisitor,
MethodSignature methodSignature,
String description,
String signature)
Add annotation: WebMethod, Oneway, WebResult, WebParam. |
protected void |
WebServiceAnnotationAdapter.addParameterAnnotation(org.objectweb.asm.MethodVisitor methodVisitor,
MethodSignature sig)
This method is used to add the annotation to the method's parameters. |
protected WebServiceAnnotationAdapter.SignatureDescription |
WebServiceAnnotationAdapter.changeHolderParameters(MethodSignature sig,
String methodDescription,
String methodSignature)
Changes the method description and signature to change the method interface. |
Constructor parameters in it.imolinfo.jbi4corba.webservice.generator.bcm with type arguments of type MethodSignature | |
---|---|
WebServiceAnnotationAdapter(org.objectweb.asm.ClassVisitor cv,
org.objectweb.asm.ClassWriter cw,
List<MethodSignature> aMethodSignatureList,
String ns,
String ptn,
String workingDir,
Map<String,UnionType> unionTypes,
Map<String,InterfaceType> intfTypes,
Set<Class> allTypesIDL)
Constructor. |
Uses of MethodSignature in it.imolinfo.jbi4corba.webservice.runtime |
---|
Methods in it.imolinfo.jbi4corba.webservice.runtime that return MethodSignature | |
---|---|
static MethodSignature |
CorbaTransformationUtils.getMetodSignatureFromMethod(Method method,
List<MethodSignature> methodSignatures)
Gets the MethodSignature object from the Method
class. |
Methods in it.imolinfo.jbi4corba.webservice.runtime with parameters of type MethodSignature | |
---|---|
static Object[] |
CorbaTransformationUtils.changeFromCorbaToServiceObjects(Object[] corbaParams,
RuntimeInformation runtimeInfo,
MethodSignature methodSignature)
recursiveInvokationAdapter - Transform jax-ws objects to Corba objects in operation parameters |
static Object[] |
CorbaTransformationUtils.changeFromServiceToCorbaObjects(Object[] serviceParams,
RuntimeInformation runtimeInfo,
MethodSignature methodSignature)
recursiveInvokationAdapter - Transform jax-ws objects to Corba objects in operation parameters |
static void |
CorbaTransformationUtils.changeHoldersFromCorbaToServiceObjects(MethodSignature methodSignature,
List<Object> params,
Object[] paramArrayAfterInvocation,
RuntimeInformation runtimeInfo)
Change the Holder params after the servant invocation. |
static Object[] |
CorbaTransformationUtils.changeHoldersFromServiceToCorbaObjects(MethodSignature methodSignature,
List<Object> params,
RuntimeInformation runtimeInfo)
Change the Holder params for the correct servant invocation. |
Method |
ProviderServiceInvoker.getMethodFromStub(Class stub,
MethodSignature signature)
The method saved in the MethodSignature is of the corba interface. |
Method parameters in it.imolinfo.jbi4corba.webservice.runtime with type arguments of type MethodSignature | |
---|---|
static MethodSignature |
CorbaTransformationUtils.getMetodSignatureFromMethod(Method method,
List<MethodSignature> methodSignatures)
Gets the MethodSignature object from the Method
class. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |