Uses of Class
be.ac.ulg.montefiore.run.totem.domain.exception.InvalidDomainException

Packages that use InvalidDomainException
at.ftw.repository.reopt   
be.ac.ulg.montefiore.run.totem.domain.facade This package holds the manager for the domain package. 
be.ac.ulg.montefiore.run.totem.domain.model This package holds the model for the domain package. 
be.ac.ulg.montefiore.run.totem.domain.model.impl This package holds classes which are the implementation of the model for the domain package. 
be.ac.ulg.montefiore.run.totem.domain.persistence This package holds classes used to load/save Domain objects. 
be.ac.ulg.montefiore.run.totem.repository.SAMTE.core   
be.ac.ulg.montefiore.run.totem.topgen.traffic This package holds traffic generation-related classes. 
be.ac.ulg.montefiore.run.totem.trafficMatrix.facade This package holds the manager for the trafficMatrix package. 
be.ac.ulg.montefiore.run.totem.trafficMatrix.model.impl This package holds the implementation of the model for the trafficMatrix package. 
be.ac.ulg.montefiore.run.totem.trafficMatrix.persistence This package holds classes used to load/save traffic matrices. 
be.ac.ulg.montefiore.run.totem.visualtopo.facade This package holds classes related to the TOTEM GUI. 
it.unina.traffic   
test This package holds JUnit test classes. 
 

Uses of InvalidDomainException in at.ftw.repository.reopt
 

Methods in at.ftw.repository.reopt that throw InvalidDomainException
 void LSPGeneration.generateLSP(int ASID, int nbParallelPath)
          Generate a fullmesh of nbParallelPath disjoint LSPs between each nodes of the domain ASID.
 

Uses of InvalidDomainException in be.ac.ulg.montefiore.run.totem.domain.facade
 

Methods in be.ac.ulg.montefiore.run.totem.domain.facade that throw InvalidDomainException
 SimplifiedDomain InterDomainManager.buildSimplifiedDomain(int ASID)
          Build a simplified topology of the ASID domain
 Domain InterDomainManager.getDomain(int ASID)
          Return the domain with ASID as autonomous system ID
 Domain InterDomainManager.loadDomain(java.lang.String fileName, boolean isDefaultDomain, boolean removeMultipleLinks)
          Load a domain from a file
 Domain InterDomainManager.loadDomain(java.lang.String fileName, boolean isDefaultDomain, boolean removeMultipleLinks, boolean useBwSharing)
          Load a domain from a file
 Domain InterDomainManager.loadDomain(java.lang.String host, int port, boolean isDefaultDomain, boolean removeMultipleLinks, boolean useBwSharing)
          Load a domain from network.
 void InterDomainManager.removeDefaultDomain()
          Removes the default domain from the InterDomainManager.
 void InterDomainManager.removeDomain(int asId)
          Removes the domain asId from the InterDomainManager.
 void InterDomainManager.saveDomain(int ASID, java.lang.String fileName)
          Save the domain ASID in the specified file
 void InterDomainManager.setDefaultDomain(int ASID)
          Set the ASID domain as the default domain
 void InterDomainManager.uploadSimplifiedDomain(int ASID, SimplifiedDomain sDomain)
          Upload a simplified topology to the ASID domain.
 

Uses of InvalidDomainException in be.ac.ulg.montefiore.run.totem.domain.model
 

Methods in be.ac.ulg.montefiore.run.totem.domain.model that throw InvalidDomainException
 void Domain.init(boolean removeMultipleLink, boolean useBwSharing)
          Init all the index and give the Domain reference to Link, Node and Lsp.
 

Uses of InvalidDomainException in be.ac.ulg.montefiore.run.totem.domain.model.impl
 

Methods in be.ac.ulg.montefiore.run.totem.domain.model.impl that throw InvalidDomainException
 void DomainImpl.init(boolean removeMultipleLink, boolean useBwSharing)
          Init all the index and give the Domain reference to Link, Node and Lsp.
 

Uses of InvalidDomainException in be.ac.ulg.montefiore.run.totem.domain.persistence
 

Methods in be.ac.ulg.montefiore.run.totem.domain.persistence that throw InvalidDomainException
static Domain DomainFactory.loadDistantDomain(java.lang.String host, boolean removeMultipleLink, boolean useBwSharing)
           
static Domain DomainFactory.loadDistantDomain(java.lang.String host, int port)
           
static Domain DomainFactory.loadDistantDomain(java.lang.String host, int port, boolean removeMultipleLink, boolean useBwSharing)
           
static Domain DomainFactory.loadDomain(java.io.InputStream is)
           
static Domain DomainFactory.loadDomain(java.io.InputStream is, boolean removeMultipleLink, boolean useBwSharing)
           
static Domain DomainFactory.loadDomain(java.lang.String fileName)
          Load a domain from a file not removing multiple links nor using BwSharing
static Domain DomainFactory.loadDomain(java.lang.String fileName, boolean removeMultipleLink, boolean useBwSharing)
          Load a domain from a file
 

Uses of InvalidDomainException in be.ac.ulg.montefiore.run.totem.repository.SAMTE.core
 

Constructors in be.ac.ulg.montefiore.run.totem.repository.SAMTE.core that throw InvalidDomainException
SAMTE(java.lang.String cplName, ObjectiveFunction scf, int tmId)
           
SAMTE(java.lang.String cplName, ObjectiveFunction scf, SANeighbourhood nbh, int asId, int tmId)
           
 

Uses of InvalidDomainException in be.ac.ulg.montefiore.run.totem.topgen.traffic
 

Methods in be.ac.ulg.montefiore.run.totem.topgen.traffic that throw InvalidDomainException
 TrafficMatrix TrafficGenerator.generateTM()
           
 

Uses of InvalidDomainException in be.ac.ulg.montefiore.run.totem.trafficMatrix.facade
 

Methods in be.ac.ulg.montefiore.run.totem.trafficMatrix.facade that throw InvalidDomainException
 void TrafficMatrixManager.addTrafficMatrix(TrafficMatrix tm, int tmId)
          Adds the traffic matrix tm with the TM ID tmId.
 int TrafficMatrixManager.generateTMID(int asId)
          Generates a TM ID that can be used for the domain asId.
 void TrafficMatrixManager.generateTrafficMatrix(int asId, int tmId, TrafficModel model, double fraction)
          Generates a new traffic matrix tmId for the domain asId.
 TrafficMatrix TrafficMatrixManager.generateTrafficMatrix(int asId, int tmId, TrafficModel model, double fraction, boolean generateOnlyEdgeTraffic)
          Generates a new traffic matrix tmId for the domain asId.
 TrafficMatrix TrafficMatrixManager.loadTrafficMatrix(java.io.File file, int tmId, boolean isDefaultTrafficMatrix)
          Loads the intra-domain traffic matrix contained in the given file.
 TrafficMatrix TrafficMatrixManager.loadTrafficMatrix(java.lang.String fileName)
          Loads the intra-domain traffic matrix contained in the file fileName.
 TrafficMatrix TrafficMatrixManager.loadTrafficMatrix(java.lang.String fileName, int tmId, boolean isDefaultTrafficMatrix)
          Loads the intra-domain traffic matrix contained in the file fileName.
 

Uses of InvalidDomainException in be.ac.ulg.montefiore.run.totem.trafficMatrix.model.impl
 

Constructors in be.ac.ulg.montefiore.run.totem.trafficMatrix.model.impl that throw InvalidDomainException
TrafficMatrixImpl(int asId)
          Creates a new TrafficMatrixImpl object.
 

Uses of InvalidDomainException in be.ac.ulg.montefiore.run.totem.trafficMatrix.persistence
 

Methods in be.ac.ulg.montefiore.run.totem.trafficMatrix.persistence that throw InvalidDomainException
static TrafficMatrix TrafficMatrixFactory.loadTrafficMatrix(java.io.File file)
          Returns the intra-domain traffic matrix contained in the given file file.
static TrafficMatrix TrafficMatrixFactory.loadTrafficMatrix(java.lang.String fileName)
          Returns the intra-domain traffic matrix contained in the file fileName.
static void TrafficMatrixFactory.saveTrafficMatrix(java.lang.String fileName, TrafficMatrix tm)
          Saves the intra-domain traffic matrix tm to the file fileName.
 

Uses of InvalidDomainException in be.ac.ulg.montefiore.run.totem.visualtopo.facade
 

Methods in be.ac.ulg.montefiore.run.totem.visualtopo.facade that throw InvalidDomainException
 int GUIManager.loadTopology(java.io.File tFile)
           
 

Uses of InvalidDomainException in it.unina.traffic
 

Methods in it.unina.traffic that throw InvalidDomainException
 void TrafficGenerator.sendTraffic(java.util.HashMap<java.lang.String,java.lang.String> params)
          Send commands on the client socket to generate traffic with D-ITG
 

Uses of InvalidDomainException in test
 

Methods in test that throw InvalidDomainException
 void DAMOTETest.test2()
           
 void PreemptTest.test2PreemptNoBwSharing()
           
 void DAMOTETest.test3()
           
 void DomainConvertorTest.testAddConversion()
          Test adding a node in the conversion table
 void DomaintTest.testAddLink()
          Test add link on test-domain1.xml
 void DomaintTest.testAddLsp()
          Add a LSP in a domain with existings LSPs
 void DomaintTest.testAddLsp2()
          Add a LSP in a domain without MPLS section
 void InterDomainManagerTest.testAddRemoveDomain()
           
 void InterDomainManagerTest.testAddRemoveDomain()
           
 void DomaintTest.testAddRemoveLsp()
          Add and remove a LSP from a domain
 void BWSharingTest.testBackupBackup()
           
 void HybridStrategiesTest.testBasicIGPShortcut()
           
 void SimplifiedDomainTest.testBuildSimplifiedTopology()
          Test build a SimplifiedDomain from a Domain
 void BandwidthUnitTest.testBwConversion()
           
 void BhandariTest.testCompareWithCSPF()
           
 void CSPFTest.testComputeSPFSource()
           
 void DiffServTest.testDiffServ()
           
 void BandwidthUnitTest.testDomainCreation()
           
 void DomaintTest.testGetIgpLink()
          Test access to the LinkIgp in a DomainImpl
 void DomaintTest.testGetLink()
          Test Access to the Link in a Domain
 void HybridStrategiesTest.testIGPShortcut()
           
 void NodeTest.testInAndOutLinks()
          Test inLink and outLink methods
 void DomainConvertorTest.testInitialConversionTable()
          Check initial conversion table create from a Domain
 void SimplifiedDomainTest.testInLinks()
          Check that getInLinks from a node is the same for the SimplifiedDomain and the Domain
 void DomainFactoryTest.testLoad()
           
 void AllDistinctRoutesTest.testLoadSaveDistinctRoutes()
           
 void AllDistinctRoutesTest.testMaxDepth()
           
 void MCFTest.testMCF()
           
 void DiffServTest.testNoDiffServ()
           
 void BhandariTest.testNonConsecutiveId()
           
 void SimplifiedDomainTest.testNonConsecutiveId()
          Test creation of SimplifiedDomain on a Domain with non consecutive id.
 void PreemptTest.testNotDefinedPL()
           
 void SimplifiedDomainTest.testOutLinks()
          Check that getOutLinks from a node is the same for the SimplifiedDomain and the Domain
 void PreemptTest.testPreemptImpos()
          Try to add a lsp on a path with insufficent free bandwidth and check reservations on lsp links.
 void PreemptTest.testPreemptNoBwSharing()
           
 void CSPFPriorityQueueTest.testRandomAdd()
           
 void CSPFPriorityQueueTest.testRandomUpdate()
           
 void RoutingMatrixTest.testRealRoutingMatrix()
           
 void DomainConvertorTest.testRemoveConversion()
          Test remove a node from the conversion table and then add it again.
 void DomaintTest.testRemoveLink()
          Remove a link from test-domain1.xml
 void InterDomainManagerTest.testRemoveMatrices()
           
 void DomainFactoryTest.testSave()
           
 void DomainFactoryTest.testSave2()
           
 void CSPFPriorityQueueTest.testSimpleAdd()
           
 void AllDistinctRoutesTest.testSimpleDomain()
           
 void BhandariTest.testSimpleDomain()
           
 void SimplifiedDomainTest.testSimplifiedClone()
          Check clone function of a SimplifiedDomain
 void PreemptTest.testUselessPreemption()
           
 



Copyright © 2004-2006 Research Unit in Networking, All Rights Reserved.