ObjectHistoryComment.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.bas;

import java.io.Serializable;

public class ObjectHistoryComment implements Serializable {

    // --------------------------------------------------------- Instance Variables
    private String transPerformedBy;

    private Long transRrn;

    private Long instanceRrn;

    private Long instanceVersion;

    private String commentCategory;

    private String comments;

    private String commentTime;

    private int sequence;

    private String transId;

    // --------------------------------------------------------- Properties
    public Long getTransRrn() {
        return this.transRrn;
    }

    public void setTransRrn(Long transRrn) {
        this.transRrn = transRrn;
    }

    public Long getInstanceRrn() {
        return this.instanceRrn;
    }

    public void setInstanceRrn(Long instanceRrn) {
        this.instanceRrn = instanceRrn;
    }

    public Long getInstanceVersion() {
        return this.instanceVersion;
    }

    public void setInstanceVersion(Long instanceVersion) {
        this.instanceVersion = instanceVersion;
    }

    public String getCommentCategory() {
        return this.commentCategory;
    }

    public void setCommentCategory(String commentCategory) {
        this.commentCategory = commentCategory;
    }

    public String getComments() {
        return this.comments;
    }

    public void setComments(String comments) {
        this.comments = comments;
    }

    public int getSequence() {
        return sequence;
    }

    public void setSequence(int sequence) {
        this.sequence = sequence;
    }

    public String getTransPerformedBy() {
        return transPerformedBy;
    }

    public void setTransPerformedBy(String transPerformedBy) {
        this.transPerformedBy = transPerformedBy;
    }

    public String getCommentTime() {
        return commentTime;
    }

    public void setCommentTime(String commentTime) {
        this.commentTime = commentTime;
    }

    public String getTransId() {
        return transId;
    }

    public void setTransId(String transId) {
        this.transId = transId;
    }

}

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