source: trunk/org/expeditee/items/ItemPermission.java@ 4

Last change on this file since 4 was 4, checked in by davidb, 16 years ago

Starting source code to Expeditee

File size: 436 bytes
Line 
1package org.expeditee.items;
2
3public class ItemPermission {
4
5 public static final int PERMISSION_NONE = 0;
6
7 public static final int PERMISSION_FOLLOW_LINKS = 1;
8
9 public static final int PERMISSION_COPY = 2;
10
11 public static final int PERMISSION_TDFC = 3;
12
13 public static final int PERMISSION_FULL = 4;
14
15 public Item Item;
16
17 public int Permission;
18
19 public ItemPermission(Item item, int perm) {
20 Item = item;
21 Permission = perm;
22 }
23}
Note: See TracBrowser for help on using the repository browser.