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.
21 lines
634 B
21 lines
634 B
3 years ago
|
package com.fr.plugin.jsd9683.webResourceProvider;
|
||
|
|
||
|
import com.fr.decision.webservice.interceptor.handler.ReportTemplateRequestChecker;
|
||
|
import com.fr.decision.webservice.utils.DecisionServiceConstants;
|
||
|
import com.fr.web.struct.Component;
|
||
|
import com.fr.web.struct.browser.RequestClient;
|
||
|
import com.fr.web.struct.category.ScriptPath;
|
||
|
|
||
|
public class Jsd9683WebResourceComponent extends Component {
|
||
|
|
||
|
public static Jsd9683WebResourceComponent KEY = new Jsd9683WebResourceComponent();
|
||
|
|
||
|
|
||
|
@Override
|
||
|
public ScriptPath script(RequestClient req) {
|
||
|
|
||
|
return ScriptPath.build("/com/fr/plugin/jsd9683/jscss/Jsd9683.js");
|
||
|
}
|
||
|
|
||
|
}
|