Package org.dmd.dmr.shared.ldap.generated.types

Source Code of org.dmd.dmr.shared.ldap.generated.types.LDAPHierarchicObjectREF

//  ---------------------------------------------------------------------------
//  dark-matter-data
//  Copyright (c) 2010 dark-matter-data committers
//  ---------------------------------------------------------------------------
//  This program is free software; you can redistribute it and/or modify it
//  under the terms of the GNU Lesser General Public License as published by the
//  Free Software Foundation; either version 3 of the License, or (at your
//  option) any later version.
//  This program is distributed in the hope that it will be useful, but WITHOUT
//  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
//  FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for
//  more details.
//  You should have received a copy of the GNU Lesser General Public License along
//  with this program; if not, see <http://www.gnu.org/licenses/lgpl.html>.
//  ---------------------------------------------------------------------------
package org.dmd.dmr.shared.ldap.generated.types;

import org.dmd.dmc.DmcAttribute;
import org.dmd.dmc.DmcAttributeInfo;
import org.dmd.dmc.DmcObjectName;
import org.dmd.dmc.DmcValueException;
import org.dmd.dmc.DmcOutputStreamIF;
import org.dmd.dmc.DmcInputStreamIF;
import org.dmd.dmc.DmcNamedObjectNontransportableREF; // base import
import org.dmd.dmr.shared.ldap.generated.dmo.LDAPHierarchicObjectDMO; // primitive type
import org.dmd.dmc.types.FullyQualifiedName;
import org.dmd.dms.generated.types.DmcTypeFullyQualifiedNameSV;

import org.dmd.dms.generated.enums.ValueTypeEnum;
import org.dmd.dms.generated.enums.DataTypeEnum;
/**
* This is the generated DmcAttribute derivative for values of type LDAPHierarchicObject
* <P>
* Generated from the dmr.ldap schema at version 0.1
* <P>
* This code was auto-generated by the dmogenerator utility and shouldn't be alterred manually!
* Generated from: org.dmd.dms.util.DmoTypeFormatter.dumpNamedREF(DmoTypeFormatter.java:420)
*/
@SuppressWarnings("serial")
public class LDAPHierarchicObjectREF extends DmcNamedObjectNontransportableREF<LDAPHierarchicObjectDMO> {

    public final static DmcAttributeInfo __FQN = new DmcAttributeInfo("FQN",84,"FullyQualifiedName",ValueTypeEnum.SINGLE,DataTypeEnum.PERSISTENT);
   
    DmcTypeFullyQualifiedNameSV myName;   
   
    public LDAPHierarchicObjectREF(){
    }

    public LDAPHierarchicObjectREF(LDAPHierarchicObjectDMO o){
         object = o;
         myName = (DmcTypeFullyQualifiedNameSV)o.getObjectNameAttribute();
    }

    public LDAPHierarchicObjectREF(FullyQualifiedName n) throws DmcValueException {
         object = null;
         myName = new DmcTypeFullyQualifiedNameSV(__FQN);
         myName.set(n);
    }

    public LDAPHierarchicObjectREF(String n) throws DmcValueException {
         object = null;
         myName = new DmcTypeFullyQualifiedNameSV(__FQN);
         myName.set(n);
    }

    public LDAPHierarchicObjectREF(LDAPHierarchicObjectREF original){
        myName = original.myName;
        object = original.object;
    }

    public void setObject(LDAPHierarchicObjectDMO o){
         object = o;
         if (object != null)
             myName = (DmcTypeFullyQualifiedNameSV)o.getObjectNameAttribute();
    }

    /**
     * Clones this reference.
     */
    public LDAPHierarchicObjectREF cloneMe(){
        LDAPHierarchicObjectREF rc = new LDAPHierarchicObjectREF();
        rc.myName = myName;
        rc.object = object;
        return(rc);
    }

    @Override
    public void setName(DmcObjectName n) throws DmcValueException {
        if (myName == null)
            myName = new DmcTypeFullyQualifiedNameSV(__FQN);
        myName.set(n);
    }

    @Override
    public DmcObjectName getObjectName(){
        if (myName == null)
            throw(new IllegalStateException("You've tried to access the name of an object but the name attribute hasn't been set."));
       
        return(myName.getSV());
    }

    public FullyQualifiedName getName(){
        if (myName == null)
            throw(new IllegalStateException("You've tried to access the name of an object but the name attribute hasn't been set."));
       
        return(myName.getSV());
    }

    @Override
    public DmcAttribute<?> getObjectNameAttribute(){
        if (myName == null)
            throw(new IllegalStateException("You've tried to access the name of an object but the name attribute hasn't been set."));
       
        return(myName);
    }

    public void serializeIt(DmcOutputStreamIF dos) throws Exception {
        myName.serializeIt(dos);
    }

    public void deserializeIt(DmcInputStreamIF dis) throws Exception {
        myName = (DmcTypeFullyQualifiedNameSV) dis.getAttributeInstance();
        myName.deserializeIt(dis);
    }

}
TOP

Related Classes of org.dmd.dmr.shared.ldap.generated.types.LDAPHierarchicObjectREF

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.