/* * 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.sal.core.api.data; import java.util.Set; import org.opendaylight.controller.sal.common.DataStoreIdentifier; import org.opendaylight.controller.sal.core.api.Provider; import org.opendaylight.yangtools.yang.common.RpcResult; import org.opendaylight.yangtools.yang.data.api.CompositeNode; /** * {@link Provider}-supplied Validator of the data. * *

* The registration could be done by : *

* * @deprecated Replaced by {@link org.opendaylight.controller.md.sal.common.api.data.AsyncConfigurationCommitHandler} * **/ @Deprecated public interface DataValidator extends Provider.ProviderFunctionality { /** * A set of Data Stores supported by implementation. * * The set of {@link DataStoreIdentifier}s which identifies target data * stores which are supported by this implementation. This set is used, when * {@link Provider} is registered to the SAL, to register and expose the * validation functionality to affected data stores. * * @return Set of Data Store identifiers */ Set getSupportedDataStores(); /** * Performs validation on supplied data. * * @param toValidate * Data to validate * @return Validation result. The * {@link RpcResult#isSuccessful()} == true if the data * passed validation, otherwise contains list of errors. */ RpcResult validate(CompositeNode toValidate); }