Files
IfishSystemEnglish/src/main/java/com/ifish/helper/SecurityService.java
T
2017-07-25 18:09:50 +08:00

18 lines
429 B
Java

/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package com.ifish.helper;
import javax.servlet.http.HttpServletRequest;
/**
*
* @author Administrator
*/
public interface SecurityService {
public void autologinrequest(String username, String password, HttpServletRequest request);
}