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

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

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

import java.util.Collection;
import java.util.HashSet;

import enterprises.orbital.impl.evexmlapi.ApiResponse;

public class OutpostServiceDetailResponse extends ApiResponse {
  private final Collection outposts = new HashSet();

  public void addOutpost(ApiOutpostServiceDetail outpost) {
    outposts.add(outpost);
  }

  public Collection getOutposts() {
    return outposts;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy