Interface QualifiedPathAdapter
- All Known Implementing Classes:
StandardHistorianPathAdapter
public interface QualifiedPathAdapter
Represents an adapter for processing and normalizing
QualifiedPath
objects.
A QualifiedPathAdapter
provides a mechanism to adapt a QualifiedPath
to an AdaptedQualifiedPath
, which may involve modifying or validating
the path based on specific implementation rules.-
Field Summary
Fields -
Method Summary
Modifier and TypeMethodDescriptionnormalize
(QualifiedPath path) Normalizes the givenQualifiedPath
and returns anAdaptedQualifiedPath
.
-
Field Details
-
DEFAULT
-
-
Method Details
-
normalize
Normalizes the givenQualifiedPath
and returns anAdaptedQualifiedPath
. The normalization process may involve validating or modifying the input path according to specific implementation rules.- Parameters:
path
- theQualifiedPath
to normalize- Returns:
- the resulting
AdaptedQualifiedPath
after normalization - Throws:
InvalidQualifiedPathException
- if the providedQualifiedPath
is invalid
-