Package org.jboss.weld.probe
Class Invocation
- java.lang.Object
-
- org.jboss.weld.probe.Invocation
-
public final class Invocation extends Object
Information about a single business method invocation. TODO we can't always detect the type reliably- Author:
- Martin Kouba
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classInvocation.Type
-
Constructor Summary
Constructors Constructor Description Invocation(Integer entryPointIdx, javax.enterprise.inject.spi.Bean<?> interceptedBean, String declaringClassName, long start, long duration, String methodName, List<Invocation> children, Invocation.Type type, String description)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetBeanClass()List<Invocation>getChildren()StringgetDeclaringClassName()StringgetDescription()longgetDuration()IntegergetEntryPointIdx()javax.enterprise.inject.spi.Bean<?>getInterceptedBean()StringgetMethodName()longgetStart()Invocation.TypegetType()booleanhasChildren()booleanisEntryPoint()
-
-
-
Constructor Detail
-
Invocation
public Invocation(Integer entryPointIdx, javax.enterprise.inject.spi.Bean<?> interceptedBean, String declaringClassName, long start, long duration, String methodName, List<Invocation> children, Invocation.Type type, String description)
- Parameters:
entryPointIdx-isEntryPoint-interceptedBean-declaringClassName-start-duration-methodName-children-type-description-
-
-
Method Detail
-
getEntryPointIdx
public Integer getEntryPointIdx()
-
isEntryPoint
public boolean isEntryPoint()
-
getInterceptedBean
public javax.enterprise.inject.spi.Bean<?> getInterceptedBean()
-
getDeclaringClassName
public String getDeclaringClassName()
-
getBeanClass
public String getBeanClass()
-
getStart
public long getStart()
-
getDuration
public long getDuration()
-
getMethodName
public String getMethodName()
-
getChildren
public List<Invocation> getChildren()
-
hasChildren
public boolean hasChildren()
-
getType
public Invocation.Type getType()
-
getDescription
public String getDescription()
-
-