All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.beimin.eveapi.response.map.SovereigntyResponse Maven / Gradle / Ivy

There is a newer version: 7.0.4
Show newest version
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;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy