bindings/servicemix-http/src/main/java/org/apache/servicemix/http/endpoints/HttpSoapProviderEndpoint.java [80:150]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public Resource getWsdl() {
        return wsdl;
    }

    /**
     * Sets the WSDL document needed by an endpoint.
     * 
     * @param wsdl a <code>Resource</code> containing the WSDL document
     * @org.apache.xbean.Property description= "the URL of the WSDL document defining the endpoint's messages"
     */
    public void setWsdl(Resource wsdl) {
        this.wsdl = wsdl;
    }

    /**
     * Determines if the WSDL will be checked for WS-I basic profile compliance.
     * 
     * @return true if the WSDL is to be validated
     */
    public boolean isValidateWsdl() {
        return validateWsdl;
    }

    /**
     * Specifies if an endpoint's WSDL document should be validated for WS-I basic profile compliance. Validation provides some
     * assurence that the WSDL will be consumable by most Web services. However, validation is expensive.
     * 
     * @param validateWsdl a boolean specifying if the WSDL document is to be validated
     * @org.apache.xbean.Property description="Specifies if the WSDL is checked for WSI-BP compliance. Default is <code>true</code>
     *                            ."
     */
    public void setValidateWsdl(boolean validateWsdl) {
        this.validateWsdl = validateWsdl;
    }

    /**
     * Determines if the endpoint wraps SOAP messages in the JBI wrapper.
     * 
     * @return a boolean specifying if the endpoint uses the JBI wrapper
     */
    public boolean isUseJbiWrapper() {
        return useJbiWrapper;
    }

    /**
     * Specifies if an endpoint wraps SOAP messages in the JBI wrapper.
     * 
     * @param useJbiWrapper a boolean specifying if the endpoint should use the JBI wrapper
     * @org.apache.xbean.Property description="Specifies if the JBI wrapper is sent in the body of the message. Default is
     *                            <code>true</code>."
     */
    public void setUseJbiWrapper(boolean useJbiWrapper) {
        this.useJbiWrapper = useJbiWrapper;
    }
    
    public Policy[] getPolicies() {
        return policies;
    }

    /**
     * Specifies a list of interceptors that will process messages for the endpoint.
     * 
     * @param policies an array of <code>Policy</code> objects
     * @org.apache.xbean.Property description="a list of interceptors that will process messages"
     */
    public void setPolicies(Policy[] policies) {
        this.policies = policies;
    }

    @Override
    public void validate() throws DeploymentException {
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



bindings/servicemix-jms/src/main/java/org/apache/servicemix/jms/endpoints/JmsSoapProviderEndpoint.java [58:114]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public Resource getWsdl() {
        return wsdl;
    }

    /**
    * Specifies the WSDL document describing the service's interface.
    *
    * @param wsdl a <code>Resource</code> containing the WSDL
     */
    public void setWsdl(Resource wsdl) {
        this.wsdl = wsdl;
    }

    public boolean isValidateWsdl() {
        return validateWsdl;
    }

    /**
    * Specifies if the WSDL is checked WSI-BP compliance. Defaults to
    * <code>true</code>.
    *
    * @param validateWsdl the WSDL is validated?
     */
    public void setValidateWsdl(boolean validateWsdl) {
        this.validateWsdl = validateWsdl;
    }

    public boolean isUseJbiWrapper() {
        return useJbiWrapper;
    }

    /**
    * Specifies if the endpoint expects SOAP messages to be wrapped in the JBI 
    * wrapper. Defaults to <code>true</code>.
    *
    * @param useJbiWrapper the endpoint expects the JBI wrapper?
     */
    public void setUseJbiWrapper(boolean useJbiWrapper) {
        this.useJbiWrapper = useJbiWrapper;
    }

    public Policy[] getPolicies() {
        return policies;
    }

    /**
    * Specifies an array of interceptors used to process SOAP messages.
    *
    * @param policies the array of interceptors
     */
    public void setPolicies(Policy[] policies) {
        this.policies = policies;
    }


    @Override
    public void validate() throws DeploymentException {
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



