2 * ============LICENSE_START=======================================================
4 * ================================================================================
5 * Copyright (C) 2017 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
11 * http://www.apache.org/licenses/LICENSE-2.0
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=========================================================
21 package org.openecomp.core.validation.types;
23 import org.openecomp.sdc.datatypes.error.ErrorLevel;
24 import org.openecomp.sdc.datatypes.error.ErrorMessage;
26 import java.util.ArrayList;
27 import java.util.List;
28 import java.util.stream.Collectors;
30 public class MessageContainer {
32 private final List<ErrorMessage> errorMessageList = new ArrayList<>();
34 public List<ErrorMessage> getErrorMessageList() {
35 return errorMessageList;
38 public MessageBuilder getMessageBuilder() {
39 return new MessageBuilder();
43 * Gets error message list by level.
44 * Only this level, not this level and above
46 * @param level the level
47 * @return the error message list by level
49 public List<ErrorMessage> getErrorMessageListByLevel(ErrorLevel level) {
50 return errorMessageList.stream()
51 .filter(message -> message.getLevel().equals(level))
52 .collect(Collectors.toList());
55 public class MessageBuilder {
60 MessageBuilder setMessage(String message) {
61 this.message = message;
65 MessageBuilder setLevel(ErrorLevel level) {
71 ErrorMessage errorMessage = new ErrorMessage(level, message);
72 if (!errorMessageList.contains(errorMessage)) {
73 errorMessageList.add(errorMessage);