01: /*
02: * Copyright 2005 Joe Walker
03: *
04: * Licensed under the Apache License, Version 2.0 (the "License");
05: * you may not use this file except in compliance with the License.
06: * You may obtain a copy of the License at
07: *
08: * http://www.apache.org/licenses/LICENSE-2.0
09: *
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.directwebremoting.convert;
17:
18: import org.directwebremoting.extend.Converter;
19: import org.directwebremoting.extend.InboundContext;
20: import org.directwebremoting.extend.InboundVariable;
21: import org.directwebremoting.extend.MarshallException;
22: import org.directwebremoting.extend.NonNestedOutboundVariable;
23: import org.directwebremoting.extend.OutboundContext;
24: import org.directwebremoting.extend.OutboundVariable;
25:
26: /**
27: * An implementation of Converter for Strings.
28: * @author Joe Walker [joe at getahead dot ltd dot uk]
29: */
30: public class StringWrapperConverter extends BaseV20Converter implements
31: Converter {
32: /* (non-Javadoc)
33: * @see org.directwebremoting.Converter#convertInbound(java.lang.Class, org.directwebremoting.InboundVariable, org.directwebremoting.InboundContext)
34: */
35: public Object convertInbound(Class<?> paramType,
36: InboundVariable data, InboundContext inctx)
37: throws MarshallException {
38: throw new MarshallException(paramType,
39: "StringWrappers are not availble during inbound marshalling");
40: }
41:
42: /* (non-Javadoc)
43: * @see org.directwebremoting.Converter#convertOutbound(java.lang.Object, org.directwebremoting.OutboundContext)
44: */
45: public OutboundVariable convertOutbound(Object data,
46: OutboundContext outctx) throws MarshallException {
47: return new NonNestedOutboundVariable(data.toString());
48: }
49: }
|