Added oparent to sdc main
[sdc.git] / openecomp-be / lib / openecomp-sdc-vendor-software-product-lib / openecomp-sdc-vendor-software-product-api / src / main / java / org / openecomp / sdc / vendorsoftwareproduct / types / schemagenerator / DeploymentFlavorCompositionSchemaInput.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
21 package org.openecomp.sdc.vendorsoftwareproduct.types.schemagenerator;
22
23
24 import org.openecomp.sdc.vendorsoftwareproduct.types.composition.DeploymentFlavor;
25
26 import java.util.Collection;
27
28 public class DeploymentFlavorCompositionSchemaInput implements SchemaTemplateInput {
29
30   private boolean manual;
31   private DeploymentFlavor deploymentFlavor;
32   private Collection<String> featureGroupIds;
33
34   public boolean isManual() {
35     return manual;
36   }
37
38   public void setManual(boolean manual) {
39     this.manual = manual;
40   }
41
42   public DeploymentFlavor getDeploymentFlavor() {
43     return deploymentFlavor;
44   }
45
46   public void setDeploymentFlavor(
47       DeploymentFlavor deploymentFlavor) {
48     this.deploymentFlavor = deploymentFlavor;
49   }
50
51   public Collection<String> getFeatureGroupIds() {
52     return featureGroupIds;
53   }
54
55   public void setFeatureGroupIds(Collection<String> featureGroupIds) {
56     this.featureGroupIds = featureGroupIds;
57   }
58
59 }