diff options
Diffstat (limited to 'java/common/src')
-rw-r--r-- | java/common/src/main/java/org/apache/qpid/common/ServerPropertyNames.java | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/java/common/src/main/java/org/apache/qpid/common/ServerPropertyNames.java b/java/common/src/main/java/org/apache/qpid/common/ServerPropertyNames.java index 5b73b26af3..3d792459a9 100644 --- a/java/common/src/main/java/org/apache/qpid/common/ServerPropertyNames.java +++ b/java/common/src/main/java/org/apache/qpid/common/ServerPropertyNames.java @@ -22,7 +22,7 @@ package org.apache.qpid.common; /** * Keys names used within the serverProperties argument of the ConnectionStart - * method. These property names are Qpid specific. + * method. Property names which start with "qpid." are Qpid specific. */ public final class ServerPropertyNames { @@ -45,10 +45,16 @@ public final class ServerPropertyNames */ public static final String FEATURE_QPID_JMS_SELECTOR = "qpid.jms-selector"; + /** + * Server property: 'name' attribute of the server instance. + */ + public static final String QPID_INSTANCE_NAME = "qpid.instance_name"; - public static final String QPID_PRODUCT = "qpid.product"; - public static final String QPID_SERVER_VERSION = "qpid.server_version"; - public static final String QPID_SERVER_NAME = "qpid.server_name"; - public static final String QPID_SERVER_BUILD_VERSION = "qpid.server_build_version"; + /** + * Server property: build number. + */ + public static final String QPID_BUILD = "qpid.build"; + public static final String PRODUCT = "product"; + public static final String VERSION = "version"; } |