For IntelliJ IDEA,
Android Studio or Eclipse



@JsonProperty(PROP_LINES) @JsonPropertyDescription( "The list of lines against which a route's AS-path will be checked in order.") public List<AsPathAccessListLine> getLines() { return _lines; }
@JsonPropertyDescription("OSPF routing process for this VRF") @JsonProperty(PROP_OSPF_PROCESS) public OspfProcess getOspfProcess() { return _ospfProcess; }
@JsonProperty(PROP_PROPOSALS) @JsonPropertyDescription( "Dictionary of IKE proposals attached to this policy. Each stored as @id") public SortedSet<String> getProposalNames() { if (_proposals != null && !_proposals.isEmpty()) { return new TreeSet<>(_proposals.keySet()); } else { return _proposalNames; } }
@Nullable @JsonProperty(PROP_AUTHENTICATION_SETTINGS) @JsonPropertyDescription("The authentication setting to be used for this neighbor") public BgpAuthenticationSettings getAuthenticationSettings() { return _authenticationSettings; }
@JsonProperty(PROP_OSPF_AREA) @JsonPropertyDescription("The OSPF area to which this interface belongs.") public Long getOspfAreaName() { if (_ospfArea != null) { return _ospfArea.getName(); } else { return _ospfAreaName; } }
@JsonProperty(PROP_INCOMING_FILTER) @JsonPropertyDescription( "The IPV4 access-list used to filter traffic that arrives on this interface.") public String getIncomingFilterName() { if (_incomingFilter != null) { return _incomingFilter.getName(); } else { return _incomingFilterName; } }
@JsonProperty(PROP_LOCAL_ADDRESS) @JsonPropertyDescription( "Local IP address from which to connect to IKE gateway. Used instead of external interface.") public Ip getLocalIp() { return _localIp; }
@JsonProperty(PROP_SWITCHPORT_TRUNK_ENCAPSULATION) @JsonPropertyDescription( "The switchport trunk encapsulation type of this interface. Only relevant when switchport " + "mode is TRUNK") public SwitchportEncapsulationType getSwitchportTrunkEncapsulation() { return _switchportTrunkEncapsulation; }
@JsonProperty(PROP_SPANNING_TREE_PORTFAST) @JsonPropertyDescription("Whether or not spanning-tree portfast feature is enabled") public boolean getSpanningTreePortfast() { return _spanningTreePortfast; }
@JsonProperty(PROP_ISIS_L1_INTERFACE_MODE) @JsonPropertyDescription( "Specifies whether this interface is active, passive, or unconfigured with respect to IS-IS " + "level 1") public IsisInterfaceMode getIsisL1InterfaceMode() { return _isisL1InterfaceMode; }
@JsonProperty(PROP_EBGP_MULTIHOP) @JsonPropertyDescription( "Whether to allow establishment of a multihop eBGP connection with this peer") public boolean getEbgpMultihop() { return _ebgpMultihop; }
@JsonProperty(PROP_EXPORT_POLICY) @JsonPropertyDescription("The policy governing all advertisements sent to this peer") public String getExportPolicy() { return _exportPolicy; }
@JsonProperty(PROP_LOCAL_AS) @JsonPropertyDescription("The local autonomous sysem of this peering") public Integer getLocalAs() { return _localAs; }
@JsonProperty(PROP_BANDWIDTH) @JsonPropertyDescription( "The nominal bandwidth of this interface in bits/sec for use in protocol cost calculations") public Double getBandwidth() { return _bandwidth; }
@JsonProperty(PROP_REGEX) @JsonPropertyDescription("The regex against which a route's communities will be compared") public String getRegex() { return _regex; }
@JsonProperty(PROP_STATEMENTS) @JsonPropertyDescription("The list of routing-policy statements to execute") public List<Statement> getStatements() { return _statements; }
@JsonProperty(PROP_PREFIX) @JsonPropertyDescription( "The bits against which to compare a route's prefix. The length of this prefix is used to " + "determine how many leading bits must match.") public Prefix6 getPrefix() { return _prefix; }
@JsonProperty(PROP_DEFAULT_METRIC) @JsonPropertyDescription("Default MED for routes sent to this neighbor") public int getDefaultMetric() { return _defaultMetric; }
@JsonProperty(PROP_ACTIVE) @JsonPropertyDescription( "Whether this interface is administratively active (true) or disabled (false)") public boolean getActive() { return _active; }
@JsonProperty(PROP_ALLOWED_VLANS) @JsonPropertyDescription("Ranges of allowed VLANs when switchport mode is TRUNK") public List<SubRange> getAllowedVlans() { return _allowedVlans; }