Package de.danet.an.workflow.rmsimpls.eisrms.aci

Examples of de.danet.an.workflow.rmsimpls.eisrms.aci.RmsConnection.selectResources()


    public Collection selectResources (Object resSel)
  throws RemoteException, UnsupportedOperationException {
        RmsConnection con = null;
        try {
            con = conFac.getConnection();
            Collection resRaw = con.selectResources(resSel);
            Collection res = new ArrayList ();
            for (Iterator i = resRaw.iterator(); i.hasNext();) {
                RmsEntry e = (RmsEntry)i.next();
                addAsTyped(res, e);
            }
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.