1 40 package org.dspace.content; 41 42 import java.io.IOException ; 43 import java.sql.SQLException ; 44 45 import org.dspace.authorize.AuthorizeException; 46 import org.dspace.eperson.EPerson; 47 48 55 public interface InProgressSubmission 56 { 57 62 int getID(); 63 64 67 void deleteWrapper() throws SQLException , IOException , AuthorizeException; 68 69 72 void update() throws SQLException , IOException , AuthorizeException; 73 74 79 Item getItem(); 80 81 86 Collection getCollection(); 87 88 93 EPerson getSubmitter() throws SQLException ; 94 95 101 boolean hasMultipleFiles(); 102 103 110 void setMultipleFiles(boolean b); 111 112 118 boolean hasMultipleTitles(); 119 120 127 void setMultipleTitles(boolean b); 128 129 135 boolean isPublishedBefore(); 136 137 144 void setPublishedBefore(boolean b); 145 } 146 | Popular Tags |