aboutsummaryrefslogtreecommitdiffstats
path: root/appc-adapters/appc-chef-adapter/appc-chef-adapter-bundle/src/main/java/org/openecomp/appc/adapter/chef/impl/RequestFailedException.java
blob: 047eb8b1f3fd8defeb6ac7fc3b471a70e62e8aef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
/*-
 * ============LICENSE_START=======================================================
 * openECOMP : APP-C
 * ================================================================================
 * Copyright (C) 2017 AT&T Intellectual Property. All rights
 * 						reserved.
 * ================================================================================
 * 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.
 * ============LICENSE_END=========================================================
 */


package org.openecomp.appc.adapter.chef.impl;

import org.glassfish.grizzly.http.util.HttpStatus;
import com.att.cdp.zones.model.Server;

/**
 * This class is used to capture the exact cause and point of failure for the processing of a request. It is then used
 * to encode the reason for the failure, status code, and anything else that needs to be captured and reported for
 * diagnostic purposes.
 */
public class RequestFailedException extends Exception {

    /**
     *
     */
    private static final long serialVersionUID = 1L;

    /**
     * The operation that was being requested or performed at the time of the failure.
     */
    private String operation;

    /**
     * A message that details the reason for the failure
     */
    private String reason;

    /**
     * The server that was being operated upon
     */
    private Server server;

    /**
     * The id of the server being operated upon if the server object is not available (such as the server was not found)
     */
    private String serverId;

    /**
     * The most appropriate Http Status code that reflects the error
     */
    private HttpStatus status;

    /**
     * 
     */
    public RequestFailedException() {
        // intentionally empty
    }

    /**
     * @param message
     *            The error message
     */
    public RequestFailedException(String message) {
        super(message);
    }

    /**
     * Construct the request failed exception with the operation being performed, reason for the failure, http status
     * code that is most appropriate, and the server we were processing.
     * 
     * @param operation
     *            The operation being performed
     * @param reason
     *            The reason that the operation was failed
     * @param status
     *            The http status code that is most appropriate
     * @param server
     *            The server that we were processing
     */
    @SuppressWarnings("nls")
    public RequestFailedException(String operation, String reason, HttpStatus status, Server server) {
        super(operation + ":" + reason);
        this.operation = operation;
        this.reason = reason;
        this.status = status;
        this.server = server;
        if (server != null) {
            this.serverId = server.getId();
        }
    }

    /**
     * Construct the request failed exception with the operation being performed, reason for the failure, http status
     * code that is most appropriate, and the server we were processing.
     * 
     * @param ex
     *            The exception that we are wrapping
     * @param operation
     *            The operation being performed
     * @param reason
     *            The reason that the operation was failed
     * @param status
     *            The http status code that is most appropriate
     * @param server
     *            The server that we were processing
     */
    @SuppressWarnings("nls")
    public RequestFailedException(Throwable ex, String operation, String reason, HttpStatus status, Server server) {
        super(operation + ":" + reason, ex);
        this.operation = operation;
        this.reason = reason;
        this.status = status;
        this.server = server;
        if (server != null) {
            this.serverId = server.getId();
        }
    }

    /**
     * @param message
     *            The error message
     * @param cause
     *            A nested exception
     */
    public RequestFailedException(String message, Throwable cause) {
        super(message, cause);
    }

    /**
     * @param message
     *            The error message
     * @param cause
     *            A nested exception
     * @param enableSuppression
     *            whether or not suppression is enabled or disabled
     * @param writableStackTrace
     *            whether or not the stack trace should be writable
     */
    public RequestFailedException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
        super(message, cause, enableSuppression, writableStackTrace);
    }

    /**
     * @param cause
     *            the cause (which is saved for later retrieval by the {@link #getCause()} method). (A null value is
     *            permitted, and indicates that the cause is nonexistent or unknown.)
     */
    public RequestFailedException(Throwable cause) {
        super(cause);
    }

    /**
     * @return The operation being performed
     */
    public String getOperation() {
        return operation;
    }

    /**
     * @return The reason for the failure
     */
    public String getReason() {
        return reason;
    }

    /**
     * @return The server being operated upon
     */
    public Server getServer() {
        return server;
    }

    /**
     * @return The id of the server being operated upon
     */
    public String getServerId() {
        return serverId;
    }

    /**
     * @return The status code from the operation
     */
    public HttpStatus getStatus() {
        return status;
    }

    /**
     * @param operation
     *            The operation being performed
     */
    public void setOperation(String operation) {
        this.operation = operation;
    }

    /**
     * @param reason
     *            The reason for the failure
     */
    public void setReason(String reason) {
        this.reason = reason;
    }

    /**
     * @param server
     *            The server being operated upon
     */
    public void setServer(Server server) {
        this.server = server;
        if (server != null) {
            setServerId(server.getId());
        }
    }

    /**
     * @param serverId
     *            The id of the server being operated upon
     */
    public void setServerId(String serverId) {
        this.serverId = serverId;
    }

    /**
     * @param status
     *            The status of the request
     */
    public void setStatus(HttpStatus status) {
        this.status = status;
    }

}