1 22 package org.jboss.resource.metadata; 23 24 30 public class AdminObjectMetaData extends ConfigPropertyMetaDataContainer 31 { 32 private static final long serialVersionUID = 5647786972921112792L; 33 34 35 private String adminObjectInterfaceClass; 36 37 38 private String adminObjectImplementationClass; 39 40 45 public String getAdminObjectInterfaceClass() 46 { 47 return adminObjectInterfaceClass; 48 } 49 50 55 public void setAdminObjectInterfaceClass(String adminObjectInterfaceClass) 56 { 57 this.adminObjectInterfaceClass = adminObjectInterfaceClass; 58 } 59 60 65 public String getAdminObjectImplementationClass() 66 { 67 return adminObjectImplementationClass; 68 } 69 70 75 public void setAdminObjectImplementationClass(String adminObjectImplementationClass) 76 { 77 this.adminObjectImplementationClass = adminObjectImplementationClass; 78 } 79 80 public String toString() 81 { 82 StringBuffer buffer = new StringBuffer (); 83 buffer.append("AdminObjectMetaData").append('@'); 84 buffer.append(Integer.toHexString(System.identityHashCode(this))); 85 buffer.append("[adminObjectInterfaceClass=").append(adminObjectInterfaceClass); 86 buffer.append(" adminObjectImplementationClass=").append(adminObjectImplementationClass); 87 buffer.append(" properties=").append(getProperties()); 88 buffer.append(']'); 89 return buffer.toString(); 90 } 91 } 92 | Popular Tags |