1 23 24 package com.sun.enterprise.admin.server.core.jmx.tester; 25 26 import javax.management.*; 27 28 public class Rule4 extends Rule3 implements DynamicMBean 29 { 30 public Object getAttribute(java.lang.String attribute) 31 { 32 return null; 33 } 34 35 public AttributeList getAttributes(java.lang.String [] attributes) 36 { 37 return null; 38 } 39 public MBeanInfo getMBeanInfo() 40 { 41 return null; 42 } 43 public Object invoke(java.lang.String actionName, java.lang.Object [] params, 44 java.lang.String [] signature) 45 { 46 return null; 47 } 48 public void setAttribute(Attribute attribute) 49 { 50 } 51 public AttributeList setAttributes(AttributeList attributes) 52 { 53 return null; 54 } 55 } | Popular Tags |