01: /* Copyright 2001, 2002 The JA-SIG Collaborative. All rights reserved.
02: * See license distributed with this file and
03: * available online at http://www.uportal.org/license.html
04: */
05:
06: package org.jasig.portal.groups;
07:
08: /**
09: * Defines constants for Groups related classes
10: *
11: * @author Alex Vigdor
12: * @version $Revision: 34758 $
13: */
14:
15: public interface IGroupConstants {
16: public final String EVERYONE = "org.jasig.portal.security.IPerson";
17: public final String CHANNEL_CATEGORIES = "org.jasig.portal.ChannelDefinition";
18: public final String PORTAL_ADMINISTRATORS = "org.jasig.portal.security.IPerson.PortalAdministrators";
19:
20: //Search method constants
21: public final int IS = 1;
22: public final int STARTS_WITH = 2;
23: public final int ENDS_WITH = 3;
24: public final int CONTAINS = 4;
25:
26: // Composite group service:
27: public final String NODE_SEPARATOR = ".";
28: }
|