📄 jeffileconstants.java
字号:
//// ____.// __/\ ______| |__/\. _______// __ .____| | \ | +----+ \// _______| /--| | | - \ _ | : - \_________// \\______: :---| : : | : | \________>// |__\---\_____________:______: :____|____:_____\// /_____|//// . . . i n j a h i a w e t r u s t . . .////// JefFileConstants//// NK 09.03.2001 ////package org.jahia.services.jef;/** * constants for jef files * * @author NK */public final class JefFileConstants { /** * Status * */ /** * Means, the file require another Jahia license */ public static final int LOCKED = 0; /** * Means, the file has been extracted successfully */ public static final int UNLOCKED = 1; /** * Means, this is an Invalid Jef file ( missing crypted informations ) */ public static final int INVALID_JEF_FILE = 2; /** * Means, a Java Security Exception has occured */ public static final int JAVA_SECURITY_ERROR = 3; /** * Means, this is a IO File Exception */ public static final int IO_ERROR = 4; /** * Means, an unknow error has occured */ public static final int UNKNOWN_ERROR = 5;}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -