You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

15 lines
365 B

package com.fr.plugin.reportresult;
public class CustomScheduleResult implements ScheduleResultProvider {
@Override
public String getResultSuffix() {
return "test";
}
@Override
public Weblet accessResult(HttpServletRequest req, String path, String fileName, ScheduleShowType showType) throws Exception {
return null;
}
}