mirror of
https://github.com/DSpace/DSpace.git
synced 2025-10-07 01:54:22 +00:00
Add SQLException declaration - part of lazy initialization enhancement
git-svn-id: http://scm.dspace.org/svn/repo/trunk@1335 9c30dcfa-912a-0410-8fc2-9e0234be79fd
This commit is contained in:
@@ -90,7 +90,7 @@ public interface InProgressSubmission
|
|||||||
*
|
*
|
||||||
* @return the submitting e-person
|
* @return the submitting e-person
|
||||||
*/
|
*/
|
||||||
EPerson getSubmitter();
|
EPerson getSubmitter() throws SQLException;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Find out if the submission has (or is intended to have) more than one
|
* Find out if the submission has (or is intended to have) more than one
|
||||||
|
@@ -559,7 +559,7 @@ public class WorkspaceItem implements InProgressSubmission
|
|||||||
return collection;
|
return collection;
|
||||||
}
|
}
|
||||||
|
|
||||||
public EPerson getSubmitter()
|
public EPerson getSubmitter() throws SQLException
|
||||||
{
|
{
|
||||||
return item.getSubmitter();
|
return item.getSubmitter();
|
||||||
}
|
}
|
||||||
|
@@ -383,7 +383,7 @@ public class WorkflowItem implements InProgressSubmission
|
|||||||
return collection;
|
return collection;
|
||||||
}
|
}
|
||||||
|
|
||||||
public EPerson getSubmitter()
|
public EPerson getSubmitter() throws SQLException
|
||||||
{
|
{
|
||||||
return item.getSubmitter();
|
return item.getSubmitter();
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user