enterprises.orbital.impl.evexmlapi.eve.ApiCharacterLookup 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.eve;
import enterprises.orbital.evexmlapi.eve.ICharacterLookup;
public class ApiCharacterLookup implements ICharacterLookup {
private String name;
private long characterID;
@Override
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
@Override
public long getCharacterID() {
return characterID;
}
public void setCharacterID(long characterID) {
this.characterID = characterID;
}
}