~ubuntu-branches/ubuntu/utopic/gridengine/utopic

« back to all changes in this revision

Viewing changes to source/libs/jgdi/src/com/sun/grid/jgdi/monitoring/QueueInfoImpl.java

  • Committer: Bazaar Package Importer
  • Author(s): Mark Hymers
  • Date: 2008-06-25 22:36:13 UTC
  • Revision ID: james.westby@ubuntu.com-20080625223613-tvd9xlhuoct9kyhm
Tags: upstream-6.2~beta2
ImportĀ upstreamĀ versionĀ 6.2~beta2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*___INFO__MARK_BEGIN__*/
 
2
/*************************************************************************
 
3
 *
 
4
 *  The Contents of this file are made available subject to the terms of
 
5
 *  the Sun Industry Standards Source License Version 1.2
 
6
 *
 
7
 *  Sun Microsystems Inc., March, 2001
 
8
 *
 
9
 *
 
10
 *  Sun Industry Standards Source License Version 1.2
 
11
 *  =================================================
 
12
 *  The contents of this file are subject to the Sun Industry Standards
 
13
 *  Source License Version 1.2 (the "License"); You may not use this file
 
14
 *  except in compliance with the License. You may obtain a copy of the
 
15
 *  License at http://gridengine.sunsource.net/Gridengine_SISSL_license.html
 
16
 *
 
17
 *  Software provided under this License is provided on an "AS IS" basis,
 
18
 *  WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
 
19
 *  WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
 
20
 *  MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
 
21
 *  See the License for the specific provisions governing your rights and
 
22
 *  obligations concerning the Software.
 
23
 *
 
24
 *   The Initial Developer of the Original Code is: Sun Microsystems, Inc.
 
25
 *
 
26
 *   Copyright: 2001 by Sun Microsystems, Inc.
 
27
 *
 
28
 *   All Rights Reserved.
 
29
 *
 
30
 ************************************************************************/
 
31
/*___INFO__MARK_END__*/
 
32
package com.sun.grid.jgdi.monitoring;
 
33
 
 
34
import java.io.Serializable;
 
35
 
 
36
/**
 
37
 * Default implemenation of {@link QueueInfo}
 
38
 */
 
39
public class QueueInfoImpl implements QueueInfo, Serializable {
 
40
    
 
41
    private int slotsTotal;
 
42
    private int slotsUsed;
 
43
    private String state;
 
44
    private String qname;
 
45
    private String qtype;
 
46
    
 
47
    /**
 
48
     * Creates a new instance of QueueInfo
 
49
     */
 
50
    public QueueInfoImpl() {
 
51
    }
 
52
    
 
53
    /**
 
54
     *  Get the name of the queue
 
55
     *  @return the name of the queue
 
56
     */
 
57
    public String getQname() {
 
58
        return qname;
 
59
    }
 
60
    
 
61
    /**
 
62
     *  Set the name of the queue
 
63
     *  @param qname the name of the queue
 
64
     */
 
65
    public void setQname(String qname) {
 
66
        this.qname = qname;
 
67
    }
 
68
    
 
69
    /**
 
70
     *  Get the type of the queue
 
71
     *  @return the type of the queue
 
72
     */
 
73
    public String getQtype() {
 
74
        return qtype;
 
75
    }
 
76
    
 
77
    /**
 
78
     *  Set the name of the queue
 
79
     *  @param qtype the type of the queue
 
80
     */
 
81
    public void setQtype(String qtype) {
 
82
        this.qtype = qtype;
 
83
    }
 
84
    
 
85
    /**
 
86
     *  Get the state of the queue
 
87
     *  @return state of the queue
 
88
     */
 
89
    public String getState() {
 
90
        return state;
 
91
    }
 
92
    
 
93
    /**
 
94
     *  Set the state of the queue
 
95
     */
 
96
    public void setState(String state) {
 
97
        this.state = state;
 
98
    }
 
99
    
 
100
    /**
 
101
     *  Get the number of total queue slots
 
102
     *  @return number of total queue slots
 
103
     */
 
104
    public int getTotalSlots() {
 
105
        return slotsTotal;
 
106
    }
 
107
    
 
108
    /**
 
109
     *  Set the number of total queue slots
 
110
     *  @param slotsTotal of total queue slots
 
111
     */
 
112
    public void setTotalSlots(int slotsTotal) {
 
113
        this.slotsTotal = slotsTotal;
 
114
    }
 
115
    
 
116
    /**
 
117
     *  Get the number of used queue slots
 
118
     *  @return number of used queue slots
 
119
     */
 
120
    public int getUsedSlots() {
 
121
        return slotsUsed;
 
122
    }
 
123
    
 
124
    /**
 
125
     *  Set the number of used queue slots
 
126
     *  @param slotsUsed of used queue slots
 
127
     */
 
128
    public void setUsedSlots(int slotsUsed) {
 
129
        this.slotsUsed = slotsUsed;
 
130
    }
 
131
    
 
132
}