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

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

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 - 2025 Weber Informatics LLC | Privacy Policy