Package org.apache.ambari.server.state.stack

Examples of org.apache.ambari.server.state.stack.ConfigurationXml


  }

  private List<PropertyInfo> getProperties(File propertyFile) {
   
    try {
      ConfigurationXml cx = unmarshal(ConfigurationXml.class, propertyFile);

      List<PropertyInfo> list = new ArrayList<PropertyInfo>();
     
      for (PropertyInfo pi : cx.getProperties()) {
        // maintain old behavior
        if (null == pi.getValue() || pi.getValue().isEmpty())
          continue;
       
        pi.setFilename(propertyFile.getName());
View Full Code Here

TOP

Related Classes of org.apache.ambari.server.state.stack.ConfigurationXml

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.