FileDocCategorySizeDatePackage
Permission.javaAPI DocHibernate 3.2.5618Tue Dec 12 16:22:26 GMT 2006org.hibernate.test.collection.original

Permission

public class Permission extends Object
author
Gavin King

Fields Summary
private String
type
Constructors Summary
Permission()

public Permission(String type)

		this.type = type;
	
Methods Summary
public booleanequals(java.lang.Object that)

		if ( !(that instanceof Permission) ) return false;
		Permission p = (Permission) that;
		return this.type.equals(p.type);
	
public java.lang.StringgetType()

		return type;
	
public inthashCode()

		return type.hashCode();
	
public voidsetType(java.lang.String type)

		this.type = type;