UNPKG
wps-js-52-north
Version:
latest (2.0.52)
2.0.52
2.0.51
2.0.5
2.0.4
2.0.3
2.0.2
2.0.1
Web Processing Service JavaScrict library
github.com/52North/wps-js
52North/wps-js
wps-js-52-north
/
src
/
web
/
js
/
wps-js-lib
/
response
/
BaseResponse.js
16 lines
(11 loc)
•
275 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
var
BaseResponse
=
Class
.
extend
({ init :
function
(
responseDocument
) {
/* * represents the raw response document returned by the WPS */
this
.
responseDocument
= responseDocument; }, getRawResponseDocument :
function
(
) {
return
this
.
responseDocument
; } });