01: /**
02: * $Id: ProvisionRoles.java,v 1.2 2007/01/26 03:50:13 portalbld Exp $
03: * Copyright 2005 Sun Microsystems, Inc. All
04: * rights reserved. Use of this product is subject
05: * to license terms. Federal Acquisitions:
06: * Commercial Software -- Government Users
07: * Subject to Standard License Terms and
08: * Conditions.
09: *
10: * Sun, Sun Microsystems, the Sun logo, and Sun ONE
11: * are trademarks or registered trademarks of Sun Microsystems,
12: * Inc. in the United States and other countries.
13: */package com.sun.portal.service;
14:
15: public interface ProvisionRoles {
16: public static final String OWNER_ROLE = "owner";
17: public static final String MEMBER_ROLE = "member";
18: public static final String VISITOR_ROLE = "visitor";
19: public static final String INVITED_ROLE = "invited";
20: public static final String REJECTED_ROLE = "rejected";
21: public static final String PENDING_ROLE = "pending";
22: public static final String BANNED_ROLE = "banned";
23:
24: }
|