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