src/core/net/sf/basedb/util/fileset/Accept.java

Code
Comments
Other
Rev Date Author Line
5623 06 May 11 nicklas 1 /**
5623 06 May 11 nicklas 2   $Id$
5623 06 May 11 nicklas 3
5623 06 May 11 nicklas 4   Copyright (C) 2011 Nicklas Nordborg
5623 06 May 11 nicklas 5
5623 06 May 11 nicklas 6   This file is part of BASE - BioArray Software Environment.
5623 06 May 11 nicklas 7   Available at http://base.thep.lu.se/
5623 06 May 11 nicklas 8
5623 06 May 11 nicklas 9   BASE is free software; you can redistribute it and/or
5623 06 May 11 nicklas 10   modify it under the terms of the GNU General Public License
5623 06 May 11 nicklas 11   as published by the Free Software Foundation; either version 3
5623 06 May 11 nicklas 12   of the License, or (at your option) any later version.
5623 06 May 11 nicklas 13
5623 06 May 11 nicklas 14   BASE is distributed in the hope that it will be useful,
5623 06 May 11 nicklas 15   but WITHOUT ANY WARRANTY; without even the implied warranty of
5623 06 May 11 nicklas 16   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
5623 06 May 11 nicklas 17   GNU General Public License for more details.
5623 06 May 11 nicklas 18
5623 06 May 11 nicklas 19   You should have received a copy of the GNU General Public License
5623 06 May 11 nicklas 20   along with BASE. If not, see <http://www.gnu.org/licenses/>.
5623 06 May 11 nicklas 21 */
5623 06 May 11 nicklas 22 package net.sf.basedb.util.fileset;
5623 06 May 11 nicklas 23
5623 06 May 11 nicklas 24 /**
5623 06 May 11 nicklas 25   Return result from the {@link ValidationAction#acceptFile(net.sf.basedb.core.FileSetMember)}
5623 06 May 11 nicklas 26   method.
5623 06 May 11 nicklas 27
5623 06 May 11 nicklas 28   @author Nicklas
5623 06 May 11 nicklas 29   @since 3.0
5623 06 May 11 nicklas 30   @base.modified $Date$
5623 06 May 11 nicklas 31 */
5623 06 May 11 nicklas 32 public enum Accept
5623 06 May 11 nicklas 33 {
5623 06 May 11 nicklas 34   /**
5623 06 May 11 nicklas 35     The file is handled by the validator and should be validated immediately.
5623 06 May 11 nicklas 36   */
5623 06 May 11 nicklas 37   VALIDATE_IMMEDIATELY,
5623 06 May 11 nicklas 38   
5623 06 May 11 nicklas 39   /**
5623 06 May 11 nicklas 40     The file is handled by the validator but should not be validated until
5623 06 May 11 nicklas 41     all files in the file set has been asked for acception.
5623 06 May 11 nicklas 42   */
5623 06 May 11 nicklas 43   VALIDATE_LATER
5623 06 May 11 nicklas 44 }