Updated to use new DatabaseException.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@5347 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2008-09-03 16:20:30 +00:00
parent addb1971dd
commit 5a41c876b4
3 changed files with 3 additions and 15 deletions
@@ -28,7 +28,6 @@ import java.util.Set;
import com.google.inject.Inject;
import com.google.inject.Singleton;
import com.samskivert.io.PersistenceException;
import com.samskivert.jdbc.depot.DepotRepository;
import com.samskivert.jdbc.depot.PersistenceContext;
import com.samskivert.jdbc.depot.PersistentRecord;
@@ -51,7 +50,6 @@ public class NodeRepository extends DepotRepository
* Returns a list of all nodes registered in the repository.
*/
public List<NodeRecord> loadNodes ()
throws PersistenceException
{
return findAll(NodeRecord.class);
}
@@ -60,7 +58,6 @@ public class NodeRepository extends DepotRepository
* Updates the supplied node record, inserting it into the database if necessary.
*/
public void updateNode (NodeRecord record)
throws PersistenceException
{
record.lastUpdated = new Timestamp(System.currentTimeMillis());
store(record);
@@ -71,7 +68,6 @@ public class NodeRepository extends DepotRepository
* alive and well.
*/
public void heartbeatNode (String nodeName)
throws PersistenceException
{
updatePartial(NodeRecord.class, nodeName, new Object[] {
NodeRecord.LAST_UPDATED, new Timestamp(System.currentTimeMillis())
@@ -82,7 +78,6 @@ public class NodeRepository extends DepotRepository
* Deletes the identified node record.
*/
public void deleteNode (String nodeName)
throws PersistenceException
{
// INDEX: Full primary key.
delete(NodeRecord.class, nodeName);