View Javadoc

1   /*
2    * $Id: RemoteBean.java 651946 2008-04-27 13:41:38Z apetrelli $
3    *
4    * Licensed to the Apache Software Foundation (ASF) under one
5    * or more contributor license agreements.  See the NOTICE file
6    * distributed with this work for additional information
7    * regarding copyright ownership.  The ASF licenses this file
8    * to you under the Apache License, Version 2.0 (the
9    * "License"); you may not use this file except in compliance
10   * with the License.  You may obtain a copy of the License at
11   *
12   *  http://www.apache.org/licenses/LICENSE-2.0
13   *
14   * Unless required by applicable law or agreed to in writing,
15   * software distributed under the License is distributed on an
16   * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
17   * KIND, either express or implied.  See the License for the
18   * specific language governing permissions and limitations
19   * under the License.
20   */
21  
22  package org.apache.struts2.dojo.components;
23  
24  
25  public interface RemoteBean {
26  
27      void setListenTopics(String topics);
28  
29      void setNotifyTopics(String topics);
30  
31      void setHref(String href);
32  
33      void setErrorText(String errorText);
34  
35      void setAfterNotifyTopics(String afterNotifyTopics);
36  
37      void setBeforeNotifyTopics(String beforeNotifyTopics);
38      
39      void setErrorNotifyTopics(String errorNotifyTopics);
40  
41      void setExecuteScripts(String executeScripts);
42  
43      void setLoadingText(String loadingText);
44  
45      void setHandler(String handler);
46  
47      void setFormFilter(String formFilter);
48  
49      void setFormId(String formId);
50  
51      void setShowErrorTransportText(String showError);
52  
53      void setShowLoadingText(String showLoadingText);
54  
55      void setIndicator(String indicator);
56      
57      void setName(String name);
58      
59      void setCssStyle(String style);
60      
61      void setCssClass(String cssClass);
62      
63      void setHighlightColor(String color);
64      
65      void setHighlightDuration(String color);
66      
67      void setSeparateScripts(String separateScripts);
68      
69      void setTransport(String transport);
70      
71      void setParseContent(String parseContent);
72  }