TransformationTargetColumn.java :  » Database-JDBC-Connection-Pool » octopus » org » webdocwf » util » loader » transformation » Java Open Source

Java Open Source » Database JDBC Connection Pool » octopus 
octopus » org » webdocwf » util » loader » transformation » TransformationTargetColumn.java
/*
 * TransformationTargetColumn.java. Created on May 25, 2004.
 */
package org.webdocwf.util.loader.transformation;

/**
 * Represents tag targetColumn in transformations tag.
 * 
 * @author Zoran Milakovic
 */

public class TransformationTargetColumn {
  
  private String name;
  private String tableName;
  private String tableID;
  private String valueMode;
  
  private String type;

  public TransformationTargetColumn(String name,
                         String tableName,
                         String tableID,
                         String valueMode) {
    this.name = name;
    this.tableName = tableName;
    this.tableID = tableID;
    this.valueMode = valueMode;
    
  }

  public String getName() {
    return name;
  }

  public void setName(String name) {
    this.name = name;
  }

  public String getTableID() {
    return tableID;
  }

  public void setTableID(String tableID) {
    this.tableID = tableID;
  }

  public String getTableName() {
    return tableName;
  }

  public void setTableName(String tableName) {
    this.tableName = tableName;
  }

  public String getValueMode() {
    return valueMode;
  }

  public void setValueMode(String valueMode) {
    this.valueMode = valueMode;
  }

  public String getType() {
    return type;
  }

  public void setType(String type) {
    this.type = type;
  }

}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.