Revision 477,
677 bytes
checked in by wojtekp, 13 years ago
(diff) |
|
-
Property svn:mime-type set to
text/plain
|
Rev | Line | |
---|
[477] | 1 | package schedframe.resources.providers; |
---|
| 2 | |
---|
| 3 | |
---|
| 4 | /** |
---|
| 5 | * |
---|
| 6 | * @author Marcin Krystek |
---|
| 7 | * |
---|
| 8 | */ |
---|
| 9 | public class LocalSystem extends ResourceProvider { |
---|
| 10 | |
---|
| 11 | public LocalSystem(String id, String administrationDomain, String location) { |
---|
| 12 | super(id, administrationDomain, location, "LocalSystem"); |
---|
| 13 | } |
---|
| 14 | |
---|
| 15 | public LocalSystem(){ |
---|
| 16 | super(); |
---|
| 17 | } |
---|
| 18 | |
---|
| 19 | public void setProviderId(String id) { |
---|
| 20 | this.id = id; |
---|
| 21 | } |
---|
| 22 | |
---|
| 23 | public void setProviderLocation(String location) { |
---|
| 24 | this.location = location; |
---|
| 25 | } |
---|
| 26 | |
---|
| 27 | public void setAdministrationDomain(String administrationDoamain){ |
---|
| 28 | this.administrationDomain = administrationDoamain; |
---|
| 29 | } |
---|
| 30 | |
---|
| 31 | public void setDescription(Object description){ |
---|
| 32 | this.description = description; |
---|
| 33 | } |
---|
| 34 | |
---|
| 35 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.