Class EncryptionSettings
- java.lang.Object
-
- jetbrains.buildServer.serverSide.crypt.EncryptionSettings
-
- All Implemented Interfaces:
MainConfigProcessor,ServerExtension,TeamCityExtension,XmlExternalizable,XmlStorable
@Service public class EncryptionSettings extends Object implements MainConfigProcessor
-
-
Field Summary
Fields Modifier and Type Field Description static StringENCRYPTION_KEYstatic StringENCRYPTION_SETTINGSstatic StringENCRYPTION_STRATEGY
-
Constructor Summary
Constructors Constructor Description EncryptionSettings()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetEncryptionKey()StringgetEncryptionStrategy()voidreadFrom(org.jdom.Element rootElement)Read this element data from given JDOM nodevoidsetEncryptionKey(String encryptionKey)voidsetEncryptionStrategy(String encryptionStrategy)voidwriteTo(org.jdom.Element parentElement)Write data to the JDOM element
-
-
-
Field Detail
-
ENCRYPTION_SETTINGS
public static final String ENCRYPTION_SETTINGS
- See Also:
- Constant Field Values
-
ENCRYPTION_STRATEGY
public static final String ENCRYPTION_STRATEGY
- See Also:
- Constant Field Values
-
ENCRYPTION_KEY
public static final String ENCRYPTION_KEY
- See Also:
- Constant Field Values
-
-
Method Detail
-
readFrom
public void readFrom(org.jdom.Element rootElement)
Description copied from interface:XmlStorableRead this element data from given JDOM node- Specified by:
readFromin interfaceXmlStorable- Parameters:
rootElement- element which contains information about this storable
-
writeTo
public void writeTo(org.jdom.Element parentElement)
Description copied from interface:XmlExternalizableWrite data to the JDOM element- Specified by:
writeToin interfaceXmlExternalizable- Parameters:
parentElement- - parent element to write data to
-
getEncryptionStrategy
public String getEncryptionStrategy()
-
setEncryptionStrategy
public void setEncryptionStrategy(String encryptionStrategy)
-
getEncryptionKey
public String getEncryptionKey()
-
setEncryptionKey
public void setEncryptionKey(String encryptionKey)
-
-