summaryrefslogtreecommitdiffstats
path: root/v3po/impl/src/main/java/io/fd/honeycomb/v3po/impl/trans/w/WriteContext.java
diff options
context:
space:
mode:
authorMaros Marsalek <mmarsale@cisco.com>2016-03-22 15:08:58 +0100
committerMarek Gradzki <mgradzki@cisco.com>2016-03-31 14:27:36 +0000
commit7011e84c2f5427bc5ee8e1e12f054e734cfe1e28 (patch)
tree1c9bb39b353e5e683019e84030be3a85d095720c /v3po/impl/src/main/java/io/fd/honeycomb/v3po/impl/trans/w/WriteContext.java
parent199494d2912ef7809d09f5f3131ff7f55e98f922 (diff)
VPP composite writer APIs
Base APIs for composite and extensible VPP writers Change-Id: I160374ba4897977e1d079633f0eb845478441d75 Signed-off-by: Maros Marsalek <mmarsale@cisco.com>
Diffstat (limited to 'v3po/impl/src/main/java/io/fd/honeycomb/v3po/impl/trans/w/WriteContext.java')
-rw-r--r--v3po/impl/src/main/java/io/fd/honeycomb/v3po/impl/trans/w/WriteContext.java31
1 files changed, 31 insertions, 0 deletions
diff --git a/v3po/impl/src/main/java/io/fd/honeycomb/v3po/impl/trans/w/WriteContext.java b/v3po/impl/src/main/java/io/fd/honeycomb/v3po/impl/trans/w/WriteContext.java
new file mode 100644
index 000000000..49759f20f
--- /dev/null
+++ b/v3po/impl/src/main/java/io/fd/honeycomb/v3po/impl/trans/w/WriteContext.java
@@ -0,0 +1,31 @@
+/*
+ * Copyright (c) 2016 Cisco and/or its affiliates.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at:
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package io.fd.honeycomb.v3po.impl.trans.w;
+
+import io.fd.honeycomb.v3po.impl.trans.util.Context;
+import java.util.List;
+import org.opendaylight.yangtools.yang.binding.DataObject;
+import org.opendaylight.yangtools.yang.binding.InstanceIdentifier;
+
+public interface WriteContext {
+
+ List<? extends DataObject> readBefore(InstanceIdentifier<? extends DataObject> currentId);
+
+ List<? extends DataObject> readAfter(InstanceIdentifier<? extends DataObject> currentId);
+
+ Context getContext();
+}