Package org.jenkinsci.plugins.saml
Class SamlEncryptionData
- java.lang.Object
-
- hudson.model.AbstractDescribableImpl<SamlEncryptionData>
-
- org.jenkinsci.plugins.saml.SamlEncryptionData
-
- All Implemented Interfaces:
Describable<SamlEncryptionData>
public class SamlEncryptionData extends AbstractDescribableImpl<SamlEncryptionData>
Simple immutable data class to hold the optional encryption data section of the plugin's configuration page
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
SamlEncryptionData.DescriptorImpl
-
Constructor Summary
Constructors Constructor Description SamlEncryptionData(String keystorePath, Secret keystorePassword, Secret privateKeyPassword, String privateKeyAlias, boolean forceSignRedirectBindingAuthnRequest)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Secret
getKeystorePassword()
String
getKeystorePasswordPlainText()
String
getKeystorePath()
String
getPrivateKeyAlias()
Secret
getPrivateKeyPassword()
String
getPrivateKeyPasswordPlainText()
boolean
isForceSignRedirectBindingAuthnRequest()
String
toString()
-
Methods inherited from class hudson.model.AbstractDescribableImpl
getDescriptor
-
-
-
-
Method Detail
-
getKeystorePath
public String getKeystorePath()
-
getKeystorePassword
@CheckForNull public Secret getKeystorePassword()
-
getKeystorePasswordPlainText
@CheckForNull public String getKeystorePasswordPlainText()
-
getPrivateKeyPassword
@CheckForNull public Secret getPrivateKeyPassword()
-
getPrivateKeyPasswordPlainText
@CheckForNull public String getPrivateKeyPasswordPlainText()
-
getPrivateKeyAlias
public String getPrivateKeyAlias()
-
isForceSignRedirectBindingAuthnRequest
public boolean isForceSignRedirectBindingAuthnRequest()
-
-