/* * BasicPermission.java * * Created on 2008-07-08 07:57 */ package com.systemtier.jacc; /** * Represents named permission used in application server. * * @author Aleksandras Novikovas * @author System Tier * @version 1.0 */ public class BasicPermission extends java.security.BasicPermission { /** * Creates permission with specified name. * * @param name String name of the permission. */ public BasicPermission (String name) { super (name); } /** * Creates permission with specified name and actions list.

* Actions list are not implemented. * * @param name String name of the permission. * @param actions String List of actions (not implemented). */ public BasicPermission (String name, String actions) { super (name, actions); } }