⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 licenseconstants.java

📁 java 写的一个新闻发布系统
💻 JAVA
字号:
////                                   ____.//                       __/\ ______|    |__/\.     _______//            __   .____|    |       \   |    +----+       \//    _______|  /--|    |    |    -   \  _    |    :    -   \_________//   \\______: :---|    :    :           |    :    |         \________>//           |__\---\_____________:______:    :____|____:_____\//                                      /_____|////                 . . . i n   j a h i a   w e   t r u s t . . .//////  LicenseConstants////  NK      11.06.2001////package org.jahia.security.license;/** * LicenseConstants * * @author NK */public final class LicenseConstants {    /**     * Constants defined for Jahia License     *     * @author Khue Nguyen     */    /** OpenJoda License Type **/    public static final int OPENJODA_LICENSE_TYPE 		= 1;    /** ProJoda License Type **/    public static final int PROJODA_LICENSE_TYPE 		= 2;    /** License Type Relational Comparator "<" **/    public static final int RELCOMP_SMALLER 			= 1;    /** License Type Relational Comparator "<=" **/    public static final int RELCOMP_SMALLER_OR_EQUAL 	= 2;    /** License Type Relational Comparator "=" **/    public static final int RELCOMP_EQUAL 				= 3;    /** License Type Relational Comparator ">=" **/    public static final int RELCOMP_BIGGER_OR_EQUAL 	= 4;    /** License Type Relational Comparator ">" **/    public static final int RELCOMP_BIGGER				= 5;    /** License Type parameter **/    public static final String LICENSE_TYPE_OPTION				= "licenseType";    /** License Type Relational Comparator **/    public static final String LICENSE_TYPE_RELCOMP_OPTION		= "relComp";    /** Identifier for a licenseID that disables check of hostname/host ip address */    public static final String LICENSEID_NULL                   = "-1";}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -