/* Author: Jeff Dalton * Updated: Thu Nov 22 16:07:39 2001 by Jeff Dalton * Copyright: (c) 2001, AIAI, University of Edinburgh */ package ix.icore; import java.util.Map; /** * Issues. */ public interface Issue { public Object getVerb(); public Object getParameters(); public int getStatus(); public void setStatus(int status); public int getPriority(); public void setPriority(int priority); public Map getProperties(); // eliminate evantually /\/ public void setProperties(Map properties); // eliminate evantually /\/ public String getSenderId(); public void setSenderId(String id); // id should be Object? /\/ public String getRef(); public void setRef(String ref); public boolean getReportBack(); public void setReportBack(boolean value); }