JsonPropertyDescription
Code IndexAdd Codota to your IDE (free)

Best code snippets using com.fasterxml.jackson.annotation.JsonPropertyDescription(Showing top 20 results out of 315)

Refine search

  • JsonProperty
origin: batfish/batfish

@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;
}
origin: batfish/batfish

@JsonPropertyDescription("OSPF routing process for this VRF")
@JsonProperty(PROP_OSPF_PROCESS)
public OspfProcess getOspfProcess() {
 return _ospfProcess;
}
origin: batfish/batfish

@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;
 }
}
origin: batfish/batfish

@Nullable
@JsonProperty(PROP_AUTHENTICATION_SETTINGS)
@JsonPropertyDescription("The authentication setting to be used for this neighbor")
public BgpAuthenticationSettings getAuthenticationSettings() {
 return _authenticationSettings;
}
origin: batfish/batfish

@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;
 }
}
origin: batfish/batfish

@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;
 }
}
origin: batfish/batfish

@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;
}
origin: batfish/batfish

@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;
}
origin: batfish/batfish

@JsonProperty(PROP_SPANNING_TREE_PORTFAST)
@JsonPropertyDescription("Whether or not spanning-tree portfast feature is enabled")
public boolean getSpanningTreePortfast() {
 return _spanningTreePortfast;
}
origin: batfish/batfish

@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;
}
origin: batfish/batfish

@JsonProperty(PROP_EBGP_MULTIHOP)
@JsonPropertyDescription(
  "Whether to allow establishment of a multihop eBGP connection with this peer")
public boolean getEbgpMultihop() {
 return _ebgpMultihop;
}
origin: batfish/batfish

@JsonProperty(PROP_EXPORT_POLICY)
@JsonPropertyDescription("The policy governing all advertisements sent to this peer")
public String getExportPolicy() {
 return _exportPolicy;
}
origin: batfish/batfish

@JsonProperty(PROP_LOCAL_AS)
@JsonPropertyDescription("The local autonomous sysem of this peering")
public Integer getLocalAs() {
 return _localAs;
}
origin: batfish/batfish

@JsonProperty(PROP_BANDWIDTH)
@JsonPropertyDescription(
  "The nominal bandwidth of this interface in bits/sec for use in protocol cost calculations")
public Double getBandwidth() {
 return _bandwidth;
}
origin: batfish/batfish

@JsonProperty(PROP_REGEX)
@JsonPropertyDescription("The regex against which a route's communities will be compared")
public String getRegex() {
 return _regex;
}
origin: batfish/batfish

@JsonProperty(PROP_STATEMENTS)
@JsonPropertyDescription("The list of routing-policy statements to execute")
public List<Statement> getStatements() {
 return _statements;
}
origin: batfish/batfish

@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;
}
origin: batfish/batfish

@JsonProperty(PROP_DEFAULT_METRIC)
@JsonPropertyDescription("Default MED for routes sent to this neighbor")
public int getDefaultMetric() {
 return _defaultMetric;
}
origin: batfish/batfish

@JsonProperty(PROP_ACTIVE)
@JsonPropertyDescription(
  "Whether this interface is administratively active (true) or disabled (false)")
public boolean getActive() {
 return _active;
}
origin: batfish/batfish

@JsonProperty(PROP_ALLOWED_VLANS)
@JsonPropertyDescription("Ranges of allowed VLANs when switchport mode is TRUNK")
public List<SubRange> getAllowedVlans() {
 return _allowedVlans;
}
com.fasterxml.jackson.annotationJsonPropertyDescription

Most used methods

  • value
  • <init>

Popular classes and methods

  • getResourceAsStream (ClassLoader)
    Returns a stream for the resource with the specified name. See #getResource(String) for a descriptio
  • notifyDataSetChanged (ArrayAdapter)
  • OutputStream (java.io)
    A writable sink for bytes.Most clients will use output streams that write data to the file system (
  • SocketException (java.net)
    This SocketException may be thrown during socket creation or setting options, and is the superclass
  • StringTokenizer (java.util)
    Breaks a string into tokens; new code should probably use String#split.> // Legacy code: StringTo
  • Notification (javax.management)
    Notifications are events emitted by NotificationEmitters
  • JLabel (javax.swing)
  • JOptionPane (javax.swing)
  • XPath (javax.xml.xpath)
    XPath provides access to the XPath evaluation environment and expressions. Evaluation of XPath Expr

For IntelliJ IDEA,
Android Studio or Eclipse

  • Codota IntelliJ IDEA pluginCodota Android Studio pluginCode IndexSign in
  • EnterpriseFAQAboutContact Us
  • Terms of usePrivacy policyCodeboxFind Usages
Add Codota to your IDE (free)