org.gitlab4j.api.models.Environment Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gitlab4j-api Show documentation
Show all versions of gitlab4j-api Show documentation
GitLab4J-API (gitlab4j-api) provides a full featured Java client library for working with GitLab repositories and servers via the GitLab REST API.
package org.gitlab4j.api.models;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonValue;
import org.gitlab4j.api.utils.JacksonJson;
import org.gitlab4j.api.utils.JacksonJsonEnumHelper;
import java.io.Serializable;
public class Environment implements Serializable {
private static final long serialVersionUID = 1L;
public enum EnvironmentState {
AVAILABLE, STOPPED;
private static JacksonJsonEnumHelper enumHelper = new JacksonJsonEnumHelper<>(EnvironmentState.class);
@JsonCreator
public static EnvironmentState forValue(String value) {
return enumHelper.forValue(value);
}
@JsonValue
public String toValue() {
return (enumHelper.toString(this));
}
@Override
public String toString() {
return (enumHelper.toString(this));
}
}
private Long id;
private String name;
private String slug;
private String externalUrl;
private EnvironmentState state;
private Deployment lastDeployment;
public Long getId() {
return id;
}
public void setId(Long id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getSlug() {
return slug;
}
public void setSlug(String slug) {
this.slug = slug;
}
public String getExternalUrl() {
return externalUrl;
}
public void setExternalUrl(String externalUrl) {
this.externalUrl = externalUrl;
}
public EnvironmentState getState() {
return state;
}
public void setState(EnvironmentState state) {
this.state = state;
}
public Deployment getLastDeployment() {
return lastDeployment;
}
public void setLastDeployment(Deployment lastDeployment) {
this.lastDeployment = lastDeployment;
}
@Override
public String toString() {
return (JacksonJson.toJsonString(this));
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy