palio.connectors.schema
Class ScriptGenerationConfiguration

java.lang.Object
  extended by palio.connectors.schema.ScriptGenerationConfiguration

public class ScriptGenerationConfiguration
extends java.lang.Object

Author:
Szymon Kuklewicz

Constructor Summary
ScriptGenerationConfiguration()
           
 
Method Summary
 boolean isSequenceSkipped(java.lang.String sequenceName)
           
 boolean isTableSkipped(java.lang.String tableName)
           
 void setSequenceSkipped(java.lang.String sequenceName, boolean skip)
          If skip parameter is true, sequence will be skipped during update process.
 void setTableSkipped(java.lang.String tableName, boolean skip)
          If skip parameter is true, table will be skipped during update process.
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ScriptGenerationConfiguration

public ScriptGenerationConfiguration()
Method Detail

setTableSkipped

public void setTableSkipped(java.lang.String tableName,
                            boolean skip)
If skip parameter is true, table will be skipped during update process.


isTableSkipped

public boolean isTableSkipped(java.lang.String tableName)
Returns:
true if table should be skipped during update process.

setSequenceSkipped

public void setSequenceSkipped(java.lang.String sequenceName,
                               boolean skip)
If skip parameter is true, sequence will be skipped during update process.


isSequenceSkipped

public boolean isSequenceSkipped(java.lang.String sequenceName)
Returns:
true if sequence should be skipped during update process.