Interface ConfigFileProcessor
-
- All Known Implementing Classes:
BmpMonitorConfigFileProcessor
,NetworkTopologyConfigFileProcessor
,OpenconfigRoutingPolicyLoader
,ProtocolsConfigFileProcessor
public interface ConfigFileProcessor
Takes care of obtain object schema, schema QName is used as base to create a pattern (QName + "-" + * + ".xml") to recognize which files needs to be processed by each e.g. ProtocolsConfigFileProcessor will process any file containing the naming protocols-*.xml
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description @NonNull org.opendaylight.yangtools.yang.model.api.SchemaPath
getSchemaPath()
Schema Path to search for.void
loadConfiguration(@NonNull org.opendaylight.yangtools.yang.data.api.schema.NormalizedNode<?,?> dto)
Load the information contained on the normalized node.
-
-
-
Method Detail
-
getSchemaPath
@NonNull org.opendaylight.yangtools.yang.model.api.SchemaPath getSchemaPath()
Schema Path to search for.- Returns:
- SchemaPath
-
loadConfiguration
void loadConfiguration(@NonNull org.opendaylight.yangtools.yang.data.api.schema.NormalizedNode<?,?> dto)
Load the information contained on the normalized node.- Parameters:
dto
- normalizedNode
-
-