View Javadoc

1   /*
2    * Copyright 2004-2009 the Seasar Foundation and the Others.
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,
13   * either express or implied. See the License for the specific language
14   * governing permissions and limitations under the License.
15   */
16  package org.seasar.cubby.plugins.s2.spi;
17  
18  import java.util.Collection;
19  
20  import org.seasar.cubby.controller.RequestParser;
21  import org.seasar.cubby.spi.impl.AbstractRequestParserProvider;
22  import org.seasar.framework.container.S2Container;
23  
24  /**
25   * S2Container 向けの {@link RequestParser} のプロバイダです。
26   * 
27   * @author baba
28   */
29  public class S2RequestParserProvider extends AbstractRequestParserProvider {
30  
31  	public static final String s2Container_BINDING = "bindingType=must";
32  
33  	/** S2 コンテナ。 */
34  	private S2Container s2Container;
35  
36  	/**
37  	 * S2 コンテナを設定します。
38  	 * 
39  	 * @param s2Container
40  	 *            S2 コンテナ
41  	 */
42  	public void setS2Container(final S2Container s2Container) {
43  		this.s2Container = s2Container;
44  	}
45  
46  	/**
47  	 * {@inheritDoc}
48  	 * <p>
49  	 * S2 コンテナのルートコンテナから取得できる {@link RequestParser} のインスタンスを返します。
50  	 * </p>
51  	 */
52  	@Override
53  	protected Collection<RequestParser> getRequestParsers() {
54  		@SuppressWarnings("unchecked")
55  		final Collection<RequestParser> requestParsers = (Collection<RequestParser>) s2Container
56  				.getRoot().getComponent("requestParsers");
57  		return requestParsers;
58  	}
59  
60  }