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

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

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

import java.util.ArrayList;
import java.util.Collection;

import enterprises.orbital.impl.evexmlapi.ApiResponse;

public class CustomsOfficeResponse extends ApiResponse {
  private final Collection offices = new ArrayList();

  public void addCustomsOffice(ApiCustomsOffice facility) {
    offices.add(facility);
  }

  public Collection getOffices() {
    return offices;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy