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.

27 lines
720 B

2 years ago
package com.fr.plugin.permission;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import com.fr.plugin.permission.action.DirectoryPath;
import com.fr.stable.fun.Service;
import com.fr.stable.web.RequestCMDReceiver;
import com.fr.web.core.WebActionsDispatcher;
public class PermissionServer implements Service {
private static RequestCMDReceiver[] actions = {
new DirectoryPath()
};
@Override
public String actionOP() {
return "permission";
}
@Override
public void process(HttpServletRequest req, HttpServletResponse res, String op, String sessionid) throws Exception {
WebActionsDispatcher.dealForActionCMD(req, res, sessionid, actions);
}
}