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