Class StorageProperties
- java.lang.Object
-
- com.azure.spring.autoconfigure.storage.StorageProperties
-
@Validated @ConfigurationProperties("azure.storage") public class StorageProperties extends ObjectStorage properties.
-
-
Constructor Summary
Constructors Constructor Description StorageProperties()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetAccountKey()Gets the account key.StringgetAccountName()Gets the account name.StringgetBlobEndpoint()Gets the Blob endpoint.StringgetFileEndpoint()Gets the File endpoint.voidsetAccountKey(String accountKey)Sets the account key.voidsetAccountName(String accountName)Sets the account name.voidsetBlobEndpoint(String blobEndpoint)Sets the Blob endpoint.voidsetFileEndpoint(String fileEndpoint)Sets the File endpoint.
-
-
-
Method Detail
-
getAccountName
public String getAccountName()
Gets the account name.- Returns:
- the account name
-
setAccountName
public void setAccountName(String accountName)
Sets the account name.- Parameters:
accountName- the account name
-
getBlobEndpoint
public String getBlobEndpoint()
Gets the Blob endpoint.- Returns:
- the Blob endpoint
-
setBlobEndpoint
public void setBlobEndpoint(String blobEndpoint)
Sets the Blob endpoint.- Parameters:
blobEndpoint- the Blob endpoint
-
getFileEndpoint
public String getFileEndpoint()
Gets the File endpoint.- Returns:
- the File endpoint
-
setFileEndpoint
public void setFileEndpoint(String fileEndpoint)
Sets the File endpoint.- Parameters:
fileEndpoint- the File endpoint
-
getAccountKey
public String getAccountKey()
Gets the account key.- Returns:
- the account key
-
setAccountKey
public void setAccountKey(String accountKey)
Sets the account key.- Parameters:
accountKey- the account key
-
-