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