-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'lianq_0715' into lianq_0630
- Loading branch information
Showing
51 changed files
with
2,931 additions
and
436 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
76 changes: 76 additions & 0 deletions
76
dmestore-service/src/main/java/com/huawei/dmestore/model/CreateVmfsResponse02.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
package com.huawei.dmestore.model; | ||
|
||
import java.io.Serializable; | ||
import java.util.List; | ||
|
||
/** | ||
* @author yc | ||
* @Title: | ||
* @Description: | ||
* @date 2021/5/2810:41 | ||
*/ | ||
public class CreateVmfsResponse02 implements Serializable { | ||
private static final long serialVersionUID = 8718802610431878776L; | ||
|
||
private int successNo; | ||
private int failNo; | ||
private List<String> connectionResult ; | ||
private int partialSuccess; | ||
|
||
public CreateVmfsResponse02() { | ||
} | ||
|
||
public static long getSerialVersionUID() { | ||
return serialVersionUID; | ||
} | ||
|
||
public int getSuccessNo() { | ||
return successNo; | ||
} | ||
|
||
public void setSuccessNo(int successNo) { | ||
this.successNo = successNo; | ||
} | ||
|
||
public int getFailNo() { | ||
return failNo; | ||
} | ||
|
||
public void setFailNo(int failNo) { | ||
this.failNo = failNo; | ||
} | ||
|
||
public List<String> getConnectionResult() { | ||
return connectionResult; | ||
} | ||
|
||
public void setConnectionResult(List<String> connectionResult) { | ||
this.connectionResult = connectionResult; | ||
} | ||
|
||
public int getPartialSuccess() { | ||
return partialSuccess; | ||
} | ||
|
||
public void setPartialSuccess(int partialSuccess) { | ||
this.partialSuccess = partialSuccess; | ||
} | ||
|
||
public CreateVmfsResponse02(int successNo, int failNo, List<String> connectionResult, int partialSuccess) { | ||
this.successNo = successNo; | ||
this.failNo = failNo; | ||
this.connectionResult = connectionResult; | ||
this.partialSuccess = partialSuccess; | ||
} | ||
|
||
|
||
@Override | ||
public String toString() { | ||
return "CreateVmfsResponse{" + | ||
"successNo=" + successNo + | ||
", failNo=" + failNo + | ||
", connectionResult=" + connectionResult + | ||
'}'; | ||
} | ||
|
||
} |
60 changes: 60 additions & 0 deletions
60
dmestore-service/src/main/java/com/huawei/dmestore/model/MountVmfsReturn.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
package com.huawei.dmestore.model; | ||
|
||
import java.io.Serializable; | ||
import java.util.List; | ||
|
||
/** | ||
* @author yc | ||
* @Title: | ||
* @Description: | ||
* @date 2021/7/115:20 | ||
*/ | ||
public class MountVmfsReturn implements Serializable { | ||
private static final long serialVersionUID = -977833815757933935L; | ||
private boolean flag; | ||
private List<String> failedHost; | ||
private String description; | ||
public MountVmfsReturn(boolean flag) { | ||
this.flag = flag; | ||
} | ||
|
||
public MountVmfsReturn(boolean flag, List<String> failedHost) { | ||
this.flag = flag; | ||
this.failedHost = failedHost; | ||
} | ||
|
||
public MountVmfsReturn(boolean flag, List<String> failedHost, String description) { | ||
this.flag = flag; | ||
this.failedHost = failedHost; | ||
this.description = description; | ||
} | ||
|
||
public MountVmfsReturn(boolean flag, String description) { | ||
this.flag = flag; | ||
this.description = description; | ||
} | ||
|
||
public boolean isFlag() { | ||
return flag; | ||
} | ||
|
||
public void setFlag(boolean flag) { | ||
this.flag = flag; | ||
} | ||
|
||
public List<String> getFailedHost() { | ||
return failedHost; | ||
} | ||
|
||
public void setFailedHost(List<String> failedHost) { | ||
this.failedHost = failedHost; | ||
} | ||
|
||
public String getDescription() { | ||
return description; | ||
} | ||
|
||
public void setDescription(String description) { | ||
this.description = description; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.