decodes.cwms.validation.dao.TsidScreeningAssignment Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of opendcs Show documentation
Show all versions of opendcs Show documentation
A collection of software for aggregatting and processing environmental data such as from NOAA GOES satellites.
The newest version!
/**
* $Id$
*
* Copyright 2015 U.S. Army Corps of Engineers, Hydrologic Engineering Center.
*
* $Log$
*/
package decodes.cwms.validation.dao;
import decodes.cwms.validation.Screening;
import decodes.tsdb.TimeSeriesIdentifier;
public class TsidScreeningAssignment
{
private TimeSeriesIdentifier tsid;
private Screening screening;
private boolean active;
public TsidScreeningAssignment(TimeSeriesIdentifier tsid, Screening screening, boolean active)
{
this.tsid = tsid;
this.screening = screening;
this.active = active;
}
public TimeSeriesIdentifier getTsid()
{
return tsid;
}
public Screening getScreening()
{
return screening;
}
public boolean isActive()
{
return active;
}
public void setTsid(TimeSeriesIdentifier tsid)
{
this.tsid = tsid;
}
public void setActive(boolean active)
{
this.active = active;
}
}