/**
* LibreSource
* Copyright (C) 2004-2008 Artenum SARL / INRIA
* http://www.libresource.org - contact@artenum.com
*
* This file is part of the LibreSource software,
* which can be used and distributed under license conditions.
* The license conditions are provided in the LICENSE.TXT file
* at the root path of the packaging that enclose this file.
* More information can be found at
* - http://dev.libresource.org/home/license
*
* Initial authors :
*
* Guillaume Bort / INRIA
* Francois Charoy / Universite Nancy 2
* Julien Forest / Artenum
* Claude Godart / Universite Henry Poincare
* Florent Jouille / INRIA
* Sebastien Jourdain / INRIA / Artenum
* Yves Lerumeur / Artenum
* Pascal Molli / Universite Henry Poincare
* Gerald Oster / INRIA
* Mariarosa Penzi / Artenum
* Gerard Sookahet / Artenum
* Raphael Tani / INRIA
*
* Contributors :
*
* Stephane Bagnier / Artenum
* Amadou Dia / Artenum-IUP Blois
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
*/
package org.libresource.kernel;
public interface KernelConstants {
// Service/Resource type
public final static String SERVICE = "Kernel";
// Security rights
public final static String SECURITY = "Kernel:";
public final static String SECURITY_READ = "Kernel:READ";
public final static String SECURITY_CREATE = "Kernel:CREATE";
public final static String SECURITY_UPDATE = "Kernel:UPDATE";
public final static String SECURITY_DELETE = "Kernel:DELETE";
// Event types
public final static String EVENT_CREATE = "kernel.create";
public final static String EVENT_BIND = "kernel.bind";
public final static String EVENT_UNBIND = "kernel.unbind";
public final static String EVENT_MOVE_TO = "kernel.moveTo";
public final static String EVENT_MOVE_FROM = "kernel.moveFrom";
public final static String EVENT_DELETE = "kernel.delete";
public final static String EVENT_CHOWN = "kernel.chown";
public final static String EVENT_CREATE_ACLS = "kernel.createAcl";
public final static String EVENT_RESET_ACLS = "kernel.resetAcls";
public final static String EVENT_DELETE_ACLS = "kernel.deleteAcl";
public final static String EVENT_SET_PROPERTY = "kernel.setProperty";
}
|