public class StepNameUtils
extends java.lang.Object
| Modifier and Type | Method and Description |
|---|---|
static java.lang.String |
getStepName(Step step,
org.aspectj.lang.reflect.MethodSignature signature,
org.aspectj.lang.JoinPoint joinPoint)
Generate step name based on a template bypassed in
Step annotation. |
static java.lang.String |
getStepName(java.lang.String nameTemplate,
TemplateConfiguration config,
org.aspectj.lang.reflect.MethodSignature signature,
org.aspectj.lang.JoinPoint joinPoint)
Generate step name based on a template and configuration bypassed.
|
@Nonnull
public static java.lang.String getStepName(@Nonnull
Step step,
@Nonnull
org.aspectj.lang.reflect.MethodSignature signature,
@Nonnull
org.aspectj.lang.JoinPoint joinPoint)
Step annotation.step - annotationsignature - signature of the method annotated with StepjoinPoint - intercepted step join point@Nonnull
public static java.lang.String getStepName(@Nonnull
java.lang.String nameTemplate,
@Nonnull
TemplateConfiguration config,
@Nonnull
org.aspectj.lang.reflect.MethodSignature signature,
@Nonnull
org.aspectj.lang.JoinPoint joinPoint)
nameTemplate - template stringconfig - template configuration to usesignature - signature of the method related to the stepjoinPoint - intercepted step join point