Package de.hybris.platform.cms2.services
Interface SortQueryData
-
- All Known Implementing Classes:
DefaultSortQueryData
public interface SortQueryDataRepresents meta-information about anDaoclass and the associated sort code and query.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetQuery()Get the sort query to be applied.java.lang.StringgetSortCode()Get the sort code associated to the sort query to be applied.java.lang.Class<? extends Dao>getTypeClass()Get the typeClass identifying theSortQueryDatabooleanisDefault()Determines if the sort query data is the default one or not.
-
-
-
Method Detail
-
getTypeClass
java.lang.Class<? extends Dao> getTypeClass()
Get the typeClass identifying theSortQueryData
-
getSortCode
java.lang.String getSortCode()
Get the sort code associated to the sort query to be applied.
-
getQuery
java.lang.String getQuery()
Get the sort query to be applied.
-
isDefault
boolean isDefault()
Determines if the sort query data is the default one or not.
-
-