Searched refs:replyTo (Results 1 - 5 of 5) sorted by relevance

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/addressing/
H A DOneWayFeature.java61 private WSEndpointReference replyTo; field in class:OneWayFeature
86 * @param replyTo specifies the {@link WSEndpointReference} of wsa:ReplyTo header.
88 public OneWayFeature(boolean enabled, WSEndpointReference replyTo) { argument
90 this.replyTo = replyTo;
97 * @param replyTo specifies the {@link WSEndpointReference} of wsa:ReplyTo header.
101 @FeatureConstructor({"enabled","replyTo","from","relatesTo"})
102 public OneWayFeature(boolean enabled, WSEndpointReference replyTo, WSEndpointReference from, String relatesTo) { argument
104 this.replyTo = replyTo;
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/addressing/
H A DWsaServerTube.java68 // store the replyTo/faultTo of the message currently being processed.
70 private WSEndpointReference replyTo; field in class:WsaServerTube
107 replyTo = hl.getReplyTo(addressingVersion, soapVersion);
130 if (replyTo == null) replyTo = addressingVersion.anonymousEpr;
131 if (faultTo == null) faultTo = replyTo;
155 !replyTo.isAnonymous() && !faultTo.isAnonymous() &&
166 protected void checkAnonymousSemantics(WSDLBoundOperation wbo, WSEndpointReference replyTo, WSEndpointReference faultTo) { argument
176 WSEndpointReference target = msg.isFault()?faultTo:replyTo;
215 // one way message but with replyTo
279 checkNonAnonymousAddresses(WSEndpointReference replyTo, WSEndpointReference faultTo) argument
[all...]
H A DW3CWsaServerTube.java107 protected void checkAnonymousSemantics(WSDLBoundOperation wbo, WSEndpointReference replyTo, WSEndpointReference faultTo) { argument
111 if (replyTo != null)
112 replyToValue = replyTo.getAddress();
160 protected void checkAnonymousSemantics(WSDLBoundOperation wbo, WSEndpointReference replyTo, WSEndpointReference faultTo) {
164 if (replyTo != null)
165 replyToValue = replyTo.getAddress();
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/message/
H A DHeaderList.java136 private WSEndpointReference replyTo = null; field in class:HeaderList
158 this.replyTo = that.replyTo;
556 if (replyTo != null) {
557 return replyTo;
566 replyTo = h.readAsEPR(av);
571 replyTo = av.anonymousEpr;
574 return replyTo;
H A DPacket.java806 WSEndpointReference replyTo;
808 replyTo = message.getHeaders().getReplyTo(av, sv);
809 if (replyTo != null)
810 hl.add(new StringHeader(av.toTag, replyTo.getAddress()));
812 replyTo = null;
839 refpEPR = replyTo;
842 refpEPR = replyTo;

Completed in 181 milliseconds