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

enterprises.orbital.evexmlapi.shared.IContactSet Maven / Gradle / Ivy

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

import java.util.List;

import com.fasterxml.jackson.databind.annotation.JsonSerialize;

@JsonSerialize(as = IContactSet.class)
public interface IContactSet {

  /**
   * Retrieve list of character contacts. This list will be empty for corporation accounts.
   * 
   * @return the list of character contacts.
   */
  public List getContacts();

  public List getCorporateContacts();

  public List getAllianceContacts();

  /**
   * Retrieve list of character contact labels. This list will be empty for corporation accounts.
   * 
   * @return the list of character contact labels.
   */
  public List getContactLabels();

  public List getCorporateContactLabels();

  public List getAllianceContactLabels();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy