Skip to content
GitLab
Explore
Projects
Groups
Topics
Snippets
Projects
Groups
Topics
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Register
Sign in
Toggle navigation
Menu
UPSMF
examsAndAdmissions
Commits
0a60efc1
Commit
0a60efc1
authored
1 year ago
by
shishir suman
Browse files
Options
Download
Patches
Plain Diff
adding cloud storage type as gcloud
parent
126471b0
main
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
common-util/src/main/java/org/upsmf/common/util/CloudStorageUtil.java
+4
-2
...src/main/java/org/upsmf/common/util/CloudStorageUtil.java
with
4 additions
and
2 deletions
+4
-2
common-util/src/main/java/org/upsmf/common/util/CloudStorageUtil.java
+
4
−
2
View file @
0a60efc1
...
...
@@ -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
(
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment
Menu
Explore
Projects
Groups
Topics
Snippets