View Javadoc

1   /*
2    * Copyright 2001-2004 The Apache Software Foundation.
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.apache.geronimo.ews.ws4j2ee.context.webservices.server.interfaces;
17  
18  /***
19   * This will interface the WebServices element in the webService.xml file
20   */
21  public interface WSCFWebservices {
22  
23      /***
24       * Gets websevice description Elements from the webservices element as a n array
25       *
26       * @return webservice-descriptions
27       */
28      public WSCFWebserviceDescription[] getWebServiceDescriptions();
29  
30      /***
31       * Gets the description element of the webservices Element
32       *
33       * @return Description
34       */
35      public String getDescription();
36  
37      /***
38       * Gets the display name element of the webservices Element
39       *
40       * @return display-name
41       */
42      public String getDisplayName();
43  
44      /***
45       * Gets the large icon element of the webservices Element
46       *
47       * @return large-icon
48       */
49      public String getLargeIcon();
50  
51      /***
52       * Gets the small icon element of the webservices Element
53       *
54       * @return small-icon
55       */
56      public String getSmallIcon();
57  	
58  //	public Webservices getJaxbWebservices(); 
59  	
60  //	public WSCFWebserviceDescription getWSDDService(QName qname);
61  //	public void setWebServiceDescriptions(Vector vector) ;
62  //	public void setDescription(String description) ;
63  //	public void setDisplayName(String displayName) ;
64  //	public void setLargeIcon(String largeIcon);
65  //	public void setSmallIcon(String smallIcon) ;
66  }