View Javadoc

1   /*
2    * Created on 26.04.2005 from Linke
3    *
4    */
5   package net.sf.crispy.impl.xmlrpc;
6   
7   import java.util.List;
8   
9   
10  /**
11   * Service interface, to add, remove or to ask to register services.
12   * 
13   * @author Linke
14   *
15   */
16  public interface XmlRpcAdminService {
17  	
18  	/** Service registrieren. */
19  	public String addService(String pvServiceInterface, String pvImplClass);
20  	
21  	/** Service entfernen. */
22  	public String removeService(String pvServiceInterface);
23  
24  	/** Ob der Service bereits registrieren. */
25  	public Boolean existService(String pvService);
26  	
27  	/** Alle registrieten Service abfragen. */
28  	public List getAllService();
29  	
30  }