source: xssim/src/schedframe/scheduling/plan/HostInterface.java @ 104

Revision 104, 1.3 KB checked in by wojtekp, 13 years ago (diff)
  • Property svn:mime-type set to text/plain
Line 
1package schedframe.scheduling.plan;
2
3import schedframe.scheduling.utils.DescriptionContainer;
4
5
6public interface HostInterface<T> extends DescriptionContainer<T> {
7
8        /**
9         * Returns the value of field 'frontendMachineParameters'.
10         *
11         * @return the value of field 'FrontendMachineParameters'.
12         */
13        public <ComputingResourcType> ComputingResourceTypeInterface<ComputingResourcType> getMachineParameters();
14
15        /**
16         * Returns the value of field 'hostname'.
17         *
18         * @return the value of field 'Hostname'.
19         */
20        public java.lang.String getHostname();
21
22
23        /**
24         * Returns the value of field 'queue'.
25         *
26         * @return the value of field 'Queue'.
27         */
28        public java.lang.String getQueue();
29
30        /**
31         * Sets the value of field 'frontendMachineParameters'.
32         *
33         * @param frontendMachineParameters the value of field
34         * 'frontendMachineParameters'.
35         */
36        public <ComputingResourceType> void setMachineParameters(
37                        final ComputingResourceTypeInterface<ComputingResourceType> machineParameters);
38
39        /**
40         * Sets the value of field 'hostname'.
41         *
42         * @param hostname the value of field 'hostname'.
43         */
44        public void setHostname(final java.lang.String hostname);
45
46
47        /**
48         * Sets the value of field 'queue'.
49         *
50         * @param queue the value of field 'queue'.
51         */
52        public void setQueue(final java.lang.String queue);
53
54}
Note: See TracBrowser for help on using the repository browser.