@Transactional(readOnly=true)
public interface CustomFieldFinderService
| Modifier and Type | Method and Description |
|---|---|
List<org.squashtest.tm.domain.customfield.CustomField> |
findAllOrderedByName()
Will find all custom fields available and return them into a list ordered by custom field's name.
|
org.squashtest.tm.domain.customfield.CustomField |
findById(Long customFieldId) |
org.squashtest.tm.domain.customfield.CustomField |
findByName(String name) |
org.squashtest.tm.domain.customfield.SingleSelectField |
findSingleSelectFieldById(Long customFieldId)
Will find the
SingleSelectField of the given id |
org.squashtest.tm.core.foundation.collection.PagedCollectionHolder<List<org.squashtest.tm.domain.customfield.CustomField>> |
findSortedCustomFields(org.squashtest.tm.core.foundation.collection.PagingAndSorting filter)
Will find all custom fields available and return them ordered according to the given parameters.
|
List<org.squashtest.tm.domain.customfield.CustomField> findAllOrderedByName()
CustomField ordered by CustomField.getName()org.squashtest.tm.core.foundation.collection.PagedCollectionHolder<List<org.squashtest.tm.domain.customfield.CustomField>> findSortedCustomFields(org.squashtest.tm.core.foundation.collection.PagingAndSorting filter)
filter - the PagingAndSorting that holds order and paging params.org.squashtest.tm.domain.customfield.SingleSelectField findSingleSelectFieldById(Long customFieldId)
SingleSelectField of the given idcustomFieldId - the id of the SingleSelectFieldSingleSelectField or nullorg.squashtest.tm.domain.customfield.CustomField findByName(@NotNull
String name)
name - org.squashtest.tm.domain.customfield.CustomField findById(Long customFieldId)
Copyright © 2010–2017 Henix, henix.fr. All rights reserved.