org.trustedanalytics.cloud.cc.api.CcApp Maven / Gradle / Ivy
/**
* Copyright (c) 2015 Intel Corporation
*
* Licensed 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 org.trustedanalytics.cloud.cc.api;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.List;
import java.util.UUID;
@JsonIgnoreProperties(ignoreUnknown = true)
public class CcApp {
private UUID guid;
private List urls;
@JsonProperty("running_instances")
private int runningInstances;
@JsonProperty("service_names")
private List serviceNames;
private String name;
private CcAppState state;
public CcApp() {
}
public CcApp(UUID guid, List urls, int runningInstances, List serviceNames,
String name, CcAppState state) {
this.guid = guid;
this.urls = urls;
this.runningInstances = runningInstances;
this.serviceNames = serviceNames;
this.name = name;
this.state = state;
}
public UUID getGuid() {
return guid;
}
public void setGuid(UUID guid) {
this.guid = guid;
}
public List getUrls() {
return urls;
}
public void setUrls(List urls) {
this.urls = urls;
}
public int getRunningInstances() {
return runningInstances;
}
public void setRunningInstances(int runningInstances) {
this.runningInstances = runningInstances;
}
public List getServiceNames() {
return serviceNames;
}
public void setServiceNames(List serviceNames) {
this.serviceNames = serviceNames;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public CcAppState getState() {
return state;
}
public void setState(CcAppState state) {
this.state = state;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
CcApp ccApp = (CcApp) o;
if (runningInstances != ccApp.runningInstances) {
return false;
}
if (guid != null ? !guid.equals(ccApp.guid) : ccApp.guid != null) {
return false;
}
if (name != null ? !name.equals(ccApp.name) : ccApp.name != null) {
return false;
}
if (serviceNames != null ?
!serviceNames.equals(ccApp.serviceNames) :
ccApp.serviceNames != null) {
return false;
}
if (state != ccApp.state) {
return false;
}
if (urls != null ? !urls.equals(ccApp.urls) : ccApp.urls != null) {
return false;
}
return true;
}
@Override
public int hashCode() {
int result = guid != null ? guid.hashCode() : 0;
result = 31 * result + (urls != null ? urls.hashCode() : 0);
result = 31 * result + runningInstances;
result = 31 * result + (serviceNames != null ? serviceNames.hashCode() : 0);
result = 31 * result + (name != null ? name.hashCode() : 0);
result = 31 * result + (state != null ? state.hashCode() : 0);
return result;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy