com.openshift.internal.client.Severity Maven / Gradle / Ivy
/*******************************************************************************
* Copyright (c) 2013 Red Hat, Inc.
* Distributed under license by Red Hat, Inc. All rights reserved.
* This program is made available under the terms of the
* Eclipse Public License v1.0 which accompanies this distribution,
* and is available at http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Red Hat, Inc. - initial API and implementation
******************************************************************************/
package com.openshift.internal.client;
import com.openshift.client.ISeverity;
/**
* @author Andre Dietisheim
*/
public class Severity implements ISeverity {
private final String severity;
public Severity(String severity) {
this.severity = severity;
}
public String getValue() {
return severity;
}
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result + ((severity == null) ? 0 : severity.hashCode());
return result;
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (getClass() != obj.getClass())
return false;
Severity other = (Severity) obj;
if (severity == null) {
if (other.severity != null)
return false;
} else if (!severity.equals(other.severity))
return false;
return true;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy