a5d871eeefbf9ac6c7e6777e933fe140684126bd
[so.git] / bpmn / MSOCommonBPMN / src / main / java / org / onap / so / bpmn / common / validation / BuildingBlockValidatorRunner.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
4  * ================================================================================
5  * Copyright (C) 2017 - 2018 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 package org.onap.so.bpmn.common.validation;
22
23 import java.lang.annotation.Annotation;
24 import java.util.ArrayList;
25 import java.util.Comparator;
26 import java.util.HashMap;
27 import java.util.List;
28 import java.util.Optional;
29 import java.util.stream.Collectors;
30
31 import javax.annotation.PostConstruct;
32 import javax.annotation.Priority;
33
34 import org.camunda.bpm.engine.delegate.BpmnError;
35 import org.javatuples.Pair;
36 import org.onap.so.bpmn.common.BuildingBlockExecution;
37 import org.onap.so.client.exception.ExceptionBuilder;
38 import org.reflections.Reflections;
39 import org.slf4j.Logger;
40 import org.slf4j.LoggerFactory;
41 import org.springframework.beans.factory.annotation.Autowired;
42 import org.springframework.context.ApplicationContext;
43 import org.springframework.stereotype.Component;
44
45
46 /**
47  * Controls running all pre and post validation for building blocks.
48  * 
49  * To define a validation you must make it a spring bean and implement either {@link org.onap.so.bpmn.common.validation.PreBuildingBlockValidator} or 
50  * {@link org.onap.so.bpmn.common.validation.PostBuildingBlockValidator} your validation will automatically be
51  * run by this class.
52  *
53  */
54 @Component
55 public class BuildingBlockValidatorRunner extends FlowValidatorRunner<PreBuildingBlockValidator, PostBuildingBlockValidator> {
56         
57         @PostConstruct
58         protected void init() {
59                 
60                 preFlowValidators = new ArrayList<>(
61                                 Optional.ofNullable(context.getBeansOfType(PreBuildingBlockValidator.class)).orElse(new HashMap<>()).values());
62                 postFlowValidators = new ArrayList<>(
63                                 Optional.ofNullable(context.getBeansOfType(PostBuildingBlockValidator.class)).orElse(new HashMap<>()).values());
64         }
65         
66         protected List<PreBuildingBlockValidator> getPreFlowValidators() {
67                 return this.preFlowValidators;
68         }
69         
70         protected List<PostBuildingBlockValidator> getPostFlowValidators() {
71                 return this.postFlowValidators;
72         }
73         
74 }