KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > directwebremoting > extend > Remoter


1 /*
2  * Copyright 2005 Joe Walker
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */

16 package org.directwebremoting.extend;
17
18 /**
19  * The heart of DWR is a system to generate content from some requests.
20  * This interface generates scripts and executes remote calls.
21  * @author Joe Walker [joe at getahead dot ltd dot uk]
22  */

23 public interface Remoter
24 {
25     /**
26      * Generate some Javascript that forms an interface definition
27      * @param scriptName The script to generate for
28      * @param path The path of the requests.
29      * @return An interface javascript
30      * @throws SecurityException
31      */

32     String JavaDoc generateInterfaceScript(String JavaDoc scriptName, String JavaDoc path) throws SecurityException JavaDoc;
33
34     /**
35      * Execute a set of remote calls and generate set of reply data for later
36      * conversion to whatever wire protocol we are using today.
37      * @param calls The set of calls to execute
38      * @return A set of reply data objects
39      */

40     Replies execute(Calls calls);
41 }
42
Popular Tags