EntityDocument.java

/*
 *        @ Copyright 2001 FA Software;
 *        All right reserved. No part of this program may be reproduced or
 *        transmitted in any form or by any means, electronic or
 *        mechanical, including photocopying, recording, or by any
 *        information storage or retrieval system without written
 *        permission from FA Software, except for inclusion of brief
 *        quotations in a review.
 */
package com.mycim.valueobject.ems;

import java.io.Serializable;

public class EntityDocument implements Serializable {

    // --------------------------------------------------------- Instance Variables
    private long entityRrn;

    private String documentId;

    private String documentDesc;

    private String documentDir;

    // --------------------------------------------------------- Properties
    public long getEntityRrn() {
        return this.entityRrn;
    }

    public void setEntityRrn(long entityRrn) {
        this.entityRrn = entityRrn;
    }

    public String getDocumentId() {
        return this.documentId;
    }

    public void setDocumentId(String documentId) {
        this.documentId = documentId;
    }

    public String getDocumentDesc() {
        return this.documentDesc;
    }

    public void setDocumentDesc(String documentDesc) {
        this.documentDesc = documentDesc;
    }

    public String getDocumentDir() {
        return this.documentDir;
    }

    public void setDocumentDir(String documentDir) {
        this.documentDir = documentDir;
    }

}

/*
 * Modification Log Log No : Name : Modified Date: Description :
 */