Package org.rhq.core.clientapi.descriptor.plugin.DriftDescriptor

Examples of org.rhq.core.clientapi.descriptor.plugin.DriftDescriptor.Basedir


        template.getConfiguration().put(
            new PropertySimple(DriftConfigurationDefinition.PROP_DESCRIPTION, descriptor.getDescription()));
    }

    private void initBasedir(DriftDescriptor descriptor, DriftDefinitionTemplate template) {
        Basedir basedir = descriptor.getBasedir();
        String valueContext = basedir.getValueContext();
        String valueName = basedir.getValueName();

        PropertyMap basedirMap = new PropertyMap(DriftConfigurationDefinition.PROP_BASEDIR);
        basedirMap.put(new PropertySimple(DriftConfigurationDefinition.PROP_BASEDIR_VALUECONTEXT, valueContext));
        basedirMap.put(new PropertySimple(DriftConfigurationDefinition.PROP_BASEDIR_VALUENAME, valueName));
View Full Code Here

TOP

Related Classes of org.rhq.core.clientapi.descriptor.plugin.DriftDescriptor.Basedir

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.