< prev index next >

jdk/test/javax/management/modelmbean/UnserializableTargetObjectTest.java

Print this page




  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /*
  25  * @test
  26  * @bug 6332962
  27  * @summary Test that a RequiredModelMBean operation can have a targetObject
  28  * that is not serializable
  29  * @author Eamonn McManus
  30  * @modules java.management
  31  * @run clean UnserializableTargetObjectTest
  32  * @run build UnserializableTargetObjectTest
  33  * @run main UnserializableTargetObjectTest
  34  */
  35 
  36 /* This test and DescriptorSupportSerialTest basically cover the same thing.
  37    I wrote them at different times and forgot that I had written the earlier
  38    one.  However the coverage is slightly different so I'm keeping both.  */
  39 
  40 import java.lang.reflect.Method;
  41 import javax.management.Attribute;
  42 import javax.management.Descriptor;
  43 import javax.management.MBeanServer;
  44 import javax.management.MBeanServerConnection;
  45 import javax.management.MBeanServerFactory;
  46 import javax.management.ObjectName;
  47 import javax.management.modelmbean.DescriptorSupport;
  48 import javax.management.modelmbean.ModelMBean;
  49 import javax.management.modelmbean.ModelMBeanAttributeInfo;
  50 import javax.management.modelmbean.ModelMBeanInfo;




  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /*
  25  * @test
  26  * @bug 6332962
  27  * @summary Test that a RequiredModelMBean operation can have a targetObject
  28  * that is not serializable
  29  * @author Eamonn McManus
  30  * @modules java.management.rmi
  31  * @run clean UnserializableTargetObjectTest
  32  * @run build UnserializableTargetObjectTest
  33  * @run main UnserializableTargetObjectTest
  34  */
  35 
  36 /* This test and DescriptorSupportSerialTest basically cover the same thing.
  37    I wrote them at different times and forgot that I had written the earlier
  38    one.  However the coverage is slightly different so I'm keeping both.  */
  39 
  40 import java.lang.reflect.Method;
  41 import javax.management.Attribute;
  42 import javax.management.Descriptor;
  43 import javax.management.MBeanServer;
  44 import javax.management.MBeanServerConnection;
  45 import javax.management.MBeanServerFactory;
  46 import javax.management.ObjectName;
  47 import javax.management.modelmbean.DescriptorSupport;
  48 import javax.management.modelmbean.ModelMBean;
  49 import javax.management.modelmbean.ModelMBeanAttributeInfo;
  50 import javax.management.modelmbean.ModelMBeanInfo;


< prev index next >