Remove binding spec2
[mdsal.git] / binding2 / mdsal-binding2-spec / src / main / java / org / opendaylight / mdsal / binding / javav2 / spec / structural / Augmentable.java
diff --git a/binding2/mdsal-binding2-spec/src/main/java/org/opendaylight/mdsal/binding/javav2/spec/structural/Augmentable.java b/binding2/mdsal-binding2-spec/src/main/java/org/opendaylight/mdsal/binding/javav2/spec/structural/Augmentable.java
deleted file mode 100644 (file)
index 6de2eb5..0000000
+++ /dev/null
@@ -1,45 +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.spec.structural;
-
-import com.google.common.annotations.Beta;
-import com.google.common.collect.ClassToInstanceMap;
-
-/**
- * Augmentable (extensible) object which could carry additional data defined by third-party
- * extension, without introducing conflict between various extension.
- *
- * This interface uses extended version of ExtensibleInterface pattern which also adds marker
- * interface for augmentations (extensions) - {@link Augmentable}
- *
- * @author Tony Tkacik
- * @param <T> Base class which should implements this interface and is target for augmentation.
- */
-@Beta
-public interface Augmentable<T> {
-
-    /**
-     * Returns instance of augmentation based on class
-     *
-     * @param augment Type of augmentation to be returned.
-     * @return instance of augmentation.
-     */
-    default <E extends Augmentation<? super T>> E getAugmentation(Class<E> augment) {
-        return augments().getInstance(augment);
-    }
-
-    /**
-     *
-     * Returns map of all instantiated augmentations.
-     *
-     * @return Class to Instance Map
-     */
-    // REPLACES: BindingReflections#getAugmentations()
-    ClassToInstanceMap<Augmentation<? super T>> augments();
-}