FileDocCategorySizeDatePackage
Resource.javaAPI DocGlassfish v2 API2722Fri May 04 22:35:24 BST 2007com.sun.enterprise.security.acl

Resource

public abstract class Resource extends Object
Abstract resource ..
author
Harish Prabandham

Fields Summary
private String
app
private String
name
private String
method
Constructors Summary
protected Resource(String app, String name, String method)

		this.app = app;
		this.name = name;
		this.method = method;
	
Methods Summary
public abstract booleanequals(java.lang.Object obj)

public java.lang.StringgetApplication()

		return this.app;
	
public java.lang.StringgetMethod()

		return this.method;
	
public java.lang.StringgetName()

		return this.name;
	
public inthashCode()

		return getClass().hashCode();
	
public abstract booleanimplies(com.sun.enterprise.security.acl.Resource res)

public java.lang.StringtoString()

		return getApplication() + ":" + getName() + "." + getMethod();