Tabnine Logo
com.oracle.webservices.api
Code IndexAdd Tabnine to your IDE (free)

How to use com.oracle.webservices.api

Best Java code snippets using com.oracle.webservices.api (Showing top 18 results out of 315)

origin: com.sun.xml.ws/jaxws-rt

/**
 * Checks if the style is SOAP 1.2.
 * 
 * @return true if the style is SOAP 1.2.
 */
public boolean isSOAP12() { return this.equals(SOAP12); }
origin: com.sun.xml.ws/rt

  public EnvelopeStyleFeature toFeature() {
    return SOAP_11.equals(this) ?
      new EnvelopeStyleFeature(new EnvelopeStyle.Style[]{EnvelopeStyle.Style.SOAP11}) :
      new EnvelopeStyleFeature(new EnvelopeStyle.Style[]{EnvelopeStyle.Style.SOAP12});
  }
}
origin: com.sun.xml.ws/jaxws-rt

public static SOAPVersion from(EnvelopeStyleFeature f) {
  EnvelopeStyle.Style[] style = f.getStyles();
  if (style.length != 1) throw new IllegalArgumentException ("The EnvelopingFeature must has exactly one Enveloping.Style");
  return from(style[0]);
}
origin: com.sun.xml.ws/jaxws-rt

public MessageContextFactory(WSFeatureList wsf) {
  features = wsf;
  envelopeStyle = features.get(EnvelopeStyleFeature.class);
  if (envelopeStyle == null) {//Default to SOAP11
    envelopeStyle = new EnvelopeStyleFeature(new EnvelopeStyle.Style[]{EnvelopeStyle.Style.SOAP11});
    features.mergeFeatures(new WebServiceFeature[]{envelopeStyle}, false);
  }
  for (EnvelopeStyle.Style s : envelopeStyle.getStyles()) {
    if (s.isXML()) {
      if (xmlCodec == null) xmlCodec = Codecs.createXMLCodec(features); 
    } else {
      if (soapCodec == null) soapCodec = Codecs.createSOAPBindingCodec(features);  
      singleSoapStyle = s;
    }
  }
}
origin: com.sun.xml.ws/rt

public MessageContextFactory(WSFeatureList wsf) {
  features = wsf;
  envelopeStyle = features.get(EnvelopeStyleFeature.class);
  if (envelopeStyle == null) {//Default to SOAP11
    envelopeStyle = new EnvelopeStyleFeature(new EnvelopeStyle.Style[]{EnvelopeStyle.Style.SOAP11});
    features.mergeFeatures(new WebServiceFeature[]{envelopeStyle}, false);
  }
  for (EnvelopeStyle.Style s : envelopeStyle.getStyles()) {
    if (s.isXML()) {
      if (xmlCodec == null) xmlCodec = Codecs.createXMLCodec(features); 
    } else {
      if (soapCodec == null) soapCodec = Codecs.createSOAPBindingCodec(features);  
      singleSoapStyle = s;
    }
  }
}
origin: com.sun.xml.ws/rt

/**
 * Checks if the style is SOAP 1.1.
 * 
 * @return true if the style is SOAP 1.1.
 */
public boolean isSOAP11() { return this.equals(SOAP11); }
origin: com.sun.xml.ws/jaxws-rt

  public EnvelopeStyleFeature toFeature() {
    return SOAP_11.equals(this) ?
      new EnvelopeStyleFeature(new EnvelopeStyle.Style[]{EnvelopeStyle.Style.SOAP11}) :
      new EnvelopeStyleFeature(new EnvelopeStyle.Style[]{EnvelopeStyle.Style.SOAP12});
  }
}
origin: com.sun.xml.ws/rt

public static SOAPVersion from(EnvelopeStyleFeature f) {
  EnvelopeStyle.Style[] style = f.getStyles();
  if (style.length != 1) throw new IllegalArgumentException ("The EnvelopingFeature must has exactly one Enveloping.Style");
  return from(style[0]);
}
origin: javaee/metro-jax-ws

public MessageContextFactory(WSFeatureList wsf) {
  features = wsf;
  envelopeStyle = features.get(EnvelopeStyleFeature.class);
  if (envelopeStyle == null) {//Default to SOAP11
    envelopeStyle = new EnvelopeStyleFeature(new EnvelopeStyle.Style[]{EnvelopeStyle.Style.SOAP11});
    features.mergeFeatures(new WebServiceFeature[]{envelopeStyle}, false);
  }
  for (EnvelopeStyle.Style s : envelopeStyle.getStyles()) {
    if (s.isXML()) {
      if (xmlCodec == null) xmlCodec = Codecs.createXMLCodec(features); 
    } else {
      if (soapCodec == null) soapCodec = Codecs.createSOAPBindingCodec(features);  
      singleSoapStyle = s;
    }
  }
}
origin: com.sun.xml.ws/rt

  /**
   * Checks if the style is XML.
   * 
   * @return true if the style is XML.
   */
  public boolean isXML() { return this.equals(XML); }
}
origin: javaee/metro-jax-ws

  public EnvelopeStyleFeature toFeature() {
    return SOAP_11.equals(this) ?
      new EnvelopeStyleFeature(new EnvelopeStyle.Style[]{EnvelopeStyle.Style.SOAP11}) :
      new EnvelopeStyleFeature(new EnvelopeStyle.Style[]{EnvelopeStyle.Style.SOAP12});
  }
}
origin: javaee/metro-jax-ws

public static SOAPVersion from(EnvelopeStyleFeature f) {
  EnvelopeStyle.Style[] style = f.getStyles();
  if (style.length != 1) throw new IllegalArgumentException ("The EnvelopingFeature must has exactly one Enveloping.Style");
  return from(style[0]);
}
origin: com.sun.xml.ws/jaxws-rt

/**
 * Checks if the style is SOAP 1.1.
 * 
 * @return true if the style is SOAP 1.1.
 */
public boolean isSOAP11() { return this.equals(SOAP11); }
origin: com.sun.xml.ws/jaxws-rt

  /**
   * Checks if the style is XML.
   * 
   * @return true if the style is XML.
   */
  public boolean isXML() { return this.equals(XML); }
}
origin: javaee/metro-jax-ws

/**
 * Checks if the style is SOAP 1.1.
 * 
 * @return true if the style is SOAP 1.1.
 */
public boolean isSOAP11() { return this.equals(SOAP11); }
origin: javaee/metro-jax-ws

/**
 * Checks if the style is SOAP 1.2.
 * 
 * @return true if the style is SOAP 1.2.
 */
public boolean isSOAP12() { return this.equals(SOAP12); }
origin: javaee/metro-jax-ws

  /**
   * Checks if the style is XML.
   * 
   * @return true if the style is XML.
   */
  public boolean isXML() { return this.equals(XML); }
}
origin: com.sun.xml.ws/rt

/**
 * Checks if the style is SOAP 1.2.
 * 
 * @return true if the style is SOAP 1.2.
 */
public boolean isSOAP12() { return this.equals(SOAP12); }
com.oracle.webservices.api

Most used classes

  • DatabindingModeFeature
  • ExternalMetadataFeature$Builder
  • ExternalMetadataFeature
    WebServiceFeature allowing to define either on server or client side external xml descriptors replac
  • EnvelopeStyle$Style
  • EnvelopeStyleFeature
  • DatabindingMode,
  • DatabindingModeFeature$Builder,
  • JavaCallInfo,
  • WSDLResolver,
  • BaseDistributedPropertySet$DistributedMapView,
  • BaseDistributedPropertySet,
  • BasePropertySet$Accessor,
  • BasePropertySet$FieldAccessor,
  • BasePropertySet$MapView,
  • BasePropertySet$MethodAccessor,
  • BasePropertySet$PropertyMap,
  • BasePropertySet$PropertyMapEntry,
  • BasePropertySet,
  • ContentType
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now