mx4j/src/core/javax/management/remote JMXAuthenticator.java,1.1,1.2 JMXConnectionNotification.java,1.4,1.5 JMXConnector.java,1.4,1.5 JMXConnectorFactory.java,1.8,1.9 JMXConnectorProvider.java,1.3,1.4 JMXConnectorServer.java,1.7,1.8 JMXConnectorServerFactory.java,1.4,1.5 JMXConnectorServerMBean.java,1.3,1.4 JMXConnectorServerProvider.java,1.1,1.2 JMXPrincipal.java,1.4,1.5 JMXProviderException.java,1.3,1.4 JMXServerErrorException.java,1.3,1.4 JMXServiceURL.java,1.10,1.11 MBeanServerForwarder.java,1.1,1.2 NotificationResult.java,1.2,1.3 SubjectDelegationPermission.java,1.1,1.2 TargetedNotification.java,1.2,1.3
Simone Bordet <[email protected]> Sat, 04 Sep 2004 15:44:08 +0000
| Newsgroups | gmane.comp.java.mx4j.cvs |
|---|---|
| Message-ID | <[email protected]> |
Update of /cvsroot/mx4j/mx4j/src/core/javax/management/remote In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13665/src/core/javax/management/remote Modified Files: JMXAuthenticator.java JMXConnectionNotification.java JMXConnector.java JMXConnectorFactory.java JMXConnectorProvider.java JMXConnectorServer.java JMXConnectorServerFactory.java JMXConnectorServerMBean.java JMXConnectorServerProvider.java JMXPrincipal.java JMXProviderException.java JMXServerErrorException.java JMXServiceURL.java MBeanServerForwarder.java NotificationResult.java SubjectDelegationPermission.java TargetedNotification.java Log Message: Updated copyright notice to be: Copyright (C) The MX4J Contributors Index: JMXPrincipal.java =================================================================== RCS file: /cvsroot/mx4j/mx4j/src/core/javax/management/remote/JMXPrincipal.java,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** JMXPrincipal.java 26 Oct 2003 03:12:24 -0000 1.4 --- JMXPrincipal.java 4 Sep 2004 15:44:06 -0000 1.5 *************** *** 1,4 **** /* ! * Copyright (C) MX4J. * All rights reserved. * --- 1,4 ---- /* ! * Copyright (C) The MX4J Contributors. * All rights reserved. * *************** *** 9,14 **** package javax.management.remote; - import java.security.Principal; import java.io.Serializable; /** --- 9,14 ---- package javax.management.remote; import java.io.Serializable; + import java.security.Principal; /** Index: JMXAuthenticator.java =================================================================== RCS file: /cvsroot/mx4j/mx4j/src/core/javax/management/remote/JMXAuthenticator.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** JMXAuthenticator.java 5 Aug 2003 21:50:21 -0000 1.1 --- JMXAuthenticator.java 4 Sep 2004 15:44:06 -0000 1.2 *************** *** 1,4 **** /* ! * Copyright (C) MX4J. * All rights reserved. * --- 1,4 ---- /* ! * Copyright (C) The MX4J Contributors. * All rights reserved. * *************** *** 12,16 **** /** - * * @author <a href="mailto:[email protected]">Simone Bordet</a> * @version $Revision$ --- 12,15 ---- Index: JMXServerErrorException.java =================================================================== RCS file: /cvsroot/mx4j/mx4j/src/core/javax/management/remote/JMXServerErrorException.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** JMXServerErrorException.java 26 Oct 2003 03:14:02 -0000 1.3 --- JMXServerErrorException.java 4 Sep 2004 15:44:06 -0000 1.4 *************** *** 1,4 **** /* ! * Copyright (C) MX4J. * All rights reserved. * --- 1,4 ---- /* ! * Copyright (C) The MX4J Contributors. * All rights reserved. * *************** *** 32,36 **** public Throwable getCause() { ! return cause; } } --- 32,36 ---- public Throwable getCause() { ! return cause; } } Index: JMXConnector.java =================================================================== RCS file: /cvsroot/mx4j/mx4j/src/core/javax/management/remote/JMXConnector.java,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** JMXConnector.java 26 Oct 2003 03:11:51 -0000 1.4 --- JMXConnector.java 4 Sep 2004 15:44:06 -0000 1.5 *************** *** 1,4 **** /* ! * Copyright (C) MX4J. * All rights reserved. * --- 1,4 ---- /* ! * Copyright (C) The MX4J Contributors. * All rights reserved. * *************** *** 11,19 **** import java.io.IOException; import java.util.Map; ! import javax.management.MBeanServerConnection; - import javax.management.NotificationListener; import javax.management.NotificationFilter; ! import javax.management.ListenerNotFoundException; import javax.security.auth.Subject; --- 11,18 ---- import java.io.IOException; import java.util.Map; ! import javax.management.ListenerNotFoundException; import javax.management.MBeanServerConnection; import javax.management.NotificationFilter; ! import javax.management.NotificationListener; import javax.security.auth.Subject; *************** *** 26,34 **** { public static final String CREDENTIALS = "jmx.remote.credentials"; ! public void connect() throws IOException, SecurityException; public void connect(Map environment) throws IOException, SecurityException; public MBeanServerConnection getMBeanServerConnection() throws IOException; public MBeanServerConnection getMBeanServerConnection(Subject delegate) throws IOException; --- 25,35 ---- { public static final String CREDENTIALS = "jmx.remote.credentials"; ! public void connect() throws IOException, SecurityException; + public void connect(Map environment) throws IOException, SecurityException; public MBeanServerConnection getMBeanServerConnection() throws IOException; + public MBeanServerConnection getMBeanServerConnection(Subject delegate) throws IOException; *************** *** 38,42 **** --- 39,45 ---- public void addConnectionNotificationListener(NotificationListener listener, NotificationFilter filter, Object handback); + public void removeConnectionNotificationListener(NotificationListener listener) throws ListenerNotFoundException; + public void removeConnectionNotificationListener(NotificationListener listener, NotificationFilter filter, Object handback) throws ListenerNotFoundException; } Index: MBeanServerForwarder.java =================================================================== RCS file: /cvsroot/mx4j/mx4j/src/core/javax/management/remote/MBeanServerForwarder.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** MBeanServerForwarder.java 5 Aug 2003 22:48:50 -0000 1.1 --- MBeanServerForwarder.java 4 Sep 2004 15:44:06 -0000 1.2 *************** *** 1,4 **** /* ! * Copyright (C) MX4J. * All rights reserved. * --- 1,4 ---- /* ! * Copyright (C) The MX4J Contributors. * All rights reserved. * *************** *** 12,16 **** /** - * * @author <a href="mailto:[email protected]">Simone Bordet</a> * @version $Revision$ --- 12,15 ---- *************** *** 19,22 **** --- 18,22 ---- { public MBeanServer getMBeanServer(); + public void setMBeanServer(MBeanServer server) throws IllegalArgumentException; } Index: JMXProviderException.java =================================================================== RCS file: /cvsroot/mx4j/mx4j/src/core/javax/management/remote/JMXProviderException.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** JMXProviderException.java 26 Oct 2003 03:13:09 -0000 1.3 --- JMXProviderException.java 4 Sep 2004 15:44:06 -0000 1.4 *************** *** 1,4 **** /* ! * Copyright (C) MX4J. * All rights reserved. * --- 1,4 ---- /* ! * Copyright (C) The MX4J Contributors. * All rights reserved. * *************** *** 14,18 **** * @author <a href="mailto:[email protected]">Simone Bordet</a> * @author <a href="mailto:[email protected]">Brian Scully</a> - * * @version $Revision$ */ --- 14,17 ---- *************** *** 23,27 **** */ private Throwable cause; ! private static final long serialVersionUID = -3166703627550447198l; --- 22,26 ---- */ private Throwable cause; ! private static final long serialVersionUID = -3166703627550447198l; *************** *** 43,47 **** public Throwable getCause() { ! return cause; } } --- 42,46 ---- public Throwable getCause() { ! return cause; } } Index: JMXConnectorServerMBean.java =================================================================== RCS file: /cvsroot/mx4j/mx4j/src/core/javax/management/remote/JMXConnectorServerMBean.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** JMXConnectorServerMBean.java 5 Aug 2003 22:50:59 -0000 1.3 --- JMXConnectorServerMBean.java 4 Sep 2004 15:44:06 -0000 1.4 *************** *** 1,4 **** /* ! * Copyright (C) MX4J. * All rights reserved. * --- 1,4 ---- /* ! * Copyright (C) The MX4J Contributors. * All rights reserved. * Index: TargetedNotification.java =================================================================== RCS file: /cvsroot/mx4j/mx4j/src/core/javax/management/remote/TargetedNotification.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** TargetedNotification.java 19 Aug 2003 15:01:37 -0000 1.2 --- TargetedNotification.java 4 Sep 2004 15:44:06 -0000 1.3 *************** *** 1,4 **** /* ! * Copyright (C) MX4J. * All rights reserved. * --- 1,4 ---- /* ! * Copyright (C) The MX4J Contributors. * All rights reserved. * *************** *** 10,14 **** import java.io.Serializable; - import javax.management.Notification; --- 10,13 ---- *************** *** 19,25 **** public class TargetedNotification implements Serializable { ! /** @serial The notification to transmit */ private final Notification notif; ! /** @serial The listener's ID for the notification */ private final Integer id; --- 18,28 ---- public class TargetedNotification implements Serializable { ! /** ! * @serial The notification to transmit ! */ private final Notification notif; ! /** ! * @serial The listener's ID for the notification ! */ private final Integer id; Index: JMXConnectorServerProvider.java =================================================================== RCS file: /cvsroot/mx4j/mx4j/src/core/javax/management/remote/JMXConnectorServerProvider.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** JMXConnectorServerProvider.java 6 Aug 2003 11:57:28 -0000 1.1 --- JMXConnectorServerProvider.java 4 Sep 2004 15:44:06 -0000 1.2 *************** *** 1,4 **** /* ! * Copyright (C) MX4J. * All rights reserved. * --- 1,4 ---- /* ! * Copyright (C) The MX4J Contributors. * All rights reserved. * *************** *** 9,19 **** package javax.management.remote; - import java.util.Map; import java.io.IOException; ! import javax.management.MBeanServer; /** - * * @author <a href="mailto:[email protected]">Simone Bordet</a> * @version $Revision$ --- 9,17 ---- package javax.management.remote; import java.io.IOException; ! import java.util.Map; import javax.management.MBeanServer; /** * @author <a href="mailto:[email protected]">Simone Bordet</a> * @version $Revision$ Index: JMXServiceURL.java =================================================================== RCS file: /cvsroot/mx4j/mx4j/src/core/javax/management/remote/JMXServiceURL.java,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** JMXServiceURL.java 20 Jul 2004 13:09:56 -0000 1.10 --- JMXServiceURL.java 4 Sep 2004 15:44:06 -0000 1.11 *************** *** 1,4 **** /* ! * Copyright (C) MX4J. * All rights reserved. * --- 1,4 ---- /* ! * Copyright (C) The MX4J Contributors. * All rights reserved. * Index: JMXConnectionNotification.java =================================================================== RCS file: /cvsroot/mx4j/mx4j/src/core/javax/management/remote/JMXConnectionNotification.java,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** JMXConnectionNotification.java 26 Oct 2003 03:11:16 -0000 1.4 --- JMXConnectionNotification.java 4 Sep 2004 15:44:06 -0000 1.5 *************** *** 1,4 **** /* ! * Copyright (C) MX4J. * All rights reserved. * --- 1,4 ---- /* ! * Copyright (C) The MX4J Contributors. * All rights reserved. * *************** *** 22,26 **** public static final String FAILED = "jmx.remote.connection.failed"; public static final String NOTIFS_LOST = "jmx.remote.connection.notifs.lost"; ! private static final long serialVersionUID = -2331308725952627538l; --- 22,26 ---- public static final String FAILED = "jmx.remote.connection.failed"; public static final String NOTIFS_LOST = "jmx.remote.connection.notifs.lost"; ! private static final long serialVersionUID = -2331308725952627538l; Index: JMXConnectorFactory.java =================================================================== RCS file: /cvsroot/mx4j/mx4j/src/core/javax/management/remote/JMXConnectorFactory.java,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** JMXConnectorFactory.java 18 Sep 2003 18:44:03 -0000 1.8 --- JMXConnectorFactory.java 4 Sep 2004 15:44:06 -0000 1.9 *************** *** 1,4 **** /* ! * Copyright (C) MX4J. * All rights reserved. * --- 1,4 ---- /* ! * Copyright (C) The MX4J Contributors. * All rights reserved. * Index: SubjectDelegationPermission.java =================================================================== RCS file: /cvsroot/mx4j/mx4j/src/core/javax/management/remote/SubjectDelegationPermission.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** SubjectDelegationPermission.java 6 Aug 2003 11:57:28 -0000 1.1 --- SubjectDelegationPermission.java 4 Sep 2004 15:44:06 -0000 1.2 *************** *** 1,4 **** /* ! * Copyright (C) MX4J. * All rights reserved. * --- 1,4 ---- /* ! * Copyright (C) The MX4J Contributors. * All rights reserved. * Index: JMXConnectorServerFactory.java =================================================================== RCS file: /cvsroot/mx4j/mx4j/src/core/javax/management/remote/JMXConnectorServerFactory.java,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** JMXConnectorServerFactory.java 18 Sep 2003 18:44:03 -0000 1.4 --- JMXConnectorServerFactory.java 4 Sep 2004 15:44:06 -0000 1.5 *************** *** 1,4 **** /* ! * Copyright (C) MX4J. * All rights reserved. * --- 1,4 ---- /* ! * Copyright (C) The MX4J Contributors. * All rights reserved. * *************** *** 9,17 **** package javax.management.remote; - import java.util.Map; - import java.util.HashMap; - import java.util.Collections; import java.io.IOException; ! import javax.management.MBeanServer; --- 9,16 ---- package javax.management.remote; import java.io.IOException; ! import java.util.Collections; ! import java.util.HashMap; ! import java.util.Map; import javax.management.MBeanServer; *************** *** 19,23 **** /** - * * @author <a href="mailto:[email protected]">Simone Bordet</a> * @version $Revision$ --- 18,21 ---- Index: JMXConnectorProvider.java =================================================================== RCS file: /cvsroot/mx4j/mx4j/src/core/javax/management/remote/JMXConnectorProvider.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** JMXConnectorProvider.java 5 Aug 2003 22:50:59 -0000 1.3 --- JMXConnectorProvider.java 4 Sep 2004 15:44:06 -0000 1.4 *************** *** 1,4 **** /* ! * Copyright (C) MX4J. * All rights reserved. * --- 1,4 ---- /* ! * Copyright (C) The MX4J Contributors. * All rights reserved. * *************** *** 9,16 **** package javax.management.remote; - import java.util.Map; import java.io.IOException; ! ! import javax.management.remote.JMXConnector; /** --- 9,14 ---- package javax.management.remote; import java.io.IOException; ! import java.util.Map; /** Index: JMXConnectorServer.java =================================================================== RCS file: /cvsroot/mx4j/mx4j/src/core/javax/management/remote/JMXConnectorServer.java,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** JMXConnectorServer.java 28 Aug 2004 14:20:01 -0000 1.7 --- JMXConnectorServer.java 4 Sep 2004 15:44:06 -0000 1.8 *************** *** 1,4 **** /* ! * Copyright (C) MX4J. * All rights reserved. * --- 1,4 ---- /* ! * Copyright (C) The MX4J Contributors. * All rights reserved. * Index: NotificationResult.java =================================================================== RCS file: /cvsroot/mx4j/mx4j/src/core/javax/management/remote/NotificationResult.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** NotificationResult.java 19 Aug 2003 15:01:37 -0000 1.2 --- NotificationResult.java 4 Sep 2004 15:44:06 -0000 1.3 *************** *** 1,4 **** /* ! * Copyright (C) MX4J. * All rights reserved. * --- 1,4 ---- /* ! * Copyright (C) The MX4J Contributors. * All rights reserved. * *************** *** 21,29 **** private static final long serialVersionUID = 1191800228721395279l; ! /** @serial The earliest sequence number*/ private final long earliestSequenceNumber; ! /** @serial The next sequence number*/ private final long nextSequenceNumber; ! /** @serial The notifications */ private final TargetedNotification[] targetedNotifications; --- 21,35 ---- private static final long serialVersionUID = 1191800228721395279l; ! /** ! * @serial The earliest sequence number ! */ private final long earliestSequenceNumber; ! /** ! * @serial The next sequence number ! */ private final long nextSequenceNumber; ! /** ! * @serial The notifications ! */ private final TargetedNotification[] targetedNotifications; ------------------------------------------------------- This SF.Net email is sponsored by BEA Weblogic Workshop FREE Java Enterprise J2EE developer tools! Get your free copy of BEA WebLogic Workshop 8.1 today. http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click