POD.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 POD extends PCD implements Serializable {

    private static final long serialVersionUID = -3549602308178256456L;

    private String podStatus;

    private double cleanCycle;

    private String podPollutionLevel;

    // --------------------------------------------------------- Constructors
    public POD() {
        super();
    }

    public POD(Long instanceRrn) {
        super(instanceRrn);
    }

    public POD(String instanceId, String namedSpace, String object) {
        super(instanceId, namedSpace, object);
    }

    public String getPodStatus() {
        return podStatus;
    }

    public void setPodStatus(String podStatus) {
        this.podStatus = podStatus;
    }

    public String getPodPollutionLevel() {
        return podPollutionLevel;
    }

    public void setPodPollutionLevel(String podPollutionLevel) {
        this.podPollutionLevel = podPollutionLevel;
    }

    public double getCleanCycle() {
        return cleanCycle;
    }

    public void setCleanCycle(double cleanCycle) {
        this.cleanCycle = cleanCycle;
    }

    public enum PodStatus {
        HOLD, AVAILABLE, SCRAPPED, INUSED, DELETED, FREE
    }

    public enum PodType {
        DUMMY
    }

}