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.
30 lines
615 B
30 lines
615 B
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.web.struct.Atom; |
|
|
|
public class MBEMubea1WebResourceProvider extends AbstractWebResourceProvider { |
|
|
|
/** |
|
* 需要附加到的主组件 |
|
* |
|
* @return 主组件 |
|
*/ |
|
|
|
@Override |
|
public Atom attach() { |
|
return LoginComponent.KEY; |
|
} |
|
|
|
/** |
|
* 客户端所需的组件 |
|
* |
|
* @return 组件 |
|
*/ |
|
@Override |
|
public Atom client() { |
|
return MubeaComponent.KEY; |
|
} |
|
}
|
|
|