gov.nasa.pds.api.registry.RequestBuildContext Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of registry-api-service Show documentation
Show all versions of registry-api-service Show documentation
Registry API Service contributing to the PDS Federated Search API
package gov.nasa.pds.api.registry;
import java.util.List;
public interface RequestBuildContext {
public boolean justLatest(); // return just the latest LIDVIDs. return false if request is made
// for a
// specific version
public List getFields(); // must not return null but an empty list
public GroupConstraint getPresetCriteria(); // must not return null but an empty list
}