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.
23 lines
882 B
23 lines
882 B
2 years ago
|
package com.fr.plugin.xx.ltqc.auth;
|
||
|
|
||
|
import com.fr.decision.fun.impl.AbstractURLAliasProvider;
|
||
|
import com.fr.decision.webservice.url.alias.URLAlias;
|
||
|
import com.fr.decision.webservice.url.alias.URLAliasFactory;
|
||
|
|
||
|
/**
|
||
|
* @author xx
|
||
|
* @since 2021/07/28
|
||
|
*/
|
||
|
public class RequestURLAliasBridge extends AbstractURLAliasProvider {
|
||
|
@Override
|
||
|
public URLAlias[] registerAlias() {
|
||
|
return new URLAlias[]{
|
||
|
URLAliasFactory.createPluginAlias("/cpt/list", "/cpt/list", false),
|
||
|
URLAliasFactory.createPluginAlias("/auth/addRole", "/auth/addRole", false),
|
||
|
URLAliasFactory.createPluginAlias("/auth/editRole", "/auth/editRole", false),
|
||
|
URLAliasFactory.createPluginAlias("/auth/addUser", "/auth/addUser", false),
|
||
|
URLAliasFactory.createPluginAlias("/auth/delRole", "/auth/delRole", false),
|
||
|
};
|
||
|
}
|
||
|
}
|