316a02b016d0655653d9f9901f10061d13a30434
[so.git] / mso-catalog-db / src / main / java / org / onap / so / db / catalog / data / projections / InlineVfModules.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 org.onap.so.db.catalog.beans.VfModuleCustomization;
24 import org.springframework.beans.factory.annotation.Value;
25 import org.springframework.data.rest.core.config.Projection;
26
27 @Projection(name = "InlineVfModules", types = { VfModuleCustomization.class }) 
28 public interface InlineVfModules { 
29
30   String getModelCustomizationUUID(); 
31   
32   @Value("#{target.getVfModule().getModelName()}")
33   String getModelName ();
34   
35   @Value("#{target.getVfModule().getModelUUID()}")
36   String getModelUUID ();
37   
38   @Value("#{target.getVfModule().getModelInvariantUUID()}")
39   String getModelInvariantUUID ();
40   
41   @Value("#{target.getVfModule().getModelVersion()}")
42   String getModelVersion ();
43   
44   @Value("#{target.getVfModule().getDescription()}")
45   String getDescription();
46   
47   @Value("#{target.getVfModule().getIsBase()}")
48   Boolean getIsBase();  
49   
50   String getMinInstances(); 
51   String getMaxInstances(); 
52   String getAvailabilityZoneCount(); 
53   String getLabel(); 
54   String getInitialCount();  
55
56   @Value("#{target.getVfModule().getCreated()}")
57   String getCreated();     
58
59 }