/*
 * Created on Oct 10, 2006
 * 
 * (C) Copyright TANDBERG Television Ltd.
 */

package com.tandbergtv.workflow.sanmanager.dto;

/**
 * Represents a File in the SAN Drive
 * 
 * @author Vijay Silva
 */
public class SANFile extends AbstractSANFile
{
	private static final long serialVersionUID = 9050433109914841107L;

	protected long length;

	/**
	 * Class Constructor
	 */
	public SANFile()
	{
		super();
	}

	/**
	 * @see com.tandbergtv.workflow.sanmanager.dto.ISANFile#isDirectory()
	 */
	public boolean isDirectory()
	{
		return false;
	}

	/**
	 * (non-Javadoc)
	 * 
	 * @see com.tandbergtv.workflow.sanmanager.dto.ISANFile#getLength()
	 */
	public long getLength()
	{
		return this.length;
	}

	/**
	 * @see com.tandbergtv.workflow.sanmanager.dto.ISANFile#setLength(long)
	 */
	public void setLength(long length)
	{
		this.length = length;
	}
}
