Uses of Interface
org.torproject.descriptor.NetworkStatusEntry

Packages that use NetworkStatusEntry 
Package Description
org.torproject.descriptor
Interfaces and essential classes for obtaining and processing Tor descriptors.
  • Uses of NetworkStatusEntry in org.torproject.descriptor

    Methods in org.torproject.descriptor that return NetworkStatusEntry 
    Modifier and Type Method Description
    NetworkStatusEntry RelayNetworkStatus.getStatusEntry​(java.lang.String fingerprint)
    Return a status entry by relay fingerprint (SHA-1 digest of the server's public identity key, encoded as 40 upper-case hexadecimal characters), or null if no such status entry exists; convenience method for getStatusEntries().get(fingerprint).
    NetworkStatusEntry RelayNetworkStatusConsensus.getStatusEntry​(java.lang.String fingerprint)
    Return a status entry by relay fingerprint (SHA-1 digest of the server's public identity key, encoded as 40 upper-case hexadecimal characters), or null if no such status entry exists; convenience method for getStatusEntries().get(fingerprint).
    NetworkStatusEntry RelayNetworkStatusVote.getStatusEntry​(java.lang.String fingerprint)
    Return a status entry by relay fingerprint (SHA-1 digest of the server's public identity key, encoded as 40 upper-case hexadecimal characters), or null if no such status entry exists; convenience method for getStatusEntries().get(fingerprint).
    Methods in org.torproject.descriptor that return types with arguments of type NetworkStatusEntry 
    Modifier and Type Method Description
    java.util.SortedMap<java.lang.String,​NetworkStatusEntry> BridgeNetworkStatus.getStatusEntries()
    Return status entries for each contained bridge, with map keys being SHA-1 digests of SHA-1 digest of the bridges' public identity keys, encoded as 40 upper-case hexadecimal characters.
    java.util.SortedMap<java.lang.String,​NetworkStatusEntry> RelayNetworkStatus.getStatusEntries()
    Return status entries for each contained server, with map keys being SHA-1 digests of the servers' public identity keys, encoded as 40 upper-case hexadecimal characters.
    java.util.SortedMap<java.lang.String,​NetworkStatusEntry> RelayNetworkStatusConsensus.getStatusEntries()
    Return status entries for each contained server, with map keys being SHA-1 digests of the servers' public identity keys, encoded as 40 upper-case hexadecimal characters.
    java.util.SortedMap<java.lang.String,​NetworkStatusEntry> RelayNetworkStatusVote.getStatusEntries()
    Return status entries for each contained server, with map keys being SHA-1 digests of the servers' public identity keys, encoded as 40 upper-case hexadecimal characters.