Codota Logo
com.ebmwebsourcing.wsstar.addressing.definition.api
Code IndexAdd Codota to your IDE (free)

How to use com.ebmwebsourcing.wsstar.addressing.definition.api

Best Java code snippets using com.ebmwebsourcing.wsstar.addressing.definition.api (Showing top 20 results out of 315)

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
Point p =
  • Codota Iconnew Point(x, y)
  • Codota Iconnew Point()
  • Codota IconMouseEvent e;e.getPoint()
  • Smart code suggestions by Codota
}
origin: com.ebmwebsourcing.wsstar/ws-addressing-definition

public WSAddressingException(final String faultCode, final String msg, final Throwable t) {
  super(msg, t);
  this.setFaultCode(faultCode);
}
origin: com.ebmwebsourcing.wsstar/ws-addressing4agreement

public Map<FeatureConstants, Object> getFeatures() {
  return this.reader.getFeatures();
}
origin: com.ebmwebsourcing.wsstar/ws-addressing4agreement

public void setFeature(final String name, final boolean value) throws IllegalArgumentException {
  this.writer.setFeature(name, value);
}
origin: com.ebmwebsourcing.wsstar/ws-addressing-definition

protected EprNew convertEndpointReferenceType(final AbsItfEndpointReferenceType odlDesc, final Class<EprImpl> eprimpl,
    final Class<RefImpl> refimpl)
throws WSAddressingException {
  EprNew newEpr = null;
  try {
    // create new description
    newEpr = this.convertEndpointReferenceType(odlDesc, eprimpl);
    // add reference parameters type
    if (odlDesc.getReferenceParameters() != null){
      RefNew newRef = this.convertReferenceParametersType(odlDesc.getReferenceParameters(), refimpl);
      newEpr.setReferenceParameters(newRef);
    }
  } catch (final IllegalArgumentException e) {
    throw new WSAddressingException(e);
  } catch (final SchemaException e) {
    throw new WSAddressingException(e);
  }
  return newEpr;
}
origin: com.ebmwebsourcing.wsstar/ws-addressing-definition

private EprNew convertEndpointReferenceType(final AbsItfEndpointReferenceType odlDesc, final Class<EprImpl> eprimpl)
throws WSAddressingException {
  EprNew newDesc = null;
  try {
    // create new description
    final Constructor c = eprimpl.getConstructors()[0];
    newDesc = (EprNew) c.newInstance(odlDesc);
  } catch (final IllegalArgumentException e) {
    throw new WSAddressingException(e);
  } catch (final InstantiationException e) {
    throw new WSAddressingException(e);
  } catch (final IllegalAccessException e) {
    throw new WSAddressingException(e);
  } catch (final InvocationTargetException e) {
    throw new WSAddressingException(e);
  }
  return newDesc;
}
origin: com.ebmwebsourcing.wsstar/ws-addressing4agreement

public EndpointReferenceType readEndpointReferenceType(final Document wsdlDocument) throws WSAddressingException {
  EndpointReferenceType res = null;
  final com.ebmwebsourcing.wsstar.addressing.definition.api.EndpointReferenceType desc = this.reader.readEndpointReferenceType(wsdlDocument);
  res = WSAddressing4AgreementFactory.newInstance().addMonitoringElmt2Description(desc);
  return res;
}
origin: com.ebmwebsourcing.wsstar/ws-addressing4agreement

@SuppressWarnings("unchecked")
public String writeEndpointReferenceType(final EndpointReferenceType eprDef) throws WSAddressingException {
  String res = null;
  res = this.writer.writeEndpointReferenceType(((DecoratorEndpointReferenceTypeImpl) eprDef).getFirstEpr());
  return res;
}
origin: com.ebmwebsourcing.wsstar/ws-addressing4agreement

@SuppressWarnings("unchecked")
public Document getDocument(final EndpointReferenceType eprDef) throws WSAddressingException {
  Document res = null;
  res = this.writer.getDocument(((DecoratorEndpointReferenceTypeImpl) eprDef).getFirstEpr());
  return res;
}
origin: com.ebmwebsourcing.wsstar/ws-addressing4agreement

public boolean getFeature(final String name) throws IllegalArgumentException {
  return this.writer.getFeature(name);
}
origin: com.ebmwebsourcing.wsstar/ws-addressing4agreement

public void setFeature(final FeatureConstants name, final Object value) throws WSAddressingException {
  this.reader.setFeature(name, value);
}
origin: com.ebmwebsourcing.wsstar/ws-addressing4agreement

public Object getFeature(final FeatureConstants name) {
  return this.reader.getFeature(name);
}
origin: com.ebmwebsourcing.wsstar/ws-addressing-definition

/**
 * Please use this equals method instead of using :<code>
 * value().equals(value)
 * </code> which is
 * almost 10 times slower...
 * 
 * @param value
 * @return
 */
public boolean equals(final String val) {
  return this.toString().equals(val);
}
origin: com.ebmwebsourcing.wsstar/ws-addressing-definition

public WSAddressingReaderImpl() throws WSAddressingException {
  try {
    WSAddressingJAXBContext.createDefaultContext();
  } catch (final WSAddressingException e) {
    throw new WSAddressingException(e);
  }
}
origin: com.ebmwebsourcing.wsstar/ws-addressing4agreement

public EndpointReferenceType readEndpointReferenceType(final URI wsdlURI, final InputSource inputSource) throws WSAddressingException {
  EndpointReferenceType res = null;
  final com.ebmwebsourcing.wsstar.addressing.definition.api.EndpointReferenceType desc = this.reader.readEndpointReferenceType(wsdlURI, 
      inputSource);
  res = WSAddressing4AgreementFactory.newInstance().addMonitoringElmt2Description(desc);
  return res;
}
origin: com.ebmwebsourcing.wsstar/ws-addressing-definition

public WSAddressingReaderImpl(final List<Class> addedObjectFactories)
throws WSAddressingException {
  try {
    WSAddressingJAXBContext.createContextWithOtherObjectFactories(addedObjectFactories);
  } catch (final WSAddressingException e) {
    throw new WSAddressingException(e);
  }
}
origin: com.ebmwebsourcing.wsstar/ws-addressing4agreement

public EndpointReferenceType readEndpointReferenceType(final URI wsdlURI) throws WSAddressingException {
  EndpointReferenceType res = null;
  final com.ebmwebsourcing.wsstar.addressing.definition.api.EndpointReferenceType desc = this.reader.readEndpointReferenceType(wsdlURI);
  res = WSAddressing4AgreementFactory.newInstance().addMonitoringElmt2Description(desc);
  return res;
}
origin: com.ebmwebsourcing.wsstar/ws-addressing-definition

public WSAddressingWriterImpl() throws WSAddressingException {
  try {
    WSAddressingJAXBContext.createDefaultContext();
  } catch (final WSAddressingException e) {
    throw new WSAddressingException(e);
  }
}
origin: com.ebmwebsourcing.wsstar/ws-addressing-definition

public WSAddressingWriterImpl(List<Class> addedObjectFactories) throws WSAddressingException {
  try {
    WSAddressingJAXBContext.createContextWithOtherObjectFactories(addedObjectFactories);
  } catch (final WSAddressingException e) {
    throw new WSAddressingException(e);
  }
}
origin: com.ebmwebsourcing.wsstar/ws-addressing-definition

/**
 * Private object initializations
 */
public static void createDefaultContext() throws WSAddressingException {
  final SchemaFactory factory = SchemaFactory.newInstance(XMLConstants.W3C_XML_SCHEMA_NS_URI);
  try {
    WSAddressingJAXBContext.jaxbContext = JAXBContext
        .newInstance(defaultObjectFactories.toArray(new Class[defaultObjectFactories.size()]));
  } catch (final JAXBException e) {
    throw new WSAddressingException(e);
  }
}
 
origin: com.ebmwebsourcing.wsstar/ws-addressing4agreement

public JAXBElement<MonitoringPropertiesType> convertElement2MonitoringPropertiesType(final Element pltElmt)
throws WSAddressingException {
  JAXBElement<MonitoringPropertiesType> res = null;
  try {
    res = WSAddressing4AgreementJAXBContext.getJaxbContext().createUnmarshaller().unmarshal(pltElmt, MonitoringPropertiesType.class);
  } catch (final JAXBException e) {
    throw new WSAddressingException( 
        "Failed to build Java bindings from WSDL descriptor XML document", e);
  }
  return res;
}
 
com.ebmwebsourcing.wsstar.addressing.definition.api

Most used classes

  • EndpointReferenceType
  • WSAddressingException
  • WSAddressingReader
    This interface describes a collection of methods that enable conversion of a SchemaImpl document (in
  • WSAddressingWriter
    This interface describes a collection of methods that allow a SchemaImpl model to be written to a wr
  • AbsItfEndpointReferenceType
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now