INTF_Response Class
global class INTF_Response
{
webservice Boolean success {get;set;}
webservice String message {get;set;}
webservice String messageType {get;set;}
webservice String tagId {get;set;}
webservice String eventType {get;set;}
webservice List<INTF_StringMap> stringMap = new
List<INTF_StringMap>();
webservice List<INTF_StringFieldMap> stringFieldMap = new List<INTF_StringFieldMap>();
webservice List<SVMX_Debug.SMAX_Debug> logMsg;
webservice List<String> resultIds = new List<String>();
webservice List<INTF_StringListMap> StringLstMap = new
List<INTF_StringListMap>();
webservice List<INTF_MapStringMap> MapStringMap = new List<INTF_MapStringMap>();
global INTF_Response(Boolean success, String message, String tagId, List<INTF_StringMap> stringMap, List<SVMX_Debug.SMAX_Debug> logMsg, List<String> resultIds)
{
this.success = success;
this.message = message;
this.tagId = tagId;
this.stringMap = stringMap;
this.logMsg = logMsg;
this.resultIds=resultIds;
}
global INTF_Response(){}
global List<INTF_StringMap> getstringMap(){return stringMap;}
global void setstringMap(List<INTF_StringMap> s){stringMap = s ;}
global List<INTF_StringFieldMap> getstringFieldMap(){return stringFieldMap;}
global void setstringFieldMap(List<INTF_StringFieldMap> s){stringFieldMap = s ;}
global List<INTF_StringListMap> getStringLstMap(){return StringLstMap;}
global void setStringLstMap(List<INTF_StringListMap> s){StringLstMap = s ;}
global List<INTF_MapStringMap> getMapStringMap(){return MapStringMap;}
global void setMapStringMap(List<INTF_MapStringMap> s){MapStringMap = s ;}
}
Was this helpful?