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

Examples of org.dmd.dmp.server.servlet.generated.types.SessionRIREF


        super(ai);
    }

    @Override
    protected SessionRIREF getNewHelper(){
        return(new SessionRIREF());
    }
View Full Code Here


        return(false);
    }

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

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

        return(rc);
    }
View Full Code Here

        value.serializeIt(dos);
    }

    @Override
    public SessionRIREF deserializeValue(DmcInputStreamIF dis) throws Exception {
        SessionRIREF rc = new SessionRIREF();
        rc.deserializeIt(dis);
        return(rc);
    }
View Full Code Here

        return(rc);
    }

    @Override
    public SessionRIREF cloneValue(SessionRIREF value){
        return(new SessionRIREF(value));
    }
View Full Code Here

TOP

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

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.