]> git.argeo.org Git - lgpl/argeo-commons.git/blob - server/runtime/org.argeo.server.core/src/main/java/org/argeo/server/mvc/SerializingViewResolver.java
Make properties writable
[lgpl/argeo-commons.git] / server / runtime / org.argeo.server.core / src / main / java / org / argeo / server / mvc / SerializingViewResolver.java
1 /*
2 * Copyright (C) 2007-2012 Mathieu Baudier
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.argeo.server.mvc;
17
18 import java.util.Locale;
19
20 import org.apache.commons.logging.Log;
21 import org.apache.commons.logging.LogFactory;
22 import org.argeo.server.ServerSerializer;
23 import org.springframework.web.servlet.View;
24 import org.springframework.web.servlet.view.AbstractCachingViewResolver;
25
26 /**
27 * Returns a {@link SerializingView} based on the underlying.
28 */
29 public class SerializingViewResolver extends AbstractCachingViewResolver {
30 private final static Log log = LogFactory
31 .getLog(SerializingViewResolver.class);
32
33 private ServerSerializer serializer;
34
35 @Override
36 protected View loadView(String viewName, Locale locale) throws Exception {
37 if (log.isTraceEnabled())
38 log.trace("viewName=" + viewName);
39 return new SerializingView(viewName, locale, serializer);
40 }
41
42 public void setSerializer(ServerSerializer serializer) {
43 this.serializer = serializer;
44 }
45
46 }