push addional code
[sdc.git] / openecomp-be / lib / openecomp-tosca-lib / src / main / java / org / openecomp / sdc / tosca / errors / ToscaInvalidSubstituteNodeTemplatePropertiesErrorBuilder.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
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
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.openecomp.sdc.tosca.errors;
22
23 import org.openecomp.sdc.common.errors.ErrorCategory;
24 import org.openecomp.sdc.common.errors.ErrorCode;
25 import org.openecomp.sdc.tosca.services.ToscaConstants;
26
27
28 /**
29  * The type Tosca invalid substitute node template properties error builder.
30  */
31 public class ToscaInvalidSubstituteNodeTemplatePropertiesErrorBuilder {
32
33   private static final String INVALID_SUBSTITUTE_NODE_TEMPLATE_MSG =
34       "Invalid Substitute Node Template %s, mandatory map property %s with mandatory "
35           + "key %s must be defined.";
36   private final ErrorCode.ErrorCodeBuilder builder = new ErrorCode.ErrorCodeBuilder();
37
38   /**
39    * Instantiates a new Tosca invalid substitute node template properties error builder.
40    *
41    * @param nodeTemplateId the node template id
42    */
43   public ToscaInvalidSubstituteNodeTemplatePropertiesErrorBuilder(String nodeTemplateId) {
44     builder.withId(ToscaErrorCodes.INVALID_SUBSTITUTE_NODE_TEMPLATE);
45     builder.withCategory(ErrorCategory.APPLICATION);
46     builder.withMessage(String.format(INVALID_SUBSTITUTE_NODE_TEMPLATE_MSG, nodeTemplateId,
47         ToscaConstants.SERVICE_TEMPLATE_FILTER_PROPERTY_NAME,
48         ToscaConstants.SUBSTITUTE_SERVICE_TEMPLATE_PROPERTY_NAME));
49   }
50
51   /**
52    * Build error code.
53    *
54    * @return the error code
55    */
56   public ErrorCode build() {
57     return builder.build();
58   }
59 }