List of usage examples for java.security Permission subclass-usage
From source file org.apache.roller.weblogger.pojos.RollerPermission.java
/** * Base permission class for Roller. */ public abstract class RollerPermission extends java.security.Permission { private static Log log = LogFactory.getLog(RollerPermission.class);
From source file cn.vlabs.duckling.vwb.service.auth.permissions.PagePermission.java
/** * * @date Feb 3, 2010 * @author zzb */ public final class PagePermission extends Permission {
From source file org.apache.wiki.auth.permissions.PagePermission.java
/**
* <p>
* Permission to perform an operation on a single page or collection of pages in
* a given wiki. Permission actions include: <code>view</code>,
* <code>edit</code> (edit the text of a wiki page), <code>comment</code>,
* <code>upload</code>, <code>modify</code> (edit text and upload
From source file com.ecyrd.jspwiki.auth.permissions.PagePermission.java
/**
* <p>
* Permission to perform an operation on a single page or collection of pages in
* a given wiki. Permission actions include: <code>view</code>,
* <code>edit</code> (edit the text of a wiki page), <code>comment</code>,
* <code>upload</code>, <code>modify</code> (edit text and upload
From source file com.sun.socialsite.security.FeaturePermission.java
/** * Represents access to a specific "feature" in the gadgets API. * The name attribute should match the feature name (e.g. "socialsite-0.1"). * A wildcard name ("*") represents access to all features. */ public class FeaturePermission extends Permission {
From source file com.sun.socialsite.security.HttpPermission.java
/**
* Represents HTTP(S) access to a URL through the SocialSite proxy.
* The name attribute should match the allowed domain, for example sun.com.
* A wildcard name ("*") represents access to all domains. The actions attribute
* matches the HTTP request type, for example GET.
*/
From source file com.sun.socialsite.security.AppPermission.java
/**
* <p>
* Represents access to an <code>App</code>. Each AppPermission object consists
* of a URL pattern (either "*" or a valid URL) and a set of actions which are
* valid for that URL apttern.
* </p>