package com.csc.library.utilities; import java.util.Vector; public class RelationProperties{ public String parentTableName; private String insertLevel="",deleteLevel=""; private String dependLevel=""; private String rtablename = ""; private String moduledelete = ""; private String mode="1"; private Vector childList; public RelationProperties(){ } /** * @return the deleteLevel */ public String getDeleteLevel() { return deleteLevel; } /** * @param deleteLevel the deleteLevel to set */ public void setDeleteLevel(String deleteLevel) { this.deleteLevel = deleteLevel; } /** * @return the dependLevel */ public String getDependLevel() { return dependLevel; } /** * @param dependLevel the dependLevel to set */ public void setDependLevel(String dependLevel) { this.dependLevel = dependLevel; } /** * @return the insertLevel */ public String getInsertLevel() { return insertLevel; } /** * @param insertLevel the insertLevel to set */ public void setInsertLevel(String insertLevel) { this.insertLevel = insertLevel; } /** * @return the mode */ public String getMode() { return mode; } /** * @param mode the mode to set */ public void setMode(String mode) { this.mode = mode; } /** * @return the moduledelete */ public String getModuledelete() { return moduledelete; } /** * @param moduledelete the moduledelete to set */ public void setModuledelete(String moduledelete) { this.moduledelete = moduledelete; } /** * @return the rtablename */ public String getRtablename() { return rtablename; } /** * @param rtablename the rtablename to set */ public void setRtablename(String rtablename) { this.rtablename = rtablename; } public void setChildList(Vector vc){ this.childList=vc; } public Vector getChildList(){ return this.childList; } }