Uses of Class
net.jolsrv2.CidrAddress

Packages that use CidrAddress
net.jolsrv2   
net.jolsrv2.repository.neighbourhood   
net.jolsrv2.repository.topology   
 

Uses of CidrAddress in net.jolsrv2
 

Methods in net.jolsrv2 that return CidrAddress
 CidrAddress Interface.getLocalCAddress()
          Returns the local CIDR address
 

Constructors in net.jolsrv2 with parameters of type CidrAddress
Interface(boolean multiple, CidrAddress localCAddress, java.net.InetAddress broadcastAddress, int port)
           
 

Uses of CidrAddress in net.jolsrv2.repository.neighbourhood
 

Methods in net.jolsrv2.repository.neighbourhood that return CidrAddress
 CidrAddress MprSelectorTuple.getCAddress()
          Returns the CIDR address
 CidrAddress TwoHopTuple.getLocalCAddress()
          Returns the local CIDR address
 CidrAddress SymmetricNeighbourTuple.getLocalCAddress()
          Returns the local CIDR address
 CidrAddress LinkTuple.getLocalCAddress()
          Returns the local CIDR address
 CidrAddress TwoHopTuple.getNeighbourCAddress()
          Returns the neighbour CIDR address
 CidrAddress SymmetricNeighbourTuple.getNeighbourCAddress()
          Returns the neighbour CIDR address
 CidrAddress LinkTuple.getNeighbourCAddress()
          Returns the neighbour CIDR address
 CidrAddress TwoHopTuple.getTwoHopCAddress()
          Return the two hop CIDR address
 

Methods in net.jolsrv2.repository.neighbourhood that return types with arguments of type CidrAddress
 java.util.ArrayList<CidrAddress> NaaTuple.getCAddresses()
          Returns the CIDR addresses
 java.util.ArrayList<CidrAddress> MprSelectorSet.getCAddresses()
          Returns the CIDR addresses found in the MPR selector tuples.
 

Methods in net.jolsrv2.repository.neighbourhood with parameters of type CidrAddress
 boolean MprSelectorSet.contains(CidrAddress cidrAddress)
          Checks to see if a CIDR addresses is present in the MPR selector set
 boolean LinkSet.contains(CidrAddress from)
          Checks if the link set has a link tuple with a certain local CIDR address
 boolean LinkSet.contains(CidrAddress from, CidrAddress to, Values status)
          Checks if the link set has a link tuple with a certain local CIDR address, neighbour CIDR address and link status
 java.util.ArrayList<TwoHopTuple> TwoHopSet.getTuples(CidrAddress cidrBlock)
          The method gets all two hop tuples associated with a certain local CIDR address
 java.util.ArrayList<SymmetricNeighbourTuple> SymmetricNeighbourSet.getTuples(CidrAddress from)
          Returns the tuples with a certain local CIDR address
 java.util.ArrayList<LinkTuple> LinkSet.getTuples(CidrAddress cidrBlock)
          Searches for and returns link tuples having a certain local CIDR address
 Values LinkSet.getWillingness(CidrAddress from)
          Returns the willigness of a link tuple with a certain local CIDR address
 void SymmetricNeighbourSet.populate(CidrAddress receivingCAddress, java.util.ArrayList<CidrAddress> libCAddresses, java.util.ArrayList<CidrAddress> cidrAddresses, java.util.ArrayList<Tlv> tlvs, long validityTime)
          Method populating the symmetric neighbour set, as proposed in the specification
 boolean MprSelectorSet.populate(CidrAddress localCAddresses, java.util.ArrayList<CidrAddress> libCAddresses, java.util.ArrayList<CidrAddress> cidrAddresses, java.util.ArrayList<Tlv> tlvs, long validityTime)
          Populates the MPR selector set.
 boolean TwoHopSet.populate(CidrAddress receivingCAddress, CidrAddress sendingCAddress, long validityTime, java.util.ArrayList<CidrAddress> cidrAddresses, java.util.ArrayList<Tlv> tlvs)
          Populates the two hop set as suggested in the specification
 boolean LinkSet.populate1(CidrAddress receivingCAddress, CidrAddress sourceCAddress, long validityTime)
          Populating the link set witht the addresses found in the LIB.
 void LinkSet.populate2(CidrAddress receivingCAddress, CidrAddress sourceCAddress, long validityTime, long intervalTime, Values willingness, java.util.ArrayList<CidrAddress> cidrAddresses, java.util.ArrayList<Tlv> tlvs)
          Populating the link set with the addresses found in the address blocks other than the LIB.
 

Method parameters in net.jolsrv2.repository.neighbourhood with type arguments of type CidrAddress
 void SymmetricNeighbourSet.populate(CidrAddress receivingCAddress, java.util.ArrayList<CidrAddress> libCAddresses, java.util.ArrayList<CidrAddress> cidrAddresses, java.util.ArrayList<Tlv> tlvs, long validityTime)
          Method populating the symmetric neighbour set, as proposed in the specification
 void SymmetricNeighbourSet.populate(CidrAddress receivingCAddress, java.util.ArrayList<CidrAddress> libCAddresses, java.util.ArrayList<CidrAddress> cidrAddresses, java.util.ArrayList<Tlv> tlvs, long validityTime)
          Method populating the symmetric neighbour set, as proposed in the specification
 boolean MprSelectorSet.populate(CidrAddress localCAddresses, java.util.ArrayList<CidrAddress> libCAddresses, java.util.ArrayList<CidrAddress> cidrAddresses, java.util.ArrayList<Tlv> tlvs, long validityTime)
          Populates the MPR selector set.
 boolean MprSelectorSet.populate(CidrAddress localCAddresses, java.util.ArrayList<CidrAddress> libCAddresses, java.util.ArrayList<CidrAddress> cidrAddresses, java.util.ArrayList<Tlv> tlvs, long validityTime)
          Populates the MPR selector set.
 boolean TwoHopSet.populate(CidrAddress receivingCAddress, CidrAddress sendingCAddress, long validityTime, java.util.ArrayList<CidrAddress> cidrAddresses, java.util.ArrayList<Tlv> tlvs)
          Populates the two hop set as suggested in the specification
 boolean NaaSet.populate(long intervalTime, java.util.ArrayList<CidrAddress> cidrAddresses)
          Method for populating the neighbour address association set
 void LinkSet.populate2(CidrAddress receivingCAddress, CidrAddress sourceCAddress, long validityTime, long intervalTime, Values willingness, java.util.ArrayList<CidrAddress> cidrAddresses, java.util.ArrayList<Tlv> tlvs)
          Populating the link set with the addresses found in the address blocks other than the LIB.
 

Constructors in net.jolsrv2.repository.neighbourhood with parameters of type CidrAddress
LinkTuple(CidrAddress localCAddress, CidrAddress neighbourCAddress, long symTime, long time)
          Constructor
MprSelectorTuple(CidrAddress cidrAddress, long time)
          Constructor
MprSet(CidrAddress ifaceCAddress)
          Constructor
SymmetricNeighbourTuple(CidrAddress localCAddress, CidrAddress neighbourCAddress, long symTime, long time)
          Constructor
TwoHopTuple(CidrAddress localCAddress, CidrAddress neighbourCAddress, CidrAddress twoHopCAddress, long time)
          Constructor
 

Constructor parameters in net.jolsrv2.repository.neighbourhood with type arguments of type CidrAddress
NaaTuple(java.util.ArrayList<CidrAddress> neighbourCAddresses, long time)
          Constructor
 

Uses of CidrAddress in net.jolsrv2.repository.topology
 

Methods in net.jolsrv2.repository.topology that return CidrAddress
 CidrAddress AttachedNetworkTuple.getGatewayCAddress()
          Returns the gateway CIDR address
 CidrAddress AttachedNetworkTuple.getNetworkCAddress()
          Returns the network CIDR address
 

Method parameters in net.jolsrv2.repository.topology with type arguments of type CidrAddress
 void AttachedNetworkSet.populate(java.util.ArrayList<CidrAddress> libCAddresses, java.util.ArrayList<CidrAddress> cAddresses, java.util.ArrayList<Tlv> tlvs, int ansn, long validityTime)
          Method populating the symmetric neighbour set, as proposed in the specification
 void AttachedNetworkSet.populate(java.util.ArrayList<CidrAddress> libCAddresses, java.util.ArrayList<CidrAddress> cAddresses, java.util.ArrayList<Tlv> tlvs, int ansn, long validityTime)
          Method populating the symmetric neighbour set, as proposed in the specification
 boolean TopologySet.update(java.util.ArrayList<CidrAddress> libCAddresses, java.util.ArrayList<java.net.InetAddress> addresses, java.util.ArrayList<Tlv> tlvs, long validityTime, int ansn)
          Updates the topology set as suggested in the specification
 

Constructors in net.jolsrv2.repository.topology with parameters of type CidrAddress
AttachedNetworkTuple(CidrAddress networkCAddress, CidrAddress gatewayCAddress, int ansn, long time)
          Constructor