001    /*
002     * LSFQueueDiscrptor.java
003     *
004     * Created on October 2, 2006, 6:08 PM
005     *
006      * This file is part of the STAR Scheduler.
007     * Copyright (c) 2002-2006 STAR Collaboration - Brookhaven National Laboratory
008     *
009     * STAR Scheduler is free software; you can redistribute it and/or modify
010     * it under the terms of the GNU General Public License as published by
011     * the Free Software Foundation; either version 2 of the License, or
012     * (at your option) any later version.
013     *
014     * STAR Scheduler is distributed in the hope that it will be useful,
015     * but WITHOUT ANY WARRANTY; without even the implied warranty of
016     * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
017     * GNU General Public License for more details.
018     *
019     * You should have received a copy of the GNU General Public License
020     * along with STAR Scheduler; if not, write to the Free Software
021     * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
022     */
023    
024    package gov.bnl.star.offline.scheduler.Dispatchers.lsf;
025    
026    import gov.bnl.star.offline.scheduler.Dispatchers.QueueDiscriptor;
027    import gov.bnl.star.offline.scheduler.Dispatchers.QueueDiscriptorBase;
028    import gov.bnl.star.offline.scheduler.Dispatchers.lsf.LSFDispatcher;
029    
030    /**
031     * This class is not used and may be deprcated. It was used for testing only. 
032     * @author lbhajdu
033     */
034    public class LSFQueueDiscrptor extends QueueDiscriptorBase implements QueueDiscriptor {
035        
036        /** Creates a new instance of LSFQueueDiscrptor */
037        public LSFQueueDiscrptor() {}
038        
039        
040        String batchSystemName = "lsf";
041        public String getBatchSystemName() {return this.batchSystemName;}
042        public void setBatchSystemName(String batchSystemName) { this.batchSystemName = batchSystemName; }
043        
044        
045        public String getAssociatedDispatcherClass() { return LSFDispatcher.class.toString(); }
046        
047        public String queueName = null;
048        public String getQueueName(){return this.queueName;}
049        public void setQueueName(String queueName ){ this.queueName = queueName; }
050        
051    }