All Downloads are FREE. Search and download functionalities are using the official Maven repository.

decodes.cwms.validation.dao.TsidScreeningAssignment Maven / Gradle / Ivy

Go to download

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;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy