BUG-2976: Resolve clash between current and feature cfg pusher
[controller.git] / opendaylight / config / config-persister-file-xml-adapter / src / main / java / org / opendaylight / controller / config / persist / storage / file / xml / FeatureListProvider.java
1 package org.opendaylight.controller.config.persist.storage.file.xml;
2
3 import java.util.Set;
4
5 /**
6  * Wrapper for services providing list of features to be stored along with the config snapshot
7  */
8 public interface FeatureListProvider {
9
10     Set<String> listFeatures();
11 }