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.
17 lines
467 B
17 lines
467 B
package com.fr.plugin.domainlogin.webresource; |
|
|
|
import com.fr.web.struct.Component; |
|
import com.fr.web.struct.browser.RequestClient; |
|
import com.fr.web.struct.category.ScriptPath; |
|
|
|
public class DomainLoginComponent extends Component { |
|
|
|
public static DomainLoginComponent KEY = new DomainLoginComponent(); |
|
|
|
|
|
@Override |
|
public ScriptPath script(RequestClient req) { |
|
return ScriptPath.build("/com/fr/plugin/domainlogin/jscss/domain_login.js"); |
|
} |
|
|
|
}
|
|
|