Package org.apache.muse.ws.resource.sg

Examples of org.apache.muse.ws.resource.sg.Entry


       
        //
        // set the sg entry fields before initializing the entry resource
        //
       
        Entry entry = (Entry)resource.getCapability(WssgConstants.ENTRY_URI);
       
        entry.setServiceGroup(sg);
        entry.setMemberEPR(epr);
       
        try
        {
            resource.initialize();
            manager.addResource(resource.getEndpointReference(), resource);
View Full Code Here


        WsResource[] entries = getEntry();
        Element[] entryXML = new Element[entries.length];
       
        for (int n = 0; n < entries.length; ++n)
        {
            Entry entryCap = (Entry)entries[n].getCapability(WssgConstants.ENTRY_URI);
            entryXML[n] = entryCap.toXML();
        }
       
        return entryXML;
    }
View Full Code Here

TOP

Related Classes of org.apache.muse.ws.resource.sg.Entry

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.