persistent class %WebStress.Scripts.URLS.Parameters
extends %Persistent, %XML.Adaptor
parameter FileTimestamp = "60183,39714";
property Key
as %String(MAXLEN=10000,TRUNCATE=1) [ SqlFieldName = Param_Key ];
The name of the parameter
property PostStream
as %GlobalCharacterStream;
A stream containing the posted file or stream (XML etc)
property PostStreamBoundary
as %String(TRUNCATE=1);
property PostStreamContentType
as %String(TRUNCATE=1);
property PostStreamFilename
as %String(TRUNCATE=1);
property PostStreamName
as %String(TRUNCATE=1);
property Type
as %String(DISPLAYLIST=",Form Data,Parameter,Stream",TRUNCATE=1,VALUELIST=",F,P,S") [ SqlFieldName = Param_Type,InitialExpression = "P" ];
Defines whether the parameter is part of the URL itself or is contained in
the form data
relationship URL
as %WebStress.Scripts.URLS [ Inverse = Parameters,Cardinality = parent ];
property Value
as %String(MAXLEN=10000,TRUNCATE=1) [ SqlFieldName = Param_Value ];
The value associated with this key
property ValueDecode
as %String(MAXLEN=10000,TRUNCATE=1) [ Calculated,Transient ];
method ValueDecodeGet()
as %String
This is a Get accessor method for the ValueDecode property.