mx4j/src/core/javax/management/remote/rmi RMIConnection.java,1.2,1.3 RMIConnectionImpl.java,1.8,1.9 RMIConnector.java,1.23,1.24 RMIConnectorServer.java,1.14,1.15 RMIIIOPServerImpl.java,1.6,1.7 RMIJRMPServerImpl.java,1.8,1.9 RMIServer.java,1.4,1.5 RMIServerImpl.java,1.12,1.13
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/rmi
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13665/src/core/javax/management/remote/rmi
Modified Files:
RMIConnection.java RMIConnectionImpl.java RMIConnector.java
RMIConnectorServer.java RMIIIOPServerImpl.java
RMIJRMPServerImpl.java RMIServer.java RMIServerImpl.java
Log Message:
Updated copyright notice to be:
Copyright (C) The MX4J Contributors
Index: RMIServerImpl.java
===================================================================
RCS file: /cvsroot/mx4j/mx4j/src/core/javax/management/remote/rmi/RMIServerImpl.java,v
retrieving revision 1.12
retrieving revision 1.13
diff -C2 -d -r1.12 -r1.13
*** RMIServerImpl.java 27 Aug 2004 22:24:49 -0000 1.12
--- RMIServerImpl.java 4 Sep 2004 15:44:05 -0000 1.13
***************
*** 1,4 ****
/*
! * Copyright (C) MX4J.
* All rights reserved.
*
--- 1,4 ----
/*
! * Copyright (C) The MX4J Contributors.
* All rights reserved.
*
Index: RMIConnection.java
===================================================================
RCS file: /cvsroot/mx4j/mx4j/src/core/javax/management/remote/rmi/RMIConnection.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** RMIConnection.java 26 Oct 2003 03:09:42 -0000 1.2
--- RMIConnection.java 4 Sep 2004 15:44:05 -0000 1.3
***************
*** 1,4 ****
/*
! * Copyright (C) MX4J.
* All rights reserved.
*
--- 1,4 ----
/*
! * Copyright (C) The MX4J Contributors.
* All rights reserved.
*
***************
*** 13,17 ****
import java.rmi.Remote;
import java.util.Set;
-
import javax.management.AttributeList;
import javax.management.AttributeNotFoundException;
--- 13,16 ----
***************
*** 38,141 ****
public interface RMIConnection extends Remote
{
! public String getConnectionId() throws IOException;
! public void close() throws IOException;
! public ObjectInstance createMBean(String className, ObjectName name, Subject delegationSubject)
! throws ReflectionException,
! InstanceAlreadyExistsException,
! MBeanRegistrationException,
! MBeanException,
! NotCompliantMBeanException,
! IOException;
! public ObjectInstance createMBean(String className, ObjectName name, ObjectName loaderName, Subject delegationSubject)
! throws ReflectionException,
! InstanceAlreadyExistsException,
! MBeanRegistrationException,
! MBeanException,
! NotCompliantMBeanException,
! InstanceNotFoundException,
! IOException;
! public ObjectInstance createMBean(String className, ObjectName name, MarshalledObject params, String[] signature, Subject delegationSubject)
! throws ReflectionException,
! InstanceAlreadyExistsException,
! MBeanRegistrationException,
! MBeanException,
! NotCompliantMBeanException,
! IOException;
! public ObjectInstance createMBean(String className, ObjectName name, ObjectName loaderName, MarshalledObject params, String[] signature, Subject delegationSubject)
! throws ReflectionException,
! InstanceAlreadyExistsException,
! MBeanRegistrationException,
! MBeanException,
! NotCompliantMBeanException,
! InstanceNotFoundException,
! IOException;
! public void unregisterMBean(ObjectName name, Subject delegationSubject) throws InstanceNotFoundException, MBeanRegistrationException, IOException;
! public ObjectInstance getObjectInstance(ObjectName name, Subject delegationSubject) throws InstanceNotFoundException, IOException;
! public Set queryMBeans(ObjectName name, MarshalledObject query, Subject delegationSubject) throws IOException;
! public Set queryNames(ObjectName name, MarshalledObject query, Subject delegationSubject) throws IOException;
! public boolean isRegistered(ObjectName name, Subject delegationSubject) throws IOException;
! public Integer getMBeanCount(Subject delegationSubject) throws IOException;
! public Object getAttribute(ObjectName name, String attribute, Subject delegationSubject)
! throws MBeanException,
! AttributeNotFoundException,
! InstanceNotFoundException,
! ReflectionException,
! IOException;
! public AttributeList getAttributes(ObjectName name, String[] attributes, Subject delegationSubject)
! throws InstanceNotFoundException, ReflectionException, IOException;
! public void setAttribute(ObjectName name, MarshalledObject attribute, Subject delegationSubject)
! throws InstanceNotFoundException,
! AttributeNotFoundException,
! InvalidAttributeValueException,
! MBeanException,
! ReflectionException,
! IOException;
! public AttributeList setAttributes(ObjectName name, MarshalledObject attributes, Subject delegationSubject)
! throws InstanceNotFoundException,
! ReflectionException,
! IOException;
! public Object invoke(ObjectName name, String operationName, MarshalledObject params, String[] signature, Subject delegationSubject)
! throws InstanceNotFoundException,
! MBeanException,
! ReflectionException,
! IOException;
! public String getDefaultDomain(Subject delegationSubject) throws IOException;
! public String[] getDomains(Subject delegationSubject) throws IOException;
! public MBeanInfo getMBeanInfo(ObjectName name, Subject delegationSubject) throws InstanceNotFoundException, IntrospectionException, ReflectionException, IOException;
! public boolean isInstanceOf(ObjectName name, String className, Subject delegationSubject) throws InstanceNotFoundException, IOException;
! public void addNotificationListener(ObjectName name, ObjectName listener, MarshalledObject filter, MarshalledObject handback, Subject delegationSubject)
! throws InstanceNotFoundException, IOException;
! public void removeNotificationListener(ObjectName name, ObjectName listener, Subject delegationSubject)
! throws InstanceNotFoundException, ListenerNotFoundException, IOException;
! public void removeNotificationListener(ObjectName name, ObjectName listener, MarshalledObject filter, MarshalledObject handback, Subject delegationSubject)
! throws InstanceNotFoundException, ListenerNotFoundException, IOException;
! public Integer[] addNotificationListeners(ObjectName[] names, MarshalledObject[] filters, Subject[] delegationSubjects) throws InstanceNotFoundException, IOException;
! public void removeNotificationListeners(ObjectName name, Integer[] listenerIDs, Subject delegationSubject) throws InstanceNotFoundException, ListenerNotFoundException, IOException;
! public NotificationResult fetchNotifications(long clientSequenceNumber, int maxNotifications, long timeout) throws IOException;
}
--- 37,140 ----
public interface RMIConnection extends Remote
{
! public String getConnectionId() throws IOException;
! public void close() throws IOException;
! public ObjectInstance createMBean(String className, ObjectName name, Subject delegationSubject)
! throws ReflectionException,
! InstanceAlreadyExistsException,
! MBeanRegistrationException,
! MBeanException,
! NotCompliantMBeanException,
! IOException;
! public ObjectInstance createMBean(String className, ObjectName name, ObjectName loaderName, Subject delegationSubject)
! throws ReflectionException,
! InstanceAlreadyExistsException,
! MBeanRegistrationException,
! MBeanException,
! NotCompliantMBeanException,
! InstanceNotFoundException,
! IOException;
! public ObjectInstance createMBean(String className, ObjectName name, MarshalledObject params, String[] signature, Subject delegationSubject)
! throws ReflectionException,
! InstanceAlreadyExistsException,
! MBeanRegistrationException,
! MBeanException,
! NotCompliantMBeanException,
! IOException;
! public ObjectInstance createMBean(String className, ObjectName name, ObjectName loaderName, MarshalledObject params, String[] signature, Subject delegationSubject)
! throws ReflectionException,
! InstanceAlreadyExistsException,
! MBeanRegistrationException,
! MBeanException,
! NotCompliantMBeanException,
! InstanceNotFoundException,
! IOException;
! public void unregisterMBean(ObjectName name, Subject delegationSubject) throws InstanceNotFoundException, MBeanRegistrationException, IOException;
! public ObjectInstance getObjectInstance(ObjectName name, Subject delegationSubject) throws InstanceNotFoundException, IOException;
! public Set queryMBeans(ObjectName name, MarshalledObject query, Subject delegationSubject) throws IOException;
! public Set queryNames(ObjectName name, MarshalledObject query, Subject delegationSubject) throws IOException;
! public boolean isRegistered(ObjectName name, Subject delegationSubject) throws IOException;
! public Integer getMBeanCount(Subject delegationSubject) throws IOException;
! public Object getAttribute(ObjectName name, String attribute, Subject delegationSubject)
! throws MBeanException,
! AttributeNotFoundException,
! InstanceNotFoundException,
! ReflectionException,
! IOException;
! public AttributeList getAttributes(ObjectName name, String[] attributes, Subject delegationSubject)
! throws InstanceNotFoundException, ReflectionException, IOException;
! public void setAttribute(ObjectName name, MarshalledObject attribute, Subject delegationSubject)
! throws InstanceNotFoundException,
! AttributeNotFoundException,
! InvalidAttributeValueException,
! MBeanException,
! ReflectionException,
! IOException;
! public AttributeList setAttributes(ObjectName name, MarshalledObject attributes, Subject delegationSubject)
! throws InstanceNotFoundException,
! ReflectionException,
! IOException;
! public Object invoke(ObjectName name, String operationName, MarshalledObject params, String[] signature, Subject delegationSubject)
! throws InstanceNotFoundException,
! MBeanException,
! ReflectionException,
! IOException;
! public String getDefaultDomain(Subject delegationSubject) throws IOException;
! public String[] getDomains(Subject delegationSubject) throws IOException;
! public MBeanInfo getMBeanInfo(ObjectName name, Subject delegationSubject) throws InstanceNotFoundException, IntrospectionException, ReflectionException, IOException;
! public boolean isInstanceOf(ObjectName name, String className, Subject delegationSubject) throws InstanceNotFoundException, IOException;
! public void addNotificationListener(ObjectName name, ObjectName listener, MarshalledObject filter, MarshalledObject handback, Subject delegationSubject)
! throws InstanceNotFoundException, IOException;
! public void removeNotificationListener(ObjectName name, ObjectName listener, Subject delegationSubject)
! throws InstanceNotFoundException, ListenerNotFoundException, IOException;
! public void removeNotificationListener(ObjectName name, ObjectName listener, MarshalledObject filter, MarshalledObject handback, Subject delegationSubject)
! throws InstanceNotFoundException, ListenerNotFoundException, IOException;
! public Integer[] addNotificationListeners(ObjectName[] names, MarshalledObject[] filters, Subject[] delegationSubjects) throws InstanceNotFoundException, IOException;
! public void removeNotificationListeners(ObjectName name, Integer[] listenerIDs, Subject delegationSubject) throws InstanceNotFoundException, ListenerNotFoundException, IOException;
! public NotificationResult fetchNotifications(long clientSequenceNumber, int maxNotifications, long timeout) throws IOException;
}
Index: RMIServer.java
===================================================================
RCS file: /cvsroot/mx4j/mx4j/src/core/javax/management/remote/rmi/RMIServer.java,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** RMIServer.java 11 Aug 2003 21:45:26 -0000 1.4
--- RMIServer.java 4 Sep 2004 15:44:05 -0000 1.5
***************
*** 1,4 ****
/*
! * Copyright (C) MX4J.
* All rights reserved.
*
--- 1,4 ----
/*
! * Copyright (C) The MX4J Contributors.
* All rights reserved.
*
***************
*** 9,15 ****
package javax.management.remote.rmi;
import java.rmi.Remote;
import java.rmi.RemoteException;
- import java.io.IOException;
/**
--- 9,15 ----
package javax.management.remote.rmi;
+ import java.io.IOException;
import java.rmi.Remote;
import java.rmi.RemoteException;
/**
Index: RMIConnectionImpl.java
===================================================================
RCS file: /cvsroot/mx4j/mx4j/src/core/javax/management/remote/rmi/RMIConnectionImpl.java,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -d -r1.8 -r1.9
*** RMIConnectionImpl.java 27 Aug 2004 22:20:14 -0000 1.8
--- RMIConnectionImpl.java 4 Sep 2004 15:44:05 -0000 1.9
***************
*** 1,4 ****
/*
! * Copyright (C) MX4J.
* All rights reserved.
*
--- 1,4 ----
/*
! * Copyright (C) The MX4J Contributors.
* All rights reserved.
*
Index: RMIConnectorServer.java
===================================================================
RCS file: /cvsroot/mx4j/mx4j/src/core/javax/management/remote/rmi/RMIConnectorServer.java,v
retrieving revision 1.14
retrieving revision 1.15
diff -C2 -d -r1.14 -r1.15
*** RMIConnectorServer.java 18 Jul 2004 21:28:51 -0000 1.14
--- RMIConnectorServer.java 4 Sep 2004 15:44:05 -0000 1.15
***************
*** 1,4 ****
/*
! * Copyright (C) MX4J.
* All rights reserved.
*
--- 1,4 ----
/*
! * Copyright (C) The MX4J Contributors.
* All rights reserved.
*
Index: RMIJRMPServerImpl.java
===================================================================
RCS file: /cvsroot/mx4j/mx4j/src/core/javax/management/remote/rmi/RMIJRMPServerImpl.java,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -d -r1.8 -r1.9
*** RMIJRMPServerImpl.java 2 Sep 2003 22:30:56 -0000 1.8
--- RMIJRMPServerImpl.java 4 Sep 2004 15:44:05 -0000 1.9
***************
*** 1,4 ****
/*
! * Copyright (C) MX4J.
* All rights reserved.
*
--- 1,4 ----
/*
! * Copyright (C) The MX4J Contributors.
* All rights reserved.
*
***************
*** 13,20 ****
import java.rmi.server.RMIClientSocketFactory;
import java.rmi.server.RMIServerSocketFactory;
- import java.rmi.server.UnicastRemoteObject;
import java.rmi.server.RemoteObject;
import java.util.Map;
-
import javax.security.auth.Subject;
--- 13,19 ----
import java.rmi.server.RMIClientSocketFactory;
import java.rmi.server.RMIServerSocketFactory;
import java.rmi.server.RemoteObject;
+ import java.rmi.server.UnicastRemoteObject;
import java.util.Map;
import javax.security.auth.Subject;
Index: RMIConnector.java
===================================================================
RCS file: /cvsroot/mx4j/mx4j/src/core/javax/management/remote/rmi/RMIConnector.java,v
retrieving revision 1.23
retrieving revision 1.24
diff -C2 -d -r1.23 -r1.24
*** RMIConnector.java 28 Aug 2004 14:20:02 -0000 1.23
--- RMIConnector.java 4 Sep 2004 15:44:05 -0000 1.24
***************
*** 1,4 ****
/*
! * Copyright (C) MX4J.
* All rights reserved.
*
--- 1,4 ----
/*
! * Copyright (C) The MX4J Contributors.
* All rights reserved.
*
Index: RMIIIOPServerImpl.java
===================================================================
RCS file: /cvsroot/mx4j/mx4j/src/core/javax/management/remote/rmi/RMIIIOPServerImpl.java,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** RMIIIOPServerImpl.java 2 Sep 2003 22:30:56 -0000 1.6
--- RMIIIOPServerImpl.java 4 Sep 2004 15:44:05 -0000 1.7
***************
*** 1,4 ****
/*
! * Copyright (C) MX4J.
* All rights reserved.
*
--- 1,4 ----
/*
! * Copyright (C) The MX4J Contributors.
* All rights reserved.
*
***************
*** 12,22 ****
import java.rmi.Remote;
import java.util.Map;
-
- import javax.rmi.PortableRemoteObject;
import javax.rmi.CORBA.Stub;
import javax.security.auth.Subject;
/**
- *
* @author <a href="mailto:[email protected]">Simone Bordet</a>
* @version $Revision$
--- 12,20 ----
import java.rmi.Remote;
import java.util.Map;
import javax.rmi.CORBA.Stub;
+ import javax.rmi.PortableRemoteObject;
import javax.security.auth.Subject;
/**
* @author <a href="mailto:[email protected]">Simone Bordet</a>
* @version $Revision$
-------------------------------------------------------
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