Java Code Examples for com.sun.xml.internal.ws.api.model.WSDLOperationMapping#getOperationName()

The following examples show how to use com.sun.xml.internal.ws.api.model.WSDLOperationMapping#getOperationName() . 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: OperationDispatcher.java    From TencentKona-8 with GNU General Public License v2.0 2 votes vote down vote up
/**
 * @deprecated use getWSDLOperationMapping(Packet request)
 * @param request Packet
 * @return QName of the wsdl operation.
 * @throws DispatchException if a unique operartion cannot be associated with this packet.
 */
public @NotNull QName getWSDLOperationQName(Packet request) throws DispatchException {
    WSDLOperationMapping m = getWSDLOperationMapping(request);
    return m != null ? m.getOperationName() : null;
}
 
Example 2
Source File: WSDLOperationFinder.java    From TencentKona-8 with GNU General Public License v2.0 2 votes vote down vote up
/**
 * This methods returns the QName of the WSDL operation correponding to a request Packet.
 * An implementation should return null when it cannot dispatch to a unique method based on the information it processes.
 * In such case, other OperationFinders are queried to resolve a WSDL operation.
 * It should throw an instance of DispatchException if it finds incorrect information in the packet.
 *
 * @deprecated use getWSDLOperationMapping(Packet request)
 *
 * @param request  Request Packet that is used to find the associated WSDLOperation
 * @return QName of the WSDL Operation that this request correponds to.
 *          null when it cannot find a unique operation to dispatch to.
 * @throws DispatchException When the information in the Packet is invalid
 */
public QName getWSDLOperationQName(Packet request) throws DispatchException {
    WSDLOperationMapping m = getWSDLOperationMapping(request);
    return m != null ? m.getOperationName() : null;
}
 
Example 3
Source File: OperationDispatcher.java    From jdk8u60 with GNU General Public License v2.0 2 votes vote down vote up
/**
 * @deprecated use getWSDLOperationMapping(Packet request)
 * @param request Packet
 * @return QName of the wsdl operation.
 * @throws DispatchException if a unique operartion cannot be associated with this packet.
 */
public @NotNull QName getWSDLOperationQName(Packet request) throws DispatchException {
    WSDLOperationMapping m = getWSDLOperationMapping(request);
    return m != null ? m.getOperationName() : null;
}
 
Example 4
Source File: WSDLOperationFinder.java    From jdk8u60 with GNU General Public License v2.0 2 votes vote down vote up
/**
 * This methods returns the QName of the WSDL operation correponding to a request Packet.
 * An implementation should return null when it cannot dispatch to a unique method based on the information it processes.
 * In such case, other OperationFinders are queried to resolve a WSDL operation.
 * It should throw an instance of DispatchException if it finds incorrect information in the packet.
 *
 * @deprecated use getWSDLOperationMapping(Packet request)
 *
 * @param request  Request Packet that is used to find the associated WSDLOperation
 * @return QName of the WSDL Operation that this request correponds to.
 *          null when it cannot find a unique operation to dispatch to.
 * @throws DispatchException When the information in the Packet is invalid
 */
public QName getWSDLOperationQName(Packet request) throws DispatchException {
    WSDLOperationMapping m = getWSDLOperationMapping(request);
    return m != null ? m.getOperationName() : null;
}
 
Example 5
Source File: OperationDispatcher.java    From openjdk-jdk8u with GNU General Public License v2.0 2 votes vote down vote up
/**
 * @deprecated use getWSDLOperationMapping(Packet request)
 * @param request Packet
 * @return QName of the wsdl operation.
 * @throws DispatchException if a unique operartion cannot be associated with this packet.
 */
public @NotNull QName getWSDLOperationQName(Packet request) throws DispatchException {
    WSDLOperationMapping m = getWSDLOperationMapping(request);
    return m != null ? m.getOperationName() : null;
}
 
Example 6
Source File: WSDLOperationFinder.java    From openjdk-jdk8u with GNU General Public License v2.0 2 votes vote down vote up
/**
 * This methods returns the QName of the WSDL operation correponding to a request Packet.
 * An implementation should return null when it cannot dispatch to a unique method based on the information it processes.
 * In such case, other OperationFinders are queried to resolve a WSDL operation.
 * It should throw an instance of DispatchException if it finds incorrect information in the packet.
 *
 * @deprecated use getWSDLOperationMapping(Packet request)
 *
 * @param request  Request Packet that is used to find the associated WSDLOperation
 * @return QName of the WSDL Operation that this request correponds to.
 *          null when it cannot find a unique operation to dispatch to.
 * @throws DispatchException When the information in the Packet is invalid
 */
public QName getWSDLOperationQName(Packet request) throws DispatchException {
    WSDLOperationMapping m = getWSDLOperationMapping(request);
    return m != null ? m.getOperationName() : null;
}
 
Example 7
Source File: OperationDispatcher.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 2 votes vote down vote up
/**
 * @deprecated use getWSDLOperationMapping(Packet request)
 * @param request Packet
 * @return QName of the wsdl operation.
 * @throws DispatchException if a unique operartion cannot be associated with this packet.
 */
public @NotNull QName getWSDLOperationQName(Packet request) throws DispatchException {
    WSDLOperationMapping m = getWSDLOperationMapping(request);
    return m != null ? m.getOperationName() : null;
}
 
Example 8
Source File: WSDLOperationFinder.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 2 votes vote down vote up
/**
 * This methods returns the QName of the WSDL operation correponding to a request Packet.
 * An implementation should return null when it cannot dispatch to a unique method based on the information it processes.
 * In such case, other OperationFinders are queried to resolve a WSDL operation.
 * It should throw an instance of DispatchException if it finds incorrect information in the packet.
 *
 * @deprecated use getWSDLOperationMapping(Packet request)
 *
 * @param request  Request Packet that is used to find the associated WSDLOperation
 * @return QName of the WSDL Operation that this request correponds to.
 *          null when it cannot find a unique operation to dispatch to.
 * @throws DispatchException When the information in the Packet is invalid
 */
public QName getWSDLOperationQName(Packet request) throws DispatchException {
    WSDLOperationMapping m = getWSDLOperationMapping(request);
    return m != null ? m.getOperationName() : null;
}
 
Example 9
Source File: OperationDispatcher.java    From openjdk-jdk9 with GNU General Public License v2.0 2 votes vote down vote up
/**
 * @deprecated use getWSDLOperationMapping(Packet request)
 * @param request Packet
 * @return QName of the wsdl operation.
 * @throws DispatchException if a unique operartion cannot be associated with this packet.
 */
public @NotNull QName getWSDLOperationQName(Packet request) throws DispatchException {
    WSDLOperationMapping m = getWSDLOperationMapping(request);
    return m != null ? m.getOperationName() : null;
}
 
Example 10
Source File: WSDLOperationFinder.java    From openjdk-jdk9 with GNU General Public License v2.0 2 votes vote down vote up
/**
 * This methods returns the QName of the WSDL operation correponding to a request Packet.
 * An implementation should return null when it cannot dispatch to a unique method based on the information it processes.
 * In such case, other OperationFinders are queried to resolve a WSDL operation.
 * It should throw an instance of DispatchException if it finds incorrect information in the packet.
 *
 * @deprecated use getWSDLOperationMapping(Packet request)
 *
 * @param request  Request Packet that is used to find the associated WSDLOperation
 * @return QName of the WSDL Operation that this request correponds to.
 *          null when it cannot find a unique operation to dispatch to.
 * @throws DispatchException When the information in the Packet is invalid
 */
public QName getWSDLOperationQName(Packet request) throws DispatchException {
    WSDLOperationMapping m = getWSDLOperationMapping(request);
    return m != null ? m.getOperationName() : null;
}
 
Example 11
Source File: OperationDispatcher.java    From hottub with GNU General Public License v2.0 2 votes vote down vote up
/**
 * @deprecated use getWSDLOperationMapping(Packet request)
 * @param request Packet
 * @return QName of the wsdl operation.
 * @throws DispatchException if a unique operartion cannot be associated with this packet.
 */
public @NotNull QName getWSDLOperationQName(Packet request) throws DispatchException {
    WSDLOperationMapping m = getWSDLOperationMapping(request);
    return m != null ? m.getOperationName() : null;
}
 
Example 12
Source File: WSDLOperationFinder.java    From hottub with GNU General Public License v2.0 2 votes vote down vote up
/**
 * This methods returns the QName of the WSDL operation correponding to a request Packet.
 * An implementation should return null when it cannot dispatch to a unique method based on the information it processes.
 * In such case, other OperationFinders are queried to resolve a WSDL operation.
 * It should throw an instance of DispatchException if it finds incorrect information in the packet.
 *
 * @deprecated use getWSDLOperationMapping(Packet request)
 *
 * @param request  Request Packet that is used to find the associated WSDLOperation
 * @return QName of the WSDL Operation that this request correponds to.
 *          null when it cannot find a unique operation to dispatch to.
 * @throws DispatchException When the information in the Packet is invalid
 */
public QName getWSDLOperationQName(Packet request) throws DispatchException {
    WSDLOperationMapping m = getWSDLOperationMapping(request);
    return m != null ? m.getOperationName() : null;
}
 
Example 13
Source File: OperationDispatcher.java    From openjdk-8-source with GNU General Public License v2.0 2 votes vote down vote up
/**
 * @deprecated use getWSDLOperationMapping(Packet request)
 * @param request Packet
 * @return QName of the wsdl operation.
 * @throws DispatchException if a unique operartion cannot be associated with this packet.
 */
public @NotNull QName getWSDLOperationQName(Packet request) throws DispatchException {
    WSDLOperationMapping m = getWSDLOperationMapping(request);
    return m != null ? m.getOperationName() : null;
}
 
Example 14
Source File: WSDLOperationFinder.java    From openjdk-8-source with GNU General Public License v2.0 2 votes vote down vote up
/**
 * This methods returns the QName of the WSDL operation correponding to a request Packet.
 * An implementation should return null when it cannot dispatch to a unique method based on the information it processes.
 * In such case, other OperationFinders are queried to resolve a WSDL operation.
 * It should throw an instance of DispatchException if it finds incorrect information in the packet.
 *
 * @deprecated use getWSDLOperationMapping(Packet request)
 *
 * @param request  Request Packet that is used to find the associated WSDLOperation
 * @return QName of the WSDL Operation that this request correponds to.
 *          null when it cannot find a unique operation to dispatch to.
 * @throws DispatchException When the information in the Packet is invalid
 */
public QName getWSDLOperationQName(Packet request) throws DispatchException {
    WSDLOperationMapping m = getWSDLOperationMapping(request);
    return m != null ? m.getOperationName() : null;
}
 
Example 15
Source File: OperationDispatcher.java    From openjdk-8 with GNU General Public License v2.0 2 votes vote down vote up
/**
 * @deprecated use getWSDLOperationMapping(Packet request)
 * @param request Packet
 * @return QName of the wsdl operation.
 * @throws DispatchException if a unique operartion cannot be associated with this packet.
 */
public @NotNull QName getWSDLOperationQName(Packet request) throws DispatchException {
    WSDLOperationMapping m = getWSDLOperationMapping(request);
    return m != null ? m.getOperationName() : null;
}
 
Example 16
Source File: WSDLOperationFinder.java    From openjdk-8 with GNU General Public License v2.0 2 votes vote down vote up
/**
 * This methods returns the QName of the WSDL operation correponding to a request Packet.
 * An implementation should return null when it cannot dispatch to a unique method based on the information it processes.
 * In such case, other OperationFinders are queried to resolve a WSDL operation.
 * It should throw an instance of DispatchException if it finds incorrect information in the packet.
 *
 * @deprecated use getWSDLOperationMapping(Packet request)
 *
 * @param request  Request Packet that is used to find the associated WSDLOperation
 * @return QName of the WSDL Operation that this request correponds to.
 *          null when it cannot find a unique operation to dispatch to.
 * @throws DispatchException When the information in the Packet is invalid
 */
public QName getWSDLOperationQName(Packet request) throws DispatchException {
    WSDLOperationMapping m = getWSDLOperationMapping(request);
    return m != null ? m.getOperationName() : null;
}