Added oparent to sdc main
[sdc.git] / openecomp-be / lib / openecomp-sdc-vendor-license-lib / openecomp-sdc-vendor-license-api / src / main / java / org / openecomp / sdc / vendorlicense / errors / UncompletedVendorLicenseModelErrorType.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
4  * ================================================================================
5  * Copyright (C) 2019 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 package org.openecomp.sdc.vendorlicense.errors;
21
22 /**
23  * Created by ayalaben on 5/8/2017
24  */
25 public enum UncompletedVendorLicenseModelErrorType {
26
27     SUBMIT_UNCOMPLETED_VLM_MSG_MISSING_LA("Uncompleted vendor license model - cannot be submitted. \n"
28             + "It must contain a license agreement(s)."),
29
30     SUBMIT_UNCOMPLETED_VLM_MSG_LA_MISSING_FG("Uncompleted vendor license model - cannot be submitted. \n"
31             + "The license agreement(s) must contain at least one feature group."),
32
33     SUBMIT_UNCOMPLETED_VLM_MSG_FG_MISSING_EP("Uncompleted vendor license model - cannot be submitted. \n"
34         + "The feature group(s) must contain at least one entitlement pool.");
35
36
37     private String errorMessage;
38
39     UncompletedVendorLicenseModelErrorType(String errorMessage) {
40         this.errorMessage = errorMessage;
41     }
42
43     public String getErrorMessage() {
44         return errorMessage;
45     }
46 }
47