📄 i_cmsconstants.java
字号:
/** XML tag to defines all users of the group */
final static String C_TGROUPUSERS = "GROUPUSERS";
/** XML tag to defines the name of user in group */
final static String C_TGUSER = "USER";
/** first XML element tag for the users */
final static String C_TUSERS = "USERS";
/** XML tag to defines one user */
final static String C_TUSEROBJ = "USEROBJ";
/** XML tag to defines the user login */
final static String C_TULOGIN = "LOGIN";
/** XML tag to defines the user PASSWD default "Kennwort" */
final static String C_TUPASSWD = "PASSWD";
/** XML tag to defines the user Lastname */
final static String C_TUNAME = "NAME";
/** XML tag to defines the user Firstname */
final static String C_TUFIRSTNAME = "FIRSTNAME";
/** XML tag to defines the user Description */
final static String C_TUDESC = "DESC";
/** XML tag to defines the user EMail */
final static String C_TUEMAIL = "EMAIL";
/** XML tag to defines the user defaultgroup */
final static String C_TUDGROUP = "DEFAULTGROUP";
/** XML tag to defines if the user is disabled */
final static String C_TUDISABLED = "DISABLED";
/** XML tag to defines the user flag */
final static String C_TUFLAG = "FLAG";
/** XML tag to defines the groups in which the user is in */
final static String C_TUSERGROUPS = "USERGROUPS";
/** XML tag to defines the user group name */
final static String C_TUGROUP = "GROUP";
/** XML tag to defines additional user info */
final static String C_TUADDINFO = "ADDINFO";
/** XML tag to defines additional user info key */
final static String C_TUINFOKEY = "INFOKEY";
/** XML tag to defines additional user info value */
final static String C_TUINFOVALUE = "INFOVALUE";
// Contants for preferences
/** Task preferenses filter */
public static final String C_TASK_FILTER = "TaskFilter";
/** Task preferenses view all */
public static final String C_TASK_VIEW_ALL = "TaskViewAll";
/** Task preferenses message flags */
public static final String C_TASK_MESSAGES = "TaskMessages";
/** Start preferenses Language */
public static final String C_START_LANGUAGE = "StartLanguage";
/** Start preferenses Project */
public static final String C_START_PROJECT = "StartProject";
/** Start preferenses View */
public static final String C_START_VIEW = "StartView";
/** Start preferenses DefaultGroup */
public static final String C_START_DEFAULTGROUP = "StartDefaultGroup";
/** Start preferenses lock dialog */
public static final String C_START_LOCKDIALOG = "StartLockDialog";
/** Start preferenses AccessFlags */
public static final String C_START_ACCESSFLAGS = "StartAccessFlags";
/** Template element name used for the canonical root template */
public static final String C_ROOT_TEMPLATE_NAME = "root";
// Constants for import/export
/**
* The filename of the xml manifest.
*/
public static String C_EXPORT_XMLFILENAME = "manifest.xml";
/**
* The version of the opencms export (appears in the export manifest-file).
*/
public static String C_EXPORT_VERSION = "1";
/**
* A tag in the export manifest-file.
*/
public static String C_EXPORT_TAG_INFO = "info";
/**
* A tag in the export manifest-file, used as subtag of C_EXPORT_TAG_INFO.
*/
public static String C_EXPORT_TAG_CREATOR = "creator";
/**
* A tag in the export manifest-file, used as subtag of C_EXPORT_TAG_INFO.
*/
public static String C_EXPORT_TAG_OC_VERSION = "opencms_version";
/**
* A tag in the export manifest-file, used as subtag of C_EXPORT_TAG_INFO.
*/
public static String C_EXPORT_TAG_DATE = "createdate";
/**
* A tag in the manifest-file, used as subtag of C_EXPORT_TAG_INFO.
*/
public static String C_EXPORT_TAG_PROJECT = "project";
/**
* A tag in the export manifest-file, used as subtag of C_EXPORT_TAG_INFO.
*/
public static String C_EXPORT_TAG_VERSION = "export_version";
/**
* A tag in the manifest-file.
*/
public static String C_EXPORT_TAG_FILE = "file";
/**
* A tag in the manifest-file.
*/
public static String C_EXPORT_TAG_SOURCE = "source";
/**
* A tag in the manifest-file.
*/
public static String C_EXPORT_TAG_DESTINATION = "destination";
/**
* A tag in the manifest-file.
*/
public static String C_EXPORT_TAG_TYPE = "type";
/**
* A tag in the manifest-file.
*/
public static String C_EXPORT_TAG_USER = "user";
/**
* A tag in the manifest-file.
*/
public static String C_EXPORT_TAG_GROUP = "group";
/**
* A tag in the manifest-file.
*/
public static String C_EXPORT_TAG_ACCESS = "access";
/**
* A tag in the manifest-file.
*/
public static String C_EXPORT_TAG_PROPERTY = "property";
/**
* A tag in the manifest-file.
*/
public static String C_EXPORT_TAG_NAME = "name";
/**
* A tag in the manifest-file.
*/
public static String C_EXPORT_TAG_VALUE = "value";
/**
* A tag in the manifest-file.
*/
public static String C_EXPORT_TAG_EXPORT = "export";
/**
* A tag in the manifest-file.
*/
public static String C_EXPORT_TAG_MODULEXPORT = "modulexport";
/**
* A tag in the manifest-file.
*/
public static String C_EXPORT_TAG_FILES = "files";
/**
* A tag in the manifest-file.
*/
public static String C_EXPORT_TAG_PROPERTIES = "properties";
/**
* A tag in the manifest-file.
*/
public static String C_EXPORT_TAG_LAUNCHER_START_CLASS = "startclass";
/**
* A tag in the manifest-file.
*/
public static String C_EXPORT_TAG_USERGROUPDATA = "usergroupdata";
/**
* A tag in the manifest-file.
*/
public static String C_EXPORT_TAG_USERDATA = "userdata";
/**
* A tag in the manifest-file.
*/
public static String C_EXPORT_TAG_GROUPDATA = "groupdata";
/**
* A tag in the manifest-file.
*/
public static String C_EXPORT_TAG_DESCRIPTION = "description";
/**
* A tag in the manifest-file.
*/
public static String C_EXPORT_TAG_FLAGS = "flags";
/**
* A tag in the manifest-file.
*/
public static String C_EXPORT_TAG_PARENTGROUP = "parentgroup";
/**
* A tag in the manifest-file.
*/
public static String C_EXPORT_TAG_PASSWORD = "password";
/**
* A tag in the manifest-file.
*/
public static String C_EXPORT_TAG_RECOVERYPASSWORD = "recoverypassword";
/**
* A tag in the manifest-file.
*/
public static String C_EXPORT_TAG_FIRSTNAME = "firstname";
/**
* A tag in the manifest-file.
*/
public static String C_EXPORT_TAG_LASTNAME = "lastname";
/**
* A tag in the manifest-file.
*/
public static String C_EXPORT_TAG_EMAIL = "email";
/**
* A tag in the manifest-file.
*/
public static String C_EXPORT_TAG_DEFAULTGROUP = "defaultgroup";
/**
* A tag in the manifest-file.
*/
public static String C_EXPORT_TAG_ADDRESS = "address";
/**
* A tag in the manifest-file.
*/
public static String C_EXPORT_TAG_SECTION = "section";
/**
* A tag in the manifest-file.
*/
public static String C_EXPORT_TAG_USERINFO = "userinfo";
/**
* A tag in the manifest-file.
*/
public static String C_EXPORT_TAG_USERGROUPS = "usergroups";
/**
* A tag in the manifest-file.
*/
public static String C_EXPORT_TAG_GROUPNAME = "groupname";
/**
* A string in the configuration-file.
*/
public static String C_CONFIGURATION_RESOURCEBROKER = "resourcebroker";
/**
* A string in the configuration-file.
*/
public static String C_CONFIGURATION_CACHE = "cache";
/**
* A string in the configuration-file.
*/
public static String C_CONFIGURATION_CLASS = "class";
/**
* A string in the configuration-file.
*/
public static String C_CONFIGURATION_REGISTRY = "registry";
/**
* A string in the configuration-file.
*/
public static String C_CLUSTERURL = "clusterurl";
/**
* wasLoggedIn
*/
static final int C_NEVER = 1;
/**
* wasLoggedIn
*/
static final int C_AT_LEAST_ONCE = 2;
/**
* wasLoggedIn
*/
static final int C_WHATEVER = 3;
/**
* The name of the synchronizationpath-tag in registry.
*/
static final String C_SYNCHRONISATION_PATH = "syncpath";
/**
* The name of the synchronizationproject-tag in registry.
*/
static final String C_SYNCHRONISATION_PROJECT = "syncproject";
/**
* The name of the synchronizationresource-tag in registry.
*/
static final String C_SYNCHRONISATION_RESOURCE = "syncresource";
/**
* The name of the synchronizationresource-tag in registry.
*/
static final String C_SYNCHRONISATION_RESOURCETAG = "res";
/**
* The name of the known launchers tag in registry.
*/
static final String C_REGISTRY_KNOWNLAUNCHERS = "launchers";
/**
* The name of the launcher tag in registry.
*/
static final String C_REGISTRY_LAUNCHER = "launcher";
/**
* The name of the error tag seperator in backoffice templates
*/
static final String C_ERRSPERATOR="_";
/**
* The name of the error tag prefix in backoffice templates
*/
static final String C_ERRPREFIX="err";
/**
* The name of the default site
*/
static final String C_DEFAULT_SITE = "/default";
/**
* The root name of the VFS
*/
static final String C_ROOTNAME_VFS = "/vfs";
/**
* The root name of the COS
*/
static final String C_ROOTNAME_COS = "/cos";
/**
* The name of the entry for the id generator to create new channelid's
*/
static final String C_TABLE_CHANNELID = "CORE_CHANNEL_ID";
/**
* The modus the cmsObject runs in. There are three diffrent: online, offline
* and export. It is used by the link replacement mechanism. (the extern mode is
* used for the names in the filesystem for the exported files.)
*/
static final int C_MODUS_AUTO = -1;
static final int C_MODUS_ONLINE = 0;
static final int C_MODUS_OFFLINE = 1;
static final int C_MODUS_EXPORT = 2;
static final int C_MODUS_EXTERN = 3;
/**
* The attribute of the publishclass tag in the modules registry used to show
* that this method needs the vector of the changed links for publishing.
* (i.e. the search module)
*/
static final String C_PUBLISH_METHOD_LINK = "linkpublish";
/**
* The name of the rootfolder for external links
*/
static final String C_LINKGALLERY_ROOTFOLDER = "/externallinks/";
/**
* The key for the date of the last linkcheck in the linkchecktable
*/
static final String C_LINKCHECKTABLE_DATE = "linkcheckdate";
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -