Added the possibility to include inactive keywords in the search.

This commit is contained in:
Tom Vahlman 2012-03-22 20:08:18 +01:00
parent 8bb0d7181a
commit 862444c906

@ -52,6 +52,16 @@ public interface ProjectIdeaDao extends Dao<ProjectIdea> {
private Collection<Keyword> keywords;
private boolean includeDeleted = false;
public boolean isIncludeDeleted() {
return includeDeleted;
}
public void setIncludeDeleted(boolean includeDeleted) {
this.includeDeleted = includeDeleted;
}
public Collection<Keyword> getKeywords() {
return keywords;
}