use of org.batfish.representation.cisco.StandardAccessList in project batfish by batfish.
the class CiscoControlPlaneExtractor method enterStandard_access_list_stanza.
@Override
public void enterStandard_access_list_stanza(Standard_access_list_stanzaContext ctx) {
String name;
int definitionLine;
if (ctx.name != null) {
name = ctx.name.getText();
definitionLine = ctx.name.getStart().getLine();
} else if (ctx.num != null) {
name = ctx.num.getText();
definitionLine = ctx.num.getLine();
} else {
throw new BatfishException("Invalid standard access-list name");
}
StandardAccessList list = _configuration.getStandardAcls().computeIfAbsent(name, n -> new StandardAccessList(n, definitionLine));
_currentStandardAcl = list;
}
Aggregations