Interface BestPathState
-
- All Known Implementing Classes:
BestPathStateImpl
public interface BestPathState
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description int
getAsPathLength()
@NonNull org.opendaylight.yangtools.yang.data.api.schema.ContainerNode
getAttributes()
@Nullable org.opendaylight.yangtools.yang.common.Uint32
getLocalPref()
long
getMultiExitDisc()
@Nullable BgpOrigin
getOrigin()
long
getPeerAs()
boolean
isDepreferenced()
Return true if this route is depreferenced, for example through LLGR_STALE community.
-
-
-
Method Detail
-
getLocalPref
@Nullable org.opendaylight.yangtools.yang.common.Uint32 getLocalPref()
-
getMultiExitDisc
long getMultiExitDisc()
-
getOrigin
@Nullable BgpOrigin getOrigin()
-
getPeerAs
long getPeerAs()
-
getAsPathLength
int getAsPathLength()
-
isDepreferenced
boolean isDepreferenced()
Return true if this route is depreferenced, for example through LLGR_STALE community.- Returns:
- True if this route is depreferenced, false otherwise.
-
getAttributes
@NonNull org.opendaylight.yangtools.yang.data.api.schema.ContainerNode getAttributes()
-
-