AAI-1523 Batch reformat aai-schema-ingest
[aai/aai-common.git] / aai-schema-ingest / src / main / java / org / onap / aai / validation / FailFastStrategy.java
1 /** 
2  * ============LICENSE_START=======================================================
3  * org.onap.aai
4  * ================================================================================
5  * Copyright © 2017-18 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  *   http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 /**
22  * 
23  */
24
25 package org.onap.aai.validation;
26
27 /**
28  * Fails out the validation process as soon as
29  * an error is found. Tells the validation's calling
30  * process to abort.
31  */
32 public class FailFastStrategy implements SchemaErrorStrategy {
33     private boolean isOK = true;
34     private String errorMsg = "No errors found.";
35
36     /*
37      * (non-Javadoc)
38      * 
39      * @see org.onap.aai.edges.validation.SchemaErrorStrategy#isOK()
40      */
41     @Override
42     public boolean isOK() {
43         return isOK;
44     }
45
46     /*
47      * (non-Javadoc)
48      * 
49      * @see org.onap.aai.edges.validation.SchemaErrorStrategy#getErrorMsg()
50      */
51     @Override
52     public String getErrorMsg() {
53         return errorMsg;
54     }
55
56     /*
57      * (non-Javadoc)
58      * 
59      * @see org.onap.aai.edges.validation.SchemaErrorStrategy#notifyOnError(java.lang.String)
60      */
61     @Override
62     public void notifyOnError(String errorMsg) {
63         isOK = false;
64         this.errorMsg = errorMsg;
65         throw new AAISchemaValidationException(errorMsg);
66     }
67
68 }