Remove binding spec2
[mdsal.git] / binding2 / mdsal-binding2-generator-api / src / main / java / org / opendaylight / mdsal / binding / javav2 / model / api / GeneratedProperty.java
diff --git a/binding2/mdsal-binding2-generator-api/src/main/java/org/opendaylight/mdsal/binding/javav2/model/api/GeneratedProperty.java b/binding2/mdsal-binding2-generator-api/src/main/java/org/opendaylight/mdsal/binding/javav2/model/api/GeneratedProperty.java
deleted file mode 100644 (file)
index 97b7671..0000000
+++ /dev/null
@@ -1,37 +0,0 @@
-/*
- * Copyright (c) 2017 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.mdsal.binding.javav2.model.api;
-
-import com.google.common.annotations.Beta;
-
-/**
- * Generated Property extends interface {@link TypeMember} interface. <br>
- * The Generated Property interface is designed to store information of fields
- * (or members) declared in Java Transfer Objects (or any java classes) and
- * their access counterparts (getters and setters).
- *
- * @see MethodSignature
- */
-@Beta
-public interface GeneratedProperty extends TypeMember {
-
-    /**
-     * @return String format of generated property value
-     */
-    String getValue();
-
-    /**
-     * Returns <code>true</code> if the property si declared as read-only. <br>
-     * If the property has flag <code>isReadOnly == true</code> the property
-     * SHOULD be generated as getter only.
-     *
-     * @return <code>true</code> if the property si declared as read-only.
-     */
-    boolean isReadOnly();
-}