Commit 0a60efc1 authored by shishir suman's avatar shishir suman
Browse files

adding cloud storage type as gcloud

parent 126471b0
No related merge requests found
Showing with 4 additions and 2 deletions
+4 -2
......@@ -19,7 +19,7 @@ public class CloudStorageUtil {
private static final Map<String, IStorageService> storageServiceMap = new HashMap<>();
public enum CloudStorageType {
AZURE("azure");
AZURE("azure"), GCLOUD("gcloud");
private String type;
private CloudStorageType(String type) {
......@@ -33,7 +33,9 @@ public class CloudStorageUtil {
public static CloudStorageType getByName(String type) {
if (AZURE.type.equals(type)) {
return CloudStorageType.AZURE;
} else {
} else if (GCLOUD.type.equals(type)) {
return CloudStorageType.GCLOUD;
}else {
ProjectCommonException.throwClientErrorException(
ResponseCode.errorUnsupportedCloudStorage,
ProjectUtil.formatMessage(
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment