mirror of
https://codeberg.org/gitnex/tea4j-autodeploy
synced 2026-06-04 08:42:18 +00:00
Synchronizing API and documentation updates
This commit is contained in:
@@ -113,6 +113,9 @@ public class Repository implements Serializable {
|
||||
@SerializedName("languages_url")
|
||||
private String languagesUrl = null;
|
||||
|
||||
@SerializedName("link")
|
||||
private String link = null;
|
||||
|
||||
@SerializedName("mirror")
|
||||
private Boolean mirror = null;
|
||||
|
||||
@@ -743,6 +746,25 @@ public class Repository implements Serializable {
|
||||
this.languagesUrl = languagesUrl;
|
||||
}
|
||||
|
||||
public Repository link(String link) {
|
||||
this.link = link;
|
||||
return this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get link
|
||||
*
|
||||
* @return link
|
||||
*/
|
||||
@Schema(description = "")
|
||||
public String getLink() {
|
||||
return link;
|
||||
}
|
||||
|
||||
public void setLink(String link) {
|
||||
this.link = link;
|
||||
}
|
||||
|
||||
public Repository mirror(Boolean mirror) {
|
||||
this.mirror = mirror;
|
||||
return this;
|
||||
@@ -1163,6 +1185,7 @@ public class Repository implements Serializable {
|
||||
&& Objects.equals(this.internalTracker, repository.internalTracker)
|
||||
&& Objects.equals(this.language, repository.language)
|
||||
&& Objects.equals(this.languagesUrl, repository.languagesUrl)
|
||||
&& Objects.equals(this.link, repository.link)
|
||||
&& Objects.equals(this.mirror, repository.mirror)
|
||||
&& Objects.equals(this.mirrorInterval, repository.mirrorInterval)
|
||||
&& Objects.equals(this.mirrorUpdated, repository.mirrorUpdated)
|
||||
@@ -1218,6 +1241,7 @@ public class Repository implements Serializable {
|
||||
internalTracker,
|
||||
language,
|
||||
languagesUrl,
|
||||
link,
|
||||
mirror,
|
||||
mirrorInterval,
|
||||
mirrorUpdated,
|
||||
@@ -1281,6 +1305,7 @@ public class Repository implements Serializable {
|
||||
sb.append(" internalTracker: ").append(toIndentedString(internalTracker)).append("\n");
|
||||
sb.append(" language: ").append(toIndentedString(language)).append("\n");
|
||||
sb.append(" languagesUrl: ").append(toIndentedString(languagesUrl)).append("\n");
|
||||
sb.append(" link: ").append(toIndentedString(link)).append("\n");
|
||||
sb.append(" mirror: ").append(toIndentedString(mirror)).append("\n");
|
||||
sb.append(" mirrorInterval: ").append(toIndentedString(mirrorInterval)).append("\n");
|
||||
sb.append(" mirrorUpdated: ").append(toIndentedString(mirrorUpdated)).append("\n");
|
||||
|
||||
Reference in New Issue
Block a user