1 19 24 25 package org.netbeans.modules.j2ee.sun.dd.api.common; 26 27 import org.netbeans.modules.j2ee.sun.dd.api.VersionNotSupportedException; 28 29 33 public interface PortInfo extends org.netbeans.modules.j2ee.sun.dd.api.CommonDDBean { 34 35 public static final String VERSION_SERVER_8_0 = "Server 8.0"; 36 37 public static final String SERVICE_ENDPOINT_INTERFACE = "ServiceEndpointInterface"; public static final String WSDL_PORT = "WsdlPort"; public static final String STUB_PROPERTY = "StubProperty"; public static final String CALL_PROPERTY = "CallProperty"; public static final String MESSAGE_SECURITY_BINDING = "MessageSecurityBinding"; 43 44 47 public void setServiceEndpointInterface(java.lang.String value); 48 51 public java.lang.String getServiceEndpointInterface(); 52 55 public void setWsdlPort(WsdlPort value); 56 59 public WsdlPort getWsdlPort(); 60 public WsdlPort newWsdlPort(); 61 62 public StubProperty[] getStubProperty(); 63 public StubProperty getStubProperty(int index); 64 public void setStubProperty(StubProperty[] value); 65 public void setStubProperty(int index, StubProperty value); 66 public int addStubProperty(StubProperty value); 67 public int removeStubProperty(StubProperty value); 68 public int sizeStubProperty(); 69 public StubProperty newStubProperty(); 70 71 public CallProperty[] getCallProperty(); 72 public CallProperty getCallProperty(int index); 73 public void setCallProperty(CallProperty[] value); 74 public void setCallProperty(int index, CallProperty value); 75 public int addCallProperty(CallProperty value); 76 public int removeCallProperty(CallProperty value); 77 public int sizeCallProperty(); 78 public CallProperty newCallProperty(); 79 80 84 public void setMessageSecurityBinding(MessageSecurityBinding value) throws VersionNotSupportedException; 85 88 public MessageSecurityBinding getMessageSecurityBinding() throws VersionNotSupportedException; 89 90 public MessageSecurityBinding newMessageSecurityBinding() throws VersionNotSupportedException; 91 } 92 | Popular Tags |