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

enterprises.orbital.impl.evexmlapi.crp.ApiSecurityTitle Maven / Gradle / Ivy

There is a newer version: 2.4.0
Show newest version
package enterprises.orbital.impl.evexmlapi.crp;

import enterprises.orbital.evexmlapi.crp.ISecurityTitle;

public class ApiSecurityTitle implements ISecurityTitle {
  private final long   titleID;
  private final String titleName;

  public ApiSecurityTitle(long titleID, String titleName) {
    this.titleID = titleID;
    this.titleName = titleName;
  }

  public long getTitleID() {
    return titleID;
  }

  public String getTitleName() {
    return titleName;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy