UnitBonded.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.wip;

public class UnitBonded implements java.io.Serializable {

    private long transRrn;

    private long sourceUnitRrn;

    private long targetUnitRrn;

    private long sourceLotRrn;

    private long targetLotRrn;

    public long getTransRrn() {
        return transRrn;
    }

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

    public long getSourceUnitRrn() {
        return sourceUnitRrn;
    }

    public void setSourceUnitRrn(long sourceUnitRrn) {
        this.sourceUnitRrn = sourceUnitRrn;
    }

    public long getTargetUnitRrn() {
        return targetUnitRrn;
    }

    public void setTargetUnitRrn(long targetUnitRrn) {
        this.targetUnitRrn = targetUnitRrn;
    }

    public long getSourceLotRrn() {
        return sourceLotRrn;
    }

    public void setSourceLotRrn(long sourceLotRrn) {
        this.sourceLotRrn = sourceLotRrn;
    }

    public long getTargetLotRrn() {
        return targetLotRrn;
    }

    public void setTargetLotRrn(long targetLotRrn) {
        this.targetLotRrn = targetLotRrn;
    }

}