Project

General

Profile

1
/**
2
 *  '$RCSfile$'
3
 *    Purpose: A Class that represents an XML Text node and its contents,
4
 *             and can build itself from a database connection
5
 *  Copyright: 2000 Regents of the University of California and the
6
 *             National Center for Ecological Analysis and Synthesis
7
 *    Authors: Matt Jones
8
 *    Release: @release@
9
 *
10
 *   '$Author: tao $'
11
 *     '$Date: 2003-02-12 18:25:13 -0800 (Wed, 12 Feb 2003) $'
12
 * '$Revision: 1399 $'
13
 *
14
 * This program is free software; you can redistribute it and/or modify
15
 * it under the terms of the GNU General Public License as published by
16
 * the Free Software Foundation; either version 2 of the License, or
17
 * (at your option) any later version.
18
 *
19
 * This program is distributed in the hope that it will be useful,
20
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
22
 * GNU General Public License for more details.
23
 *
24
 * You should have received a copy of the GNU General Public License
25
 * along with this program; if not, write to the Free Software
26
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
27
 */
28

    
29
package edu.ucsb.nceas.metacat;
30

    
31
import java.util.Vector;
32

    
33
/**
34
 * A Class that represents an XML access rule. It include principal and 
35
 * permission
36
 */
37
public class AccessRule
38
{
39
  private Vector principle = new Vector();
40
  private int permission = -1;
41

    
42
    /** Set the a principle */
43
    public void addPrinciple(String newPrinciple) 
44
    {
45
      this.principle.addElement(newPrinciple);
46
    }
47

    
48
    /** Get the principle vector */
49
    public Vector getPrinciple() 
50
    {
51
      return principle;
52
    }
53

    
54
    /** 
55
     * Set a permission. 
56
     */
57
    public void setPermission(int myPermission) 
58
    {
59
      permission = myPermission;
60
    }
61
    
62
    /**
63
     * Get permission
64
     */
65
    public int getPermission()
66
    {
67
      return permission;
68
    }
69
}
(4-4/51)