Keywords must have a getter so that Spring Data can determine its size.

This commit is contained in:
Tom Vahlman 2012-04-08 23:38:29 +02:00
parent 43db68fe23
commit 612bc873eb

@ -29,6 +29,10 @@ public class Keywords implements Serializable {
this.keywords = keywords; this.keywords = keywords;
} }
public Set<Keyword> getKeywords() {
return keywords;
}
/** /**
* @param typeName the keyword type as a string, the type of the keyword (s) used in the specific comparison * @param typeName the keyword type as a string, the type of the keyword (s) used in the specific comparison
* @return List<Keyword> return a list of keywords of the specified type * @return List<Keyword> return a list of keywords of the specified type