Thanks for the response, Jochen. Tried your suggestion, it doesn't like it:
2017-05-22 14:06:15,871 ERROR - <groovy.lang.MissingMethodException: No
signature of method: static com.example.auth.principal.getId() is
applicable for argument types: () values: []
Possible solutions: getAt(java.lang.String), wait(), find(), grep(),
wait(long), grep(java.lang.Object)>
org.codehaus.groovy.runtime.InvokerInvocationException:
groovy.lang.MissingMethodException: No signature of method: static
com.example.auth.principal.getId() is applicable for argument types: ()
values: []
Possible solutions: getAt(java.lang.String), wait(), find(), grep(),
wait(long), grep(java.lang.Object)
We try something like this in Java.. Whats the equivalent in Groovy Script ?
import com.example.auth.principal;
public String1 abcd(final principal Principal){
return Principal.getId();
}
On Mon, May 22, 2017 at 2:03 PM, Jochen Theodorou <[email protected]> wrote:
> 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
>