Class AzureCertPathProperties
- java.lang.Object
-
- com.azure.spring.security.keyvault.certificates.starter.AzureCertPathProperties
-
@EnableConfigurationProperties(AzureCertPathProperties.class) @ConfigurationProperties("azure.cert-path") public class AzureCertPathProperties extends Object
This is used to generate spring-configuration-metadata.json- See Also:
- Metadata
-
-
Constructor Summary
Constructors Constructor Description AzureCertPathProperties()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getCustom()
Gets the path to put custom certificates.String
getWellKnown()
Gets the path to put well-known certificates.void
setCustom(String custom)
Sets the path to put custom certificates.void
setWellKnown(String wellKnown)
Sets the path to put well-known certificates.
-
-
-
Method Detail
-
getCustom
public String getCustom()
Gets the path to put custom certificates.- Returns:
- the path to put custom certificates
-
getWellKnown
public String getWellKnown()
Gets the path to put well-known certificates.- Returns:
- the path to put well-known certificates
-
setCustom
public void setCustom(String custom)
Sets the path to put custom certificates.- Parameters:
custom
- the path to put custom certificates
-
setWellKnown
public void setWellKnown(String wellKnown)
Sets the path to put well-known certificates.- Parameters:
wellKnown
- the path to put well-known certificates
-
-