
org.marketcetera.admin.PermissionDescriptor Maven / Gradle / Ivy
The newest version!
package org.marketcetera.admin;
/* $License$ */
/**
* Provides a simple Permission
implementation.
*
* @author Colin DuPlantis
* @version $Id$
* @since 1.0.1
*/
public class PermissionDescriptor
extends AbstractNamedDescriptor
{
/* (non-Javadoc)
* @see java.lang.Object#toString()
*/
@Override
public String toString()
{
StringBuilder builder = new StringBuilder();
builder.append("PermissionDescriptor [getName()=").append(getName()).append(", getDescription()=")
.append(getDescription()).append("]");
return builder.toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy