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