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

gov.nasa.pds.registry.common.connection.aws.IdSetsImpl Maven / Gradle / Ivy

package gov.nasa.pds.registry.common.connection.aws;

import java.util.HashSet;
import java.util.Set;
import gov.nasa.pds.registry.common.Response.Get.IdSets;

class IdSetsImpl implements IdSets {
  final Set lids = new HashSet();
  final Set lidvids = new HashSet();
  @Override
  public Set lids() {
    return this.lids;
  }
  @Override
  public Set lidvids() {
    return this.lidvids;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy