Package models.data

Examples of models.data.NodeGroupSourceMetadata


      isTxtFqdnOnly = false;
    }

    try {
      NodeGroupProvider ngp = NodeGroupProvider.getInstance();
      NodeGroupSourceMetadata nodeGroupSourceMetadata = ngp
          .getNodeGroupSourceMetadata(isAdhoc, nodeGroupType);

      if (isTxtFqdnOnly) {
        /**
         * 20130925: add for adhoc ones; which better read from file if
         * not in memory
         */
        if (nodeGroupSourceMetadata == null) {
          // try read from file

          // TODO if fqdn only; need to map this back to
          renderText(LogProvider
              .genFilePathAndReadLogAdhocComponents(
                  ADHOC_COMPONENT_TYPE.NODE_GROUP,
                  nodeGroupType));
        } else {

          renderText(AgentUtils
              .cleanDisplayStringListLineByLineFromJavaStringList(nodeGroupSourceMetadata
                  .getNodeList()));
        }

      } else {
        /**
 
View Full Code Here

TOP

Related Classes of models.data.NodeGroupSourceMetadata

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.