KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > ubermq > jms > common > CommonConfig


1 /*
2  * Contents copyright 2002-03 Rhombus Technologies.
3  */

4 package com.ubermq.jms.common;
5
6 /**
7  * Common configuration options for all JMS abstractions.<P>
8  * @since 2.4
9  */

10 public class CommonConfig
11 {
12     private CommonConfig()
13     {
14         super();
15     }
16
17     /**
18      * the size of the buffer allocated for custom properties. this can be small
19      * if you are not actively using properties, but make it large if you
20      * are putting objects,etc. in there
21      */

22     public static final String JavaDoc DGP_MAXIMUM_PROPERTY_LENGTH = "server.dgram.maximumprops";
23
24 }
Popular Tags