Package net.sf.wsdl2jibx.mapping.bean

Examples of net.sf.wsdl2jibx.mapping.bean.JibxFormat


   * @param clazz
   * @param serializer
   * @param deserializer
   */
  public void addFormat(String clazz, String serializer, String deserializer) {
    JibxFormat format = new JibxFormat();
    format.setType(clazz);
    format.setSerializer(serializer);
    format.setDeserializer(deserializer);
    binding.addFormat(format);
  }
View Full Code Here

TOP

Related Classes of net.sf.wsdl2jibx.mapping.bean.JibxFormat

Copyright © 2018 www.massapicom. 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.