1 22 package org.jboss.test.jbossmx.compliance.modelmbean.support; 23 24 35 public class Resource2 implements Resource2MBean 36 { 37 private int mbeanAttribute = 666; 38 private int pojoAttribute = 777; 39 40 42 public int getmbeanAttribute() 43 { 44 return mbeanAttribute; 45 } 46 47 public void setmbeanAttribute(int mbeanAttribute) 48 { 49 this.mbeanAttribute = mbeanAttribute; 50 } 51 52 public boolean mbeanOperation() 53 { 54 return true; 55 } 56 57 59 public int getpojoAttribute() 60 { 61 return pojoAttribute; 62 } 63 64 public void setpojoAttribute(int pojoAttribute) 65 { 66 this.pojoAttribute = pojoAttribute; 67 } 68 69 public boolean pojoOperation() 70 { 71 return true; 72 } 73 74 } | Popular Tags |