First part of onap rename
[appc.git] / appc-directed-graph / appc-dgraph / provider / src / test / java / org / openecomp / appc / dg / mock / instance / MockConfigureNodeExecutor.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP : APP-C
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.appc.dg.mock.instance;
22
23
24 import java.util.Map;
25
26 import org.onap.ccsdk.sli.core.sli.SvcLogicAdaptor;
27 import org.onap.ccsdk.sli.core.sli.SvcLogicContext;
28
29 public class MockConfigureNodeExecutor implements SvcLogicAdaptor{
30
31     @Override
32     public ConfigStatus configure(String key, Map<String, String> parameters, SvcLogicContext ctx) {
33
34         if ( "get".equals(key)) {
35
36             if ("135.1.1.1".equals(parameters.get("host") )) {
37                     String fullPathFileName = parameters.get("fullPathFileName");
38                     if (("SuccessFile").equals(fullPathFileName ) )
39                         return ConfigStatus.FAILURE;
40                     if (("FailureFile").equals(fullPathFileName ) )
41                         return ConfigStatus.SUCCESS;
42                     if (("FailureLogFile").equals(fullPathFileName ) )
43                         return ConfigStatus.SUCCESS;
44             }
45             else if ("135.2.2.2".equals(parameters.get("host")) ) {
46                 String fullPathFileName = parameters.get("fullPathFileName");
47                 if (("SuccessFile").equals(fullPathFileName ) )
48                     return ConfigStatus.FAILURE;
49                 if (("FailureFile").equals(fullPathFileName ) )
50                     return ConfigStatus.FAILURE;
51             }
52
53             return ConfigStatus.SUCCESS;
54         }
55         else {
56             ctx.setAttribute("Status", "Success");
57
58             return ConfigStatus.SUCCESS;
59         }
60     }
61
62     @Override
63     public ConfigStatus activate(String key, SvcLogicContext ctx) {
64         return null;
65     }
66
67     @Override
68     public ConfigStatus deactivate(String key, SvcLogicContext ctx) {
69         return null;
70     }
71 }