Searched refs:getOperation (Results 1 - 25 of 75) sorted by relevance

123

/openjdk9/corba/src/java.corba/share/classes/com/sun/corba/se/spi/orb/
H A DParserData.java32 public Operation getOperation() ; method in interface:ParserData
/openjdk9/jdk/src/java.rmi/share/classes/java/rmi/server/
H A DOperation.java60 public String getOperation() { method in class:Operation
/openjdk9/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/ws/api/model/wsdl/
H A DWSDLInput.java71 WSDLOperation getOperation(); method in interface:WSDLInput
H A DWSDLOutput.java70 WSDLOperation getOperation(); method in interface:WSDLOutput
H A DWSDLFault.java57 WSDLOperation getOperation(); method in interface:WSDLFault
H A DWSDLBoundOperation.java44 * Short-cut for {@code getOperation().getName()}
60 @NotNull WSDLOperation getOperation(); method in interface:WSDLBoundOperation
H A DWSDLBoundPortType.java99 * always use {@link Message#getOperation}, as that performs better.
116 @Nullable WSDLBoundOperation getOperation(String namespaceUri, String localName); method in interface:WSDLBoundPortType
/openjdk9/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/ws/api/model/wsdl/editable/
H A DEditableWSDLFault.java38 EditableWSDLOperation getOperation(); method in interface:EditableWSDLFault
H A DEditableWSDLInput.java38 EditableWSDLOperation getOperation(); method in interface:EditableWSDLInput
H A DEditableWSDLOutput.java38 EditableWSDLOperation getOperation(); method in interface:EditableWSDLOutput
H A DEditableWSDLBoundOperation.java40 @NotNull EditableWSDLOperation getOperation(); method in interface:EditableWSDLBoundOperation
H A DEditableWSDLBoundPortType.java52 @Nullable EditableWSDLBoundOperation getOperation(String namespaceUri, String localName); method in interface:EditableWSDLBoundPortType
/openjdk9/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/ws/model/wsdl/
H A DWSDLBoundFaultImpl.java58 if(owner.getOperation() != null){
59 return new QName(owner.getOperation().getName().getNamespaceURI(), name);
75 EditableWSDLOperation op = root.getOperation();
/openjdk9/corba/src/java.corba/share/classes/com/sun/corba/se/impl/protocol/giopmsgheaders/
H A DRequestMessage.java47 String getOperation(); method in interface:RequestMessage
/openjdk9/corba/src/java.corba/share/classes/com/sun/corba/se/impl/orb/
H A DNormalParserAction.java47 return getOperation().operate( value ) ;
H A DNormalParserData.java45 parser.add( getPropertyName(), getOperation(), getFieldName() ) ;
H A DParserDataBase.java50 public Operation getOperation() { return operation ; } method in class:ParserDataBase
H A DPrefixParserData.java50 parser.addPrefix( getPropertyName(), getOperation(), getFieldName(),
H A DParserActionBase.java86 protected Operation getOperation() method in class:ParserActionBase
/openjdk9/jdk/test/javax/naming/module/src/test/test/
H A DLDAPServer.java81 String operation = getOperation(ids[1]);
99 getOperation(ids[1]) + " [message ID " + ids[0] + "]");
161 System.out.println(" adding LDAP " + getOperation(ids[1]) +
202 private static String getOperation(int operationID) { method in class:LDAPServer
/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.amd64/src/org/graalvm/compiler/hotspot/amd64/
H A DAMD64HotSpotNodeCostProvider.java57 switch (u.getOperation()) {
80 switch (u.getOperation()) {
/openjdk9/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/ws/policy/
H A DPolicyMap.java97 retVal = retVal && ((key1.getOperation() == null) ? key2.getOperation() == null : key1.getOperation().equals(key2.getOperation()));
107 result = 37 * result + ((key.getOperation() == null) ? 0 : key.getOperation().hashCode());
119 retVal = retVal && ((key1.getOperation() == null) ? key2.getOperation() == null : key1.getOperation().equals(key2.getOperation()));
[all...]
/openjdk9/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/ws/api/message/
H A DMessage.java264 * This method relies on {@link WSDLBoundPortType#getOperation(String, String)} but
288 public final @Nullable WSDLBoundOperation getOperation(@NotNull WSDLBoundPortType boundPortType) { method in class:Message
294 operation = boundPortType.getOperation(getPayloadNamespaceURI(),getPayloadLocalPart());
299 * The same as {@link #getOperation(WSDLBoundPortType)} but
307 public final @Nullable WSDLBoundOperation getOperation(@NotNull WSDLPort port) { method in class:Message
308 return getOperation(port.getBinding());
365 * {@code getOperation(port).getOperation().isOneWay()}
385 WSDLBoundOperation op = getOperation(port);
387 isOneWay = op.getOperation()
[all...]
/openjdk9/corba/src/java.corba/share/classes/com/sun/corba/se/impl/oa/poa/
H A DPOACurrent.java125 public String getOperation() method in class:POACurrent
127 String operation = peekThrowInternal().getOperation();
/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements/src/org/graalvm/compiler/replacements/nodes/
H A DUnaryMathIntrinsicNode.java89 public UnaryOperation getOperation() { method in class:UnaryMathIntrinsicNode
116 return computeStamp(valueStamp, getOperation());
164 switch (getOperation()) {
191 ValueNode c = tryConstantFold(forValue, getOperation());

Completed in 213 milliseconds

123