10/31: merge casablanca to master
[so.git] / mso-catalog-db / src / main / java / org / onap / so / db / catalog / data / projections / InlineNetworks.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
24 import java.sql.Timestamp;
25
26 import org.onap.so.db.catalog.beans.NetworkResourceCustomization;
27 import org.springframework.beans.factory.annotation.Value;
28 import org.springframework.data.rest.core.config.Projection;
29
30 @Projection(name = "InlineNetworks", types = { NetworkResourceCustomization.class }) 
31 public interface InlineNetworks { 
32
33   String getModelCustomizationUUID(); 
34   String getModelInstanceName();
35   String getNetworkTechnology();
36   String getNetworkType();   
37   String getNetworkScope(); 
38   String getNetworkRole();   
39   
40   @Value("#{target.getNetworkResource().getDescription()}")
41   String getDescription();
42   
43   @Value("#{target.getNetworkResource().getCreated()}")
44   Timestamp getCreated();
45   
46   @Value("#{target.getNetworkResource().getModelVersion()}")
47   String getModelVersion();
48   
49   @Value("#{target.getNetworkResource().getModelInvariantUUID()}")
50   String getModelInvariantUUID();
51   
52   @Value("#{target.getNetworkResource().getModelName()}")
53   String getModelName ();
54   
55   @Value("#{target.getNetworkResource().getModelUUID()}")
56   String getModelUUID ();  
57
58   @Value("#{target.getNetworkResource().getNeutronNetworkType()}")
59   String getNeutronNetworkType ();
60   
61   @Value("#{target.getNetworkResource().getAicVersionMin()}")
62   String getAicVersionMin ();
63   
64   @Value("#{target.getNetworkResource().getAicVersionMax()}")
65   String getAicVersionMax ();
66   
67   @Value("#{target.getNetworkResource().getOrchestrationMode()}")
68   String getOrchestrationMode ();
69   
70   @Value("#{target.getNetworkResource().getToscaNodeType()}")
71   String getToscaNodeType ();
72 }