blob: b7f936267eb3d21579c93b181358d9d37f115803 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package com.epam.dlab.backendapi.resources.dto;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.google.common.base.MoreObjects;
import java.util.List;
/**
* Stores the health statuses for environment resources.
*/
public class HealthStatusPageDTO {
@JsonProperty
private String status;
@JsonProperty("list_resources")
private List<HealthStatusResource> listResources;
@JsonProperty
private boolean billingEnabled;
@JsonProperty
private boolean admin;
@JsonProperty
private int billingQuoteUsed;
@JsonProperty
private int billingUserQuoteUsed;
@JsonProperty
private boolean projectAssigned;
/**
* Return the status of environment.
*/
public String getStatus() {
return status;
}
/**
* Set the status of environment.
*/
public void setStatus(HealthStatusEnum status) {
this.status = status == null ? null : status.toString();
}
/**
* Set the status of environment.
*/
public void setStatus(String status) {
this.status = status;
}
public void setBillingEnabled(boolean billingEnabled) {
this.billingEnabled = billingEnabled;
}
/**
* Set the status of environment.
*/
public HealthStatusPageDTO withStatus(String status) {
setStatus(status);
return this;
}
/**
* Set the status of environment.
*/
public HealthStatusPageDTO withStatus(HealthStatusEnum status) {
setStatus(status);
return this;
}
public HealthStatusPageDTO withProjectAssinged(boolean isProjectAssigned) {
this.projectAssigned = isProjectAssigned;
return this;
}
/**
* Return the list of resources.
*/
public List<HealthStatusResource> getListResources() {
return listResources;
}
/**
* Set the list of resources.
*/
public void setListResources(List<HealthStatusResource> listResources) {
this.listResources = listResources;
}
/**
* Set the list of resources.
*/
public HealthStatusPageDTO withListResources(List<HealthStatusResource> listResources) {
setListResources(listResources);
return this;
}
/**
* Set billing enabled flag
*/
public HealthStatusPageDTO withBillingEnabled(boolean billingEnabled) {
setBillingEnabled(billingEnabled);
return this;
}
@Override
public String toString() {
return MoreObjects.toStringHelper(this)
.add("status", status)
.add("listResources", listResources)
.add("billingEnabled", billingEnabled)
.add("admin", admin)
.toString();
}
public HealthStatusPageDTO withAdmin(boolean isAdmin) {
this.admin = isAdmin;
return this;
}
public HealthStatusPageDTO withBillingQuoteUsed(int billingQuoteUsedPct) {
this.billingQuoteUsed = billingQuoteUsedPct;
return this;
}
public HealthStatusPageDTO withBillingUserQuoteUsed(int billingUserQuoteUsed) {
this.billingUserQuoteUsed = billingUserQuoteUsed;
return this;
}
public boolean isBillingEnabled() {
return billingEnabled;
}
public boolean isAdmin() {
return admin;
}
public boolean isProjectAssigned() {
return projectAssigned;
}
public int getBillingQuoteUsed() {
return billingQuoteUsed;
}
public int getBillingUserQuoteUsed() {
return billingUserQuoteUsed;
}
}