Your browser does not support JavaScript and this site utilizes JavaScript to build content and provide links to additional information. You should either enable JavaScript in your browser settings or use a browser that supports JavaScript in order to take full advantage of this site.
1 25 package org.objectweb.jonas.ws.mbean; 26 27 import java.util.List ; 28 import java.util.Properties ; 29 30 36 public class Handler extends AbstractWebServiceMBean { 37 38 41 private String name = null; 42 43 46 private String classname = null; 47 48 51 private Properties initParams = new Properties (); 52 53 56 private String [] soapHeaders = null; 57 58 61 private String [] soapRoles = null; 62 63 67 public Handler(String objectName) { 68 super(objectName); 69 } 70 71 74 public String getClassname() { 75 return classname; 76 } 77 78 81 public void setClassname(String classname) { 82 this.classname = classname; 83 } 84 85 88 public String getName() { 89 return name; 90 } 91 92 95 public void setName(String name) { 96 this.name = name; 97 } 98 99 102 public Properties getInitParams() { 103 return initParams; 104 } 105 106 109 public void setInitParams(Properties initParams) { 110 this.initParams = initParams; 111 } 112 113 116 public String [] getSoapHeaders() { 117 return soapHeaders; 118 } 119 120 123 public String [] getSoapRoles() { 124 return soapRoles; 125 } 126 127 130 public void setSoapHeaders(String [] soapHeaders) { 131 this.soapHeaders = soapHeaders; 132 } 133 134 137 public void setSoapRoles(String [] soapRoles) { 138 this.soapRoles = soapRoles; 139 } 140 141 144 protected String getMBeanType() { 145 return WebServicesObjectName.HANDLER_TYPE; 146 } 147 148 151 protected List getChildsMBeans() { 152 return null; 154 } 155 156 } 157
| Popular Tags
|