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.
35 lines
798 B
35 lines
798 B
3 years ago
|
package com.fr.plugin;
|
||
|
|
||
|
import com.fr.decision.fun.impl.AbstractWebResourceProvider;
|
||
|
import com.fr.decision.web.MainComponent;
|
||
|
import com.fr.plugin.transform.ExecuteFunctionRecord;
|
||
|
import com.fr.plugin.transform.FunctionRecorder;
|
||
|
import com.fr.stable.fun.Authorize;
|
||
|
import com.fr.web.struct.Atom;
|
||
|
@Authorize(callSignKey = "com.fr.plugin.custom.logo" )
|
||
|
@FunctionRecorder
|
||
|
public class LogindJSHandler extends AbstractWebResourceProvider {
|
||
|
|
||
|
/**
|
||
|
* 需要附加到的主组件
|
||
|
*
|
||
|
* @return 主组件
|
||
|
*/
|
||
|
|
||
|
@Override
|
||
|
@ExecuteFunctionRecord
|
||
|
public Atom attach() {
|
||
|
return MainComponent.KEY;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* 客户端所需的组件
|
||
|
*
|
||
|
* @return 组件
|
||
|
*/
|
||
|
@Override
|
||
|
public Atom client() {
|
||
|
return LoginedLogoComponent.KEY;
|
||
|
}
|
||
|
}
|