1 8 9 package mx4j.examples.tools.adaptor.http; 10 11 14 interface SimpleStandardMBean 15 { 16 public void setName(String name); 17 18 public String getName(); 19 } 20 21 public class SimpleStandard implements SimpleStandardMBean 22 { 23 private String m_name = "RelationAdaptor Example"; 24 25 public SimpleStandard() 26 { 27 } 28 29 public void setName(String name) 30 { 31 m_name = name; 32 } 33 34 public String getName() 35 { 36 return m_name; 37 } 38 } 39 | Popular Tags |