Java Code Examples for com.sun.xml.internal.ws.binding.WebServiceFeatureList#getFeature()
The following examples show how to use
com.sun.xml.internal.ws.binding.WebServiceFeatureList#getFeature() .
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: WebServiceFeatureFactory.java From TencentKona-8 with GNU General Public License v2.0 | 2 votes |
/** * Returns a corresponding feature for a feature annotation(i.e which has * {@link javax.xml.ws.spi.WebServiceFeatureAnnotation} meta annotation) * * @param ann any annotation, not required to be a feature annotation * @return corresponding feature for the annotation * null, if the annotation is not a feature annotation */ public static WebServiceFeature getWebServiceFeature(Annotation ann) { return WebServiceFeatureList.getFeature(ann); }
Example 2
Source File: WebServiceFeatureFactory.java From jdk8u60 with GNU General Public License v2.0 | 2 votes |
/** * Returns a corresponding feature for a feature annotation(i.e which has * {@link javax.xml.ws.spi.WebServiceFeatureAnnotation} meta annotation) * * @param ann any annotation, not required to be a feature annotation * @return corresponding feature for the annotation * null, if the annotation is not a feature annotation */ public static WebServiceFeature getWebServiceFeature(Annotation ann) { return WebServiceFeatureList.getFeature(ann); }
Example 3
Source File: WebServiceFeatureFactory.java From openjdk-jdk8u with GNU General Public License v2.0 | 2 votes |
/** * Returns a corresponding feature for a feature annotation(i.e which has * {@link javax.xml.ws.spi.WebServiceFeatureAnnotation} meta annotation) * * @param ann any annotation, not required to be a feature annotation * @return corresponding feature for the annotation * null, if the annotation is not a feature annotation */ public static WebServiceFeature getWebServiceFeature(Annotation ann) { return WebServiceFeatureList.getFeature(ann); }
Example 4
Source File: WebServiceFeatureFactory.java From openjdk-jdk8u-backup with GNU General Public License v2.0 | 2 votes |
/** * Returns a corresponding feature for a feature annotation(i.e which has * {@link javax.xml.ws.spi.WebServiceFeatureAnnotation} meta annotation) * * @param ann any annotation, not required to be a feature annotation * @return corresponding feature for the annotation * null, if the annotation is not a feature annotation */ public static WebServiceFeature getWebServiceFeature(Annotation ann) { return WebServiceFeatureList.getFeature(ann); }
Example 5
Source File: WebServiceFeatureFactory.java From openjdk-jdk9 with GNU General Public License v2.0 | 2 votes |
/** * Returns a corresponding feature for a feature annotation(i.e which has * {@link javax.xml.ws.spi.WebServiceFeatureAnnotation} meta annotation) * * @param ann any annotation, not required to be a feature annotation * @return corresponding feature for the annotation * null, if the annotation is not a feature annotation */ public static WebServiceFeature getWebServiceFeature(Annotation ann) { return WebServiceFeatureList.getFeature(ann); }
Example 6
Source File: WebServiceFeatureFactory.java From hottub with GNU General Public License v2.0 | 2 votes |
/** * Returns a corresponding feature for a feature annotation(i.e which has * {@link javax.xml.ws.spi.WebServiceFeatureAnnotation} meta annotation) * * @param ann any annotation, not required to be a feature annotation * @return corresponding feature for the annotation * null, if the annotation is not a feature annotation */ public static WebServiceFeature getWebServiceFeature(Annotation ann) { return WebServiceFeatureList.getFeature(ann); }
Example 7
Source File: WebServiceFeatureFactory.java From openjdk-8-source with GNU General Public License v2.0 | 2 votes |
/** * Returns a corresponding feature for a feature annotation(i.e which has * {@link javax.xml.ws.spi.WebServiceFeatureAnnotation} meta annotation) * * @param ann any annotation, not required to be a feature annotation * @return corresponding feature for the annotation * null, if the annotation is not a feature annotation */ public static WebServiceFeature getWebServiceFeature(Annotation ann) { return WebServiceFeatureList.getFeature(ann); }
Example 8
Source File: WebServiceFeatureFactory.java From openjdk-8 with GNU General Public License v2.0 | 2 votes |
/** * Returns a corresponding feature for a feature annotation(i.e which has * {@link javax.xml.ws.spi.WebServiceFeatureAnnotation} meta annotation) * * @param ann any annotation, not required to be a feature annotation * @return corresponding feature for the annotation * null, if the annotation is not a feature annotation */ public static WebServiceFeature getWebServiceFeature(Annotation ann) { return WebServiceFeatureList.getFeature(ann); }