aboutsummaryrefslogtreecommitdiffstats
path: root/tools/misc/policyprocessor/SecurityLabel.java
blob: c7ffbcaaeb07a58d26f824f60609d901cc1f7970 (plain)
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
34
/**
 * (C) Copyright IBM Corp. 2005
 *
 * $Id: SecurityLabel.java,v 1.2 2005/06/17 20:00:04 rvaldez Exp $
 *
 * Author: Ray Valdez
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License as
 * published by the Free Software Foundation, version 2 of the
 * License.
 *
 * SecurityLabel Class.  
 *
 * <p>
 *
 * Keeps track of types.
 *
 * <p>
 *
 *
 */
import java.util.*;
public class SecurityLabel
{
 Vector ids;
 Vector vlans;
 Vector slots;
 Vector steTypes;
 int steSsidPosition;
 Vector chwIDs;
 Vector chwTypes;
 int chwSsidPosition;
}