コード例 #1
0
 public List<ContentKey> findContentKeysByContentType(ContentTypeEntity contentType) {
   return findByNamedQuery(
       ContentKey.class,
       "ContentEntity.findContentKeysByContentTypeKey",
       new String[] {"contentTypeKey"},
       new Object[] {contentType.getKey()});
 }