<dependency>
<groupId>com.microsoft.azure</groupId>
<artifactId>azure-service-api</artifactId>
<version>1.0.0</version>
</dependency>
@AzureModule("azure-storage")
@AzureService(serviceType = ServiceType.BLOB_STORAGE)
public class BlobStorageService {
// ...
}
@AzureProperty(name = "accountName", type = AzureProperty.PropertyType.STRING)
private String accountName;
@AzureProperty(name = "accountKey", type = AzureProperty.PropertyType.SECRET)
private String accountKey;