HHH-2805 The class Order does not contain getters
This commit is contained in:
parent
6423754bcc
commit
f28198054f
|
@ -33,7 +33,9 @@ import org.hibernate.type.Type;
|
|||
|
||||
/**
|
||||
* Represents an order imposed upon a <tt>Criteria</tt> result set
|
||||
*
|
||||
* @author Gavin King
|
||||
* @author Brett Meyer
|
||||
*/
|
||||
public class Order implements Serializable {
|
||||
|
||||
|
@ -81,6 +83,18 @@ public class Order implements Serializable {
|
|||
}
|
||||
return fragment.toString();
|
||||
}
|
||||
|
||||
public String getPropertyName() {
|
||||
return propertyName;
|
||||
}
|
||||
|
||||
public boolean isAscending() {
|
||||
return ascending;
|
||||
}
|
||||
|
||||
public boolean isIgnoreCase() {
|
||||
return ignoreCase;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ascending order
|
||||
|
|
Loading…
Reference in New Issue