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