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.
18 lines
720 B
18 lines
720 B
3 years ago
|
package com.fr.plugin;
|
||
|
|
||
|
import com.fr.decision.fun.impl.AbstractURLAliasProvider;
|
||
|
import com.fr.decision.webservice.url.alias.URLAlias;
|
||
|
import com.fr.decision.webservice.url.alias.URLAliasFactory;
|
||
|
|
||
|
public class PLUrlAliasProvider extends AbstractURLAliasProvider {
|
||
|
@Override
|
||
|
public URLAlias[] registerAlias() {
|
||
|
return new URLAlias[]{
|
||
|
URLAliasFactory.createPluginAlias("/sync/accounts", "/accounts", true),
|
||
|
URLAliasFactory.createPluginAlias("/sync/positions", "/positions", true),
|
||
|
URLAliasFactory.createPluginAlias("/sync/deps", "/deps", true),
|
||
|
URLAliasFactory.createPluginAlias("/loginCallback", "/loginCallback", true),
|
||
|
};
|
||
|
}
|
||
|
}
|