public static String computeWorkflowName()

in src/main/java/com/amazonaws/eclipse/simpleworkflow/asynchrony/annotationprocessor/ProcessorUtils.java [367:380]


    public static String computeWorkflowName(String interfaceName, ExecutableElement workflow) {
        assert(workflow != null);
        String workflowName = null;

        Execute options = workflow.getAnnotation(Execute.class);
        if (options != null && !options.name().isEmpty()) {
            workflowName = options.name();
        }
        else {
            workflowName = interfaceName + "." + workflow.getSimpleName().toString();
        }
        
        return workflowName;
    }