EntityStatus.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 EntityStatus implements Serializable {

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

    private String statusGroupId;

    private String currentStatus;

    private String statusBefore;

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

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

    public String getStatusGroupId() {
        return this.statusGroupId;
    }

    public void setStatusGroupId(String statusGroupId) {
        this.statusGroupId = statusGroupId;
    }

    public String getCurrentStatus() {
        return this.currentStatus;
    }

    public void setCurrentStatus(String currentStatus) {
        this.currentStatus = currentStatus;
    }

    public String getStatusBefore() {
        return this.statusBefore;
    }

    public void setStatusBefore(String statusBefore) {
        this.statusBefore = statusBefore;
    }

}

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