Package org.serviceconnector.service

Examples of org.serviceconnector.service.Service.dump()


  public void dump(XMLDumpWriter writer) throws Exception {
    writer.writeStartElement("services");
    Set<Entry<String, Service>> serviceEntries = this.registryMap.entrySet();
    for (Entry<String, Service> serviceEntry : serviceEntries) {
      Service service = serviceEntry.getValue();
      service.dump(writer);
    }
    writer.writeEndElement(); // end of services
  }
}
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.