Interface PatchSetAccess
-
- All Superinterfaces:
com.google.gwtorm.server.Access<PatchSet,PatchSet.Id>
- All Known Implementing Classes:
ReviewDbWrapper.PatchSetAccessWrapper
public interface PatchSetAccess extends com.google.gwtorm.server.Access<PatchSet,PatchSet.Id>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description com.google.gwtorm.server.ResultSet<PatchSet>
all()
com.google.gwtorm.server.ResultSet<PatchSet>
byChange(Change.Id id)
PatchSet
get(PatchSet.Id id)
-
-
-
Method Detail
-
get
PatchSet get(PatchSet.Id id) throws com.google.gwtorm.server.OrmException
- Specified by:
get
in interfacecom.google.gwtorm.server.Access<PatchSet,PatchSet.Id>
- Throws:
com.google.gwtorm.server.OrmException
-
byChange
com.google.gwtorm.server.ResultSet<PatchSet> byChange(Change.Id id) throws com.google.gwtorm.server.OrmException
- Throws:
com.google.gwtorm.server.OrmException
-
all
com.google.gwtorm.server.ResultSet<PatchSet> all() throws com.google.gwtorm.server.OrmException
- Throws:
com.google.gwtorm.server.OrmException
-
-