Examples of DescriptorEnvelope


Examples of org.openxri.store.StoreLookup.DescriptorEnvelope

        {
            // try to get the descriptor from the local store.
            String sSubSegment = oSegment.getSubSegmentAt(i).toString();
            try
            {
                DescriptorEnvelope oResult =
                    moStore.lookup(sCurrentID, sSubSegment, bSigned);
                sCurrentID = oResult.getNextAuthorityID();
                String sCurrentDescriptor = oResult.getDescriptor();
                if (
                    (sCurrentDescriptor != null) &&
                    (sCurrentDescriptor.length() > 0))
                {
                    oBuffer.append(sCurrentDescriptor);
View Full Code Here

Examples of org.openxri.store.StoreLookup.DescriptorEnvelope

    * @return Envelope bean
    */
    public static DescriptorEnvelope toEnvelope(
        org.openxri.iiop.admin.DescriptorEnvelope oIIOPEnv)
    {
        DescriptorEnvelope oEnv = new DescriptorEnvelope();
        oEnv.setDescriptor(oIIOPEnv.descriptor);
        oEnv.setNextAuthorityID(oIIOPEnv.localauthorityid);
        return oEnv;

    } // toEnvelope()
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.