View Javadoc

1   package org.apache.turbine.services.template.mapper;
2   
3   /*
4    * Licensed to the Apache Software Foundation (ASF) under one
5    * or more contributor license agreements.  See the NOTICE file
6    * distributed with this work for additional information
7    * regarding copyright ownership.  The ASF licenses this file
8    * to you under the Apache License, Version 2.0 (the
9    * "License"); you may not use this file except in compliance
10   * with the License.  You may obtain a copy of the License at
11   *
12   *   http://www.apache.org/licenses/LICENSE-2.0
13   *
14   * Unless required by applicable law or agreed to in writing,
15   * software distributed under the License is distributed on an
16   * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
17   * KIND, either express or implied.  See the License for the
18   * specific language governing permissions and limitations
19   * under the License.
20   */
21  
22  import org.apache.commons.lang.StringUtils;
23  
24  import org.apache.turbine.services.template.TemplateService;
25  
26  /***
27   * The most primitive templating mapper. It is used for the navigation template
28   * objects. It never caches and simply returns what is given to it but keeps
29   * the template extension.
30   *
31   * @author <a href="mailto:hps@intermeta.de">Henning P. Schmiedehausen</a>
32   * @version $Id: DirectTemplateMapper.java 534527 2007-05-02 16:10:59Z tv $
33   */
34  public class DirectTemplateMapper
35      extends BaseTemplateMapper
36      implements Mapper
37  {
38      /***
39       * Default C'tor. If you use this C'tor, you must use
40       * the bean setter to set the various properties needed for
41       * this mapper before first usage.
42       */
43      public DirectTemplateMapper()
44      {
45      }
46  
47      /***
48       * Replace all "," with ".", but keep the extension.
49       *
50       * about,directions,Driving.vm --> about/directions/Driving.vm
51       *
52       * @param template The template name.
53       * @return A class name for the given template.
54       */
55      public String doMapping(String template)
56      {
57          String [] components
58              = StringUtils.split(template, String.valueOf(TemplateService.TEMPLATE_PARTS_SEPARATOR));
59  
60          return StringUtils.join(components, String.valueOf(separator));
61      }
62  }