enterprises.orbital.evexmlapi.crp.IMemberSecurity 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.evexmlapi.crp;
import java.util.Collection;
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
@JsonSerialize(as = IMemberSecurity.class)
public interface IMemberSecurity {
public long getCharacterID();
public Collection getGrantableRoles();
public Collection getGrantableRolesAtBase();
public Collection getGrantableRolesAtHQ();
public Collection getGrantableRolesAtOther();
public String getName();
public Collection getRoles();
public Collection getRolesAtBase();
public Collection getRolesAtHQ();
public Collection getRolesAtOther();
public Collection getTitles();
}