Fix javadocs and enable doclint
[controller.git] / opendaylight / md-sal / sal-binding-api / src / main / java / org / opendaylight / controller / sal / binding / api / data / DataProviderService.java
index 801a1c0d61316729a8b8db13f3b09ab40a37ec5f..14a1e8ab49f3847e70561246bbdafde91c6bb792 100644 (file)
@@ -7,63 +7,14 @@
  */
 package org.opendaylight.controller.sal.binding.api.data;
 
-import java.util.Map;
-import java.util.Set;
-
-import org.opendaylight.controller.sal.common.DataStoreIdentifier;
-import org.opendaylight.yangtools.yang.binding.DataObject;
-import org.opendaylight.yangtools.yang.binding.InstanceIdentifier;
 
+/**
+ * DataProviderService is common access point for {@link org.opendaylight.controller.sal.binding.api.BindingAwareProvider} providers
+ * to access data trees described by the YANG model.
+ *
+ * @deprecated Replaced by {@link org.opendaylight.controller.md.sal.common.api.data.AsyncConfigurationCommitCoordinator} service.
+ */
+@Deprecated
 public interface DataProviderService extends DataBrokerService {
 
-    /**
-     * Adds {@link DataValidator} for specified Data Store
-     * 
-     * @param store
-     *            Data Store
-     * @param validator
-     *            Validator
-     */
-    public void addValidator(DataStoreIdentifier store, DataValidator validator);
-
-    /**
-     * Removes {@link DataValidator} from specified Data Store
-     * 
-     * @param store
-     * @param validator
-     *            Validator
-     */
-    public void removeValidator(DataStoreIdentifier store, DataValidator validator);
-
-    /**
-     * Adds {@link DataCommitHandler} for specified data store
-     * 
-     * @param store
-     * @param provider
-     */
-    void addCommitHandler(DataStoreIdentifier store, DataCommitHandler provider);
-
-    /**
-     * Removes {@link DataCommitHandler} from specified data store
-     * 
-     * @param store
-     * @param provider
-     */
-    void removeCommitHandler(DataStoreIdentifier store, DataCommitHandler provider);
-
-    /**
-     * Adds {@link DataRefresher} for specified data store
-     * 
-     * @param store
-     * @param refresher
-     */
-    void addRefresher(DataStoreIdentifier store, DataRefresher refresher);
-
-    /**
-     * Removes {@link DataRefresher} from specified data store
-     * 
-     * @param store
-     * @param refresher
-     */
-    void removeRefresher(DataStoreIdentifier store, DataRefresher refresher);
 }