Class NegotiatorRequest
- java.lang.Object
-
- org.molgenis.dataexplorer.negotiator.NegotiatorRequest
-
public abstract class NegotiatorRequest extends Object
-
-
Constructor Summary
Constructors Constructor Description NegotiatorRequest()
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description static NegotiatorRequestcreate(String url, String entityId, String rsql, String humanReadable, String nToken)static NegotiatorRequestcreate(String url, String entityId, String biobankId, String rsql, String biobankRsql, String humanReadable, String nToken)abstract StringgetBiobankId()Entity type ID for the biobanksabstract StringgetBiobankRsql()RSQL for the biobank entityabstract StringgetEntityId()Entity type ID for the collectionsabstract StringgetHumanReadable()abstract StringgetnToken()abstract StringgetRsql()RSQL for the collection entityabstract StringgetURL()
-
-
-
Method Detail
-
getURL
public abstract String getURL()
-
getEntityId
public abstract String getEntityId()
Entity type ID for the collections
-
getBiobankId
@Nullable @CheckForNull public abstract String getBiobankId()
Entity type ID for the biobanks
-
getRsql
@Nullable @CheckForNull public abstract String getRsql()
RSQL for the collection entity
-
getBiobankRsql
@Nullable @CheckForNull public abstract String getBiobankRsql()
RSQL for the biobank entity
-
getHumanReadable
public abstract String getHumanReadable()
-
getnToken
@Nullable @CheckForNull public abstract String getnToken()
-
create
public static NegotiatorRequest create(String url, String entityId, String rsql, String humanReadable, String nToken)
-
-