/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/server/ |
H A D | EndpointAwareCodec.java | 41 * when the codec is associated with an endpoint. 43 void setEndpoint(@NotNull WSEndpoint endpoint); argument
|
H A D | EndpointReferenceExtensionContributor.java | 36 * extensibility elements inside the EndpointReference of the endpoint. If any EPR extensibility elements are configured 37 * for an endpoint, the EndpointReference is published inside the WSDL. 45 * @param extension EPRExtension is passed if an extension with same QName is already configured on the endpoint 50 public abstract WSEndpointReference.EPRExtension getEPRExtension(WSEndpoint endpoint, @Nullable WSEndpointReference.EPRExtension extension ); argument
|
H A D | HttpEndpoint.java | 44 * @param endpoint that needs to be deployed at http server 45 * @return transport object for the endpoint 47 public static HttpEndpoint create(@NotNull WSEndpoint endpoint) { argument 48 return new com.sun.xml.internal.ws.transport.http.server.HttpEndpoint(null, HttpAdapter.createAlone(endpoint)); 52 * Publishes this endpoint at a localhost's http address. 54 * @param address endpoint's http address 60 * Stops the published endpoint
|
H A D | WebServiceContextDelegate.java | 88 * Gets the address of the endpoint. 97 * @param endpoint 98 * The endpoint whose address will be returned. 103 * Absolute URL of the endpoint. This shold be an address that the client 108 @NotNull String getEPRAddress(@NotNull Packet request, @NotNull WSEndpoint endpoint); argument 127 * choose to find the corresponding servlet endpoint by {@link Module#getBoundEndpoints()} 143 * @param endpoint 144 * The endpoint whose address will be returned. 150 @Nullable String getWSDLAddress(@NotNull Packet request, @NotNull WSEndpoint endpoint); argument
|
H A D | Adapter.java | 76 protected final WSEndpoint<?> endpoint; field in class:Adapter 92 this.codec = endpoint.createCodec(); 93 this.head = endpoint.createPipeHead(); 112 * messages to the given endpoint. 114 protected Adapter(WSEndpoint endpoint) { argument 115 assert endpoint!=null; 116 this.endpoint = endpoint; 118 endpoint.getComponentRegistry().add(this); 142 * Gets the endpoint tha [all...] |
H A D | AbstractServerAsyncTransport.java | 47 private final WSEndpoint endpoint; field in class:AbstractServerAsyncTransport 54 * @param endpoint webservices requests are directed towards this endpoint 56 public AbstractServerAsyncTransport(WSEndpoint endpoint) { argument 57 this.endpoint = endpoint; 58 codecPool = new CodecPool(endpoint); 98 * response code needs to be sent before invoking the endpoint. 134 endpoint.schedule(request, new WSEndpoint.CompletionCallback() { 148 WSEndpoint endpoint; field in class:AbstractServerAsyncTransport.CodecPool 150 CodecPool(WSEndpoint endpoint) argument [all...] |
H A D | InstanceResolver.java | 112 * to do a endpoint-specific initialization process. 118 public void start(@NotNull WSWebServiceContext wsc, @NotNull WSEndpoint endpoint) { argument 222 public void start(@NotNull WSWebServiceContext wsc, @NotNull WSEndpoint endpoint) { 223 InstanceResolver.this.start(wsc,endpoint);
|
H A D | Invoker.java | 37 * Hides the detail of calling into application endpoint implementation. 55 * to do a endpoint-specific initialization process. 60 * @param endpoint 62 public void start(@NotNull WSWebServiceContext wsc, @NotNull WSEndpoint endpoint) { argument
|
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/addressing/ |
H A D | EPRSDDocumentFilter.java | 52 * specifc to an endpoint. 57 private final WSEndpointImpl<?> endpoint; field in class:EPRSDDocumentFilter 60 public EPRSDDocumentFilter(@NotNull WSEndpointImpl<?> endpoint) { argument 61 this.endpoint = endpoint; 67 if (endpoint.getServiceName().getLocalPart().equals(serviceName) && endpoint.getPortName().getLocalPart().equals(portName)) 68 return endpoint; 72 Module module = endpoint.getContainer().getSPI(Module.class); 110 private String portAddress; // when a complete epr is written, endpoint addres [all...] |
H A D | W3CWsaServerTube.java | 53 public W3CWsaServerTube(WSEndpoint endpoint, @NotNull WSDLPort wsdlPort, WSBinding binding, Tube next) { argument 54 super(endpoint, wsdlPort, binding, next);
|
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/config/management/ |
H A D | ManagedEndpointFactory.java | 42 * management has not been enabled for this endpoint, it will return the original 45 * @param <T> The endpoint implementation type. 46 * @param endpoint The endpoint instance. 47 * @param attributes The parameters with which the original endpoint instance 52 public <T> WSEndpoint<T> createEndpoint(WSEndpoint<T> endpoint, EndpointCreationAttributes attributes); argument
|
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/server/ |
H A D | AbstractWebServiceContext.java | 50 private final WSEndpoint endpoint; field in class:AbstractWebServiceContext 52 public AbstractWebServiceContext(@NotNull WSEndpoint endpoint) { argument 53 this.endpoint = endpoint; 89 String address = packet.webServiceContextDelegate.getEPRAddress(packet, endpoint); 91 if(endpoint.getServiceDefinition() != null) { 92 wsdlAddress = packet.webServiceContextDelegate.getWSDLAddress(packet,endpoint); 94 return clazz.cast(((WSEndpointImpl)endpoint).getEndpointReference(clazz,address,wsdlAddress, referenceParameters));
|
H A D | SingletonResolver.java | 53 public void start(WSWebServiceContext wsc, WSEndpoint endpoint) { argument 54 getResourceInjector(endpoint).inject(wsc,singleton);
|
H A D | InvokerTube.java | 55 private WSEndpoint endpoint; field in class:InvokerTube 61 public void setEndpoint(WSEndpoint endpoint) { argument 62 this.endpoint = endpoint; 63 WSWebServiceContext webServiceContext = new AbstractWebServiceContext(endpoint) { 69 invoker.start(webServiceContext,endpoint); 73 return endpoint;
|
H A D | AbstractMultiInstanceResolver.java | 81 public void start(WSWebServiceContext wsc, WSEndpoint endpoint) { argument 82 resourceInjector = getResourceInjector(endpoint); 84 this.owner = endpoint;
|
H A D | MonitorRootService.java | 91 @Description("Metro Web Service endpoint") 95 private final WSEndpoint endpoint; field in class:MonitorRootService 97 MonitorRootService(final WSEndpoint endpoint) { argument 98 this.endpoint = endpoint; 108 return endpoint.getPolicyMap() != null ? 109 endpoint.getPolicyMap().toString() : null; 115 return endpoint.getContainer(); 122 return endpoint.getPortName(); 128 return endpoint [all...] |
H A D | ServerSchemaValidationTube.java | 66 public ServerSchemaValidationTube(WSEndpoint endpoint, WSBinding binding, argument 72 if (endpoint.getServiceDefinition() != null) { 73 MetadataResolverImpl mdresolver = new MetadataResolverImpl(endpoint.getServiceDefinition()); 74 Source[] sources = getSchemaSources(endpoint.getServiceDefinition(), mdresolver);
|
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/transport/http/server/ |
H A D | ServerAdapterList.java | 33 protected ServerAdapter createHttpAdapter(String name, String urlPattern, WSEndpoint<?> endpoint) { argument 34 return new ServerAdapter(name, urlPattern, endpoint, this);
|
H A D | ServerAdapter.java | 57 protected ServerAdapter(String name, String urlPattern, WSEndpoint endpoint, ServerAdapterList owner) { argument 58 super(endpoint, owner, urlPattern); 61 Module module = endpoint.getContainer().getSPI(Module.class); 63 LOGGER.warning("Container "+endpoint.getContainer()+" doesn't support "+Module.class); 70 * Gets the name of the endpoint as given in the <tt>sun-jaxws.xml</tt> 80 WebModule webModule = endpoint.getContainer().getSPI(WebModule.class); 83 throw new WebServiceException("Container "+endpoint.getContainer()+" doesn't support "+WebModule.class); 94 throw new WebServiceException("Unable to compute address for "+endpoint,e); 99 endpoint.dispose();
|
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/addressing/v200408/ |
H A D | MemberSubmissionWsaServerTube.java | 46 public MemberSubmissionWsaServerTube(WSEndpoint endpoint, @NotNull WSDLPort wsdlPort, WSBinding binding, Tube next) { argument 47 super(endpoint, wsdlPort, binding, next);
|
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/pipe/ |
H A D | ServerPipeAssemblerContext.java | 47 public ServerPipeAssemblerContext(@Nullable SEIModel seiModel, @Nullable WSDLPort wsdlModel, @NotNull WSEndpoint endpoint, @NotNull Tube terminal, boolean isSynchronous) { argument 48 super(seiModel, wsdlModel, endpoint, terminal, isSynchronous);
|
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/server/provider/ |
H A D | AsyncProviderInvokerTube.java | 59 * invoke() method of {@linke Provider} endpoint. The return value from 117 AsyncWebServiceContext(WSEndpoint endpoint, Packet packet) { argument 118 super(endpoint);
|
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/transport/http/ |
H A D | HttpAdapterList.java | 61 public T createAdapter(String name, String urlPattern, WSEndpoint<?> endpoint) { argument 62 T t = createHttpAdapter(name, urlPattern, endpoint); 64 WSDLPort port = endpoint.getPort(); 76 protected abstract T createHttpAdapter(String name, String urlPattern, WSEndpoint<?> endpoint); argument
|
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/wscompile/ |
H A D | WsgenOptions.java | 186 public Class endpoint; field in class:WsgenOptions 246 endpoint = clazz; 252 BindingID binding = BindingID.parse(endpoint); 256 throw new BadCommandLineException(WscompileMessages.WSGEN_CANNOT_GEN_WSDL_FOR_SOAP_12_BINDING(binding.toString(), endpoint.getName())); 259 throw new BadCommandLineException(WscompileMessages.WSGEN_CANNOT_GEN_WSDL_FOR_NON_SOAP_BINDING(binding.toString(), endpoint.getName()));
|
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/client/p2p/ |
H A D | HttpSOAPConnection.java | 108 log.finest("SAAJ0090.p2p.endpoint.available.only.for.JAXM"); 644 private java.net.HttpURLConnection createConnection(URL endpoint) argument 646 return (HttpURLConnection) endpoint.openConnection();
|