Package com.volantis.devrep.device.api.xml.definitions

Examples of com.volantis.devrep.device.api.xml.definitions.TypeContainer


        }
        if (policy.getUAProfAttribute() != null) {
            buffer.append("    uaProfAttribute=" + policy.getUAProfAttribute() + "\n");
        }

        TypeContainer typeContainer = policy.getTypeContainer();
        if (typeContainer != null) {
            dumpTypeContainer(typeContainer, buffer);
        }
    }
View Full Code Here


            // that the UpdateClient merge report can access it from there
            // rather than using the old JDOM accessor code as it does now.

            // Set the the type
            // Work out the type of the policy.
            final TypeContainer typeContainer = policy.getTypeContainer();
            String typeName = typeContainer.getName();
            Type type = typeContainer.getType();
            if (typeName != null && type == null) {
                // this is a reference to a declared type.
                TypeDeclaration declaration = definitions.getType(typeName);
                if (declaration == null) {
                    throw new RepositoryException(EXCEPTION_LOCALIZER.format(
View Full Code Here

TOP

Related Classes of com.volantis.devrep.device.api.xml.definitions.TypeContainer

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.