Searched refs:OperationStyle (Results 1 - 6 of 6) sorted by relevance

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/wsdl/document/
H A DOperationStyle.java33 public final class OperationStyle { class
35 public static final OperationStyle ONE_WAY = new OperationStyle();
36 public static final OperationStyle REQUEST_RESPONSE = new OperationStyle();
37 public static final OperationStyle SOLICIT_RESPONSE = new OperationStyle();
38 public static final OperationStyle NOTIFICATION = new OperationStyle();
40 private OperationStyle() { method in class:OperationStyle
[all...]
H A DBindingOperation.java69 if (_style == OperationStyle.REQUEST_RESPONSE) {
71 } else if (_style == OperationStyle.SOLICIT_RESPONSE) {
80 if (_style == OperationStyle.SOLICIT_RESPONSE) {
82 } else if (_style == OperationStyle.REQUEST_RESPONSE) {
92 public OperationStyle getStyle() {
96 public void setStyle(OperationStyle s) {
198 if (_style == OperationStyle.ONE_WAY) {
217 private OperationStyle _style;
H A DOperation.java70 if (_style == OperationStyle.REQUEST_RESPONSE) {
72 } else if (_style == OperationStyle.SOLICIT_RESPONSE) {
81 if (_style == OperationStyle.SOLICIT_RESPONSE) {
83 } else if (_style == OperationStyle.REQUEST_RESPONSE) {
93 public OperationStyle getStyle() {
97 public void setStyle(OperationStyle s) {
183 if (_style == OperationStyle.ONE_WAY) {
193 } else if (_style == OperationStyle.NOTIFICATION) {
249 private OperationStyle _style;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/wsdl/parser/
H A DWSDLParser.java47 import com.sun.tools.internal.ws.wsdl.document.OperationStyle;
690 operation.setStyle(OperationStyle.ONE_WAY);
692 operation.setStyle(OperationStyle.REQUEST_RESPONSE);
694 operation.setStyle(OperationStyle.SOLICIT_RESPONSE);
696 operation.setStyle(OperationStyle.NOTIFICATION);
912 operation.setStyle(OperationStyle.ONE_WAY);
914 operation.setStyle(OperationStyle.REQUEST_RESPONSE);
916 operation.setStyle(OperationStyle.SOLICIT_RESPONSE);
918 operation.setStyle(OperationStyle.NOTIFICATION);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/processor/modeler/wsdl/
H A DWSDLModeler.java506 != OperationStyle.REQUEST_RESPONSE
507 && info.portTypeOperation.getStyle() != OperationStyle.ONE_WAY) {
517 boolean isRequestResponse = info.portTypeOperation.getStyle() == OperationStyle.REQUEST_RESPONSE;
633 != OperationStyle.REQUEST_RESPONSE
634 && info.portTypeOperation.getStyle() != OperationStyle.ONE_WAY) {
698 boolean isRequestResponse = info.portTypeOperation.getStyle() == OperationStyle.REQUEST_RESPONSE;
934 boolean isRequestResponse = info.portTypeOperation.getStyle() == OperationStyle.REQUEST_RESPONSE;
1039 boolean isRequestResponse = info.portTypeOperation.getStyle() == OperationStyle.REQUEST_RESPONSE;
2500 return info.portTypeOperation.getStyle() == OperationStyle.REQUEST_RESPONSE;
H A DWSDLModelerBase.java505 == OperationStyle.REQUEST_RESPONSE;

Completed in 53 milliseconds