Package org.cishell.remoting.service.framework

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


     * @see org.cishell.remoting.service.framework.ObjectClassDefinitionRegistry#getAttributeDefinitions(String, int)
     */
    public Vector getAttributeDefinitions(String ocdID, int filter) {
        AttributeDefinition[] attrs = getObjectClassDefinition(ocdID).getAttributeDefinitions(filter);
        Vector attrIDs = null;
        AttributeDefinitionRegistry attrRegistry =
            (AttributeDefinitionRegistry) attrReg.getService();
       
        if (attrs != null && attrReg != null) {
            attrIDs = new Vector(attrs.length);
           
            for (int i=0; i < attrs.length; i++) {
                attrIDs.add(attrRegistry.registerAttributeDefinition(attrs[i]));
            }
        }
       
        return attrIDs;
    }
View Full Code Here

TOP

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

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.