enterprises.orbital.impl.evexmlapi.crp.Division 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;
public class Division {
private int accountKey;
private String description;
public int getAccountKey() {
return accountKey;
}
public void setAccountKey(int accountKey) {
this.accountKey = accountKey;
}
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
}