use of org.batfish.representation.cisco.RouteMapSetLocalPreferenceLine in project batfish by batfish.
the class CiscoControlPlaneExtractor method exitSet_local_preference_rm_stanza.
@Override
public void exitSet_local_preference_rm_stanza(Set_local_preference_rm_stanzaContext ctx) {
IntExpr localPreference = toLocalPreferenceIntExpr(ctx.pref);
RouteMapSetLocalPreferenceLine line = new RouteMapSetLocalPreferenceLine(localPreference);
_currentRouteMapClause.addSetLine(line);
}
Aggregations