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

    // --------------------------------------------------------- Instance Variables
    private String supportEventId;

    private String supportEntityId;

    private Long supportEventRrn;

    private Long supportEntityRrn;

    private Long eventRrn;

    private Long entityRrn;

    // --------------------------------------------------------- Properties
    public Long getEntityRrn() {
        return entityRrn;
    }

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

    public String getSupportEntityId() {
        return supportEntityId;
    }

    public void setSupportEntityId(String supportEntityId) {
        this.supportEntityId = supportEntityId;
    }

    public String getSupportEventId() {
        return supportEventId;
    }

    public void setSupportEventId(String supportEventId) {
        this.supportEventId = supportEventId;
    }

    public Long getSupportEventRrn() {
        return supportEventRrn;
    }

    public void setSupportEventRrn(Long supportEventRrn) {
        this.supportEventRrn = supportEventRrn;
    }

    public Long getSupportEntityRrn() {
        return supportEntityRrn;
    }

    public void setSupportEntityRrn(Long supportEntityRrn) {
        this.supportEntityRrn = supportEntityRrn;
    }

    public Long getEventRrn() {
        return eventRrn;
    }

    public void setEventRrn(Long eventRrn) {
        this.eventRrn = eventRrn;
    }

}

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