/*
 * Created on Aug 2, 2006
 * 
 * (C) Copyright TANDBERG Television Ltd.
 */

package com.tandbergtv.workflow.sanmanager.entities;

import java.util.List;

/**
 * Class that maintains the configuration used by the SAN Manager
 * 
 * @author Vijay Silva
 */
public class SANConfiguration
{
	List<SANDrive> drives;

	String serviceURL = null;

	/**
	 * Default Constructor
	 */
	public SANConfiguration()
	{
	}

	/**
	 * @return Returns the drives.
	 */
	public List<SANDrive> getDrives()
	{
		return this.drives;
	}

	/**
	 * @param drives
	 *            The drives to set.
	 */
	public void setDrives(List<SANDrive> drives)
	{
		this.drives = drives;
	}

	/**
	 * @return Returns the serviceURL.
	 */
	public String getServiceURL()
	{
		return this.serviceURL;
	}

	/**
	 * @param serviceURL
	 *            The serviceURL to set.
	 */
	public void setServiceURL(String serviceURL)
	{
		this.serviceURL = serviceURL;
	}
}
