01: /*
02: * Copyright 2001 Sun Microsystems, Inc. All rights reserved.
03: * PROPRIETARY/CONFIDENTIAL. Use of this product is subject to license terms.
04: */
05:
06: package com.sun.portal.subscriptions.context;
07:
08: public interface DSAMEConstants {
09:
10: // IS Services: default version
11: public static String SVC_VERSION = "1.0";
12:
13: // Attribute Prefix
14: public static final String ATTR_PREFIX = "sunPortal";
15:
16: //
17: // Organization Attributes
18: //
19:
20: public static final String ATTR_START_PROFILER = "StartProfiler";
21:
22: public static final String ATTR_STOP_PROFILER = "StopProfiler";
23:
24: public static final String ATTR_PROFILER_SMTP = ATTR_PREFIX
25: + "ProfilerSMTP";
26:
27: public static final String ATTR_PROFILER_EMAIL = ATTR_PREFIX
28: + "ProfilerEmail";
29:
30: public static final String ATTR_PROFILER_PROVIDER = ATTR_PREFIX
31: + "ProfilerProvider";
32:
33: public static final String ATTR_PROFILER_DEFAULT_SEARCH = ATTR_PREFIX
34: + "ProfilerDefaultSearch";
35:
36: public static final String ATTR_PROFILER_MAX_HITS = ATTR_PREFIX
37: + "ProfilerMaxHits";
38:
39: //
40: // Policy Attributes
41: //
42:
43: public static final String ATTR_ENABLED = ATTR_PREFIX
44: + "SubscriptionsEnabled";
45:
46: }
|