com.sun.tools.internal.ws.wsdl.framework.Kind Java Examples

The following examples show how to use com.sun.tools.internal.ws.wsdl.framework.Kind. 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: SOAPEntityReferenceValidator.java    From TencentKona-8 with GNU General Public License v2.0 6 votes vote down vote up
public boolean isValid(Kind kind, QName name) {

        // just let all "xml:" QNames through
        if (name.getNamespaceURI().equals(Constants.NS_XML))
            return true;

        if (kind == SchemaKinds.XSD_TYPE) {
            return _validTypes.contains(name);
        } else if (kind == SchemaKinds.XSD_ELEMENT) {
            return _validElements.contains(name);
        } else if (kind == SchemaKinds.XSD_ATTRIBUTE) {
            return _validAttributes.contains(name);
        } else {
            // no luck
            return false;
        }
    }
 
Example #2
Source File: SOAPEntityReferenceValidator.java    From jdk8u60 with GNU General Public License v2.0 6 votes vote down vote up
public boolean isValid(Kind kind, QName name) {

        // just let all "xml:" QNames through
        if (name.getNamespaceURI().equals(Constants.NS_XML))
            return true;

        if (kind == SchemaKinds.XSD_TYPE) {
            return _validTypes.contains(name);
        } else if (kind == SchemaKinds.XSD_ELEMENT) {
            return _validElements.contains(name);
        } else if (kind == SchemaKinds.XSD_ATTRIBUTE) {
            return _validAttributes.contains(name);
        } else {
            // no luck
            return false;
        }
    }
 
Example #3
Source File: SOAPEntityReferenceValidator.java    From openjdk-8 with GNU General Public License v2.0 6 votes vote down vote up
public boolean isValid(Kind kind, QName name) {

        // just let all "xml:" QNames through
        if (name.getNamespaceURI().equals(Constants.NS_XML))
            return true;

        if (kind == SchemaKinds.XSD_TYPE) {
            return _validTypes.contains(name);
        } else if (kind == SchemaKinds.XSD_ELEMENT) {
            return _validElements.contains(name);
        } else if (kind == SchemaKinds.XSD_ATTRIBUTE) {
            return _validAttributes.contains(name);
        } else {
            // no luck
            return false;
        }
    }
 
Example #4
Source File: SOAPEntityReferenceValidator.java    From openjdk-jdk8u with GNU General Public License v2.0 6 votes vote down vote up
public boolean isValid(Kind kind, QName name) {

        // just let all "xml:" QNames through
        if (name.getNamespaceURI().equals(Constants.NS_XML))
            return true;

        if (kind == SchemaKinds.XSD_TYPE) {
            return _validTypes.contains(name);
        } else if (kind == SchemaKinds.XSD_ELEMENT) {
            return _validElements.contains(name);
        } else if (kind == SchemaKinds.XSD_ATTRIBUTE) {
            return _validAttributes.contains(name);
        } else {
            // no luck
            return false;
        }
    }
 
Example #5
Source File: SOAPEntityReferenceValidator.java    From openjdk-8-source with GNU General Public License v2.0 6 votes vote down vote up
public boolean isValid(Kind kind, QName name) {

        // just let all "xml:" QNames through
        if (name.getNamespaceURI().equals(Constants.NS_XML))
            return true;

        if (kind == SchemaKinds.XSD_TYPE) {
            return _validTypes.contains(name);
        } else if (kind == SchemaKinds.XSD_ELEMENT) {
            return _validElements.contains(name);
        } else if (kind == SchemaKinds.XSD_ATTRIBUTE) {
            return _validAttributes.contains(name);
        } else {
            // no luck
            return false;
        }
    }
 
Example #6
Source File: SOAPEntityReferenceValidator.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 6 votes vote down vote up
public boolean isValid(Kind kind, QName name) {

        // just let all "xml:" QNames through
        if (name.getNamespaceURI().equals(Constants.NS_XML))
            return true;

        if (kind == SchemaKinds.XSD_TYPE) {
            return _validTypes.contains(name);
        } else if (kind == SchemaKinds.XSD_ELEMENT) {
            return _validElements.contains(name);
        } else if (kind == SchemaKinds.XSD_ATTRIBUTE) {
            return _validAttributes.contains(name);
        } else {
            // no luck
            return false;
        }
    }
 
Example #7
Source File: SOAPEntityReferenceValidator.java    From openjdk-jdk9 with GNU General Public License v2.0 6 votes vote down vote up
public boolean isValid(Kind kind, QName name) {

        // just let all "xml:" QNames through
        if (name.getNamespaceURI().equals(Constants.NS_XML))
            return true;

        if (kind == SchemaKinds.XSD_TYPE) {
            return _validTypes.contains(name);
        } else if (kind == SchemaKinds.XSD_ELEMENT) {
            return _validElements.contains(name);
        } else if (kind == SchemaKinds.XSD_ATTRIBUTE) {
            return _validAttributes.contains(name);
        } else {
            // no luck
            return false;
        }
    }
 
Example #8
Source File: SOAPEntityReferenceValidator.java    From hottub with GNU General Public License v2.0 6 votes vote down vote up
public boolean isValid(Kind kind, QName name) {

        // just let all "xml:" QNames through
        if (name.getNamespaceURI().equals(Constants.NS_XML))
            return true;

        if (kind == SchemaKinds.XSD_TYPE) {
            return _validTypes.contains(name);
        } else if (kind == SchemaKinds.XSD_ELEMENT) {
            return _validElements.contains(name);
        } else if (kind == SchemaKinds.XSD_ATTRIBUTE) {
            return _validAttributes.contains(name);
        } else {
            // no luck
            return false;
        }
    }
 
Example #9
Source File: MessagePart.java    From openjdk-8 with GNU General Public License v2.0 4 votes vote down vote up
public void setDescriptorKind(Kind k) {
    _descriptorKind = k;
}
 
Example #10
Source File: MessagePart.java    From openjdk-8 with GNU General Public License v2.0 4 votes vote down vote up
public Kind getDescriptorKind() {
    return _descriptorKind;
}
 
Example #11
Source File: MessagePart.java    From openjdk-8-source with GNU General Public License v2.0 4 votes vote down vote up
public void setDescriptorKind(Kind k) {
    _descriptorKind = k;
}
 
Example #12
Source File: MessagePart.java    From openjdk-8-source with GNU General Public License v2.0 4 votes vote down vote up
public Kind getDescriptorKind() {
    return _descriptorKind;
}
 
Example #13
Source File: MessagePart.java    From hottub with GNU General Public License v2.0 4 votes vote down vote up
public void setDescriptorKind(Kind k) {
    _descriptorKind = k;
}
 
Example #14
Source File: MessagePart.java    From hottub with GNU General Public License v2.0 4 votes vote down vote up
public Kind getDescriptorKind() {
    return _descriptorKind;
}
 
Example #15
Source File: MessagePart.java    From openjdk-jdk9 with GNU General Public License v2.0 4 votes vote down vote up
public void setDescriptorKind(Kind k) {
    _descriptorKind = k;
}
 
Example #16
Source File: MessagePart.java    From openjdk-jdk9 with GNU General Public License v2.0 4 votes vote down vote up
public Kind getDescriptorKind() {
    return _descriptorKind;
}
 
Example #17
Source File: MessagePart.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 4 votes vote down vote up
public void setDescriptorKind(Kind k) {
    _descriptorKind = k;
}
 
Example #18
Source File: MessagePart.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 4 votes vote down vote up
public Kind getDescriptorKind() {
    return _descriptorKind;
}
 
Example #19
Source File: MessagePart.java    From openjdk-jdk8u with GNU General Public License v2.0 4 votes vote down vote up
public void setDescriptorKind(Kind k) {
    _descriptorKind = k;
}
 
Example #20
Source File: MessagePart.java    From openjdk-jdk8u with GNU General Public License v2.0 4 votes vote down vote up
public Kind getDescriptorKind() {
    return _descriptorKind;
}
 
Example #21
Source File: MessagePart.java    From jdk8u60 with GNU General Public License v2.0 4 votes vote down vote up
public void setDescriptorKind(Kind k) {
    _descriptorKind = k;
}
 
Example #22
Source File: MessagePart.java    From jdk8u60 with GNU General Public License v2.0 4 votes vote down vote up
public Kind getDescriptorKind() {
    return _descriptorKind;
}
 
Example #23
Source File: MessagePart.java    From TencentKona-8 with GNU General Public License v2.0 4 votes vote down vote up
public void setDescriptorKind(Kind k) {
    _descriptorKind = k;
}
 
Example #24
Source File: MessagePart.java    From TencentKona-8 with GNU General Public License v2.0 4 votes vote down vote up
public Kind getDescriptorKind() {
    return _descriptorKind;
}