~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/QQuotaOptions.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 com.sun.grid.jgdi.monitoring.filter.HostFilter;
 
35
import com.sun.grid.jgdi.monitoring.filter.ParallelEnvironmentFilter;
 
36
import com.sun.grid.jgdi.monitoring.filter.ProjectFilter;
 
37
import com.sun.grid.jgdi.monitoring.filter.QueueFilter;
 
38
import com.sun.grid.jgdi.monitoring.filter.ResourceFilter;
 
39
import com.sun.grid.jgdi.monitoring.filter.UserFilter;
 
40
import java.io.Serializable;
 
41
 
 
42
/**
 
43
 *
 
44
 * @jgdi.todo    beta ??
 
45
 *          <p>Add javadoc comments</p>
 
46
 */
 
47
public class QQuotaOptions implements Serializable {
 
48
    
 
49
    
 
50
    /* -q option */
 
51
    private QueueFilter queueFilter;
 
52
    
 
53
    /* -h option */
 
54
    private HostFilter hostFilter;
 
55
    
 
56
    /* -P option */
 
57
    private ProjectFilter projectFilter;
 
58
    
 
59
    /* -pe option */
 
60
    private ParallelEnvironmentFilter peFilter;
 
61
    
 
62
    /* -l option */
 
63
    private ResourceFilter resourceFilter;
 
64
    
 
65
    /* -u option */
 
66
    private UserFilter userFilter;
 
67
    
 
68
    /** Creates a new instance of QQuotaOptions */
 
69
    public QQuotaOptions() {
 
70
    }
 
71
    
 
72
    public QueueFilter getQueueFilter() {
 
73
        return queueFilter;
 
74
    }
 
75
    
 
76
    public void setQueueFilter(QueueFilter queueFilter) {
 
77
        this.queueFilter = queueFilter;
 
78
    }
 
79
    
 
80
    public HostFilter getHostFilter() {
 
81
        return hostFilter;
 
82
    }
 
83
    
 
84
    public void setHostFilter(HostFilter hostFilter) {
 
85
        this.hostFilter = hostFilter;
 
86
    }
 
87
    
 
88
    public ProjectFilter getProjectFilter() {
 
89
        return projectFilter;
 
90
    }
 
91
    
 
92
    public void setProjectFilter(ProjectFilter projectFilter) {
 
93
        this.projectFilter = projectFilter;
 
94
    }
 
95
    
 
96
    public ParallelEnvironmentFilter getPeFilter() {
 
97
        return peFilter;
 
98
    }
 
99
    
 
100
    public void setPeFilter(ParallelEnvironmentFilter peFilter) {
 
101
        this.peFilter = peFilter;
 
102
    }
 
103
    
 
104
    public ResourceFilter getResourceFilter() {
 
105
        return resourceFilter;
 
106
    }
 
107
    
 
108
    public void setResourceFilter(ResourceFilter resourceFilter) {
 
109
        this.resourceFilter = resourceFilter;
 
110
    }
 
111
    
 
112
    public UserFilter getUserFilter() {
 
113
        return userFilter;
 
114
    }
 
115
    
 
116
    public void setUserFilter(UserFilter userFilter) {
 
117
        this.userFilter = userFilter;
 
118
    }
 
119
    
 
120
}