Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
S2RequestParserProvider |
|
| 0.0;0 |
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 | 0 | public class S2RequestParserProvider extends AbstractRequestParserProvider { |
25 | ||
26 | public static final String s2Container_BINDING = "bindingType=must"; | |
27 | ||
28 | /** S2 コンテナ。 */ | |
29 | private S2Container s2Container; | |
30 | ||
31 | /** | |
32 | * S2 コンテナを設定します。 | |
33 | * | |
34 | * @param s2Container | |
35 | * S2 コンテナ | |
36 | */ | |
37 | public void setS2Container(final S2Container s2Container) { | |
38 | 0 | this.s2Container = s2Container; |
39 | 0 | } |
40 | ||
41 | /** | |
42 | * {@inheritDoc} | |
43 | * <p> | |
44 | * S2 コンテナのルートコンテナから取得できる {@link RequestParser} のインスタンスを返します。 | |
45 | * </p> | |
46 | */ | |
47 | @Override | |
48 | protected Collection<RequestParser> getRequestParsers() { | |
49 | @SuppressWarnings("unchecked") | |
50 | 0 | final Collection<RequestParser> requestParsers = (Collection<RequestParser>) s2Container |
51 | .getRoot().getComponent("requestParsers"); | |
52 | 0 | return requestParsers; |
53 | } | |
54 | ||
55 | } |