Searched defs:key (Results 101 - 125 of 907) sorted by relevance

1234567891011>>

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/processor/
H A DProcessorException.java40 public ProcessorException(String key, Object... args) { argument
41 super(key, args);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/processor/generator/
H A DGeneratorException.java36 public GeneratorException(String key, Object... args) { argument
37 super(key, args);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/processor/model/
H A DModelException.java41 public ModelException(String key, Object... args) { argument
42 super(key, args);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/processor/modeler/
H A DModelerException.java41 public ModelerException(String key, Object... args) { argument
42 super(key, args);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/util/
H A DWSDLParseException.java35 public WSDLParseException(String key, Object... args) { argument
36 super(key, args);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/wsdl/framework/
H A DParseException.java38 public ParseException(String key, Object... args) { argument
39 super(key, args);
H A DValidationException.java37 public ValidationException(String key, Object... args) { argument
38 super(key, args);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/schemagen/
H A DMultiMap.java32 * A special {@link Map} that 'conceptually' stores a set of values for each key.
49 public V put(K key, V value) { argument
50 V old = super.put(key, value);
53 super.put(key,many);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/fastinfoset/
H A DAbstractResourceBundle.java54 * Gets 'key' from ResourceBundle and format mesage using 'args'.
56 * @param key String key for message.
60 public String getString(String key, Object args[]) { argument
61 String pattern = getBundle().getString(key);
116 protected Object handleGetObject(String key) { argument
117 return getBundle().getObject(key);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/rngom/parse/compact/
H A DEscapeSyntaxException.java49 private final String key; field in class:EscapeSyntaxException
53 EscapeSyntaxException(String key, int lineNumber, int columnNumber) { argument
54 this.key = key;
60 return key;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/addressing/policy/
H A DAddressingFeatureConfigurator.java71 public Collection<WebServiceFeature> getFeatures(final PolicyMapKey key, final PolicyMap policyMap) throws PolicyException { argument
72 LOGGER.entering(key, policyMap);
74 if ((key != null) && (policyMap != null)) {
75 final Policy policy = policyMap.getEndpointEffectivePolicy(key);
87 LOGGER.fine("Added addressing feature \"" + feature + "\" for element \"" + key + "\"");
125 LOGGER.fine("Added addressing feature \"" + feature + "\" for element \"" + key + "\"");
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/ha/
H A DHaInfo.java44 * <li>key - Related {@link com.sun.org.glassfish.ha.store.api.BackingStore} keys can
46 * and subsequent related stores use the same key.
64 private final String key; field in class:HaInfo
67 public HaInfo(String key, String replicaInstance, boolean failOver) { argument
68 this.key = key;
78 return key;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/message/
H A DExceptionHasMessage.java43 public ExceptionHasMessage(String key, Object... args) { argument
44 super(key, args);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/client/
H A DSenderException.java36 public SenderException(String key, Object... args) { argument
37 super(key, args);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/encoding/policy/
H A DFastInfosetFeatureConfigurator.java58 * @param key Key to identify the endpoint scope.
62 public Collection<WebServiceFeature> getFeatures(final PolicyMapKey key, final PolicyMap policyMap) throws PolicyException { argument
64 if ((key != null) && (policyMap != null)) {
65 Policy policy = policyMap.getEndpointEffectivePolicy(key);
H A DMtomFeatureConfigurator.java59 * @param key Key that identifies the endpoint scope
63 public Collection<WebServiceFeature> getFeatures(PolicyMapKey key, PolicyMap policyMap) throws PolicyException { argument
65 if ((key != null) && (policyMap != null)) {
66 Policy policy = policyMap.getEndpointEffectivePolicy(key);
H A DSelectOptimalEncodingFeatureConfigurator.java57 * @param key Key that identifies the endpoint scope.
61 public Collection<WebServiceFeature> getFeatures(PolicyMapKey key, PolicyMap policyMap) throws PolicyException { argument
63 if ((key != null) && (policyMap != null)) {
64 Policy policy = policyMap.getEndpointEffectivePolicy(key);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/encoding/soap/
H A DDeserializationException.java41 public DeserializationException(String key, Object... args) { argument
42 super(key, args);
H A DSerializationException.java40 public SerializationException(String key, Object... args) { argument
41 super(key, args);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/handler/
H A DHandlerException.java41 public HandlerException(String key, Object... args) { argument
42 super(key, args);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/model/
H A DRuntimeModelerException.java40 public RuntimeModelerException(String key, Object... args) { argument
41 super(key, args);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/
H A DEffectivePolicyModifier.java47 * Replaces current effective policy on the service scope (identified by a {@code key} parameter) with the new efective
48 * policy provided as a second input parameter. If no policy was defined for the presented key, the new policy is simply
49 * stored with the key.
51 * @param key identifier of the scope the effective policy should be replaced with the new one. Must not be {@code null}.
57 final PolicyMapKey key, final Policy newEffectivePolicy) {
58 getMap().setNewEffectivePolicyForScope(PolicyMap.ScopeType.SERVICE, key, newEffectivePolicy);
62 * Replaces current effective policy on the endpoint scope (identified by a {@code key} parameter) with the new efective
65 * @param key identifier of the scope the effective policy should be replaced with the new one. Must not be {@code null}.
71 final PolicyMapKey key, final Policy newEffectivePolicy) {
72 getMap().setNewEffectivePolicyForScope(PolicyMap.ScopeType.ENDPOINT, key, newEffectivePolic
56 setNewEffectivePolicyForServiceScope( final PolicyMapKey key, final Policy newEffectivePolicy) argument
70 setNewEffectivePolicyForEndpointScope( final PolicyMapKey key, final Policy newEffectivePolicy) argument
85 setNewEffectivePolicyForOperationScope( final PolicyMapKey key, final Policy newEffectivePolicy) argument
100 setNewEffectivePolicyForInputMessageScope( final PolicyMapKey key, final Policy newEffectivePolicy) argument
115 setNewEffectivePolicyForOutputMessageScope( final PolicyMapKey key, final Policy newEffectivePolicy) argument
130 setNewEffectivePolicyForFaultMessageScope( final PolicyMapKey key, final Policy newEffectivePolicy) argument
[all...]
H A DPolicyMapExtender.java46 public void putServiceSubject(final PolicyMapKey key, final PolicySubject subject) { argument
47 getMap().putSubject(PolicyMap.ScopeType.SERVICE, key, subject);
50 public void putEndpointSubject(final PolicyMapKey key, final PolicySubject subject) { argument
51 getMap().putSubject(PolicyMap.ScopeType.ENDPOINT, key, subject);
54 public void putOperationSubject(final PolicyMapKey key, final PolicySubject subject) { argument
55 getMap().putSubject(PolicyMap.ScopeType.OPERATION, key, subject);
58 public void putInputMessageSubject(final PolicyMapKey key, final PolicySubject subject) { argument
59 getMap().putSubject(PolicyMap.ScopeType.INPUT_MESSAGE, key, subject);
62 public void putOutputMessageSubject(final PolicyMapKey key, final PolicySubject subject) { argument
63 getMap().putSubject(PolicyMap.ScopeType.OUTPUT_MESSAGE, key, subjec
66 putFaultMessageSubject(final PolicyMapKey key, final PolicySubject subject) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/jaxws/spi/
H A DPolicyFeatureConfigurator.java50 * @param key Identifies the policy in the policy map
52 * @return A list of features that correspond to the policy identified by the policy map key. May be empty but not null.
55 public Collection<WebServiceFeature> getFeatures(PolicyMapKey key, PolicyMap policyMap) throws PolicyException; argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/protocol/xml/
H A DXMLMessageException.java36 public XMLMessageException(String key, Object... args) { argument
37 super(key, args);

Completed in 126 milliseconds

1234567891011>>