congrats Icon
New! Announcing Tabnine Chat Beta
Learn More
Tabnine Logo
MessagePart.getBindingExtensibilityElementKind
Code IndexAdd Tabnine to your IDE (free)

How to use
getBindingExtensibilityElementKind
method
in
com.sun.tools.ws.wsdl.document.MessagePart

Best Java code snippets using com.sun.tools.ws.wsdl.document.MessagePart.getBindingExtensibilityElementKind (Showing top 20 results out of 315)

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

  public static boolean isUnbound(MessagePart part) {
    if((part != null) && part.getBindingExtensibilityElementKind() == MessagePart.PART_NOT_BOUNDED)
      return true;
    return false;
  }
}
origin: org.glassfish.metro/webservices-tools

/**
 * @param part
 * @return true if part is bound to SOAPHeader
 */
public static boolean isBoundToSOAPHeader(MessagePart part) {
  if((part != null) && part.getBindingExtensibilityElementKind() == MessagePart.SOAP_HEADER_BINDING)
    return true;
  return false;
}
origin: org.glassfish.metro/webservices-tools

  public static boolean isUnbound(MessagePart part) {
    if((part != null) && part.getBindingExtensibilityElementKind() == MessagePart.PART_NOT_BOUNDED)
      return true;
    return false;
  }
}
origin: com.sun.xml.ws/jaxws-tools

/**
 * @param part
 * @return true if part is bound to SOAPBody
 */
public static boolean isBoundToSOAPBody(MessagePart part) {
  if((part != null) && part.getBindingExtensibilityElementKind() == MessagePart.SOAP_BODY_BINDING)
    return true;
  return false;
}
origin: javaee/metro-jax-ws

/**
 * @param part
 * @return true if part is bound to SOAPHeader
 */
public static boolean isBoundToSOAPHeader(MessagePart part) {
  if((part != null) && part.getBindingExtensibilityElementKind() == MessagePart.SOAP_HEADER_BINDING)
    return true;
  return false;
}
origin: javaee/metro-jax-ws

/**
 * @param part
 * @return true if part is bound to SOAPBody
 */
public static boolean isBoundToSOAPBody(MessagePart part) {
  if((part != null) && part.getBindingExtensibilityElementKind() == MessagePart.SOAP_BODY_BINDING)
    return true;
  return false;
}
origin: com.sun.xml.ws/jaxws-tools

/**
 * @param part
 * @return true if part is bound to SOAPHeader
 */
public static boolean isBoundToSOAPHeader(MessagePart part) {
  if((part != null) && part.getBindingExtensibilityElementKind() == MessagePart.SOAP_HEADER_BINDING)
    return true;
  return false;
}
origin: org.glassfish.metro/webservices-tools

/**
 * @param part
 * @return true if part is bound to Mime content
 */
public static boolean isBoundToMimeContent(MessagePart part) {
  if((part != null) && part.getBindingExtensibilityElementKind() == MessagePart.WSDL_MIME_BINDING)
    return true;
  return false;
}
origin: org.glassfish.metro/webservices-tools

/**
 * @param part
 * @return true if part is bound to SOAPBody
 */
public static boolean isBoundToSOAPBody(MessagePart part) {
  if((part != null) && part.getBindingExtensibilityElementKind() == MessagePart.SOAP_BODY_BINDING)
    return true;
  return false;
}
origin: com.sun.xml.ws/jaxws-tools

/**
 * @param part
 * @return true if part is bound to Mime content
 */
public static boolean isBoundToMimeContent(MessagePart part) {
  if((part != null) && part.getBindingExtensibilityElementKind() == MessagePart.WSDL_MIME_BINDING)
    return true;
  return false;
}
origin: javaee/metro-jax-ws

/**
 * @param part
 * @return true if part is bound to SOAPBody
 */
public static boolean isBoundToSOAPBody(MessagePart part) {
  if((part != null) && part.getBindingExtensibilityElementKind() == MessagePart.SOAP_BODY_BINDING)
    return true;
  return false;
}
origin: javaee/metro-jax-ws

/**
 * @param part
 * @return true if part is bound to Mime content
 */
public static boolean isBoundToMimeContent(MessagePart part) {
  if((part != null) && part.getBindingExtensibilityElementKind() == MessagePart.WSDL_MIME_BINDING)
    return true;
  return false;
}
origin: javaee/metro-jax-ws

  public static boolean isUnbound(MessagePart part) {
    if((part != null) && part.getBindingExtensibilityElementKind() == MessagePart.PART_NOT_BOUNDED)
      return true;
    return false;
  }
}
origin: javaee/metro-jax-ws

/**
 * @param part
 * @return true if part is bound to Mime content
 */
public static boolean isBoundToMimeContent(MessagePart part) {
  if((part != null) && part.getBindingExtensibilityElementKind() == MessagePart.WSDL_MIME_BINDING)
    return true;
  return false;
}
origin: javaee/metro-jax-ws

/**
 * @param part
 * @return true if part is bound to SOAPHeader
 */
public static boolean isBoundToSOAPHeader(MessagePart part) {
  if((part != null) && part.getBindingExtensibilityElementKind() == MessagePart.SOAP_HEADER_BINDING)
    return true;
  return false;
}
origin: javaee/metro-jax-ws

  public static boolean isUnbound(MessagePart part) {
    if((part != null) && part.getBindingExtensibilityElementKind() == MessagePart.PART_NOT_BOUNDED)
      return true;
    return false;
  }
}
origin: com.sun.xml.ws/jaxws-tools

/**
 * @param operation
 * @return true if operation has valid style and part
 */
private boolean validateStyleAndPart(BindingOperation operation, List<MessagePart> parts) {
  SOAPOperation soapOperation =
    (SOAPOperation) getExtensionOfType(operation, SOAPOperation.class);
  for (MessagePart part : parts) {
    if (part.getBindingExtensibilityElementKind() == MessagePart.SOAP_BODY_BINDING) {
      if (!isStyleAndPartMatch(soapOperation, part)) {
        return false;
      }
    }
  }
  return true;
}
origin: org.glassfish.metro/webservices-tools

/**
 * @param operation
 * @return true if operation has valid style and part
 */
private boolean validateStyleAndPart(BindingOperation operation, List<MessagePart> parts) {
  SOAPOperation soapOperation =
    (SOAPOperation) getExtensionOfType(operation, SOAPOperation.class);
  for (MessagePart part : parts) {
    if (part.getBindingExtensibilityElementKind() == MessagePart.SOAP_BODY_BINDING) {
      if (!isStyleAndPartMatch(soapOperation, part)) {
        return false;
      }
    }
  }
  return true;
}
origin: javaee/metro-jax-ws

/**
 * @param operation
 * @return true if operation has valid style and part
 */
private boolean validateStyleAndPart(BindingOperation operation, List<MessagePart> parts) {
  SOAPOperation soapOperation =
    (SOAPOperation) getExtensionOfType(operation, SOAPOperation.class);
  for (MessagePart part : parts) {
    if (part.getBindingExtensibilityElementKind() == MessagePart.SOAP_BODY_BINDING) {
      if (!isStyleAndPartMatch(soapOperation, part)) {
        return false;
      }
    }
  }
  return true;
}
origin: javaee/metro-jax-ws

/**
 * @param operation
 * @return true if operation has valid style and part
 */
private boolean validateStyleAndPart(BindingOperation operation, List<MessagePart> parts) {
  SOAPOperation soapOperation =
    (SOAPOperation) getExtensionOfType(operation, SOAPOperation.class);
  for (MessagePart part : parts) {
    if (part.getBindingExtensibilityElementKind() == MessagePart.SOAP_BODY_BINDING) {
      if (!isStyleAndPartMatch(soapOperation, part)) {
        return false;
      }
    }
  }
  return true;
}
com.sun.tools.ws.wsdl.documentMessagePartgetBindingExtensibilityElementKind

Popular methods of MessagePart

  • <init>
  • accept
  • failValidation
  • getDescriptor
  • getDescriptorKind
  • getLocator
  • getMode
  • getName
  • isIN
  • isINOUT
  • isOUT
  • isReturn
  • isOUT,
  • isReturn,
  • setBindingExtensibilityElementKind,
  • setDescriptor,
  • setDescriptorKind,
  • setMode,
  • setName,
  • setReturn

Popular in Java

  • Making http post requests using okhttp
  • getSystemService (Context)
  • getContentResolver (Context)
  • addToBackStack (FragmentTransaction)
  • Color (java.awt)
    The Color class is used to encapsulate colors in the default sRGB color space or colors in arbitrary
  • DateFormat (java.text)
    Formats or parses dates and times.This class provides factories for obtaining instances configured f
  • Arrays (java.util)
    This class contains various methods for manipulating arrays (such as sorting and searching). This cl
  • TimeZone (java.util)
    TimeZone represents a time zone offset, and also figures out daylight savings. Typically, you get a
  • IsNull (org.hamcrest.core)
    Is the value null?
  • Logger (org.slf4j)
    The org.slf4j.Logger interface is the main user entry point of SLF4J API. It is expected that loggin
  • CodeWhisperer alternatives
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