1 package org.seasar.cubby.controller.impl;
2
3 import java.lang.reflect.Method;
4
5 import org.seasar.cubby.controller.ActionDef;
6 import org.seasar.framework.container.ComponentDef;
7
8
9
10
11
12
13 public class ActionDefImpl implements ActionDef {
14
15 private final ComponentDef componentDef;
16
17 private final Method method;
18
19 public ActionDefImpl(final ComponentDef componentDef, final Method method) {
20 this.componentDef = componentDef;
21 this.method = method;
22 }
23
24 public ComponentDef getComponentDef() {
25 return componentDef;
26 }
27
28 public Method getMethod() {
29 return method;
30 }
31
32 }