Reading.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.edcspc;

import java.io.Serializable;

public class Reading implements Serializable {

    private Long dataPointRrn;

    private Long dcolRrn;

    private Integer dcolSequence;

    private Integer sampleSequence;

    private Integer readingSequence;

    private String readingId;

    private Double dataValue;

    private String collectionTimestamp;

    private String oowFlag;

    private String oosFlag;

    private String plotFlag;

    private String calculationFlag;

    private Double sampleX;

    private Double sampleY;

    public String getCalculationFlag() {
        return calculationFlag;
    }

    public void setCalculationFlag(String calculationFlag) {
        this.calculationFlag = calculationFlag;
    }

    public String getCollectionTimestamp() {
        return collectionTimestamp;
    }

    public void setCollectionTimestamp(String collectionTimestamp) {
        this.collectionTimestamp = collectionTimestamp;
    }

    public Long getDataPointRrn() {
        return dataPointRrn;
    }

    public void setDataPointRrn(Long dataPointRrn) {
        this.dataPointRrn = dataPointRrn;
    }

    public Double getDataValue() {
        return dataValue;
    }

    public void setDataValue(Double dataValue) {
        this.dataValue = dataValue;
    }

    public Long getDcolRrn() {
        return dcolRrn;
    }

    public void setDcolRrn(Long dcolRrn) {
        this.dcolRrn = dcolRrn;
    }

    public Integer getDcolSequence() {
        return dcolSequence;
    }

    public void setDcolSequence(Integer dcolSequence) {
        this.dcolSequence = dcolSequence;
    }

    public String getOosFlag() {
        return oosFlag;
    }

    public void setOosFlag(String oosFlag) {
        this.oosFlag = oosFlag;
    }

    public String getOowFlag() {
        return oowFlag;
    }

    public void setOowFlag(String oowFlag) {
        this.oowFlag = oowFlag;
    }

    public String getPlotFlag() {
        return plotFlag;
    }

    public void setPlotFlag(String plotFlag) {
        this.plotFlag = plotFlag;
    }

    public String getReadingId() {
        return readingId;
    }

    public void setReadingId(String readingId) {
        this.readingId = readingId;
    }

    public Integer getReadingSequence() {
        return readingSequence;
    }

    public void setReadingSequence(Integer readingSequence) {
        this.readingSequence = readingSequence;
    }

    public Integer getSampleSequence() {
        return sampleSequence;
    }

    public void setSampleSequence(Integer sampleSequence) {
        this.sampleSequence = sampleSequence;
    }

    public Double getSampleX() {
        return sampleX;
    }

    public void setSampleX(Double sampleX) {
        this.sampleX = sampleX;
    }

    public Double getSampleY() {
        return sampleY;
    }

    public void setSampleY(Double sampleY) {
        this.sampleY = sampleY;
    }

    @Override
    public String toString() {
        String s = super.toString() + "[";
        s = s + " dataPointRrn:" + this.getDataPointRrn();
        s = s + " dcolRrn:" + this.getDcolRrn();
        s = s + " dcolSequence:" + this.getDcolSequence();
        s = s + " sampleSequence:" + this.getSampleSequence();
        s = s + " readingSequence:" + this.getReadingSequence();
        s = s + " readingId:" + this.getReadingId();
        s = s + " dataValue:" + this.getDataValue();
        s = s + " collectionTimestamp:" + this.getCollectionTimestamp();
        s = s + " oowFlag:" + this.getOowFlag();
        s = s + " oosFlag:" + this.getOosFlag();
        s = s + " plotFlag:" + this.getPlotFlag();
        s = s + " calculationFlag:" + this.getCalculationFlag();
        s = s + " sampleX:" + this.getSampleX();
        s = s + " sampleY:" + this.getSampleY();
        s = s + "]";

        return s;
    }

}

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