aboutsummaryrefslogtreecommitdiffstats
path: root/src/net/java/sip/communicator/service/replacement/ReplacementProperty.java
blob: 70950f856edbfe68583d359b5127beb505af6dc9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
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";
    }
}