Package com.ytec.jdap.reader.impl

Examples of com.ytec.jdap.reader.impl.XmlReaderW3C


  private static IDataReader dataReader;

  public static IDataReader getReader() {
    synchronized (IDataReader.class) {
      if (dataReader == null) {
        dataReader = new XmlReaderW3C();
      }
      return dataReader;
    }
  }
View Full Code Here


  /**
   * @param args
   */
  public static void main(String[] args) {

    XmlReaderW3C xmlReaderW3C = new XmlReaderW3C();

    Application application = new Application();
    Map<String, String> map = new HashMap<String, String>();
    map.put("jvm", "-Xms256m");
    map.put("port", "12888");
    application.setId(System.currentTimeMillis() + "");
    application.setName("MUSEһ������");
    application.setParams(map);

    // xmlReaderW3C.addApp(application);
    // xmlReaderW3C.removeApp(application);
    // List<Application> list = xmlReaderW3C.getAppList();
    // list.size();

    // Application app = xmlReaderW3C.getAppById("1344067790421");
    // app.getParams();

    Server server;
    try {
      server = xmlReaderW3C.getServer();
      server.getDeployPath();
    } catch (Exception e) {
    }
   
  }
View Full Code Here

TOP

Related Classes of com.ytec.jdap.reader.impl.XmlReaderW3C

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.