Searched defs:connectionId (Results 1 - 11 of 11) sorted by relevance

/openjdk7/jdk/src/share/classes/com/sun/jmx/remote/security/
H A DNotificationAccessController.java53 * @param connectionId the {@code connectionId} of the remote client
62 public void addNotificationListener(String connectionId, argument
74 * @param connectionId the {@code connectionId} of the remote client
83 public void removeNotificationListener(String connectionId, argument
94 * @param connectionId the {@code connectionId} of the remote client
105 public void fetchNotification(String connectionId, argument
/openjdk7/jdk/src/share/classes/javax/management/remote/
H A DJMXConnectionNotification.java131 * @param connectionId the ID of the connection within its
146 * <code>source</code>, or <code>connectionId</code> is null.
153 String connectionId,
168 if (type == null || source == null || connectionId == null)
172 this.connectionId = connectionId;
189 return connectionId;
196 private final String connectionId; field in class:JMXConnectionNotification
151 JMXConnectionNotification(String type, Object source, String connectionId, long sequenceNumber, String message, Object userData) argument
H A DJMXConnectorServer.java208 * Adds <code>connectionId</code> to the list returned by {@link
213 * @param connectionId the ID of the new connection. This must be
225 * @exception NullPointerException if <code>connectionId</code> is
228 protected void connectionOpened(String connectionId, argument
232 if (connectionId == null)
236 connectionIds.add(connectionId);
239 sendNotification(JMXConnectionNotification.OPENED, connectionId,
245 * normally. Removes <code>connectionId</code> from the list returned
250 * @param connectionId the ID of the closed connection.
260 * @exception NullPointerException if <code>connectionId</cod
263 connectionClosed(String connectionId, String message, Object userData) argument
298 connectionFailed(String connectionId, String message, Object userData) argument
313 sendNotification(String type, String connectionId, String message, Object userData) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/management/remote/rmi/
H A DRMIIIOPServerImpl.java100 * @param connectionId the ID of the new connection. Every
112 protected RMIConnection makeClient(String connectionId, Subject subject) argument
115 if (connectionId == null)
116 throw new NullPointerException("Null connectionId");
119 new RMIConnectionImpl(this, connectionId, getDefaultClassLoader(),
H A DRMIJRMPServerImpl.java154 * @param connectionId the ID of the new connection. Every
166 protected RMIConnection makeClient(String connectionId, Subject subject) argument
169 if (connectionId == null)
170 throw new NullPointerException("Null connectionId");
173 new RMIConnectionImpl(this, connectionId, getDefaultClassLoader(),
H A DRMIServerImpl.java245 final String connectionId = makeConnectionId(getProtocol(), subject);
248 logger.trace("newClient","making new connection: " + connectionId);
250 RMIConnection client = makeClient(connectionId, subject);
258 connServer.connectionOpened(connectionId, "Connection opened", null);
268 logger.trace("newClient","new connection done: " + connectionId );
277 * @param connectionId the ID of the new connection. Every
289 protected abstract RMIConnection makeClient(String connectionId, argument
507 logger.trace("newConnectionId","connectionId="+buf);
H A DRMIConnectorServer.java606 protected void connectionOpened(String connectionId, String message, argument
608 super.connectionOpened(connectionId, message, userData);
612 protected void connectionClosed(String connectionId, String message, argument
614 super.connectionClosed(connectionId, message, userData);
618 protected void connectionFailed(String connectionId, String message, argument
620 super.connectionFailed(connectionId, message, userData);
H A DRMIConnectionImpl.java110 * @param connectionId The ID for this connection. The behavior
123 String connectionId,
127 if (rmiServer == null || connectionId == null)
132 this.connectionId = connectionId;
205 connectionId);
211 return connectionId;
272 "connectionId=" + connectionId +", className=" +
316 "connectionId
122 RMIConnectionImpl(RMIServerImpl rmiServer, String connectionId, ClassLoader defaultClassLoader, Subject subject, Map<String,?> env) argument
1714 private final String connectionId; field in class:RMIConnectionImpl
[all...]
H A DRMIConnector.java332 // The connectionId variable is used in doStart(), when
335 connectionId = getConnectionId();
340 connectionId,
475 savedConnectionId = connectionId;
1453 connectionId,
1496 connectionId,
1637 connectionId = getConnectionId();
1642 connectionId,
2539 private transient String connectionId; field in class:RMIConnector
/openjdk7/jdk/test/javax/management/remote/mandatory/notif/
H A DNotificationAccessControllerTest.java64 String connectionId,
69 echo("\tconnectionId: " + connectionId);
80 String connectionId,
85 echo("\tconnectionId: " + connectionId);
96 String connectionId,
102 echo("\tconnectionId: " + connectionId);
63 addNotificationListener( String connectionId, ObjectName name, Subject subject) argument
79 removeNotificationListener( String connectionId, ObjectName name, Subject subject) argument
95 fetchNotification( String connectionId, ObjectName name, Notification notification, Subject subject) argument
/openjdk7/jdk/src/share/classes/com/sun/jmx/remote/internal/
H A DServerNotifForwarder.java66 String connectionId) {
69 this.connectionId = connectionId;
94 connectionId, name, getSubject());
164 connectionId, name, getSubject());
412 connectionId, name, tn.getNotification(), getSubject());
479 private final String connectionId; field in class:ServerNotifForwarder
63 ServerNotifForwarder(MBeanServer mbeanServer, Map<String, ?> env, NotificationBuffer notifBuffer, String connectionId) argument

Completed in 517 milliseconds