Merge of new rebased code
[appc.git] / appc-dg / appc-dg-shared / appc-dg-common / src / main / java / org / openecomp / appc / dg / common / impl / VNFResolver.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 public class VNFResolver extends AbstractResolver {
27     VNFResolver(int interval) {
28         super(interval);
29     }
30
31     @Override
32     protected FlowKey resolve(String... args) {
33         return resolve(args[0],args[1],args[2],args[3]);
34     }
35
36
37     protected FlowKey resolve(final String action, final String vnfType, final String vnfVersion, final String apiVersion) {
38         RankedAttributesContext context = new RankedAttributesContext() {
39             @Override
40             public Object getAttributeValue(String name) {
41                 switch (name) {
42                     case "action":
43                         return action;
44                     case "api_version":
45                         return apiVersion;
46                     case "vnf_type":
47                         return vnfType;
48                     case "vnf_version":
49                         return vnfVersion;
50                     default:
51                         throw new IllegalStateException(name);
52                 }
53             }
54         };
55
56         FlowKey wfKey = resolver("VNF").resolve(context);
57
58         return wfKey;
59     }
60 }