Uses of Class
com.postman.collection.PropertyList
Packages that use PropertyList
Package
Description
Encapsulates a Postman JSON collection and emulates functionality of the Postman SDK.
-
Uses of PropertyList in com.postman.collection
Methods in com.postman.collection that return PropertyListModifier 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 theheaderproperty arrayResponse.getHeader()Get the ArrayList containing the key-value paris in theheaderelement arrayUrl.getPathVariables()Get an ArrayList<Property> containing the key-value pairs comprising thevariablearray, 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 thequeryarrayCollection.getVariables()Get the ArrayList<Property> containing the key-value pairs comprising thevariablearray element of this collectionMethods in com.postman.collection with parameters of type PropertyListModifier and TypeMethodDescriptionbooleanPropertyList.addAll(int index, PropertyList<Property> vars) booleanPropertyList.addAll(PropertyList<Property> vars) voidCollection.addVariables(PropertyList<Property> newVars) voidCookie.setExtensions(PropertyList<Property> extensions) voidBodyElement.setFormdata(PropertyList<Property> data) Convenience method to set the formdata with an already filled ArrayList<Property> of propertiesvoidRequestBody.setHeader(PropertyList<Property> header) Set the key-value pair values for theheaderproperty arrayvoidResponse.setHeader(PropertyList<Property> headers) Set the value of theheaderelement array with a pre-populated ArrayList of Property key-value pairsvoidUrl.setPathVariables(PropertyList<Property> variable) Set the values of thevariablearray with a pre-populated ArrayList<Property> containing the key-value parisvoidRequestAuth.setProperties(PropertyList<Property> properties) Set the properties of the Auth object using a pre-created HashMap<String,Property> of properties.voidUrl.setQueries(PropertyList<Property> query) Set the contents of thequeryarray with a pre-populated ArrayList<Property> containing the key value pairsvoidCollection.setVariables(PropertyList<Property> vars) Set the array of key-value pairs in this collectionsvariablearray elementConstructors in com.postman.collection with parameters of type PropertyListModifierConstructorDescriptionRequestAuth(enumAuthType type, PropertyList<Property> properties) Conveninence constructor to initialize an Auth object with a pre-created HashMap of authentication properties