Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Source code: com/flexstor/common/constants/BucketConstantsI.java


1   /*
2    * BucketConstantsI.java
3    *
4    * Copyright $Date: 2003/08/11 02:22:32 $ FLEXSTOR.net Inc.
5    *
6    * This work is licensed for use and distribution under license terms found at
7    * http://www.flexstor.org/license.html
8    *
9    */
10  
11  package com.flexstor.common.constants;
12  
13  /**
14   * This is the client read object for a IBucketConstants. This will contain
15   * state information.
16   *
17   * @author Daniel J. Nickel 2/10/99
18   * @version 1.0
19   * @since FlexDB 3.0
20   * @see com.flexstor.ejb.dataobject.Data
21   * @see com.flexstor.ejb.dataobject.FieldData
22   */
23  
24  public interface BucketConstantsI
25  {
26  
27      /* MKS Identifier */
28      public final static String IDENTIFIER="$Id: BucketConstantsI.java,v 1.3 2003/08/11 02:22:32 aleric Exp $";
29  
30      /**
31      * Normal Bucket
32      */
33      public final static int NORMAL_BUCKET = 0;
34      
35      /**
36      * Element Bucket
37      */
38      public final static int ELEMENT_BUCKET = 1;
39      
40      /**
41      * Asset Bucket
42      */
43      public final static int ASSET_BUCKET = 2;
44      
45      /**
46      * Asset Bucket
47      */
48      public final static int ASSET_ROLE_BUCKET = 3;
49  }