Uses of Class
com.postman.collection.PropertyList
Package
Description
Encapsulates a Postman JSON collection and emulates functionality of the Postman SDK.
-
Uses of PropertyList in com.postman.collection
Modifier and TypeMethodDescriptionCookie.getExtensions()
BodyElement.getFormdata()
Returns an ArrayList<Property> containing formdata paramters:RequestBody.getHeader()
Return an ArrayList of Property objects containing the key-value pair values for theheader
property arrayResponse.getHeader()
Get the ArrayList containing the key-value paris in theheader
element arrayUrl.getPathVariables()
Get an ArrayList<Property
> containing the key-value pairs comprising thevariable
array, or null if none exit.RequestAuth.getProperties()
Return the complete array of properties as a HashMap<String,Property>, or null if none are set.Url.getQueryElements()
Return an ArrayList<Property
> of key value pairs comprising thequery
arrayCollection.getVariables()
Get the ArrayList<Property
> containing the key-value pairs comprising thevariable
array element of this collectionModifier and TypeMethodDescriptionboolean
PropertyList.addAll
(int index, PropertyList<Property> vars) boolean
PropertyList.addAll
(PropertyList<Property> vars) void
Collection.addVariables
(PropertyList<Property> newVars) void
Cookie.setExtensions
(PropertyList<Property> extensions) void
BodyElement.setFormdata
(PropertyList<Property> data) Convenience method to set the formdata with an already filled ArrayList<Property
> of propertiesvoid
RequestBody.setHeader
(PropertyList<Property> header) Set the key-value pair values for theheader
property arrayvoid
Response.setHeader
(PropertyList<Property> headers) Set the value of theheader
element array with a pre-populated ArrayList of Property key-value pairsvoid
Url.setPathVariables
(PropertyList<Property> variable) Set the values of thevariable
array with a pre-populated ArrayList<Property
> containing the key-value parisvoid
RequestAuth.setProperties
(PropertyList<Property> properties) Set the properties of the Auth object using a pre-created HashMap<String,Property> of properties.void
Url.setQueries
(PropertyList<Property> query) Set the contents of thequery
array with a pre-populated ArrayList<Property
> containing the key value pairsvoid
Collection.setVariables
(PropertyList<Property> vars) Set the array of key-value pairs in this collectionsvariable
array elementModifierConstructorDescriptionRequestAuth
(enumAuthType type, PropertyList<Property> properties) Conveninence constructor to initialize an Auth object with a pre-created HashMap of authentication properties