| java.lang.Object org.apache.axis2.jaxws.description.builder.converter.ConverterUtils
ConverterUtils | public class ConverterUtils (Code) | | |
Method Summary | |
public static void | attachFieldDescriptionComposites(DescriptionBuilderComposite composite, List<FieldDescriptionComposite> fdcList) | public static void | attachHandlerChainAnnotation(TMFAnnotationComposite composite, AnnotatedElement annotatedElement) This method is use to attach @HandlerChain annotation data to a composite object. | public static void | attachMethodDescriptionComposites(DescriptionBuilderComposite composite, List<MethodDescriptionComposite> mdcList) | public static void | attachParameterDescriptionComposites(List<ParameterDescriptionComposite> pdcList, MethodDescriptionComposite mdc) | public static void | attachSoapBindingAnnotation(TMAnnotationComposite composite, AnnotatedElement annotatedElement) This method is use to attach @SOAPBinding annotation data to a composite object. | public static void | attachWebServiceRefAnnotation(TMFAnnotationComposite composite, AnnotatedElement annotatedElement) This method is use to attach @WebServiceRef annotation data to a composite object. | public static HandlerChainAnnot | createHandlerChainAnnot(HandlerChain handlerChain) | public static SoapBindingAnnot | createSoapBindingAnnot(SOAPBinding soapBinding) | public static WebServiceRefAnnot | createWebServiceRefAnnot(WebServiceRef webServiceRef) | public static Annotation | getAnnotation(Class annotationClass, AnnotatedElement element) Helper method to retrieve the annotation specified by a certain Class
Parameters: annotationClass - - Class the annotation Class Parameters: element - - AnnotatedElement - the element on which we are looking forthe annotation (i.e. | public static String | getFullType(ParameterizedType pt, String paramType) This method will construct a String that represents the
full type of a parameterized variable. | public static String | getType(Type type, String paramType) | public static boolean | hasXmlListAnnotation(Annotation[] annotations) This method will search array of parameter annotations for the presence of the @XmlList
annotation. | public static boolean | isInherited(Method method, String declaringClass) This method will check to see if a method's declaring class is the Object class. |
attachHandlerChainAnnotation | public static void attachHandlerChainAnnotation(TMFAnnotationComposite composite, AnnotatedElement annotatedElement)(Code) | | This method is use to attach @HandlerChain annotation data to a composite object.
Parameters: composite - - TMFAnnotationComposite Parameters: annotatedElement - - AnnotatedElement |
attachSoapBindingAnnotation | public static void attachSoapBindingAnnotation(TMAnnotationComposite composite, AnnotatedElement annotatedElement)(Code) | | This method is use to attach @SOAPBinding annotation data to a composite object.
Parameters: composite - - TMAnnotationComposite Parameters: annotatedElement - - AnnotatedElement |
attachWebServiceRefAnnotation | public static void attachWebServiceRefAnnotation(TMFAnnotationComposite composite, AnnotatedElement annotatedElement)(Code) | | This method is use to attach @WebServiceRef annotation data to a composite object.
Parameters: composite - - TMFAnnotationComposite Parameters: annotatedElement - - AnnotatedElement |
createHandlerChainAnnot | public static HandlerChainAnnot createHandlerChainAnnot(HandlerChain handlerChain)(Code) | | This is a helper method to create a HandlerChainAnnot since the
Parameters: handlerChain - - HandlerChain - HandlerChainAnnot |
createSoapBindingAnnot | public static SoapBindingAnnot createSoapBindingAnnot(SOAPBinding soapBinding)(Code) | | This is a helper method to create a SoapBindingAnnot since the
Parameters: soapBinding - - SOAPBinding - SoapBindingAnnot |
createWebServiceRefAnnot | public static WebServiceRefAnnot createWebServiceRefAnnot(WebServiceRef webServiceRef)(Code) | | This is a helper method to create a WebServiceRefAnnot since the
Parameters: webServiceRef - - WebServiceRef - WebServiceRefAnnot |
getAnnotation | public static Annotation getAnnotation(Class annotationClass, AnnotatedElement element)(Code) | | Helper method to retrieve the annotation specified by a certain Class
Parameters: annotationClass - - Class the annotation Class Parameters: element - - AnnotatedElement - the element on which we are looking forthe annotation (i.e. Class, Method, Field) - Annotation annotation represented by the given Class |
getFullType | public static String getFullType(ParameterizedType pt, String paramType)(Code) | | This method will construct a String that represents the
full type of a parameterized variable.
Parameters: pt - - ParameterizedType Parameters: paramType - - String - String |
hasXmlListAnnotation | public static boolean hasXmlListAnnotation(Annotation[] annotations)(Code) | | This method will search array of parameter annotations for the presence of the @XmlList
annotation.
|
isInherited | public static boolean isInherited(Method method, String declaringClass)(Code) | | This method will check to see if a method's declaring class is the Object class.
Parameters: method - - Method - boolean |
|
|