
Package ca.uhn.fhir.rest.gclient
Interface IOperationUntypedWithInputAndPartialOutput<T extends IBaseParameters>
-
- All Superinterfaces:
IClientExecutable<IOperationUntypedWithInput<T>,T>
,IOperationUntypedWithInput<T>
public interface IOperationUntypedWithInputAndPartialOutput<T extends IBaseParameters> extends IOperationUntypedWithInput<T>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IOperationUntypedWithInputAndPartialOutput<T>
andParameter(String theName, IBase theValue)
Use chained method calls to construct a Parameters input.IOperationUntypedWithInputAndPartialOutput<T>
andSearchParameter(String theName, IQueryParameterType theValue)
Adds a URL parameter to the request.-
Methods inherited from interface ca.uhn.fhir.rest.gclient.IClientExecutable
accept, andLogRequestAndResponse, cacheControl, elementsSubset, encoded, encodedJson, encodedXml, execute, preferResponseType, preferResponseTypes, prettyPrint, summaryMode, withAdditionalHeader
-
Methods inherited from interface ca.uhn.fhir.rest.gclient.IOperationUntypedWithInput
returnMethodOutcome, returnResourceType, useHttpGet
-
-
-
-
Method Detail
-
andParameter
IOperationUntypedWithInputAndPartialOutput<T> andParameter(String theName, IBase theValue)
Use chained method calls to construct a Parameters input. This form is a convenience in order to allow simple method chaining to be used to build up a parameters resource for the input of an operation without needing to manually construct one.- Parameters:
theName
- The first parameter nametheValue
- The first parameter value
-
andSearchParameter
IOperationUntypedWithInputAndPartialOutput<T> andSearchParameter(String theName, IQueryParameterType theValue)
Adds a URL parameter to the request. Use chained method calls to construct a Parameters input. This form is a convenience in order to allow simple method chaining to be used to build up a parameters resource for the input of an operation without needing to manually construct one.- Parameters:
theName
- The first parameter nametheValue
- The first parameter value
-
-