01: /*
02: * SOAPAddress.java
03: *
04: * Created on September 22, 2006, 7:06 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.extensions.soap;
11:
12: import org.netbeans.modules.e2e.api.wsdl.extensions.ExtensibilityElement;
13:
14: /**
15: *
16: * @author Michal Skvor
17: */
18: public interface SOAPAddress extends ExtensibilityElement {
19:
20: public void setLocationURI(String locationURI);
21:
22: public String getLocationURI();
23: }
|