gov.nasa.pds.api.registry.UserContext 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;
import gov.nasa.pds.api.registry.model.ProductVersionSelector;
import gov.nasa.pds.api.registry.model.identifiers.PdsProductIdentifier;
public interface UserContext extends LidvidsContext {
public String getAccept();
public List getFields();
public String getGroup();
public PdsProductIdentifier getIdentifier();
public List getKeywords();
public String getQuery();
public ProductVersionSelector getSelector();
public List getSortFields();
public List getSearchAfterValues();
public String getVersion();
}