com.beimin.eveapi.response.map.SovereigntyResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of eveapi Show documentation
Show all versions of eveapi Show documentation
Parsers for the eve online api
package com.beimin.eveapi.response.map;
import java.util.HashMap;
import java.util.Map;
import com.beimin.eveapi.model.map.SystemSovereignty;
import com.beimin.eveapi.response.ApiListResponse;
public class SovereigntyResponse extends ApiListResponse {
private final Map systemSovereignties = new HashMap();
public void add(SystemSovereignty systemSovereignty) {
systemSovereignties.put(systemSovereignty.getSolarSystemID(), systemSovereignty);
super.add(systemSovereignty);
}
public Map getSystemSovereignties() {
return systemSovereignties;
}
}