This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import org.codehaus.groovy.control.SourceUnit | |
| import static org.codehaus.groovy.control.Phases.* | |
| import org.codehaus.groovy.control.CompilationUnit | |
| import org.codehaus.groovy.control.CompilationFailedException | |
| import groovy.json.JsonBuilder | |
| def sourceUnit = SourceUnit.create("None", """ | |
| package bla.blow | |
| import java.util.Date |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package com.example.demo.gaia; | |
| import com.jayway.jsonpath.JsonPath; | |
| import javax.annotation.Resource; | |
| public class LoginFlow extends AbstractFlow { | |
| @Resource(name = "other") | |
| AbstractFlow other_flow; |