Package org.apache.cxf.ws.policy

Examples of org.apache.cxf.ws.policy.PolicyBean


    public Metadata parse(Element element, ParserContext context) {
        MutablePassThroughMetadata factory = context.createMetadata(MutablePassThroughMetadata.class);
        factory.setId(resolveId(element, context) + UUID.randomUUID().toString());

        PolicyBean policyBean = new PolicyBean();
        policyBean.setElement(element);
        factory.setObject(new PassThroughCallable<Object>(policyBean));

        MutableBeanMetadata resourceBean = context.createMetadata(MutableBeanMetadata.class);
        resourceBean.setId(resolveId(element, context));
        resourceBean.setFactoryComponent(factory);
View Full Code Here

TOP

Related Classes of org.apache.cxf.ws.policy.PolicyBean

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.