aboutsummaryrefslogtreecommitdiffstats
path: root/src/net/java/sip/communicator/service/replacement/ReplacementProperty.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/net/java/sip/communicator/service/replacement/ReplacementProperty.java')
-rw-r--r--src/net/java/sip/communicator/service/replacement/ReplacementProperty.java34
1 files changed, 34 insertions, 0 deletions
diff --git a/src/net/java/sip/communicator/service/replacement/ReplacementProperty.java b/src/net/java/sip/communicator/service/replacement/ReplacementProperty.java
new file mode 100644
index 0000000..70950f8
--- /dev/null
+++ b/src/net/java/sip/communicator/service/replacement/ReplacementProperty.java
@@ -0,0 +1,34 @@
+/*
+ * SIP Communicator, the OpenSource Java VoIP and Instant Messaging client.
+ *
+ * Distributable under LGPL license. See terms of license at gnu.org.
+ */
+package net.java.sip.communicator.service.replacement;
+
+/**
+ * Property for Replacement Service
+ *
+ * @author Purvesh Sahoo
+ */
+public final class ReplacementProperty
+{
+ /**
+ * The replacement property.
+ */
+ public static final String REPLACEMENT_ENABLE =
+ "net.java.sip.communicator.service.replacement.enable";
+
+ /**
+ * Returns the property name of individual replacement sources
+ *
+ * @param source the replacement source name.
+ * @return the property name of the specified source as will be stored in
+ * the properties file.
+ */
+ public static String getPropertyName(String source)
+ {
+ return "net.java.sip.communicator.service.replacement."
+ + source
+ + ".enable";
+ }
+} \ No newline at end of file