Package com.esri.gpt.framework.util

Examples of com.esri.gpt.framework.util.DateRange


/**
* Sets harvest date range.
* @param dateRange harvest date range
*/
public void setDateRange(DateRange dateRange) {
  _dateRange = dateRange!=null? dateRange: new DateRange();
}
View Full Code Here


// constructors ================================================================
  /** Default constructor. */
  public MmdQueryCriteria() {
    _approvalStatus = MmdEnums.ApprovalStatus.any.toString();
    _pubMethod = MmdEnums.PublicationMethod.any.toString();
    setDateRange(new DateRange());
    getSortOption().setColumnKey("updatedate");
    getSortOption().setDirection(SortOption.SortDirection.desc);
  }
View Full Code Here

    _title = "";
    _uuid = "";
    _siteUuid = "";
    _protocolType = "";
    _collectionUuid = "";
    setDateRange(new DateRange());
    getSortOption().setColumnKey("updatedate");
    getSortOption().setDirection(SortOption.SortDirection.desc);
  }
View Full Code Here

/**
* Sets update date range.
* @param dateRange update date range
*/
public void setDateRange(DateRange dateRange) {
  _dateRange = dateRange != null ? dateRange : new DateRange();
}
View Full Code Here

/**
* Sets update date range.
* @param dateRange update date range
*/
public void setLastHarvestDateRange(DateRange dateRange) {
  _lastHarvestDateRange = dateRange != null ? dateRange : new DateRange();
}
View Full Code Here

TOP

Related Classes of com.esri.gpt.framework.util.DateRange

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.