summaryrefslogtreecommitdiffstats
path: root/v3po
diff options
context:
space:
mode:
authorMarek Gradzki <mgradzki@cisco.com>2017-05-02 14:18:54 +0200
committerMarek Gradzki <mgradzki@cisco.com>2017-05-02 14:18:56 +0200
commit6233845a911d4db05eb2e02d8996398cc95fa6b5 (patch)
tree93bb615712ce43fb6cb3d5a7d7919d2de3084f45 /v3po
parentbd872e0134b794cbb72c1d2a2695c669371903d8 (diff)
HC2VPP-14: remove deprecated, classfier based ietf-acl model implementation
Change-Id: I3e7a91bab09b27b1032d27258be8886256841d5c Signed-off-by: Marek Gradzki <mgradzki@cisco.com>
Diffstat (limited to 'v3po')
-rw-r--r--v3po/api/src/main/yang/ietf-acl-context.yang67
1 files changed, 0 insertions, 67 deletions
diff --git a/v3po/api/src/main/yang/ietf-acl-context.yang b/v3po/api/src/main/yang/ietf-acl-context.yang
deleted file mode 100644
index 875e7f2c8..000000000
--- a/v3po/api/src/main/yang/ietf-acl-context.yang
+++ /dev/null
@@ -1,67 +0,0 @@
-module ietf-acl-context {
- yang-version 1;
- namespace "urn:opendaylight:params:xml:ns:yang:vpp:acl:context";
- prefix "nc";
-
- description "Context for ietf-acl assignment mapping";
-
- revision "2016-12-14" {
- description "Initial revision.";
- }
-
- import ietf-inet-types {
- prefix "inet";
- }
-
- import naming-context {
- prefix "nc";
- }
-
- import yang-ext {
- prefix "ext";
- }
-
- grouping mapping-entry-context-attributes {
- container acl-mapping-entry-context {
- list mapping-table {
- key "direction";
-
- leaf direction {
- type enumeration {
- enum "ingress";
- enum "egress";
- }
- }
-
- list mapping-entry {
- key "index";
-
- leaf index {
- type int32;
- description "interface id";
- }
-
- leaf ip4_table_id {
- type int32;
- description "ip4 table id";
- }
-
- leaf ip6_table_id {
- type int32;
- description "ip6 table id";
- }
-
- leaf l2_table_id {
- type int32;
- description "l2 table id";
- }
- }
- }
- }
- }
-
- augment /nc:contexts {
- ext:augment-identifier "acl-mapping-entry-ctx-augmentation";
- uses mapping-entry-context-attributes;
- }
-} \ No newline at end of file