Examples of OldObjectCreator


Examples of com.volantis.mcs.runtime.policies.asset.OldObjectCreator

    private SelectedVariant createSelectedVariant(
            ActivatedVariablePolicy policy, Variant variant,
            InternalDevice device) {

        OldObjectCreator creator = (OldObjectCreator)
                VARIANT_TYPE_2_OLD_CREATOR.get(variant.getVariantType());
        RepositoryObject oldObject;
        if (creator == null) {
            oldObject = null;
        } else {
            oldObject = creator.createOldObject(policy, variant, device);
        }

        return new SelectedVariantImpl(policy, variant, device, oldObject);
    }
View Full Code Here
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.