Package org.dmd.dmp.server.servlet.generated.types

Source Code of org.dmd.dmp.server.servlet.generated.types.DmcTypePluginConfigREF

//  ---------------------------------------------------------------------------
//  dark-matter-data
//  Copyright (c) 2012 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.dmp.server.servlet.generated.types;

import org.dmd.dmc.DmcAttributeInfo;
import org.dmd.dmc.DmcValueException;
import org.dmd.dmc.DmcOutputStreamIF;
import org.dmd.dmc.DmcInputStreamIF;
import org.dmd.dmc.types.DmcTypeNamedObjectREF;
import org.dmd.dmc.types.CamelCaseName;

import org.dmd.dmp.server.servlet.generated.types.PluginConfigREF;

import org.dmd.dmp.server.servlet.generated.dmo.PluginConfigDMO;

/**
* This is the generated DmcAttribute derivative for values of type PluginConfig
* <P>
* Generated from the dmp.server schema at version unknown
* <P>
* This code was auto-generated by the dmogenerator utility and shouldn't be alterred manually!
* Generated from: org.dmd.dms.util.DmoTypeFormatter.dumpNamedREFHelperType(DmoTypeFormatter.java:585)
*/
@SuppressWarnings("serial")
abstract public class DmcTypePluginConfigREF extends DmcTypeNamedObjectREF<PluginConfigREF, CamelCaseName> {

    public DmcTypePluginConfigREF(){
   
    }

    public DmcTypePluginConfigREF(DmcAttributeInfo ai){
        super(ai);
    }

    @Override
    protected PluginConfigREF getNewHelper(){
        return(new PluginConfigREF());
    }

    @Override
    protected CamelCaseName getNewName(){
        return(new CamelCaseName());
    }

    @Override
    protected String getDMOClassName(){
        return( PluginConfigDMO.class.getName());
    }

    @Override
    protected boolean isDMO(Object value){
        if (value instanceof PluginConfigDMO)
            return(true);
        return(false);
    }

    @Override
    protected PluginConfigREF typeCheck(Object value) throws DmcValueException {
        PluginConfigREF rc = null;

        if (value instanceof PluginConfigREF)
            rc = (PluginConfigREF)value;
        else if (value instanceof PluginConfigDMO)
            rc = new PluginConfigREF((PluginConfigDMO)value);
        else if (value instanceof CamelCaseName)
            rc = new PluginConfigREF((CamelCaseName)value);
        else if (value instanceof String)
            rc = new PluginConfigREF((String)value);
        else
            throw(new DmcValueException("Object of class: " + value.getClass().getName() + " passed where object compatible with PluginConfigREF, PluginConfigDMO or String expected."));

        return(rc);
    }

    @Override
    public void serializeValue(DmcOutputStreamIF dos, PluginConfigREF value) throws Exception {
        value.serializeIt(dos);
    }

    @Override
    public PluginConfigREF deserializeValue(DmcInputStreamIF dis) throws Exception {
        PluginConfigREF rc = new PluginConfigREF();
        rc.deserializeIt(dis);
        return(rc);
    }

    @Override
    public PluginConfigREF cloneValue(PluginConfigREF value){
        return(new PluginConfigREF(value));
    }



}
TOP

Related Classes of org.dmd.dmp.server.servlet.generated.types.DmcTypePluginConfigREF

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.