5250b971ac2180a591eae84ee5e0a62d9213b46c
[sdc.git] / openecomp-be / backend / openecomp-sdc-vendor-software-product-manager / src / main / java / org / openecomp / sdc / vendorsoftwareproduct / errors / ComputeErrorBuilder.java
1 /*
2  * Copyright © 2016-2017 European Support Limited
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 package org.openecomp.sdc.vendorsoftwareproduct.errors;
18
19 import org.openecomp.sdc.common.errors.ErrorCategory;
20 import org.openecomp.sdc.common.errors.ErrorCode;
21
22 /**
23  * The Compute error builder.
24  */
25 public class ComputeErrorBuilder {
26     private static final String COMPUTE_NAME_FORMAT_MSG = "Field does not conform to predefined criteria"
27             + ": name : must match %s";
28
29     private ComputeErrorBuilder(){
30
31     }
32
33     /**
34      * Gets image name format error builder.
35      *
36      * @return the image name format error builder
37      */
38     public static ErrorCode getComputeNameFormatErrorBuilder(String pattern) {
39         ErrorCode.ErrorCodeBuilder builder = new ErrorCode.ErrorCodeBuilder();
40         builder.withId(VendorSoftwareProductErrorCodes.COMPUTE_NAME_FORMAT_NOT_ALLOWED);
41         builder.withCategory(ErrorCategory.APPLICATION);
42         builder.withMessage(String.format(COMPUTE_NAME_FORMAT_MSG, pattern));
43         return builder.build();
44     }
45 }