Interface PatchLineCommentAccess
-
- All Superinterfaces:
com.google.gwtorm.server.Access<PatchLineComment,PatchLineComment.Key>
- All Known Implementing Classes:
ReviewDbWrapper.PatchLineCommentAccessWrapper
public interface PatchLineCommentAccess extends com.google.gwtorm.server.Access<PatchLineComment,PatchLineComment.Key>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description com.google.gwtorm.server.ResultSet<PatchLineComment>
all()
com.google.gwtorm.server.ResultSet<PatchLineComment>
byChange(Change.Id id)
com.google.gwtorm.server.ResultSet<PatchLineComment>
byPatchSet(PatchSet.Id id)
com.google.gwtorm.server.ResultSet<PatchLineComment>
draftByAuthor(Account.Id author)
com.google.gwtorm.server.ResultSet<PatchLineComment>
draftByChangeFileAuthor(Change.Id id, String file, Account.Id author)
com.google.gwtorm.server.ResultSet<PatchLineComment>
draftByPatchSetAuthor(PatchSet.Id patchset, Account.Id author)
PatchLineComment
get(PatchLineComment.Key id)
com.google.gwtorm.server.ResultSet<PatchLineComment>
publishedByChangeFile(Change.Id id, String file)
com.google.gwtorm.server.ResultSet<PatchLineComment>
publishedByPatchSet(PatchSet.Id patchset)
-
-
-
Method Detail
-
get
PatchLineComment get(PatchLineComment.Key id) throws com.google.gwtorm.server.OrmException
- Specified by:
get
in interfacecom.google.gwtorm.server.Access<PatchLineComment,PatchLineComment.Key>
- Throws:
com.google.gwtorm.server.OrmException
-
byChange
com.google.gwtorm.server.ResultSet<PatchLineComment> byChange(Change.Id id) throws com.google.gwtorm.server.OrmException
- Throws:
com.google.gwtorm.server.OrmException
-
byPatchSet
com.google.gwtorm.server.ResultSet<PatchLineComment> byPatchSet(PatchSet.Id id) throws com.google.gwtorm.server.OrmException
- Throws:
com.google.gwtorm.server.OrmException
-
publishedByChangeFile
com.google.gwtorm.server.ResultSet<PatchLineComment> publishedByChangeFile(Change.Id id, String file) throws com.google.gwtorm.server.OrmException
- Throws:
com.google.gwtorm.server.OrmException
-
publishedByPatchSet
com.google.gwtorm.server.ResultSet<PatchLineComment> publishedByPatchSet(PatchSet.Id patchset) throws com.google.gwtorm.server.OrmException
- Throws:
com.google.gwtorm.server.OrmException
-
draftByPatchSetAuthor
com.google.gwtorm.server.ResultSet<PatchLineComment> draftByPatchSetAuthor(PatchSet.Id patchset, Account.Id author) throws com.google.gwtorm.server.OrmException
- Throws:
com.google.gwtorm.server.OrmException
-
draftByChangeFileAuthor
com.google.gwtorm.server.ResultSet<PatchLineComment> draftByChangeFileAuthor(Change.Id id, String file, Account.Id author) throws com.google.gwtorm.server.OrmException
- Throws:
com.google.gwtorm.server.OrmException
-
draftByAuthor
com.google.gwtorm.server.ResultSet<PatchLineComment> draftByAuthor(Account.Id author) throws com.google.gwtorm.server.OrmException
- Throws:
com.google.gwtorm.server.OrmException
-
all
com.google.gwtorm.server.ResultSet<PatchLineComment> all() throws com.google.gwtorm.server.OrmException
- Throws:
com.google.gwtorm.server.OrmException
-
-