mirror of
https://codeberg.org/gitnex/tea4j-autodeploy
synced 2026-06-07 02:02:17 +00:00
Synchronizing API and documentation updates
This commit is contained in:
@@ -25,6 +25,9 @@ public class CommitAffectedFiles implements Serializable {
|
||||
@SerializedName("filename")
|
||||
private String filename = null;
|
||||
|
||||
@SerializedName("status")
|
||||
private String status = null;
|
||||
|
||||
public CommitAffectedFiles filename(String filename) {
|
||||
this.filename = filename;
|
||||
return this;
|
||||
@@ -44,6 +47,25 @@ public class CommitAffectedFiles implements Serializable {
|
||||
this.filename = filename;
|
||||
}
|
||||
|
||||
public CommitAffectedFiles status(String status) {
|
||||
this.status = status;
|
||||
return this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get status
|
||||
*
|
||||
* @return status
|
||||
*/
|
||||
@Schema(description = "")
|
||||
public String getStatus() {
|
||||
return status;
|
||||
}
|
||||
|
||||
public void setStatus(String status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean equals(java.lang.Object o) {
|
||||
if (this == o) {
|
||||
@@ -53,12 +75,13 @@ public class CommitAffectedFiles implements Serializable {
|
||||
return false;
|
||||
}
|
||||
CommitAffectedFiles commitAffectedFiles = (CommitAffectedFiles) o;
|
||||
return Objects.equals(this.filename, commitAffectedFiles.filename);
|
||||
return Objects.equals(this.filename, commitAffectedFiles.filename)
|
||||
&& Objects.equals(this.status, commitAffectedFiles.status);
|
||||
}
|
||||
|
||||
@Override
|
||||
public int hashCode() {
|
||||
return Objects.hash(filename);
|
||||
return Objects.hash(filename, status);
|
||||
}
|
||||
|
||||
@Override
|
||||
@@ -67,6 +90,7 @@ public class CommitAffectedFiles implements Serializable {
|
||||
sb.append("class CommitAffectedFiles {\n");
|
||||
|
||||
sb.append(" filename: ").append(toIndentedString(filename)).append("\n");
|
||||
sb.append(" status: ").append(toIndentedString(status)).append("\n");
|
||||
sb.append("}");
|
||||
return sb.toString();
|
||||
}
|
||||
|
||||
@@ -89,7 +89,11 @@ public class MigrateRepoOptions implements Serializable {
|
||||
GIT("git"),
|
||||
GITHUB("github"),
|
||||
GITEA("gitea"),
|
||||
GITLAB("gitlab");
|
||||
GITLAB("gitlab"),
|
||||
GOGS("gogs"),
|
||||
ONEDEV("onedev"),
|
||||
GITBUCKET("gitbucket"),
|
||||
CODEBASE("codebase");
|
||||
|
||||
private String value;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user