Searched refs:Endpoint (Results 1 - 19 of 19) sorted by relevance

/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/ws/
H A DEndpointContext.java28 import javax.xml.ws.Endpoint;
41 * This needs to be set by using {@link Endpoint#setEndpointContext}
42 * before {@link Endpoint#publish} methods.
57 public abstract Set<Endpoint> getEndpoints();
H A DEndpoint.java72 public abstract class Endpoint { class
91 * one of the {@link javax.xml.ws.Endpoint#publish(String)} and
92 * {@link javax.xml.ws.Endpoint#publish(Object)} methods.
100 public static Endpoint create(Object implementor) {
111 * one of the {@link javax.xml.ws.Endpoint#publish(String)} and
112 * {@link javax.xml.ws.Endpoint#publish(Object)} methods.
125 public static Endpoint create(Object implementor, WebServiceFeature ... features) {
134 * one of the {@link javax.xml.ws.Endpoint#publish(String)} and
135 * {@link javax.xml.ws.Endpoint#publish(Object)} methods.
146 public static Endpoint creat
[all...]
/openjdk7/jdk/src/share/classes/sun/rmi/transport/
H A DChannel.java41 public Endpoint getEndpoint();
H A DEndpoint.java32 public interface Endpoint { interface
H A DConnectionInputStream.java46 private Map<Endpoint, List<LiveRef>> incomingRefTable = new HashMap<>(5);
70 Endpoint ep = ref.getEndpoint();
92 for (Map.Entry<Endpoint, List<LiveRef>> entry :
H A DLiveRef.java46 private final Endpoint ep;
63 public LiveRef(ObjID objID, Endpoint endpoint, boolean isLocal) {
161 Endpoint getEndpoint() {
286 Endpoint ep;
H A DTransport.java79 public abstract Channel getChannel(Endpoint ep);
85 public abstract void free(Endpoint ep);
H A DDGCClient.java128 static void registerRefs(Endpoint ep, List<LiveRef> refs) {
167 * to a particular Endpoint. Of most significance is the table that
174 private Endpoint endpoint;
207 /** global endpoint table: maps Endpoint to EndpointEntry */
208 private static Map<Endpoint,EndpointEntry> endpointTable = new HashMap<>(5);
213 * Look up the EndpointEntry for the given Endpoint. An entry is
216 public static EndpointEntry lookup(Endpoint ep) {
237 private EndpointEntry(final Endpoint endpoint) {
/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/ws/spi/http/
H A DHttpHandler.java28 import javax.xml.ws.Endpoint;
36 * {@link Endpoint#publish(HttpContext) }
H A DHttpContext.java28 import javax.xml.ws.Endpoint;
48 * {@link Endpoint#publish(HttpContext)} to handle
68 * Endpoint's address for this context can be computed as follows:
/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/ws/spi/
H A DProvider.java41 * <code>Endpoint</code> objects.
218 public abstract Endpoint createEndpoint(String bindingId,
236 public abstract Endpoint createAndPublishEndpoint(String address,
472 public Endpoint createAndPublishEndpoint(String address,
493 public Endpoint createEndpoint(String bindingId, Object implementor,
501 * this to create Endpoint objects. <code>Provider</code>
516 public Endpoint createEndpoint(String bindingId, Class<?> implementorClass,
/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/ws/soap/
H A DAddressingFeature.java29 import javax.xml.ws.Endpoint;
39 * {@link Dispatch} instances on the client side and {@link Endpoint}
H A DMTOMFeature.java31 import javax.xml.ws.Endpoint;
39 * {@link Dispatch} instances on the client side and {@link Endpoint}
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/spi/
H A DProviderImpl.java58 import javax.xml.ws.Endpoint;
88 public Endpoint createEndpoint(String bindingId, Object implementor) {
108 public Endpoint createAndPublishEndpoint(String address,
110 Endpoint endpoint = new EndpointImpl(
117 public Endpoint createEndpoint(String bindingId, Object implementor, WebServiceFeature... features) {
123 public Endpoint createAndPublishEndpoint(String address, Object implementor, WebServiceFeature... features) {
124 Endpoint endpoint = new EndpointImpl(
130 public Endpoint createEndpoint(String bindingId, Class implementorClass, Invoker invoker, WebServiceFeature... features) {
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/transport/http/server/
H A DEndpointImpl.java69 * Implements {@link Endpoint}.
81 public class EndpointImpl extends Endpoint {
207 throw new IllegalStateException("Cannot set Metadata. Endpoint is already published");
249 getProperty(QName.class, Endpoint.WSDL_SERVICE),
250 getProperty(QName.class, Endpoint.WSDL_PORT),
321 "Cannot publish this endpoint. Endpoint has been already published.");
325 "Cannot publish this endpoint. Endpoint has been already stopped.");
335 throw new WebServiceException("Endpoint is not published yet");
348 for(Endpoint e : endpointContext.getEndpoints()) {
367 for(Endpoint
[all...]
/openjdk7/jdk/test/java/rmi/testlibrary/
H A DTestLibrary.java60 import sun.rmi.transport.Endpoint;
371 Endpoint endpoint = liveRef.getChannel().getEndpoint();
/openjdk7/jdk/src/share/classes/sun/rmi/transport/tcp/
H A DTCPChannel.java49 import sun.rmi.transport.Endpoint;
120 public Endpoint getEndpoint() {
H A DTCPTransport.java70 import sun.rmi.transport.Endpoint;
190 public TCPChannel getChannel(Endpoint ep) {
213 public void free(Endpoint ep) {
H A DTCPEndpoint.java50 import sun.rmi.transport.Endpoint;
63 public class TCPEndpoint implements Endpoint {

Completed in 97 milliseconds