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.

16 lines
497 B

package com.fr.plugin.demo.web.request;
import com.fr.decision.fun.impl.AbstractControllerRegisterProvider;
import com.fr.plugin.demo.web.request.controller.DynamicController1;
import com.fr.plugin.demo.web.request.controller.DynamicController2;
public class DemoControllerBridge extends AbstractControllerRegisterProvider {
public Class[] getController() {
return new Class[]{
DynamicController1.class,
DynamicController2.class
};
}
}