KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jacorb > notification > conf > Attributes


1 package org.jacorb.notification.conf;
2
3 /*
4  * JacORB - a free Java ORB
5  *
6  * Copyright (C) 1999-2004 Gerald Brose
7  *
8  * This library is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Library General Public
10  * License as published by the Free Software Foundation; either
11  * version 2 of the License, or (at your option) any later version.
12  *
13  * This library is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16  * Library General Public License for more details.
17  *
18  * You should have received a copy of the GNU Library General Public
19  * License along with this library; if not, write to the Free
20  * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21  *
22  */

23
24 /**
25  * @author Alphonse Bendt
26  * @version $Id: Attributes.java,v 1.9 2005/04/27 10:33:43 alphonse.bendt Exp $
27  */

28
29 public interface Attributes
30 {
31     String JavaDoc FILTER_POOL_WORKERS =
32         "jacorb.notification.filter.thread_pool_size";
33
34     String JavaDoc DELIVER_POOL_WORKERS =
35         "jacorb.notification.proxysupplier.thread_pool_size";
36
37     String JavaDoc PULL_POOL_WORKERS =
38         "jacorb.notification.proxyconsumer.thread_pool_size";
39
40     String JavaDoc PULL_CONSUMER_POLL_INTERVAL =
41         "jacorb.notification.supplier.poll_intervall";
42
43     String JavaDoc MAX_BATCH_SIZE =
44         "jacorb.notification.max_batch_size";
45
46     String JavaDoc MAX_EVENTS_PER_CONSUMER =
47         "jacorb.notification.max_events_per_consumer";
48
49     String JavaDoc ORDER_POLICY =
50         "jacorb.notification.order_policy";
51
52     String JavaDoc DISCARD_POLICY =
53         "jacorb.notification.discard_policy";
54
55     String JavaDoc BACKOUT_INTERVAL =
56         "jacorb.notification.consumer.backout_interval";
57
58     String JavaDoc EVENTCONSUMER_ERROR_THRESHOLD =
59         "jacorb.notification.consumer.error_threshold";
60
61     String JavaDoc THREADPOLICY =
62         "jacorb.notification.proxysupplier.threadpolicy";
63
64     String JavaDoc FILTER_FACTORY =
65         "jacorb.notification.default_filter_factory";
66
67     String JavaDoc MAX_NUMBER_CONSUMERS =
68         "jacorb.notification.consumer.max_number";
69
70     String JavaDoc MAX_NUMBER_SUPPLIERS =
71         "jacorb.notification.supplier.max_number";
72
73     String JavaDoc START_TIME_SUPPORTED =
74         "jacorb.notification.start_time_supported";
75
76     String JavaDoc STOP_TIME_SUPPORTED =
77         "jacorb.notification.stop_time_supported";
78
79     String JavaDoc DISPOSE_PROXY_CALLS_DISCONNECT =
80         "jacorb.notification.proxy.destroy_causes_disconnect";
81
82     String JavaDoc LAZY_DEFAULT_ADMIN_INIT =
83         "jacorb.notification.admin.lazy_initialization";
84
85     String JavaDoc REJECT_NEW_EVENTS =
86         "jacorb.notification.admin.reject_new_events";
87
88     String JavaDoc MAX_QUEUE_LENGTH =
89         "jacorb.notification.admin.max_queue_length";
90
91     String JavaDoc PRINT_IOR =
92         "jacorb.notification.print_ior";
93
94     String JavaDoc PRINT_CORBALOC =
95         "jacorb.notification.print_corbaloc";
96
97     String JavaDoc IOR_FILE =
98         "jacorb.notification.ior_file";
99
100     String JavaDoc START_CHANNELS =
101         "jacorb.notification.start_channels";
102
103     String JavaDoc REGISTER_NAME_ID =
104         "jacorb.notification.register_name.id";
105
106     String JavaDoc REGISTER_NAME_KIND =
107         "jacorb.notification.register_name.kind";
108
109     String JavaDoc ENABLE_TYPED_CHANNEL =
110         "jacorb.notification.enable_typed_channel";
111
112     String JavaDoc USE_GC = "jacorb.notification.enable_gc";
113
114     String JavaDoc FILTER_PLUGIN_PREFIX =
115         "jacorb.notification.filter.plugin";
116
117     String JavaDoc WILDCARDMAP_CLASS = "jacorb.notification.filter.wildcardmap_impl";
118
119     String JavaDoc RETRY_STRATEGY_FACTORY = "jacorb.notification.proxysupplier.retrystrategy_factory";
120
121     String JavaDoc DEAD_FILTER_INTERVAL = "jacorb.notification.filter.dead_interval";
122 }
123
Popular Tags