public class NetworkUpdatesService{
public void getNetworkUpdatesSummary(){
UpdateQueryCriteria query = UpdateQueryCriteria.createDefaultCriteria()
.setMemberID(2)
.setRequestdTypes(NetworkUpdateType.CONNECTION)
.setCutoffDate(...)
.setMaxNumberOfUpdates(10);
MyNetworkUpdatesService service = getService(MyNetworkUpdatesService.class);
DateTree update = service.getNetworkUpdatesSummary(query);
}
}
Created
October 31, 2013 06:59
-
-
Save arganzheng/7245337 to your computer and use it in GitHub Desktop.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment