Java Code Examples for com.sun.xml.internal.ws.model.ParameterImpl#getBinding()

The following examples show how to use com.sun.xml.internal.ws.model.ParameterImpl#getBinding() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: WSDLGenerator.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 4 votes vote down vote up
protected boolean isHeaderParameter(ParameterImpl parameter) {
    ParameterBinding paramBinding = parameter.getBinding();
    return paramBinding.isHeader();
}
 
Example 2
Source File: WSDLGenerator.java    From openjdk-8-source with GNU General Public License v2.0 4 votes vote down vote up
protected boolean isHeaderParameter(ParameterImpl parameter) {
    ParameterBinding paramBinding = parameter.getBinding();
    return paramBinding.isHeader();
}
 
Example 3
Source File: WSDLGenerator.java    From hottub with GNU General Public License v2.0 4 votes vote down vote up
protected boolean isAttachmentParameter(ParameterImpl parameter) {
    ParameterBinding paramBinding = parameter.getBinding();
    return paramBinding.isAttachment();
}
 
Example 4
Source File: WSDLGenerator.java    From hottub with GNU General Public License v2.0 4 votes vote down vote up
protected boolean isHeaderParameter(ParameterImpl parameter) {
    ParameterBinding paramBinding = parameter.getBinding();
    return paramBinding.isHeader();
}
 
Example 5
Source File: WSDLGenerator.java    From openjdk-8-source with GNU General Public License v2.0 4 votes vote down vote up
protected boolean isAttachmentParameter(ParameterImpl parameter) {
    ParameterBinding paramBinding = parameter.getBinding();
    return paramBinding.isAttachment();
}
 
Example 6
Source File: WSDLGenerator.java    From openjdk-jdk9 with GNU General Public License v2.0 4 votes vote down vote up
protected boolean isAttachmentParameter(ParameterImpl parameter) {
    ParameterBinding paramBinding = parameter.getBinding();
    return paramBinding.isAttachment();
}
 
Example 7
Source File: WSDLGenerator.java    From openjdk-jdk9 with GNU General Public License v2.0 4 votes vote down vote up
protected boolean isHeaderParameter(ParameterImpl parameter) {
    ParameterBinding paramBinding = parameter.getBinding();
    return paramBinding.isHeader();
}
 
Example 8
Source File: WSDLGenerator.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 4 votes vote down vote up
protected boolean isAttachmentParameter(ParameterImpl parameter) {
    ParameterBinding paramBinding = parameter.getBinding();
    return paramBinding.isAttachment();
}
 
Example 9
Source File: WSDLGenerator.java    From openjdk-8 with GNU General Public License v2.0 4 votes vote down vote up
protected boolean isAttachmentParameter(ParameterImpl parameter) {
    ParameterBinding paramBinding = parameter.getBinding();
    return paramBinding.isAttachment();
}
 
Example 10
Source File: WSDLGenerator.java    From openjdk-jdk8u with GNU General Public License v2.0 4 votes vote down vote up
protected boolean isAttachmentParameter(ParameterImpl parameter) {
    ParameterBinding paramBinding = parameter.getBinding();
    return paramBinding.isAttachment();
}
 
Example 11
Source File: WSDLGenerator.java    From openjdk-jdk8u with GNU General Public License v2.0 4 votes vote down vote up
protected boolean isHeaderParameter(ParameterImpl parameter) {
    ParameterBinding paramBinding = parameter.getBinding();
    return paramBinding.isHeader();
}
 
Example 12
Source File: WSDLGenerator.java    From openjdk-8 with GNU General Public License v2.0 4 votes vote down vote up
protected boolean isHeaderParameter(ParameterImpl parameter) {
    ParameterBinding paramBinding = parameter.getBinding();
    return paramBinding.isHeader();
}
 
Example 13
Source File: WSDLGenerator.java    From jdk8u60 with GNU General Public License v2.0 4 votes vote down vote up
protected boolean isAttachmentParameter(ParameterImpl parameter) {
    ParameterBinding paramBinding = parameter.getBinding();
    return paramBinding.isAttachment();
}
 
Example 14
Source File: WSDLGenerator.java    From jdk8u60 with GNU General Public License v2.0 4 votes vote down vote up
protected boolean isHeaderParameter(ParameterImpl parameter) {
    ParameterBinding paramBinding = parameter.getBinding();
    return paramBinding.isHeader();
}
 
Example 15
Source File: WSDLGenerator.java    From TencentKona-8 with GNU General Public License v2.0 4 votes vote down vote up
protected boolean isAttachmentParameter(ParameterImpl parameter) {
    ParameterBinding paramBinding = parameter.getBinding();
    return paramBinding.isAttachment();
}
 
Example 16
Source File: WSDLGenerator.java    From TencentKona-8 with GNU General Public License v2.0 4 votes vote down vote up
protected boolean isHeaderParameter(ParameterImpl parameter) {
    ParameterBinding paramBinding = parameter.getBinding();
    return paramBinding.isHeader();
}
 
Example 17
Source File: WSDLGenerator.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Determines if a parameter is associated with the message Body
 * @param parameter the parameter to check
 * @return true if the parameter is a <code>body</code> parameter
 */
protected boolean isBodyParameter(ParameterImpl parameter) {
    ParameterBinding paramBinding = parameter.getBinding();
    return paramBinding.isBody();
}
 
Example 18
Source File: WSDLGenerator.java    From openjdk-jdk9 with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Determines if a parameter is associated with the message Body
 * @param parameter the parameter to check
 * @return true if the parameter is a <code>body</code> parameter
 */
protected boolean isBodyParameter(ParameterImpl parameter) {
    ParameterBinding paramBinding = parameter.getBinding();
    return paramBinding.isBody();
}
 
Example 19
Source File: WSDLGenerator.java    From jdk8u60 with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Determines if a parameter is associated with the message Body
 * @param parameter the parameter to check
 * @return true if the parameter is a <code>body</code> parameter
 */
protected boolean isBodyParameter(ParameterImpl parameter) {
    ParameterBinding paramBinding = parameter.getBinding();
    return paramBinding.isBody();
}
 
Example 20
Source File: WSDLGenerator.java    From openjdk-8-source with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Determines if a parameter is associated with the message Body
 * @param parameter the parameter to check
 * @return true if the parameter is a <code>body</code> parameter
 */
protected boolean isBodyParameter(ParameterImpl parameter) {
    ParameterBinding paramBinding = parameter.getBinding();
    return paramBinding.isBody();
}