Package org.jboss.ws.api.annotation

Examples of org.jboss.ws.api.annotation.WebContext.secureWSDLAccess()


     * @param endpoint EJB webservice endpoint
     * @return whether WSDL access have to be secured
     */
    public boolean isSecureWsdlAccess(final Endpoint endpoint) {
        final WebContext webContext = this.getWebContextAnnotation(endpoint);
        final boolean hasSecureWsdlAccess = (webContext != null) && (webContext.secureWSDLAccess());

        return hasSecureWsdlAccess ? true : super.isSecureWsdlAccess(endpoint);
    }

    /**
 
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.