1 /** 2 * 3 */ 4 package org.sirius.server; 5 6 import javax.jws.WebService; 7 import javax.xml.ws.Endpoint; 8 9 /** 10 * @author KaNoN 11 * 12 */ 13 @WebService 14 public class Internal { 15 16 17 public void stop(){ 18 for(Endpoint endpoint:Starter.getEndpoints()){ 19 endpoint.stop(); 20 } 21 Starter.getEndpoints().removeAll(Starter.getEndpoints()); 22 } 23 }