• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // Copyright 2017 PDFium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4 
5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
6 
7 #include "fxjs/xfa/cjx_wsdlconnection.h"
8 
9 #include <vector>
10 
11 #include "fxjs/cfx_v8.h"
12 #include "fxjs/js_resources.h"
13 #include "fxjs/xfa/cfxjse_value.h"
14 #include "xfa/fxfa/parser/cxfa_wsdlconnection.h"
15 
16 const CJX_MethodSpec CJX_WsdlConnection::MethodSpecs[] = {
17     {"execute", execute_static}};
18 
CJX_WsdlConnection(CXFA_WsdlConnection * connection)19 CJX_WsdlConnection::CJX_WsdlConnection(CXFA_WsdlConnection* connection)
20     : CJX_Node(connection) {
21   DefineMethods(MethodSpecs);
22 }
23 
~CJX_WsdlConnection()24 CJX_WsdlConnection::~CJX_WsdlConnection() {}
25 
DynamicTypeIs(TypeTag eType) const26 bool CJX_WsdlConnection::DynamicTypeIs(TypeTag eType) const {
27   return eType == static_type__ || ParentType__::DynamicTypeIs(eType);
28 }
29 
execute(CFX_V8 * runtime,const std::vector<v8::Local<v8::Value>> & params)30 CJS_Result CJX_WsdlConnection::execute(
31     CFX_V8* runtime,
32     const std::vector<v8::Local<v8::Value>>& params) {
33   if (!params.empty() && params.size() != 1)
34     return CJS_Result::Failure(JSMessage::kParamError);
35 
36   return CJS_Result::Success(runtime->NewBoolean(false));
37 }
38