01: /*
02: * All content copyright (c) 2003-2007 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.
03: */
04: package com.tc.weblogic;
05:
06: import com.terracotta.session.SessionFilter;
07:
08: import weblogic.j2ee.descriptor.ParamValueBean;
09:
10: public class DSOParamValueBean implements ParamValueBean {
11:
12: public void addDescription(String s) {
13: throw new AssertionError();
14: }
15:
16: public String[] getDescriptions() {
17: return new String[] { "Session Filter parameters for BEA Weblogic" };
18: }
19:
20: public String getParamName() {
21: return SessionFilter.APP_SERVER_PARAM_NAME;
22: }
23:
24: public String getParamValue() {
25: return SessionFilter.BEA_WEBLOGIC;
26: }
27:
28: public String getId() {
29: return "Session Filter App Server Type";
30: }
31:
32: public void removeDescription(String s) {
33: throw new AssertionError();
34: }
35:
36: public void setDescriptions(String[] as) {
37: throw new AssertionError();
38: }
39:
40: public void setId(String s) {
41: throw new AssertionError();
42: }
43:
44: public void setParamName(String s) {
45: throw new AssertionError();
46: }
47:
48: public void setParamValue(String s) {
49: throw new AssertionError();
50: }
51:
52: }
|