01: /**********************************************************************************
02: * $URL: https://source.sakaiproject.org/svn/sam/tags/sakai_2-4-1/samigo-app/src/java/org/sakaiproject/tool/assessment/ws/SamigoToolServiceSoapBindingImpl.java $
03: * $Id: SamigoToolServiceSoapBindingImpl.java 9290 2006-05-11 08:52:23Z lydial@stanford.edu $
04: ***********************************************************************************
05: *
06: * Copyright (c) 2004, 2005, 2006 The Sakai Foundation.
07: *
08: * Licensed under the Educational Community License, Version 1.0 (the"License");
09: * you may not use this file except in compliance with the License.
10: * You may obtain a copy of the License at
11: *
12: * http://www.opensource.org/licenses/ecl1.php
13: *
14: * Unless required by applicable law or agreed to in writing, software
15: * distributed under the License is distributed on an "AS IS" BASIS,
16: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17: * See the License for the specific language governing permissions and
18: * limitations under the License.
19: *
20: **********************************************************************************/
21:
22: /**
23: * SamigoToolServiceSoapBindingImpl.java
24: *
25: * This file was auto-generated from WSDL
26: * by the Apache Axis WSDL2Java emitter.
27: *
28: * This was part of the web services demo files. The rest wsdl2java autogenerated files
29: * are deleted, along with wsdl, deploy/undeploy wsdd files and server-config.wsdd.
30: * Kept this Impl class.
31: */package org.sakaiproject.tool.assessment.ws;
32:
33: public class SamigoToolServiceSoapBindingImpl implements
34: org.sakaiproject.tool.assessment.ws.SamigoTool {
35: public org.sakaiproject.tool.assessment.ws.Item[] search(
36: java.lang.String in0) throws java.rmi.RemoteException {
37: SamigoToolWebService samigows = new SamigoToolWebService();
38: return samigows.getItemObjArrayByKeyword(in0);
39: }
40:
41: public java.lang.String download(java.lang.String[] in0,
42: java.lang.String qtiVersion)
43: throws java.rmi.RemoteException {
44: SamigoToolWebService samigows = new SamigoToolWebService();
45: return samigows.download(in0, qtiVersion);
46: }
47:
48: }
|