Merge of new rebased code
[appc.git] / appc-dg / appc-dg-shared / appc-dg-common / src / main / java / org / openecomp / appc / dg / common / impl / VNFCResolver.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * openECOMP : APP-C
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights
6  *                                              reserved.
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  * 
12  *      http://www.apache.org/licenses/LICENSE-2.0
13  * 
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  * ============LICENSE_END=========================================================
20  */
21
22 package org.openecomp.appc.dg.common.impl;
23
24 import org.openecomp.appc.rankingframework.RankedAttributesContext;
25
26
27 public class VNFCResolver extends AbstractResolver {
28     VNFCResolver(int interval) {
29         super(interval);
30     }
31
32     @Override
33     protected FlowKey resolve(String... args) {
34         if(args.length !=4){
35             throw new IllegalStateException(args.toString());
36         }
37         return resolve(args[0],args[1],args[2],args[3]);
38     }
39
40     protected FlowKey resolve(final String action, final String vnfType, final String vnfcType, final String apiVersion) {
41         RankedAttributesContext context = new RankedAttributesContext() {
42             @Override
43             public Object getAttributeValue(String name) {
44                 switch (name) {
45                     case "action":
46                         return action;
47                     case "api_version":
48                         return apiVersion;
49                     case "vnf_type":
50                         return vnfType;
51                     case "vnfc_type":
52                         return vnfcType;
53                     default:
54                         throw new IllegalStateException(name);
55                 }
56             }
57         };
58
59         FlowKey wfKey = resolver("VNFC").resolve(context);
60
61         return wfKey;
62     }
63 }
64