
com.gooddata.project.UsersDeserializer Maven / Gradle / Ivy
package com.gooddata.project;
import com.gooddata.collections.PageableListDeserializer;
import com.gooddata.collections.Paging;
import com.gooddata.dataload.processes.Schedule;
import java.util.List;
import java.util.Map;
class UsersDeserializer extends PageableListDeserializer {
protected UsersDeserializer() {
super(User.class, "users");
}
@Override
protected Users createList(final List items, final Paging paging, final Map links) {
return new Users(items, paging);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy