Examples of SoapBindingAnnot


Examples of org.apache.axis2.jaxws.description.builder.SoapBindingAnnot

     * @param soapBinding - <code>SOAPBinding</code>
     * @return - <code>SoapBindingAnnot</code>
     * @SOAPBinding annotation may be present on a Type or Method.
     */
    public static SoapBindingAnnot createSoapBindingAnnot(SOAPBinding soapBinding) {
        SoapBindingAnnot sbAnnot = SoapBindingAnnot.createSoapBindingAnnotImpl();
        sbAnnot.setParameterStyle(soapBinding.parameterStyle());
        sbAnnot.setStyle(soapBinding.style());
        sbAnnot.setUse(soapBinding.use());
        return sbAnnot;
    }
View Full Code Here

Examples of org.apache.axis2.jaxws.description.builder.SoapBindingAnnot

    public static void attachSoapBindingAnnotation(TMAnnotationComposite composite,
                                                   AnnotatedElement annotatedElement) {
        SOAPBinding soapBinding = (SOAPBinding)ConverterUtils.getAnnotation(
                SOAPBinding.class, annotatedElement);
        if (soapBinding != null) {
            SoapBindingAnnot sbAnnot = ConverterUtils.createSoapBindingAnnot(soapBinding);
            composite.setSoapBindingAnnot(sbAnnot);
        }
    }
View Full Code Here

Examples of org.apache.axis2.jaxws.description.builder.SoapBindingAnnot

     * @param soapBinding - <code>SOAPBinding</code>
     * @return - <code>SoapBindingAnnot</code>
     * @SOAPBinding annotation may be present on a Type or Method.
     */
    public static SoapBindingAnnot createSoapBindingAnnot(SOAPBinding soapBinding) {
        SoapBindingAnnot sbAnnot = SoapBindingAnnot.createSoapBindingAnnotImpl();
        sbAnnot.setParameterStyle(soapBinding.parameterStyle());
        sbAnnot.setStyle(soapBinding.style());
        sbAnnot.setUse(soapBinding.use());
        return sbAnnot;
    }
View Full Code Here

Examples of org.apache.axis2.jaxws.description.builder.SoapBindingAnnot

    public static void attachSoapBindingAnnotation(TMAnnotationComposite composite,
                                                   AnnotatedElement annotatedElement) {
        SOAPBinding soapBinding = (SOAPBinding)ConverterUtils.getAnnotation(
                SOAPBinding.class, annotatedElement);
        if (soapBinding != null) {
            SoapBindingAnnot sbAnnot = ConverterUtils.createSoapBindingAnnot(soapBinding);
            composite.setSoapBindingAnnot(sbAnnot);
        }
    }
View Full Code Here

Examples of org.apache.axis2.jaxws.description.builder.SoapBindingAnnot

     * @param soapBinding - <code>SOAPBinding</code>
     * @return - <code>SoapBindingAnnot</code>
     * @SOAPBinding annotation may be present on a Type or Method.
     */
    public static SoapBindingAnnot createSoapBindingAnnot(SOAPBinding soapBinding) {
        SoapBindingAnnot sbAnnot = SoapBindingAnnot.createSoapBindingAnnotImpl();
        sbAnnot.setParameterStyle(soapBinding.parameterStyle());
        sbAnnot.setStyle(soapBinding.style());
        sbAnnot.setUse(soapBinding.use());
        return sbAnnot;
    }
View Full Code Here

Examples of org.apache.axis2.jaxws.description.builder.SoapBindingAnnot

    public static void attachSoapBindingAnnotation(TMAnnotationComposite composite,
                                                   AnnotatedElement annotatedElement) {
        SOAPBinding soapBinding = (SOAPBinding)ConverterUtils.getAnnotation(
                SOAPBinding.class, annotatedElement);
        if (soapBinding != null) {
            SoapBindingAnnot sbAnnot = ConverterUtils.createSoapBindingAnnot(soapBinding);
            composite.setSoapBindingAnnot(sbAnnot);
        }
    }
View Full Code Here

Examples of org.apache.axis2.jaxws.description.builder.SoapBindingAnnot

   * @SOAPBinding annotation may be present on a Type or Method.
   * @param soapBinding - <code>SOAPBinding</code>
   * @return - <code>SoapBindingAnnot</code>
   */
  public static SoapBindingAnnot createSoapBindingAnnot(SOAPBinding soapBinding) {
    SoapBindingAnnot sbAnnot = SoapBindingAnnot.createSoapBindingAnnotImpl();
    sbAnnot.setParameterStyle(soapBinding.parameterStyle());
    sbAnnot.setStyle(soapBinding.style());
    sbAnnot.setUse(soapBinding.use());
    return sbAnnot;
  }
View Full Code Here

Examples of org.apache.axis2.jaxws.description.builder.SoapBindingAnnot

  public static void attachSoapBindingAnnotation(TMAnnotationComposite composite,
      AnnotatedElement annotatedElement) {
    SOAPBinding soapBinding = (SOAPBinding) ConverterUtils.getAnnotation(
        SOAPBinding.class, annotatedElement);
    if(soapBinding != null) {
      SoapBindingAnnot sbAnnot = ConverterUtils.createSoapBindingAnnot(soapBinding);
      composite.setSoapBindingAnnot(sbAnnot);
    }
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.