Java Code Examples for com.sun.tools.internal.ws.processor.model.Operation#setStyle()

The following examples show how to use com.sun.tools.internal.ws.processor.model.Operation#setStyle() . 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: WSDLModeler.java    From TencentKona-8 with GNU General Public License v2.0 4 votes vote down vote up
protected Operation processSOAPOperation() {
    Operation operation =
            new Operation(new QName(null, info.bindingOperation.getName()), info.bindingOperation);

    setDocumentationIfPresent(
            operation,
            info.portTypeOperation.getDocumentation());

    if (info.portTypeOperation.getStyle()
            != OperationStyle.REQUEST_RESPONSE
            && info.portTypeOperation.getStyle() != OperationStyle.ONE_WAY) {
        if (options.isExtensionMode()) {
            warning(info.portTypeOperation, ModelerMessages.WSDLMODELER_WARNING_IGNORING_OPERATION_NOT_SUPPORTED_STYLE(info.portTypeOperation.getName()));
            return null;
        } else {
            error(info.portTypeOperation, ModelerMessages.WSDLMODELER_INVALID_OPERATION_NOT_SUPPORTED_STYLE(info.portTypeOperation.getName(),
                    info.port.resolveBinding(document).resolvePortType(document).getName()));
        }
    }

    SOAPStyle soapStyle = info.soapBinding.getStyle();

    // find out the SOAP operation extension, if any
    SOAPOperation soapOperation =
            (SOAPOperation) getExtensionOfType(info.bindingOperation,
                    SOAPOperation.class);

    if (soapOperation != null) {
        if (soapOperation.getStyle() != null) {
            soapStyle = soapOperation.getStyle();
        }
        if (soapOperation.getSOAPAction() != null) {
            operation.setSOAPAction(soapOperation.getSOAPAction());
        }
    }

    operation.setStyle(soapStyle);

    String uniqueOperationName =
            getUniqueName(info.portTypeOperation, info.hasOverloadedOperations);
    if (info.hasOverloadedOperations) {
        operation.setUniqueName(uniqueOperationName);
    }

    info.operation = operation;

    //attachment
    SOAPBody soapRequestBody = getSOAPRequestBody();
    if (soapRequestBody == null) {
        // the WSDL document is invalid
        error(info.bindingOperation, ModelerMessages.WSDLMODELER_INVALID_BINDING_OPERATION_INPUT_MISSING_SOAP_BODY(info.bindingOperation.getName()));
    }

    if (soapStyle == SOAPStyle.RPC) {
        if (soapRequestBody.isEncoded()) {
            if(options.isExtensionMode()){
                warning(soapRequestBody, ModelerMessages.WSDLMODELER_20_RPCENC_NOT_SUPPORTED());
                processNonSOAPOperation();
            }else{
                error(soapRequestBody, ModelerMessages.WSDLMODELER_20_RPCENC_NOT_SUPPORTED());
            }
        }
        return processLiteralSOAPOperation(StyleAndUse.RPC_LITERAL);
    }
    // document style
    return processLiteralSOAPOperation(StyleAndUse.DOC_LITERAL);
}
 
Example 2
Source File: WSDLModeler.java    From jdk8u60 with GNU General Public License v2.0 4 votes vote down vote up
protected Operation processSOAPOperation() {
    Operation operation =
            new Operation(new QName(null, info.bindingOperation.getName()), info.bindingOperation);

    setDocumentationIfPresent(
            operation,
            info.portTypeOperation.getDocumentation());

    if (info.portTypeOperation.getStyle()
            != OperationStyle.REQUEST_RESPONSE
            && info.portTypeOperation.getStyle() != OperationStyle.ONE_WAY) {
        if (options.isExtensionMode()) {
            warning(info.portTypeOperation, ModelerMessages.WSDLMODELER_WARNING_IGNORING_OPERATION_NOT_SUPPORTED_STYLE(info.portTypeOperation.getName()));
            return null;
        } else {
            error(info.portTypeOperation, ModelerMessages.WSDLMODELER_INVALID_OPERATION_NOT_SUPPORTED_STYLE(info.portTypeOperation.getName(),
                    info.port.resolveBinding(document).resolvePortType(document).getName()));
        }
    }

    SOAPStyle soapStyle = info.soapBinding.getStyle();

    // find out the SOAP operation extension, if any
    SOAPOperation soapOperation =
            (SOAPOperation) getExtensionOfType(info.bindingOperation,
                    SOAPOperation.class);

    if (soapOperation != null) {
        if (soapOperation.getStyle() != null) {
            soapStyle = soapOperation.getStyle();
        }
        if (soapOperation.getSOAPAction() != null) {
            operation.setSOAPAction(soapOperation.getSOAPAction());
        }
    }

    operation.setStyle(soapStyle);

    String uniqueOperationName =
            getUniqueName(info.portTypeOperation, info.hasOverloadedOperations);
    if (info.hasOverloadedOperations) {
        operation.setUniqueName(uniqueOperationName);
    }

    info.operation = operation;

    //attachment
    SOAPBody soapRequestBody = getSOAPRequestBody();
    if (soapRequestBody == null) {
        // the WSDL document is invalid
        error(info.bindingOperation, ModelerMessages.WSDLMODELER_INVALID_BINDING_OPERATION_INPUT_MISSING_SOAP_BODY(info.bindingOperation.getName()));
    }

    if (soapStyle == SOAPStyle.RPC) {
        if (soapRequestBody.isEncoded()) {
            if(options.isExtensionMode()){
                warning(soapRequestBody, ModelerMessages.WSDLMODELER_20_RPCENC_NOT_SUPPORTED());
                processNonSOAPOperation();
            }else{
                error(soapRequestBody, ModelerMessages.WSDLMODELER_20_RPCENC_NOT_SUPPORTED());
            }
        }
        return processLiteralSOAPOperation(StyleAndUse.RPC_LITERAL);
    }
    // document style
    return processLiteralSOAPOperation(StyleAndUse.DOC_LITERAL);
}
 
Example 3
Source File: WSDLModeler.java    From openjdk-jdk8u with GNU General Public License v2.0 4 votes vote down vote up
protected Operation processSOAPOperation() {
    Operation operation =
            new Operation(new QName(null, info.bindingOperation.getName()), info.bindingOperation);

    setDocumentationIfPresent(
            operation,
            info.portTypeOperation.getDocumentation());

    if (info.portTypeOperation.getStyle()
            != OperationStyle.REQUEST_RESPONSE
            && info.portTypeOperation.getStyle() != OperationStyle.ONE_WAY) {
        if (options.isExtensionMode()) {
            warning(info.portTypeOperation, ModelerMessages.WSDLMODELER_WARNING_IGNORING_OPERATION_NOT_SUPPORTED_STYLE(info.portTypeOperation.getName()));
            return null;
        } else {
            error(info.portTypeOperation, ModelerMessages.WSDLMODELER_INVALID_OPERATION_NOT_SUPPORTED_STYLE(info.portTypeOperation.getName(),
                    info.port.resolveBinding(document).resolvePortType(document).getName()));
        }
    }

    SOAPStyle soapStyle = info.soapBinding.getStyle();

    // find out the SOAP operation extension, if any
    SOAPOperation soapOperation =
            (SOAPOperation) getExtensionOfType(info.bindingOperation,
                    SOAPOperation.class);

    if (soapOperation != null) {
        if (soapOperation.getStyle() != null) {
            soapStyle = soapOperation.getStyle();
        }
        if (soapOperation.getSOAPAction() != null) {
            operation.setSOAPAction(soapOperation.getSOAPAction());
        }
    }

    operation.setStyle(soapStyle);

    String uniqueOperationName =
            getUniqueName(info.portTypeOperation, info.hasOverloadedOperations);
    if (info.hasOverloadedOperations) {
        operation.setUniqueName(uniqueOperationName);
    }

    info.operation = operation;

    //attachment
    SOAPBody soapRequestBody = getSOAPRequestBody();
    if (soapRequestBody == null) {
        // the WSDL document is invalid
        error(info.bindingOperation, ModelerMessages.WSDLMODELER_INVALID_BINDING_OPERATION_INPUT_MISSING_SOAP_BODY(info.bindingOperation.getName()));
    }

    if (soapStyle == SOAPStyle.RPC) {
        if (soapRequestBody.isEncoded()) {
            if(options.isExtensionMode()){
                warning(soapRequestBody, ModelerMessages.WSDLMODELER_20_RPCENC_NOT_SUPPORTED());
                processNonSOAPOperation();
            }else{
                error(soapRequestBody, ModelerMessages.WSDLMODELER_20_RPCENC_NOT_SUPPORTED());
            }
        }
        return processLiteralSOAPOperation(StyleAndUse.RPC_LITERAL);
    }
    // document style
    return processLiteralSOAPOperation(StyleAndUse.DOC_LITERAL);
}
 
Example 4
Source File: WSDLModeler.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 4 votes vote down vote up
protected Operation processSOAPOperation() {
    Operation operation =
            new Operation(new QName(null, info.bindingOperation.getName()), info.bindingOperation);

    setDocumentationIfPresent(
            operation,
            info.portTypeOperation.getDocumentation());

    if (info.portTypeOperation.getStyle()
            != OperationStyle.REQUEST_RESPONSE
            && info.portTypeOperation.getStyle() != OperationStyle.ONE_WAY) {
        if (options.isExtensionMode()) {
            warning(info.portTypeOperation, ModelerMessages.WSDLMODELER_WARNING_IGNORING_OPERATION_NOT_SUPPORTED_STYLE(info.portTypeOperation.getName()));
            return null;
        } else {
            error(info.portTypeOperation, ModelerMessages.WSDLMODELER_INVALID_OPERATION_NOT_SUPPORTED_STYLE(info.portTypeOperation.getName(),
                    info.port.resolveBinding(document).resolvePortType(document).getName()));
        }
    }

    SOAPStyle soapStyle = info.soapBinding.getStyle();

    // find out the SOAP operation extension, if any
    SOAPOperation soapOperation =
            (SOAPOperation) getExtensionOfType(info.bindingOperation,
                    SOAPOperation.class);

    if (soapOperation != null) {
        if (soapOperation.getStyle() != null) {
            soapStyle = soapOperation.getStyle();
        }
        if (soapOperation.getSOAPAction() != null) {
            operation.setSOAPAction(soapOperation.getSOAPAction());
        }
    }

    operation.setStyle(soapStyle);

    String uniqueOperationName =
            getUniqueName(info.portTypeOperation, info.hasOverloadedOperations);
    if (info.hasOverloadedOperations) {
        operation.setUniqueName(uniqueOperationName);
    }

    info.operation = operation;

    //attachment
    SOAPBody soapRequestBody = getSOAPRequestBody();
    if (soapRequestBody == null) {
        // the WSDL document is invalid
        error(info.bindingOperation, ModelerMessages.WSDLMODELER_INVALID_BINDING_OPERATION_INPUT_MISSING_SOAP_BODY(info.bindingOperation.getName()));
    }

    if (soapStyle == SOAPStyle.RPC) {
        if (soapRequestBody.isEncoded()) {
            if(options.isExtensionMode()){
                warning(soapRequestBody, ModelerMessages.WSDLMODELER_20_RPCENC_NOT_SUPPORTED());
                processNonSOAPOperation();
            }else{
                error(soapRequestBody, ModelerMessages.WSDLMODELER_20_RPCENC_NOT_SUPPORTED());
            }
        }
        return processLiteralSOAPOperation(StyleAndUse.RPC_LITERAL);
    }
    // document style
    return processLiteralSOAPOperation(StyleAndUse.DOC_LITERAL);
}
 
Example 5
Source File: WSDLModeler.java    From openjdk-jdk9 with GNU General Public License v2.0 4 votes vote down vote up
protected Operation processSOAPOperation() {
    Operation operation =
            new Operation(new QName(null, info.bindingOperation.getName()), info.bindingOperation);

    setDocumentationIfPresent(
            operation,
            info.portTypeOperation.getDocumentation());

    if (info.portTypeOperation.getStyle()
            != OperationStyle.REQUEST_RESPONSE
            && info.portTypeOperation.getStyle() != OperationStyle.ONE_WAY) {
        if (options.isExtensionMode()) {
            warning(info.portTypeOperation, ModelerMessages.WSDLMODELER_WARNING_IGNORING_OPERATION_NOT_SUPPORTED_STYLE(info.portTypeOperation.getName()));
            return null;
        } else {
            error(info.portTypeOperation, ModelerMessages.WSDLMODELER_INVALID_OPERATION_NOT_SUPPORTED_STYLE(info.portTypeOperation.getName(),
                    info.port.resolveBinding(document).resolvePortType(document).getName()));
        }
    }

    SOAPStyle soapStyle = info.soapBinding.getStyle();

    // find out the SOAP operation extension, if any
    SOAPOperation soapOperation =
            (SOAPOperation) getExtensionOfType(info.bindingOperation,
                    SOAPOperation.class);

    if (soapOperation != null) {
        if (soapOperation.getStyle() != null) {
            soapStyle = soapOperation.getStyle();
        }
        if (soapOperation.getSOAPAction() != null) {
            operation.setSOAPAction(soapOperation.getSOAPAction());
        }
    }

    operation.setStyle(soapStyle);

    String uniqueOperationName =
            getUniqueName(info.portTypeOperation, info.hasOverloadedOperations);
    if (info.hasOverloadedOperations) {
        operation.setUniqueName(uniqueOperationName);
    }

    info.operation = operation;

    //attachment
    SOAPBody soapRequestBody = getSOAPRequestBody();
    if (soapRequestBody == null) {
        // the WSDL document is invalid
        error(info.bindingOperation, ModelerMessages.WSDLMODELER_INVALID_BINDING_OPERATION_INPUT_MISSING_SOAP_BODY(info.bindingOperation.getName()));
    }

    if (soapStyle == SOAPStyle.RPC) {
        if (soapRequestBody.isEncoded()) {
            if(options.isExtensionMode()){
                warning(soapRequestBody, ModelerMessages.WSDLMODELER_20_RPCENC_NOT_SUPPORTED());
                processNonSOAPOperation();
            }else{
                error(soapRequestBody, ModelerMessages.WSDLMODELER_20_RPCENC_NOT_SUPPORTED());
            }
        }
        return processLiteralSOAPOperation(StyleAndUse.RPC_LITERAL);
    }
    // document style
    return processLiteralSOAPOperation(StyleAndUse.DOC_LITERAL);
}
 
Example 6
Source File: WSDLModeler.java    From hottub with GNU General Public License v2.0 4 votes vote down vote up
protected Operation processSOAPOperation() {
    Operation operation =
            new Operation(new QName(null, info.bindingOperation.getName()), info.bindingOperation);

    setDocumentationIfPresent(
            operation,
            info.portTypeOperation.getDocumentation());

    if (info.portTypeOperation.getStyle()
            != OperationStyle.REQUEST_RESPONSE
            && info.portTypeOperation.getStyle() != OperationStyle.ONE_WAY) {
        if (options.isExtensionMode()) {
            warning(info.portTypeOperation, ModelerMessages.WSDLMODELER_WARNING_IGNORING_OPERATION_NOT_SUPPORTED_STYLE(info.portTypeOperation.getName()));
            return null;
        } else {
            error(info.portTypeOperation, ModelerMessages.WSDLMODELER_INVALID_OPERATION_NOT_SUPPORTED_STYLE(info.portTypeOperation.getName(),
                    info.port.resolveBinding(document).resolvePortType(document).getName()));
        }
    }

    SOAPStyle soapStyle = info.soapBinding.getStyle();

    // find out the SOAP operation extension, if any
    SOAPOperation soapOperation =
            (SOAPOperation) getExtensionOfType(info.bindingOperation,
                    SOAPOperation.class);

    if (soapOperation != null) {
        if (soapOperation.getStyle() != null) {
            soapStyle = soapOperation.getStyle();
        }
        if (soapOperation.getSOAPAction() != null) {
            operation.setSOAPAction(soapOperation.getSOAPAction());
        }
    }

    operation.setStyle(soapStyle);

    String uniqueOperationName =
            getUniqueName(info.portTypeOperation, info.hasOverloadedOperations);
    if (info.hasOverloadedOperations) {
        operation.setUniqueName(uniqueOperationName);
    }

    info.operation = operation;

    //attachment
    SOAPBody soapRequestBody = getSOAPRequestBody();
    if (soapRequestBody == null) {
        // the WSDL document is invalid
        error(info.bindingOperation, ModelerMessages.WSDLMODELER_INVALID_BINDING_OPERATION_INPUT_MISSING_SOAP_BODY(info.bindingOperation.getName()));
    }

    if (soapStyle == SOAPStyle.RPC) {
        if (soapRequestBody.isEncoded()) {
            if(options.isExtensionMode()){
                warning(soapRequestBody, ModelerMessages.WSDLMODELER_20_RPCENC_NOT_SUPPORTED());
                processNonSOAPOperation();
            }else{
                error(soapRequestBody, ModelerMessages.WSDLMODELER_20_RPCENC_NOT_SUPPORTED());
            }
        }
        return processLiteralSOAPOperation(StyleAndUse.RPC_LITERAL);
    }
    // document style
    return processLiteralSOAPOperation(StyleAndUse.DOC_LITERAL);
}
 
Example 7
Source File: WSDLModeler.java    From openjdk-8-source with GNU General Public License v2.0 4 votes vote down vote up
protected Operation processSOAPOperation() {
    Operation operation =
            new Operation(new QName(null, info.bindingOperation.getName()), info.bindingOperation);

    setDocumentationIfPresent(
            operation,
            info.portTypeOperation.getDocumentation());

    if (info.portTypeOperation.getStyle()
            != OperationStyle.REQUEST_RESPONSE
            && info.portTypeOperation.getStyle() != OperationStyle.ONE_WAY) {
        if (options.isExtensionMode()) {
            warning(info.portTypeOperation, ModelerMessages.WSDLMODELER_WARNING_IGNORING_OPERATION_NOT_SUPPORTED_STYLE(info.portTypeOperation.getName()));
            return null;
        } else {
            error(info.portTypeOperation, ModelerMessages.WSDLMODELER_INVALID_OPERATION_NOT_SUPPORTED_STYLE(info.portTypeOperation.getName(),
                    info.port.resolveBinding(document).resolvePortType(document).getName()));
        }
    }

    SOAPStyle soapStyle = info.soapBinding.getStyle();

    // find out the SOAP operation extension, if any
    SOAPOperation soapOperation =
            (SOAPOperation) getExtensionOfType(info.bindingOperation,
                    SOAPOperation.class);

    if (soapOperation != null) {
        if (soapOperation.getStyle() != null) {
            soapStyle = soapOperation.getStyle();
        }
        if (soapOperation.getSOAPAction() != null) {
            operation.setSOAPAction(soapOperation.getSOAPAction());
        }
    }

    operation.setStyle(soapStyle);

    String uniqueOperationName =
            getUniqueName(info.portTypeOperation, info.hasOverloadedOperations);
    if (info.hasOverloadedOperations) {
        operation.setUniqueName(uniqueOperationName);
    }

    info.operation = operation;

    //attachment
    SOAPBody soapRequestBody = getSOAPRequestBody();
    if (soapRequestBody == null) {
        // the WSDL document is invalid
        error(info.bindingOperation, ModelerMessages.WSDLMODELER_INVALID_BINDING_OPERATION_INPUT_MISSING_SOAP_BODY(info.bindingOperation.getName()));
    }

    if (soapStyle == SOAPStyle.RPC) {
        if (soapRequestBody.isEncoded()) {
            if(options.isExtensionMode()){
                warning(soapRequestBody, ModelerMessages.WSDLMODELER_20_RPCENC_NOT_SUPPORTED());
                processNonSOAPOperation();
            }else{
                error(soapRequestBody, ModelerMessages.WSDLMODELER_20_RPCENC_NOT_SUPPORTED());
            }
        }
        return processLiteralSOAPOperation(StyleAndUse.RPC_LITERAL);
    }
    // document style
    return processLiteralSOAPOperation(StyleAndUse.DOC_LITERAL);
}
 
Example 8
Source File: WSDLModeler.java    From openjdk-8 with GNU General Public License v2.0 4 votes vote down vote up
protected Operation processSOAPOperation() {
    Operation operation =
            new Operation(new QName(null, info.bindingOperation.getName()), info.bindingOperation);

    setDocumentationIfPresent(
            operation,
            info.portTypeOperation.getDocumentation());

    if (info.portTypeOperation.getStyle()
            != OperationStyle.REQUEST_RESPONSE
            && info.portTypeOperation.getStyle() != OperationStyle.ONE_WAY) {
        if (options.isExtensionMode()) {
            warning(info.portTypeOperation, ModelerMessages.WSDLMODELER_WARNING_IGNORING_OPERATION_NOT_SUPPORTED_STYLE(info.portTypeOperation.getName()));
            return null;
        } else {
            error(info.portTypeOperation, ModelerMessages.WSDLMODELER_INVALID_OPERATION_NOT_SUPPORTED_STYLE(info.portTypeOperation.getName(),
                    info.port.resolveBinding(document).resolvePortType(document).getName()));
        }
    }

    SOAPStyle soapStyle = info.soapBinding.getStyle();

    // find out the SOAP operation extension, if any
    SOAPOperation soapOperation =
            (SOAPOperation) getExtensionOfType(info.bindingOperation,
                    SOAPOperation.class);

    if (soapOperation != null) {
        if (soapOperation.getStyle() != null) {
            soapStyle = soapOperation.getStyle();
        }
        if (soapOperation.getSOAPAction() != null) {
            operation.setSOAPAction(soapOperation.getSOAPAction());
        }
    }

    operation.setStyle(soapStyle);

    String uniqueOperationName =
            getUniqueName(info.portTypeOperation, info.hasOverloadedOperations);
    if (info.hasOverloadedOperations) {
        operation.setUniqueName(uniqueOperationName);
    }

    info.operation = operation;

    //attachment
    SOAPBody soapRequestBody = getSOAPRequestBody();
    if (soapRequestBody == null) {
        // the WSDL document is invalid
        error(info.bindingOperation, ModelerMessages.WSDLMODELER_INVALID_BINDING_OPERATION_INPUT_MISSING_SOAP_BODY(info.bindingOperation.getName()));
    }

    if (soapStyle == SOAPStyle.RPC) {
        if (soapRequestBody.isEncoded()) {
            if(options.isExtensionMode()){
                warning(soapRequestBody, ModelerMessages.WSDLMODELER_20_RPCENC_NOT_SUPPORTED());
                processNonSOAPOperation();
            }else{
                error(soapRequestBody, ModelerMessages.WSDLMODELER_20_RPCENC_NOT_SUPPORTED());
            }
        }
        return processLiteralSOAPOperation(StyleAndUse.RPC_LITERAL);
    }
    // document style
    return processLiteralSOAPOperation(StyleAndUse.DOC_LITERAL);
}