Uses of Class
org.forgerock.api.models.Parameter
-
Packages that use Parameter Package Description org.forgerock.api.models ForgeRock API Descriptor models.org.forgerock.api.util API Descriptor utility classes. -
-
Uses of Parameter in org.forgerock.api.models
Methods in org.forgerock.api.models that return Parameter Modifier and Type Method Description Parameter
Parameter.Builder. build()
Builds the Parameter.static Parameter
Parameter. fromAnnotation(Class<?> type, Parameter parameter)
Builds a Parameter object from the data in the annotation.Parameter[]
Operation. getParameters()
Getter of the parameters array.Parameter[]
Resource. getParameters()
Getter of the parameters array.Parameter
Items. getPathParameter()
Get the path parameter.Methods in org.forgerock.api.models with parameters of type Parameter Modifier and Type Method Description static Resource
Resource. fromAnnotatedType(Class<?> type, Resource.AnnotatedTypeVariant variant, Items items, ApiDescription descriptor, Parameter... extraParameters)
Build aResource
from an annotated request handler.static Resource
Resource. fromAnnotatedType(Class<?> type, Resource.AnnotatedTypeVariant variant, SubResources subResources, ApiDescription descriptor, Parameter... extraParameters)
Build aResource
from an annotated request handler.T
Operation.Builder. parameter(Parameter parameter)
Sets a single supported parameters.Resource.Builder
Resource.Builder. parameter(Parameter parameter)
Sets a single supported parameter.Items.Builder
Items.Builder. pathParameter(Parameter pathParameter)
Sets the path parameter for this resource.Method parameters in org.forgerock.api.models with type arguments of type Parameter Modifier and Type Method Description T
Operation.Builder. parameters(List<Parameter> parameters)
Set multiple supported parameters.Resource.Builder
Resource.Builder. parameters(List<Parameter> parameters)
Set multiple supported parameters. -
Uses of Parameter in org.forgerock.api.util
Methods in org.forgerock.api.util that return Parameter Modifier and Type Method Description static Parameter[]
PathUtil. buildPathParameters(String pathSegment)
Searches for curly-braces in the givenpathSegment
, and creates a path-parameter for each that are found.Methods in org.forgerock.api.util that return types with arguments of type Parameter Modifier and Type Method Description static List<Parameter>
PathUtil. mergeParameters(List<Parameter> parameterList, Parameter... parameters)
MergesParameter
values into the givenparameterList
, where conflictingparameter-names
will be replaced, and new parameters will otherwise be added.Methods in org.forgerock.api.util with parameters of type Parameter Modifier and Type Method Description static List<Parameter>
PathUtil. mergeParameters(List<Parameter> parameterList, Parameter... parameters)
MergesParameter
values into the givenparameterList
, where conflictingparameter-names
will be replaced, and new parameters will otherwise be added.Method parameters in org.forgerock.api.util with type arguments of type Parameter Modifier and Type Method Description static List<Parameter>
PathUtil. mergeParameters(List<Parameter> parameterList, Parameter... parameters)
MergesParameter
values into the givenparameterList
, where conflictingparameter-names
will be replaced, and new parameters will otherwise be added.
-