Package ca.uhn.fhir.rest.gclient
Class TokenClientParam
- java.lang.Object
-
- ca.uhn.fhir.rest.gclient.TokenClientParam
-
- All Implemented Interfaces:
IParam
public class TokenClientParam extends Object implements IParam
Token parameter type for use in fluent client interfaces
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static interfaceTokenClientParam.IMatches
-
Constructor Summary
Constructors Constructor Description TokenClientParam(String theParamName)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description TokenClientParam.IMatchesexactly()StringgetParamName()Returns the name of this parameterICriterion<TokenClientParam>hasSystemWithAnyCode(String theSystem)Create a search criterion that matches against the given system value but does not specify a code.ICriterion<?>isMissing(boolean theMissing)Sets the:missingqualifier for this parameter.
-
-
-
Constructor Detail
-
TokenClientParam
public TokenClientParam(String theParamName)
-
-
Method Detail
-
exactly
public TokenClientParam.IMatches exactly()
-
getParamName
public String getParamName()
Description copied from interface:IParamReturns the name of this parameter- Specified by:
getParamNamein interfaceIParam
-
hasSystemWithAnyCode
public ICriterion<TokenClientParam> hasSystemWithAnyCode(String theSystem)
Create a search criterion that matches against the given system value but does not specify a code. This means that any code/identifier with the given system should match.Use
exactly()if you want to specify a code.
-
isMissing
public ICriterion<?> isMissing(boolean theMissing)
Description copied from interface:IParamSets the:missingqualifier for this parameter. Set this totrueto indicate that the server should return resources with this valuepopulated
. Set this tofalseto indicate that the server should return resources with this value missing.
-
-