org.apache.camel.util.component
Class ApiMethodParser.ApiMethodModel

java.lang.Object
  extended by org.apache.camel.util.component.ApiMethodParser.ApiMethodModel
Enclosing class:
ApiMethodParser<T>

public static final class ApiMethodParser.ApiMethodModel
extends Object


Constructor Summary
protected ApiMethodParser.ApiMethodModel(String name, Class<?> resultType, List<ApiMethodParser.Argument> arguments, Method method)
           
protected ApiMethodParser.ApiMethodModel(String uniqueName, String name, Class<?> resultType, List<ApiMethodParser.Argument> arguments, Method method)
           
 
Method Summary
 List<ApiMethodParser.Argument> getArguments()
           
 Method getMethod()
           
 String getName()
           
 Class<?> getResultType()
           
 String getUniqueName()
           
 String toString()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

ApiMethodParser.ApiMethodModel

protected ApiMethodParser.ApiMethodModel(String name,
                                         Class<?> resultType,
                                         List<ApiMethodParser.Argument> arguments,
                                         Method method)

ApiMethodParser.ApiMethodModel

protected ApiMethodParser.ApiMethodModel(String uniqueName,
                                         String name,
                                         Class<?> resultType,
                                         List<ApiMethodParser.Argument> arguments,
                                         Method method)
Method Detail

getUniqueName

public String getUniqueName()

getName

public String getName()

getResultType

public Class<?> getResultType()

getMethod

public Method getMethod()

getArguments

public List<ApiMethodParser.Argument> getArguments()

toString

public String toString()
Overrides:
toString in class Object


Apache Camel