enterprises.orbital.impl.evexmlapi.crp.MemberSecurityLogResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of eve-xml-api Show documentation
Show all versions of eve-xml-api Show documentation
Library to interact with EVE XML API servers
package enterprises.orbital.impl.evexmlapi.crp;
import java.util.HashSet;
import java.util.Set;
import enterprises.orbital.impl.evexmlapi.ApiResponse;
public class MemberSecurityLogResponse extends ApiResponse {
private final Set roleHistories = new HashSet();
public void addRoleHistory(ApiRoleHistory roleHistory) {
roleHistories.add(roleHistory);
}
public Set getRoleHistories() {
return roleHistories;
}
}