01: /*
02: * Copyright 2007 Pentaho Corporation. All rights reserved.
03: * This software was developed by Pentaho Corporation and is provided under the terms
04: * of the Mozilla Public License, Version 1.1, or any later version. You may not use
05: * this file except in compliance with the license. If you need a copy of the license,
06: * please go to http://www.mozilla.org/MPL/MPL-1.1.txt. The Original Code is the Pentaho
07: * BI Platform. The Initial Developer is Pentaho Corporation.
08: *
09: * Software distributed under the Mozilla Public License is distributed on an "AS IS"
10: * basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. Please refer to
11: * the license for the specific language governing your rights and limitations.
12: *
13: * Created Apr 11, 2007
14: * @author dkincade
15: */
16:
17: package org.pentaho.plugin.webservice;
18:
19: import org.apache.commons.logging.Log;
20: import org.apache.commons.logging.LogFactory;
21: import org.pentaho.plugin.xquery.XQueryLookupRule;
22:
23: /**
24: * Performs the action of processing a webservice call in an action
25: * by doing the same functionality as the XQuery action (but not
26: * trying to retrieve the column types).
27: * <br/>
28: * The reason for the modification stems from a problem in the encoding of
29: * the URL. Retrieving the columns types expects an XML decoded URL.
30: * The XQuery processing expects an XML encoded URL.
31: * <br/>
32: * @author dkincade
33: */
34: public class WebServiceLookupRule extends XQueryLookupRule {
35:
36: private static final long serialVersionUID = -3785939302984708094L;
37:
38: /**
39: * Returns the logger for this class
40: */
41: public Log getLogger() {
42: return LogFactory.getLog(this .getClass());
43: }
44:
45: /**
46: * For web services, we don't need to retrieve the columns types
47: * during processing
48: */
49: protected boolean retrieveColumnTypes() {
50: return false;
51: }
52: }
|