1 19 20 package org.netbeans.modules.j2ee.dd.api.common; 21 27 public interface ServiceRef extends ComponentInterface { 28 29 public static final String SERVICE_REF_NAME = "ServiceRefName"; public static final String SERVICE_INTERFACE = "ServiceInterface"; public static final String WSDL_FILE = "WsdlFile"; public static final String JAXRPC_MAPPING_FILE = "JaxrpcMappingFile"; public static final String SERVICE_QNAME = "ServiceQname"; public static final String PORT_COMPONENT_REF = "PortComponentRef"; public static final String HANDLER = "Handler"; 39 public void setServiceRefName(String value); 40 43 public String getServiceRefName(); 44 47 public void setServiceInterface(String value); 48 51 public String getServiceInterface(); 52 55 public void setWsdlFile(java.net.URI value); 56 59 public java.net.URI getWsdlFile(); 60 63 public void setJaxrpcMappingFile(String value); 64 67 public String getJaxrpcMappingFile(); 68 71 public void setServiceQname(String value); 72 75 public String getServiceQname(); 76 80 public void setPortComponentRef(int index, PortComponentRef valueInterface); 81 85 public PortComponentRef getPortComponentRef(int index); 86 89 public void setPortComponentRef(PortComponentRef[] value); 90 93 public PortComponentRef[] getPortComponentRef(); 94 97 public int sizePortComponentRef(); 98 102 public int addPortComponentRef(PortComponentRef valueInterface); 103 107 public int removePortComponentRef(PortComponentRef valueInterface); 108 112 public void setHandler(int index, ServiceRefHandler valueInterface); 113 117 public ServiceRefHandler getHandler(int index); 118 121 public void setHandler(ServiceRefHandler[] value); 122 125 public ServiceRefHandler[] getHandler(); 126 129 public int sizeHandler(); 130 134 public int addHandler(ServiceRefHandler valueInterface); 135 139 public int removeHandler(ServiceRefHandler valueInterface); 140 141 143 void setMappedName(String value) throws VersionNotSupportedException; 144 String getMappedName() throws VersionNotSupportedException; 145 void setHandlerChains(ServiceRefHandlerChains valueInterface) throws VersionNotSupportedException; 146 ServiceRefHandlerChains getHandlerChains() throws VersionNotSupportedException; 147 PortComponentRef newPortComponentRef() throws VersionNotSupportedException; 148 ServiceRefHandler newServiceRefHandler() throws VersionNotSupportedException; 149 ServiceRefHandlerChains newServiceRefHandlerChains() throws VersionNotSupportedException; 150 151 } | Popular Tags |