Project

General

Profile

« Previous | Next » 

Revision 61a393ee

Added by Andreas Müller over 12 years ago

fix javadoc for findByTitle

View differences:

cdmlib-services/src/main/java/eu/etaxonomy/cdm/api/service/IIdentifiableEntityService.java
126 126
    public Pager<T> findByTitle(Class<? extends T> clazz, String queryString,MatchMode matchmode, List<Criterion> criteria, Integer pageSize, Integer pageNumber, List<OrderHint> orderHints, List<String> propertyPaths);
127 127
    
128 128
    /**
129
	 * Return a Pager of objects matching the given query string, optionally filtered by class, optionally with a particular MatchMode
129
	 * Return a Pager of objects matching the given query string, optionally filtered by class, 
130
	 * optionally with a particular MatchMode
130 131
	 * 
131
	 * @param clazz filter by class - can be null to include all instances of type T
132
	 * @param queryString the query string to filter by
133
	 * @param matchmode use a particular type of matching (can be null - defaults to exact matching)
134
	 * @param criteria additional criteria to filter by
135
	 * @param pageSize The maximum number of objects returned (can be null for all objects)
136
	 * @param pageNumber The offset (in pageSize chunks) from the start of the result set (0 - based)
137
	 * @param propertyPaths properties to initialize - see {@link BeanInitializer#initialize(Object, List)}
138
	 * @param orderHints
139
	 *            Supports path like <code>orderHints.propertyNames</code> which
140
	 *            include *-to-one properties like createdBy.username or
141
	 *            authorTeam.persistentTitleCache
142 132
	 * @return a paged list of instances of type T matching the queryString
143 133
	 */
144 134
    public Pager<T> findByTitle(IIdentifiableEntityServiceConfigurator<T> configurator);

Also available in: Unified diff