JSD-8001 多门户单点
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.

34 lines
863 B

/*
* Copyright (C), 2018-2020
* Project: starter
* FileName: ProcessURLAliasProvider
* Author: Louis
* Date: 2020/9/11 8:47
*/
package com.fr.plugin.hjta.user;
import com.fr.decision.fun.impl.AbstractURLAliasProvider;
import com.fr.decision.webservice.url.alias.URLAlias;
import com.fr.decision.webservice.url.alias.URLAliasFactory;
import static com.fr.plugin.hjta.user.StartProcessHandler.START_PROCESS;
/**
* <Function Description><br>
* <ProcessURLAliasProvider>
*
* @author fr.open
* @since 1.0.0
*/
public class ProcessURLAliasProvider extends AbstractURLAliasProvider {
public ProcessURLAliasProvider() {
}
@Override
public URLAlias[] registerAlias() {
return new URLAlias[]{
URLAliasFactory.createPluginAlias(START_PROCESS, START_PROCESS, true)
};
}
}