00001
00002
00003
00004
00005 package org.gridlab.gat.resources;
00006
00007 import org.gridlab.gat.advert.Advertisable;
00008 import org.gridlab.gat.monitoring.Monitorable;
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020 public interface Resource extends Monitorable, Advertisable, java.io.Serializable {
00021
00022
00023
00024
00025
00026 public ResourceDescription getResourceDescription();
00027
00028
00029
00030
00031
00032 public Reservation getReservation();
00033 }