Methods Summary |
---|
public java.lang.String | getAdminObjectImplementationClass()Get the admin object implementation class
return adminObjectImplementationClass;
|
public java.lang.String | getAdminObjectInterfaceClass()Get the admin object interface class
return adminObjectInterfaceClass;
|
public void | setAdminObjectImplementationClass(java.lang.String adminObjectImplementationClass)Set the admin object implementation class
this.adminObjectImplementationClass = adminObjectImplementationClass;
|
public void | setAdminObjectInterfaceClass(java.lang.String adminObjectInterfaceClass)Set the admin object interface class
this.adminObjectInterfaceClass = adminObjectInterfaceClass;
|
public java.lang.String | toString()
StringBuffer buffer = new StringBuffer();
buffer.append("AdminObjectMetaData").append('@");
buffer.append(Integer.toHexString(System.identityHashCode(this)));
buffer.append("[adminObjectInterfaceClass=").append(adminObjectInterfaceClass);
buffer.append(" adminObjectImplementationClass=").append(adminObjectImplementationClass);
buffer.append(" properties=").append(getProperties());
buffer.append(']");
return buffer.toString();
|