Uses of Class
org.pentaho.di.cluster.ClusterSchema

Packages that use ClusterSchema
org.pentaho.di.cluster   
org.pentaho.di.repository This package contains the required classes to handle the Kettle repository. 
org.pentaho.di.repository.filerep   
org.pentaho.di.repository.kdr   
org.pentaho.di.repository.kdr.delegates   
org.pentaho.di.trans This package contains the classes needed to define and execute transformations. 
org.pentaho.di.trans.step   
org.pentaho.di.ui.cluster.dialog   
org.pentaho.di.ui.repository.repositoryexplorer.model   
 

Uses of ClusterSchema in org.pentaho.di.cluster
 

Methods in org.pentaho.di.cluster that return ClusterSchema
 ClusterSchema ClusterSchema.clone()
           
 ClusterSchema ClusterGenerator.getClusterSchema()
           
 

Methods in org.pentaho.di.cluster with parameters of type ClusterSchema
 void ClusterSchema.replaceMeta(ClusterSchema clusterSchema)
           
 void ClusterGenerator.setClusterSchema(ClusterSchema clusterSchema)
           
 

Uses of ClusterSchema in org.pentaho.di.repository
 

Methods in org.pentaho.di.repository that return ClusterSchema
 ClusterSchema Repository.loadClusterSchema(ObjectId id_cluster_schema, List<SlaveServer> slaveServers, String versionLabel)
           
 

Uses of ClusterSchema in org.pentaho.di.repository.filerep
 

Methods in org.pentaho.di.repository.filerep that return ClusterSchema
 ClusterSchema KettleFileRepository.loadClusterSchema(ObjectId id_cluster_schema, List<SlaveServer> slaveServers, String versionName)
           
 

Methods in org.pentaho.di.repository.filerep with parameters of type ClusterSchema
 ObjectId KettleFileRepository.insertClusterSlave(ClusterSchema clusterSchema, SlaveServer slaveServer)
           
 

Uses of ClusterSchema in org.pentaho.di.repository.kdr
 

Methods in org.pentaho.di.repository.kdr that return ClusterSchema
 ClusterSchema KettleDatabaseRepository.loadClusterSchema(ObjectId idClusterSchema, List<SlaveServer> slaveServers, String versionLabel)
           
 

Methods in org.pentaho.di.repository.kdr with parameters of type ClusterSchema
 ObjectId KettleDatabaseRepository.insertClusterSlave(ClusterSchema clusterSchema, SlaveServer slaveServer)
           
 

Uses of ClusterSchema in org.pentaho.di.repository.kdr.delegates
 

Methods in org.pentaho.di.repository.kdr.delegates that return ClusterSchema
 ClusterSchema KettleDatabaseRepositoryClusterSchemaDelegate.loadClusterSchema(ObjectId id_cluster_schema, List<SlaveServer> slaveServers)
           
 

Methods in org.pentaho.di.repository.kdr.delegates with parameters of type ClusterSchema
 void KettleDatabaseRepositoryClusterSchemaDelegate.saveClusterSchema(ClusterSchema clusterSchema, String versionComment)
           
 void KettleDatabaseRepositoryClusterSchemaDelegate.saveClusterSchema(ClusterSchema clusterSchema, String versionComment, ObjectId id_transformation, boolean isUsedByTransformation)
           
 void KettleDatabaseRepositoryClusterSchemaDelegate.saveClusterSchema(ClusterSchema clusterSchema, String versionComment, ObjectId id_transformation, boolean isUsedByTransformation, boolean overwrite)
           
 void KettleDatabaseRepositoryClusterSchemaDelegate.updateCluster(ClusterSchema clusterSchema)
           
 

Uses of ClusterSchema in org.pentaho.di.trans
 

Methods in org.pentaho.di.trans that return ClusterSchema
 ClusterSchema TransMeta.findClusterSchema(String name)
          Find a clustering schema using its name.
 ClusterSchema TransMeta.findFirstUsedClusterSchema()
          Finds the first used cluster schema.
 

Methods in org.pentaho.di.trans that return types with arguments of type ClusterSchema
 List<ClusterSchema> TransMeta.getClusterSchemas()
          Gets a list of the cluster schemas used by the transformation.
 

Methods in org.pentaho.di.trans with parameters of type ClusterSchema
 void TransMeta.addOrReplaceClusterSchema(ClusterSchema clusterSchema)
          Add a new cluster schema to the transformation if that didn't exist yet.
 boolean TransMeta.isUsingClusterSchema(ClusterSchema clusterSchema)
          Checks if the transformation is using the specified cluster schema.
 

Method parameters in org.pentaho.di.trans with type arguments of type ClusterSchema
 void TransMeta.setClusterSchemas(List<ClusterSchema> clusterSchemas)
          Sets list of the cluster schemas used by the transformation.
 

Uses of ClusterSchema in org.pentaho.di.trans.step
 

Methods in org.pentaho.di.trans.step that return ClusterSchema
 ClusterSchema StepMeta.getClusterSchema()
           
 

Methods in org.pentaho.di.trans.step with parameters of type ClusterSchema
 void StepMeta.setClusterSchema(ClusterSchema clusterSchema)
           
 

Method parameters in org.pentaho.di.trans.step with type arguments of type ClusterSchema
 void StepMeta.setClusterSchemaAfterLoading(List<ClusterSchema> clusterSchemas)
          Resolves the name of the cluster loaded from XML/Repository to the correct clusterSchema object
 

Uses of ClusterSchema in org.pentaho.di.ui.cluster.dialog
 

Constructors in org.pentaho.di.ui.cluster.dialog with parameters of type ClusterSchema
ClusterSchemaDialog(Shell par, ClusterSchema clusterSchema, List<SlaveServer> slaveServers)
           
 

Uses of ClusterSchema in org.pentaho.di.ui.repository.repositoryexplorer.model
 

Methods in org.pentaho.di.ui.repository.repositoryexplorer.model that return ClusterSchema
 ClusterSchema UICluster.getClusterSchema()
           
 

Constructors in org.pentaho.di.ui.repository.repositoryexplorer.model with parameters of type ClusterSchema
UICluster(ClusterSchema clusterSchema)