2 * Copyright © 2017-2018 AT&T Intellectual Property.
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
8 * http://www.apache.org/licenses/LICENSE-2.0
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
16 package org.onap.ccsdk.apps.blueprintsprocessor.functions.netconf.executor.api
18 import org.onap.ccsdk.apps.blueprintsprocessor.functions.netconf.executor.utils.ModifyAction
19 import org.onap.ccsdk.apps.blueprintsprocessor.functions.netconf.executor.utils.NetconfDatastore
21 interface NetconfRpcService {
26 * @param configTarget running or candidate, default candidate
27 * @return Device response
29 fun lock(configTarget: String = NetconfDatastore.CANDIDATE.datastore): DeviceResponse
34 * @param filter filter content, default empty
35 * @param configTarget running or candidate, default running
36 * @return Device response
38 fun getConfig(filter: String = "", configTarget: String = NetconfDatastore.RUNNING.datastore): DeviceResponse
43 * @param configTarget running or candidate, default candidate
44 * @return Device response
46 fun deleteConfig(configTarget: String = NetconfDatastore.CANDIDATE.datastore): DeviceResponse
51 * @param messageContent edit config content.
52 * @param configTarget running or candidate, default candidate
53 * @param editDefaultOperation, default set to none. Valid values: merge, replace, create, delete, none
54 * @return Device response
56 fun editConfig(messageContent: String, configTarget: String = NetconfDatastore.CANDIDATE.datastore,
57 editDefaultOperation: String = ModifyAction.NONE.action): DeviceResponse
62 * @param configTarget running or candidate, default candidate
63 * @return Device response
65 fun validate(configTarget: String = NetconfDatastore.CANDIDATE.datastore): DeviceResponse
70 * @return Device response
72 fun commit(): DeviceResponse
77 * @param configTarget running or candidate, default candidate
78 * @return Device response
80 fun unLock(configTarget: String = NetconfDatastore.CANDIDATE.datastore): DeviceResponse
85 * @return Device response
87 fun discardConfig(): DeviceResponse
92 * @param force force closeSession
93 * @return Device response
95 fun closeSession(force: Boolean): DeviceResponse
98 * Executes an RPC request to the netconf server.
100 * @param request the XML containing the RPC request for the server.
101 * @return Device response
103 fun asyncRpc(request: String, messageId: String): DeviceResponse