X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?p=controller.git;a=blobdiff_plain;f=opendaylight%2Fsal%2Fyang-prototype%2Fyang%2Fyang-model-api%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fyang%2Fmodel%2Fapi%2FDeviation.java;fp=opendaylight%2Fsal%2Fyang-prototype%2Fyang%2Fyang-model-api%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fyang%2Fmodel%2Fapi%2FDeviation.java;h=0000000000000000000000000000000000000000;hp=ec224fa0f10e2ddac4aa5ae47530261eacb50f70;hb=e0e2b9f77ecf0bf2353dba9a448e1901194648d3;hpb=970fb91c60c15a9b57e078f81aab7dde903addb9 diff --git a/opendaylight/sal/yang-prototype/yang/yang-model-api/src/main/java/org/opendaylight/controller/yang/model/api/Deviation.java b/opendaylight/sal/yang-prototype/yang/yang-model-api/src/main/java/org/opendaylight/controller/yang/model/api/Deviation.java deleted file mode 100644 index ec224fa0f1..0000000000 --- a/opendaylight/sal/yang-prototype/yang/yang-model-api/src/main/java/org/opendaylight/controller/yang/model/api/Deviation.java +++ /dev/null @@ -1,53 +0,0 @@ -/* - * Copyright (c) 2013 Cisco Systems, Inc. and others. All rights reserved. - * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v1.0 which accompanies this distribution, - * and is available at http://www.eclipse.org/legal/epl-v10.html - */ -package org.opendaylight.controller.yang.model.api; - -import java.util.List; - -/** - * Interface describing YANG 'deviation' statement. - *

- * The 'deviation' statement defines a hierarchy of a module that the device - * does not implement faithfully. Deviations define the way a device deviate - * from a standard. - *

- */ -public interface Deviation { - - /** - * Enum describing YANG deviation 'deviate' statement. It defines how the - * device's implementation of the target node deviates from its original - * definition. - */ - enum Deviate { - NOT_SUPPORTED, ADD, REPLACE, DELETE - } - - /** - * @return SchemaPath that identifies the node in the schema tree where a - * deviation from the module occurs. - */ - SchemaPath getTargetPath(); - - /** - * @return deviate statement of this deviation - */ - Deviate getDeviate(); - - /** - * @return textual cross-reference to an external document that provides - * additional information relevant to this node. - */ - String getReference(); - - /** - * @return collection of all unknown nodes defined under this schema node. - */ - public List getUnknownSchemaNodes(); - -}