KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > beehive > wsm > model > BeehiveWsSOAPMessageHandlerInfo


1 /*
2  * Copyright 2005 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  * $Header:$Factory
17  */

18 package org.apache.beehive.wsm.model;
19
20 import java.util.Collection JavaDoc;
21 import java.util.Map JavaDoc;
22
23 /**
24  * @author dmehrtash
25  */

26 public interface BeehiveWsSOAPMessageHandlerInfo {
27   /**
28    * @return Returns the className.
29    */

30   public abstract String JavaDoc getClassName();
31
32   /**
33    * @param className The className to set.
34    */

35   public abstract void setClassName(String JavaDoc className);
36
37   /**
38    * @return Returns the name.
39    */

40   public abstract String JavaDoc getName();
41
42   /**
43    * @param name The name to set.
44    */

45   public abstract void setName(String JavaDoc name);
46
47   /**
48    * @return Returns the headers.
49    */

50   public abstract Collection JavaDoc<String JavaDoc> getHeaders();
51
52   public abstract void addHeader(String JavaDoc header);
53
54   /**
55    * @return Returns the params.
56    */

57   public abstract Map JavaDoc<String JavaDoc, String JavaDoc> getParameterMap();
58
59   public abstract void addInitParam(String JavaDoc key, String JavaDoc value);
60
61   public abstract void addInitParams(Map JavaDoc<String JavaDoc, String JavaDoc> params);
62
63   /**
64    * @return Returns the roles.
65    */

66   public abstract Collection JavaDoc<String JavaDoc> getRoles();
67
68   public abstract void addRole(String JavaDoc role);
69
70   public abstract void addRoles(Collection JavaDoc<String JavaDoc> roles);
71 }
72
Popular Tags