On 22.05.2017 19:40, RJ wrote:
Here is my script. Highlighted the method call.. tried some google
searches for the syntax. Thanks for the help!

import java.util.*
import com.example.auth.user;

class EBSAttrRelease {
     def Map<UserString, List<UserObject>> run(final UserObject... args) {
     def userid=com.example.auth.user.getId()
     return [MYLOGINID:userid]
     }
}

try "import com.example.auth.user as User" instead of "import com.example.auth.user" and then "def userid=User.getId()"... assuming of course that getId is a static method in the class com.example.auth.user

bye Jochen

Reply via email to