Improve exceptions logging in certservice client
[oom/platform/cert-service.git] / certServiceClient / src / main / java / org / onap / aaf / certservice / client / api / ExitStatus.java
1 /*============LICENSE_START=======================================================
2  * aaf-certservice-client
3  * ================================================================================
4  * Copyright (C) 2020 Nokia. All rights reserved.
5  * ================================================================================
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at
9  *
10  *      http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  * ============LICENSE_END=========================================================
18  */
19 package org.onap.aaf.certservice.client.api;
20
21 public enum ExitStatus {
22
23     SUCCESS(0, "Success"),
24     CLIENT_CONFIGURATION_EXCEPTION(1,"Invalid client configuration"),
25     CSR_CONFIGURATION_EXCEPTION(2,"Invalid CSR configuration"),
26     KEY_PAIR_GENERATION_EXCEPTION(3,"Fail in key pair generation"),
27     CSR_GENERATION_EXCEPTION(4,"Fail in CSR generation"),
28     CERT_SERVICE_API_CONNECTION_EXCEPTION(5,"CertService HTTP unsuccessful response"),
29     HTTP_CLIENT_EXCEPTION(6,"Internal HTTP Client connection problem"),
30     PKCS12_CONVERSION_EXCEPTION(7,"Fail in PKCS12 conversion"),
31     PK_TO_PEM_ENCODING_EXCEPTION(8,"Fail in Private Key to PEM Encoding");
32
33     private final int value;
34     private final String message;
35
36     ExitStatus(int value, String message) {
37         this.value = value;
38         this.message = message;
39     }
40
41     public int getExitCodeValue() {
42         return value;
43     }
44
45     public String getMessage(){
46         return message;
47     }
48 }