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.
32 lines
653 B
32 lines
653 B
3 years ago
|
package com.fr.plugin.web;
|
||
|
|
||
|
import com.fr.decision.fun.impl.AbstractWebResourceProvider;
|
||
|
import com.fr.decision.web.MainComponent;
|
||
|
import com.fr.decision.web.LoginComponent;
|
||
|
import com.fr.decision.web.UserComponent;
|
||
|
import com.fr.web.struct.Atom;
|
||
|
|
||
|
public class GC1YGC11WebResourceProvider extends AbstractWebResourceProvider {
|
||
|
|
||
|
/**
|
||
|
* 需要附加到的主组件
|
||
|
*
|
||
|
* @return 主组件
|
||
|
*/
|
||
|
|
||
|
@Override
|
||
|
public Atom attach() {
|
||
|
return UserComponent.KEY;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* 客户端所需的组件
|
||
|
*
|
||
|
* @return 组件
|
||
|
*/
|
||
|
@Override
|
||
|
public Atom client() {
|
||
|
return GC1Component.KEY;
|
||
|
}
|
||
|
}
|