1 /*
2 * TransformationTargetColumn.java. Created on May 25, 2004.
3 */
4 package org.webdocwf.util.loader.transformation;
5
6 /***
7 * Represents tag targetColumn in transformations tag.
8 *
9 * @author Zoran Milakovic
10 */
11
12 public class TransformationTargetColumn {
13
14 private String name;
15 private String tableName;
16 private String tableID;
17 private String valueMode;
18
19 private String type;
20
21 public TransformationTargetColumn(String name,
22 String tableName,
23 String tableID,
24 String valueMode) {
25 this.name = name;
26 this.tableName = tableName;
27 this.tableID = tableID;
28 this.valueMode = valueMode;
29
30 }
31
32 public String getName() {
33 return name;
34 }
35
36 public void setName(String name) {
37 this.name = name;
38 }
39
40 public String getTableID() {
41 return tableID;
42 }
43
44 public void setTableID(String tableID) {
45 this.tableID = tableID;
46 }
47
48 public String getTableName() {
49 return tableName;
50 }
51
52 public void setTableName(String tableName) {
53 this.tableName = tableName;
54 }
55
56 public String getValueMode() {
57 return valueMode;
58 }
59
60 public void setValueMode(String valueMode) {
61 this.valueMode = valueMode;
62 }
63
64 public String getType() {
65 return type;
66 }
67
68 public void setType(String type) {
69 this.type = type;
70 }
71
72 }
This page was automatically generated by Maven