01: package org.jacorb.notification.conf;
02:
03: /*
04: * JacORB - a free Java ORB
05: *
06: * Copyright (C) 1999-2004 Gerald Brose
07: *
08: * This library is free software; you can redistribute it and/or
09: * 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.10 2006/01/21 00:45:41 alphonse.bendt Exp $
27: */
28:
29: public interface Attributes {
30: String FILTER_POOL_WORKERS = "jacorb.notification.filter.thread_pool_size";
31:
32: String DELIVER_POOL_WORKERS = "jacorb.notification.proxysupplier.thread_pool_size";
33:
34: String PULL_POOL_WORKERS = "jacorb.notification.proxyconsumer.thread_pool_size";
35:
36: String PULL_CONSUMER_POLL_INTERVAL = "jacorb.notification.supplier.poll_intervall";
37:
38: String MAX_BATCH_SIZE = "jacorb.notification.max_batch_size";
39:
40: String MAX_EVENTS_PER_CONSUMER = "jacorb.notification.max_events_per_consumer";
41:
42: String ORDER_POLICY = "jacorb.notification.order_policy";
43:
44: String DISCARD_POLICY = "jacorb.notification.discard_policy";
45:
46: String BACKOUT_INTERVAL = "jacorb.notification.consumer.backout_interval";
47:
48: String EVENTCONSUMER_ERROR_THRESHOLD = "jacorb.notification.consumer.error_threshold";
49:
50: String THREADPOLICY = "jacorb.notification.proxysupplier.threadpolicy";
51:
52: String FILTER_FACTORY = "jacorb.notification.default_filter_factory";
53:
54: String MAX_NUMBER_CONSUMERS = "jacorb.notification.consumer.max_number";
55:
56: String MAX_NUMBER_SUPPLIERS = "jacorb.notification.supplier.max_number";
57:
58: String START_TIME_SUPPORTED = "jacorb.notification.start_time_supported";
59:
60: String STOP_TIME_SUPPORTED = "jacorb.notification.stop_time_supported";
61:
62: String DISPOSE_PROXY_CALLS_DISCONNECT = "jacorb.notification.proxy.destroy_causes_disconnect";
63:
64: String LAZY_DEFAULT_ADMIN_INIT = "jacorb.notification.admin.lazy_initialization";
65:
66: String REJECT_NEW_EVENTS = "jacorb.notification.admin.reject_new_events";
67:
68: String MAX_QUEUE_LENGTH = "jacorb.notification.admin.max_queue_length";
69:
70: String PRINT_IOR = "jacorb.notification.print_ior";
71:
72: String PRINT_CORBALOC = "jacorb.notification.print_corbaloc";
73:
74: String IOR_FILE = "jacorb.notification.ior_file";
75:
76: String START_CHANNELS = "jacorb.notification.start_channels";
77:
78: String REGISTER_NAME_ID = "jacorb.notification.register_name.id";
79:
80: String REGISTER_NAME_KIND = "jacorb.notification.register_name.kind";
81:
82: String ENABLE_TYPED_CHANNEL = "jacorb.notification.enable_typed_channel";
83:
84: String USE_GC = "jacorb.notification.enable_gc";
85:
86: String FILTER_PLUGIN_PREFIX = "jacorb.notification.filter.plugin";
87:
88: String WILDCARDMAP_CLASS = "jacorb.notification.filter.wildcardmap_impl";
89:
90: String RETRY_STRATEGY_FACTORY = "jacorb.notification.proxysupplier.retrystrategy_factory";
91:
92: String DEAD_FILTER_INTERVAL = "jacorb.notification.filter.dead_interval";
93:
94: String RUN_SYSTEM_GC = "jacorb.notification.servant.deactivate.run_system_gc";
95: }
|