Package org.grails.cxf.utils

Examples of org.grails.cxf.utils.EndpointType


            }
        }
    }

    private void setupExposeViaAnnotation(GrailsCxfEndpoint annotation) {
        EndpointType exposes = annotation.expose();
        try {
            expose = EndpointExposureType.forExpose(exposes.toString());
        } catch(IllegalArgumentException e) {
            log.error("Unsupported endpoint exposure type [" + exposes.toString() + "] for endpoint [" + getFullName() + "].  Using default type.");
        }
    }
View Full Code Here

TOP

Related Classes of org.grails.cxf.utils.EndpointType

Copyright © 2018 www.massapicom. 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.