Removing old name references
[appc.git] / appc-directed-graph / appc-dgraph / provider / src / test / java / org / onap / appc / dg / mock / instance / MockConfigureNodeExecutor.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP : APPC
4  * ================================================================================
5  * Copyright (C) 2017 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  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
22  * ============LICENSE_END=========================================================
23  */
24
25 package org.onap.appc.dg.mock.instance;
26
27
28 import java.util.Map;
29
30 import org.onap.ccsdk.sli.core.sli.SvcLogicAdaptor;
31 import org.onap.ccsdk.sli.core.sli.SvcLogicContext;
32
33 public class MockConfigureNodeExecutor implements SvcLogicAdaptor{
34
35     @Override
36     public ConfigStatus configure(String key, Map<String, String> parameters, SvcLogicContext ctx) {
37
38         if ( "get".equals(key)) {
39
40             if ("10.1.1.1".equals(parameters.get("host") )) {
41                     String fullPathFileName = parameters.get("fullPathFileName");
42                     if (("SuccessFile").equals(fullPathFileName ) )
43                         return ConfigStatus.FAILURE;
44                     if (("FailureFile").equals(fullPathFileName ) )
45                         return ConfigStatus.SUCCESS;
46                     if (("FailureLogFile").equals(fullPathFileName ) )
47                         return ConfigStatus.SUCCESS;
48             }
49             else if ("10.2.2.2".equals(parameters.get("host")) ) {
50                 String fullPathFileName = parameters.get("fullPathFileName");
51                 if (("SuccessFile").equals(fullPathFileName ) )
52                     return ConfigStatus.FAILURE;
53                 if (("FailureFile").equals(fullPathFileName ) )
54                     return ConfigStatus.FAILURE;
55             }
56
57             return ConfigStatus.SUCCESS;
58         }
59         else {
60             ctx.setAttribute("Status", "Success");
61
62             return ConfigStatus.SUCCESS;
63         }
64     }
65
66     @Override
67     public ConfigStatus activate(String key, SvcLogicContext ctx) {
68         return null;
69     }
70
71     @Override
72     public ConfigStatus deactivate(String key, SvcLogicContext ctx) {
73         return null;
74     }
75 }