OWL ITS + 탐지시스템(인터넷 진흥원)
src/main/java/kr/wisestone/owl/constant/MngPermission.java
@@ -5,11 +5,10 @@
 */
public class MngPermission {
    public static final int USER_PERMISSION_MNG_ISSUE_ALL = 32768;  // 전체 이슈 관리
    public static final int USER_PERMISSION_MNG_PROJECT_ALL = 16384; // 전체 프로젝트 관리
    public static final int USER_PERMISSION_MNG_PARTNER = 8192;   //  업체/ISP/호스팅 관리      10000000000000
    public static final int USER_PERMISSION_MNG_WORKSPACE = 4096;   //  WORK SPACE 관리       01000000000000
    public static final int USER_PERMISSION_MNG_PROJECT = 2048;   //  프로젝트 관리             00100000000000
    public static final int USER_PERMISSION_MNG_WORKSPACE = 16384;   //  WORK SPACE 관리       01000000000000
    public static final int USER_PERMISSION_MNG_PROJECT = 8192;   //  프로젝트 관리             00100000000000
    public static final int USER_PERMISSION_MNG_ISSUE = 4096; // 이슈 관리
    public static final int USER_PERMISSION_MNG_PARTNER = 2048;   //  업체/ISP/호스팅 관리      10000000000000
    public static final int USER_PERMISSION_MNG_API = 1024;        //  API 관리               00010000000000
    public static final int USER_PERMISSION_MNG_ISSUE_STATUS = 512;  //  ISSUE SETTING 관리   00001000000000
    public static final int USER_PERMISSION_MNG_WORKFLOW = 256;     // WORK FLOW 관리         000000100000000
@@ -40,16 +39,15 @@
    public static int makeAllPermission()
    {
        return (USER_PERMISSION_MNG_ISSUE_ALL |
                USER_PERMISSION_MNG_PROJECT_ALL |
                USER_PERMISSION_MNG_PARTNER |
                USER_PERMISSION_MNG_WORKSPACE |
        return (
                USER_PERMISSION_MNG_PROJECT |
                USER_PERMISSION_MNG_ISSUE |
                USER_PERMISSION_MNG_WORKSPACE |
                USER_PERMISSION_MNG_PARTNER |
                USER_PERMISSION_MNG_API |
                USER_PERMISSION_MNG_NOTICE |
                USER_PERMISSION_MNG_FAQ |
                USER_PERMISSION_MNG_QNA |
                USER_PERMISSION_MNG_EVENT |
                USER_PERMISSION_MNG_GUIDE |
                USER_PERMISSION_MNG_ISSUE_SETTING);
    }
@@ -57,7 +55,7 @@
    public static int makeSubAllPermission()
    {
        return  (/*USER_PERMISSION_MNG_WORKSPACE |*/
                USER_PERMISSION_MNG_ISSUE_ALL | USER_PERMISSION_MNG_PROJECT_ALL |
                USER_PERMISSION_MNG_ISSUE |
                USER_PERMISSION_MNG_API | USER_PERMISSION_MNG_NOTICE |
                USER_PERMISSION_MNG_FAQ | USER_PERMISSION_MNG_QNA |
                USER_PERMISSION_MNG_EVENT | USER_PERMISSION_MNG_GUIDE |