Package org.apache.synapse.rest

Examples of org.apache.synapse.rest.Resource


public class ResourceFactory {

    private static final Log log = LogFactory.getLog(ResourceFactory.class);

    public static Resource createResource(OMElement resourceElt) {
        Resource resource = new Resource();
        configureURLMappings(resource, resourceElt);
        configureSequences(resource, resourceElt);
        configureFilters(resource, resourceElt);
        return resource;
    }
View Full Code Here

TOP

Related Classes of org.apache.synapse.rest.Resource

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.