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

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

    private Long sequenceNumber;

    private String constraintType;

    private Long constraintBalance;

    private String capacityOrRequirement;

    private Integer qty;

    private Long used;

    private Integer capacityQty;

    private Integer requirementQty;

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

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

    public Long getSequenceNumber() {
        return this.sequenceNumber;
    }

    public void setSequenceNumber(Long sequenceNumber) {
        this.sequenceNumber = sequenceNumber;
    }

    public String getConstraintType() {
        return this.constraintType;
    }

    public void setConstraintType(String constraintType) {
        this.constraintType = constraintType;
    }

    public Long getConstraintBalance() {
        return this.constraintBalance;
    }

    public void setConstraintBalance(Long constraintBalance) {
        this.constraintBalance = constraintBalance;
    }

    public Long getUsed() {
        return this.used;
    }

    public void setUsed(Long used) {
        this.used = used;
    }

    public String getCapacityOrRequirement() {
        return this.capacityOrRequirement;
    }

    public void setCapacityOrRequirement(String capacityOrRequirement) {
        this.capacityOrRequirement = capacityOrRequirement;
    }

    public Integer getQty() {
        return this.qty;
    }

    public void setQty(Integer qty) {
        this.qty = qty;
    }

    public Integer getCapacityQty() {
        return this.capacityQty;
    }

    public void setCapacityQty(Integer capacityQty) {
        this.capacityQty = capacityQty;
    }

    public Integer getRequirementQty() {
        return this.requirementQty;
    }

    public void setRequirementQty(Integer requirementQty) {
        this.requirementQty = requirementQty;
    }

}

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