Skip to main content
summaryrefslogtreecommitdiffstats
blob: 243ab7fecef4cb873e191a0592178f9d1a6228da (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
/*******************************************************************************
 * Copyright (c) 2010 Boeing.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *     Boeing - initial API and implementation
 *******************************************************************************/
package org.eclipse.osee.framework.core.model.test.access;

import org.eclipse.osee.framework.core.enums.PermissionEnum;

public class PermissionTest {

   public void main(String[] args) {
      PermissionEnum[] a = {PermissionEnum.DENY, PermissionEnum.FULLACCESS, null};
      PermissionEnum[] b = {PermissionEnum.LOCK, PermissionEnum.FULLACCESS, null};
      for (int i = 0; i < 3; i++) {
         for (int j = 0; j < 3; j++) {
            PermissionEnum branchPermission = a[i];
            PermissionEnum userPermission = b[j];
            if (branchPermission == PermissionEnum.DENY || userPermission == null) {
               System.out.print("T");
            } else {
               System.out.print("F");
            }
         }
         System.out.println();
      }
   }
}

Back to the top