01: /*
02: * Service.java
03: *
04: * Created on September 22, 2006, 6:37 PM
05: *
06: * To change this template, choose Tools | Template Manager
07: * and open the template in the editor.
08: */
09:
10: package org.netbeans.modules.e2e.api.wsdl;
11:
12: import java.util.List;
13: import javax.xml.namespace.QName;
14:
15: /**
16: *
17: * @author Michal Skvor
18: */
19: public interface Service {
20:
21: public void setName(String name);
22:
23: public String getName();
24:
25: public void addPort(Port port);
26:
27: public Port getPort(String name);
28:
29: public List<Port> getPorts();
30: }
|