Populate model/ hierarchy
[yangtools.git] / yang / rfc6241-model-api / src / main / java / org / opendaylight / yangtools / rfc6241 / model / api / GetFilterElementAttributesStatement.java
diff --git a/yang/rfc6241-model-api/src/main/java/org/opendaylight/yangtools/rfc6241/model/api/GetFilterElementAttributesStatement.java b/yang/rfc6241-model-api/src/main/java/org/opendaylight/yangtools/rfc6241/model/api/GetFilterElementAttributesStatement.java
deleted file mode 100644 (file)
index 6b6814d..0000000
+++ /dev/null
@@ -1,25 +0,0 @@
-/*
- * Copyright (c) 2019 PATHEON.tech, s.r.o. 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.yangtools.rfc6241.model.api;
-
-import com.google.common.annotations.Beta;
-import org.opendaylight.yangtools.yang.common.Empty;
-import org.opendaylight.yangtools.yang.model.api.meta.StatementDefinition;
-import org.opendaylight.yangtools.yang.model.api.stmt.UnknownStatement;
-
-/**
- * Declared statement representation of 'get-filter-element-attributes' extension defined in
- * <a href="https://tools.ietf.org/html/rfc6241">RFC6241</a>.
- */
-@Beta
-public interface GetFilterElementAttributesStatement extends UnknownStatement<Empty> {
-    @Override
-    default StatementDefinition statementDefinition() {
-        return NetconfStatements.GET_FILTER_ELEMENT_ATTRIBUTES;
-    }
-}