17e54f9b45540bb52411b7d8e38034d28a6115cb
[so.git] / mso-catalog-db / src / main / java / org / onap / so / db / catalog / data / projections / InlineVnf.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
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.onap.so.db.catalog.data.projections;
22
23 import java.util.List;
24
25 import org.onap.so.db.catalog.beans.VnfResourceCustomization;
26 import org.springframework.beans.factory.annotation.Value;
27 import org.springframework.data.rest.core.config.Projection;
28
29 @Projection(name = "InlineVnf", types = { VnfResourceCustomization.class }) 
30 public interface InlineVnf { 
31  
32   String getModelInstanceName(); 
33   
34   String getModelCustomizationUUID(); 
35   
36   @Value("#{target.getVnfResources().getModelUUID()}")
37   String getModelUUID();
38   
39   @Value("#{target.getVnfResources().getModelInvariantUUID()}")
40   String getModelInvariantUUID();
41   
42   @Value("#{target.getVnfResources().getModelName()}")
43   String getModelName();    
44   
45   @Value("#{target.getVnfResources().getModelVersion()}")
46   String getModelVersion();    
47   
48   @Value("#{target.getVnfResources().getToscaNodeType()}")
49   String getToscaNodeType ();
50   
51   @Value("#{target.getVnfResources().getDescription()}")
52   String getDescription();
53   
54   @Value("#{target.getVnfResources().getOrchestrationMode()}")
55   String getOrchestrationMode();
56   
57   @Value("#{target.getVnfResources().getAicVersionMin()}")
58   String getAicVersionMin();
59   
60   @Value("#{target.getVnfResources().getAicVersionMax()}")
61   String getAicVersionMax();
62   
63   String getMinInstances(); 
64   String getMaxInstances(); 
65   String getAvailabilityZoneMaxCount(); 
66   String getNfFunction(); 
67   String getNfType(); 
68   String getNfRole(); 
69   String getNfNamingCode(); 
70   String getMultiStageDesign(); 
71   
72   @Value("#{target.getVnfResources().getCreated()}")
73   String getCreated(); 
74   
75   List<InlineVfModules> getVfModuleCustomizations();  
76 }