GUAC-1373: Define sorting only by start date.

This commit is contained in:
Michael Jumper
2015-11-15 20:19:31 -08:00
committed by James Muehlner
parent 4e4ba9ac45
commit 77804b2a9d
6 changed files with 14 additions and 90 deletions

View File

@@ -39,29 +39,11 @@ public interface ConnectionRecordSet {
*/
enum SortableProperty {
/**
* The name (not identifier) of the connection associated with the
* connection record.
*/
CONNECTION_NAME,
/**
* The identifier (username) of the user that used the connection
* associated with the connection record.
*/
USER_IDENTIFIER,
/**
* The date and time when the connection associated with the
* connection record began.
*/
START_DATE,
/**
* The date and time when the connection associated with the
* connection record ended.
*/
END_DATE
START_DATE
};