[OOM cert-service-client] Add validation of email, ip and domain name
[oom/platform/cert-service.git] / certServiceClient / src / main / java / org / onap / oom / certservice / client / api / ExitStatus.java
1 /*============LICENSE_START=======================================================
2  * oom-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
20 package org.onap.oom.certservice.client.api;
21
22 public enum ExitStatus {
23
24     SUCCESS(0, "Success"),
25     CLIENT_CONFIGURATION_EXCEPTION(1, "Invalid client configuration"),
26     CSR_CONFIGURATION_EXCEPTION(2, "Invalid CSR configuration"),
27     KEY_PAIR_GENERATION_EXCEPTION(3, "Fail in key pair generation"),
28     CSR_GENERATION_EXCEPTION(4, "Fail in CSR generation"),
29     CERT_SERVICE_API_CONNECTION_EXCEPTION(5, "CertService HTTP unsuccessful response"),
30     HTTP_CLIENT_EXCEPTION(6, "Internal HTTP Client connection problem"),
31     PEM_CONVERSION_EXCEPTION(7, "Fail in PEM conversion"),
32     PK_TO_PEM_ENCODING_EXCEPTION(8, "Fail in Private Key to PEM Encoding"),
33     TLS_CONFIGURATION_EXCEPTION(9, "Invalid TLS configuration"),
34     FILE_CREATION_EXCEPTION(10, "File could not be created"),
35     UNEXPECTED_EXCEPTION(99, "Application exited abnormally");
36
37     private final int value;
38     private final String message;
39
40     ExitStatus(int value, String message) {
41         this.value = value;
42         this.message = message;
43     }
44
45     public int getExitCodeValue() {
46         return value;
47     }
48
49     public String getMessage() {
50         return message;
51     }
52 }