org.whitesource.utils.StatusCode Maven / Gradle / Ivy
/**
* The project is licensed under the WhiteSource Software End User License Agreement .
* Copyright (C) 2015 WhiteSource Ltd.
* Licensed under the WhiteSource Software End User License Agreement;
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* https://s3.amazonaws.com/unified-agent/LICENSE.txt
*/
package org.whitesource.utils;
/**
*@author eugen.horovitz
*/
public enum StatusCode {
SUCCESS(0), ERROR(-1), POLICY_VIOLATION(-2), CLIENT_FAILURE(-3), CONNECTION_FAILURE(-4), SERVER_FAILURE(-5), PRE_STEP_FAILURE(-6);
private final int value;
StatusCode(int value) {
this.value = value;
}
public int getValue() {
return value;
}
}