super.executes() disables plugin but super.SUCCESS works fine. Why?

ARUN KUMAR MK
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
April 6, 2017

Actually I am trying to fetch the data from VM to the webwork action class

 

@Override
public String execute() throws Exception {

System.out.println("In Execute");
return super.execute(); //  fails but super.SUCCESS works fine
}


public String doExecute() throws Exception{
System.out.println("PROJECT"+project+"Project ::::"+getProject());

return SUCCESS;
}

public String getProject(){
return project;
}
public void setProject (String project){
this.project = project;
}

1 answer

1 vote
Thomas Schlegel
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
April 6, 2017

Hi Arun,

there's another community for developer's issues:

https://community.developer.atlassian.com/

Maybe you get an answer there sooner

Sam Hall
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
April 7, 2017

Here's the tread Arun created there in case anyone wants to follow the trail: https://community.developer.atlassian.com/t/super-executes-disables-plugin-but-super-success-works-fine-why/2195

Suggest an answer

Log in or Sign up to answer