Package org.cishell.remoting.service.framework

Examples of org.cishell.remoting.service.framework.ObjectClassDefinitionRegistry


     */
    public String getObjectClassDefinition(String providerID, String id,
            String locale) {
        String ocdID = "-1";
        MetaTypeProvider provider = getMetaTypeProvider(providerID);
        ObjectClassDefinitionRegistry ocdRegistry =
            (ObjectClassDefinitionRegistry) ocdReg.getService();
       
        if (provider != null && ocdRegistry != null) {
            ObjectClassDefinition ocd = provider.getObjectClassDefinition(id, locale);
           
            if (ocd != null) {
                ocdID = ocdRegistry.registerObjectClassDefinition(ocd);
            }
        }
       
        return ocdID;
    }
View Full Code Here

TOP

Related Classes of org.cishell.remoting.service.framework.ObjectClassDefinitionRegistry

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.