Searched refs:csf (Results 1 - 20 of 20) sorted by relevance

/openjdk7/jdk/src/share/classes/java/rmi/server/
H A DUnicastRemoteObject.java117 private RMIClientSocketFactory csf = null; field in class:UnicastRemoteObject
158 * @param csf the client-side socket factory for making calls to the
165 RMIClientSocketFactory csf,
170 this.csf = csf;
172 exportObject((Remote) this, port, csf, ssf);
212 if (csf == null && ssf == null) {
215 exportObject((Remote) this, port, csf, ssf);
260 * @param csf the client-side socket factory for making calls to the
268 RMIClientSocketFactory csf,
164 UnicastRemoteObject(int port, RMIClientSocketFactory csf, RMIServerSocketFactory ssf) argument
267 exportObject(Remote obj, int port, RMIClientSocketFactory csf, RMIServerSocketFactory ssf) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/management/remote/rmi/
H A DRMIJRMPServerImpl.java63 * @param csf the client socket factory for the created RMI
78 RMIClientSocketFactory csf,
89 this.csf = csf;
110 if (csf == null && ssf == null) {
113 new UnicastServerRef2(port, csf, ssf).exportObject(obj, null, true);
116 exporter.exportObject(obj, port, csf, ssf);
118 UnicastRemoteObject.exportObject(obj, port, csf, ssf);
196 private final RMIClientSocketFactory csf; field in class:RMIJRMPServerImpl
77 RMIJRMPServerImpl(int port, RMIClientSocketFactory csf, RMIServerSocketFactory ssf, Map<String,?> env) argument
H A DRMIConnectorServer.java756 RMIClientSocketFactory csf = (RMIClientSocketFactory)
760 return new RMIJRMPServerImpl(port, csf, ssf, env);
H A DRMIConnector.java1868 RMIClientSocketFactory csf = liveRef.getClientSocketFactory();
1869 if (csf == null || csf.getClass() != SslRMIClientSocketFactory.class)
/openjdk7/jdk/src/share/classes/sun/rmi/server/
H A DUnicastServerRef2.java66 RMIClientSocketFactory csf,
69 super(new LiveRef(port, csf, ssf));
65 UnicastServerRef2(int port, RMIClientSocketFactory csf, RMIServerSocketFactory ssf) argument
H A DActivatableServerRef.java61 RMIClientSocketFactory csf,
64 super(new LiveRef(port, csf, ssf));
60 ActivatableServerRef(ActivationID id, int port, RMIClientSocketFactory csf, RMIServerSocketFactory ssf) argument
H A DActivation.java305 RMIClientSocketFactory csf,
310 super(port, csf, ssf);
304 SystemRegistryImpl(int port, RMIClientSocketFactory csf, RMIServerSocketFactory ssf, ActivationSystem systemStub) argument
/openjdk7/jdk/src/share/classes/sun/rmi/transport/tcp/
H A DTCPEndpoint.java69 private final RMIClientSocketFactory csf; field in class:TCPEndpoint
167 public TCPEndpoint(String host, int port, RMIClientSocketFactory csf, argument
174 this.csf = csf;
188 RMIClientSocketFactory csf,
199 TCPEndpoint endpointKey = new TCPEndpoint(null, port, csf, ssf);
207 ep = new TCPEndpoint(localHost, port, csf, ssf);
238 ep = new TCPEndpoint(localHost, lastPort, csf, ssf);
322 static void setDefaultPort(int port, RMIClientSocketFactory csf, argument
325 TCPEndpoint endpointKey = new TCPEndpoint(null, 0, csf, ss
187 getLocalEndpoint(int port, RMIClientSocketFactory csf, RMIServerSocketFactory ssf) argument
[all...]
/openjdk7/jdk/test/java/rmi/transport/pinClientSocketFactory/
H A DPinClientSocketFactory.java100 CSF csf = new CSF();
101 Reference<CSF> registryRef = new WeakReference<CSF>(csf);
102 Registry registryStub = LocateRegistry.getRegistry("", PORT, csf);
103 csf = null;
121 csf = ref.get();
122 if (csf != null) {
123 System.err.println("non-null deserialized instance: " + csf);
132 csf = registryRef.get();
133 if (csf != null) {
134 System.err.println("non-null registry instance: " + csf);
[all...]
/openjdk7/jdk/src/share/classes/java/rmi/registry/
H A DLocateRegistry.java130 * use the supplied <code>RMIClientSocketFactory</code> <code>csf</code>
136 * @param csf client-side <code>Socket</code> factory used to
137 * make connections to the registry. If <code>csf</code>
145 RMIClientSocketFactory csf)
177 new TCPEndpoint(host, port, csf, null),
180 (csf == null) ? new UnicastRef(liveRef) : new UnicastRef2(liveRef);
226 * @param csf client-side <code>Socket</code> factory used to
235 RMIClientSocketFactory csf,
239 return new RegistryImpl(port, csf, ssf);
144 getRegistry(String host, int port, RMIClientSocketFactory csf) argument
234 createRegistry(int port, RMIClientSocketFactory csf, RMIServerSocketFactory ssf) argument
/openjdk7/jdk/src/share/classes/java/rmi/activation/
H A DActivatable.java139 * @param csf the client-side socket factory for making calls to the
152 RMIClientSocketFactory csf,
157 id = exportObject(this, location, data, restart, port, csf, ssf);
204 * @param csf the client-side socket factory for making calls to the
212 RMIClientSocketFactory csf,
218 exportObject(this, id, port, csf, ssf);
403 * @param csf the client-side socket factory for making calls to the
417 RMIClientSocketFactory csf,
433 exportObject(obj, id, port, csf, ssf);
502 * @param csf th
148 Activatable(String location, MarshalledObject<?> data, boolean restart, int port, RMIClientSocketFactory csf, RMIServerSocketFactory ssf) argument
211 Activatable(ActivationID id, int port, RMIClientSocketFactory csf, RMIServerSocketFactory ssf) argument
412 exportObject(Remote obj, String location, MarshalledObject<?> data, boolean restart, int port, RMIClientSocketFactory csf, RMIServerSocketFactory ssf) argument
508 exportObject(Remote obj, ActivationID id, int port, RMIClientSocketFactory csf, RMIServerSocketFactory ssf) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jmx/remote/internal/
H A DRMIExporter.java53 RMIClientSocketFactory csf,
51 exportObject(Remote obj, int port, RMIClientSocketFactory csf, RMIServerSocketFactory ssf) argument
/openjdk7/jdk/src/share/classes/sun/management/jmxremote/
H A DSingleEntryRegistry.java54 RMIClientSocketFactory csf,
59 super(port, csf, ssf);
53 SingleEntryRegistry(int port, RMIClientSocketFactory csf, RMIServerSocketFactory ssf, String name, Remote object) argument
H A DConnectorBootstrap.java175 RMIClientSocketFactory csf,
186 if (csf == null && ssf == null) {
189 ref = new UnicastServerRef2(port, csf, ssf);
757 RMIClientSocketFactory csf = null;
761 csf = new SslRMIClientSocketFactory();
769 csf);
791 new SingleEntryRegistry(port, csf, ssf,
173 exportObject(Remote obj, int port, RMIClientSocketFactory csf, RMIServerSocketFactory ssf) argument
/openjdk7/jdk/test/java/rmi/server/RemoteObject/verifyRemoteEquals/
H A DVerifyRemoteEquals.java172 ClientSocketAndFactory csf = (ClientSocketAndFactory) obj;
173 if (getPort() == csf.getPort()) {
/openjdk7/jdk/src/share/classes/sun/rmi/transport/
H A DLiveRef.java82 RMIClientSocketFactory csf,
85 this((new ObjID()), port, csf, ssf);
100 public LiveRef(ObjID objID, int port, RMIClientSocketFactory csf, argument
103 this(objID, TCPEndpoint.getLocalEndpoint(port, csf, ssf), true);
81 LiveRef(int port, RMIClientSocketFactory csf, RMIServerSocketFactory ssf) argument
/openjdk7/jdk/test/javax/management/remote/mandatory/connectorServer/
H A DRMIExporterTest.java61 RMIClientSocketFactory csf,
72 return UnicastRemoteObject.exportObject(obj, port, csf, ssf);
59 exportObject(Remote obj, int port, RMIClientSocketFactory csf, RMIServerSocketFactory ssf) argument
/openjdk7/jdk/test/javax/rmi/ssl/
H A DSSLSocketParametersTest.java47 RMIClientSocketFactory csf,
50 super(port, csf, ssf);
46 HelloImpl(int port, RMIClientSocketFactory csf, RMIServerSocketFactory ssf) argument
/openjdk7/jdk/src/share/classes/sun/rmi/registry/
H A DRegistryImpl.java93 RMIClientSocketFactory csf,
97 LiveRef lref = new LiveRef(id, port, csf, ssf);
92 RegistryImpl(int port, RMIClientSocketFactory csf, RMIServerSocketFactory ssf) argument
/openjdk7/jdk/src/share/classes/sun/tools/jconsole/
H A DProxyClient.java186 RMIClientSocketFactory csf = liveRef.getClientSocketFactory();
187 if (csf == null || csf.getClass() != SslRMIClientSocketFactory.class) {

Completed in 65 milliseconds