JSD-9581 OAuth2单点+用户同步
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
718 B

/*
* Copyright (C), 2018-2020
* Project: starter
* FileName: JSCSSBridge
* Author: Louis
* Date: 2020/8/31 16:34
*/
package com.fr.plugin.hdmu;
import com.fr.decision.fun.impl.AbstractWebResourceProvider;
import com.fr.decision.web.MainComponent;
import com.fr.plugin.hdmu.web.WebResourceComponent;
import com.fr.web.struct.Atom;
/**
* <Function Description><br>
* <平台组件定制JSCSSBridge>
*
* @author fr.open
* @since 1.0.0
*/
public class JSCSSBridge extends AbstractWebResourceProvider {
@Override
public Atom attach() {
return MainComponent.KEY;
}
@Override
public Atom client() {
return WebResourceComponent.KEY;
}
}