/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package dbobjects; import dsr_framework.BaseTreeNode; /** * * @author xxxx */ public class DsrBase { protected Long id; private BaseTreeNode containerNode; /** * @return the id */ public Long getId() { return id; } /** * @param id the id to set */ public void setId(Long id) { this.id = id; } /** * @param containerNode the containerNode to set */ public void setContainerNode(BaseTreeNode containerNode) { this.containerNode = containerNode; } }