package com.java110.web.components; import com.java110.core.context.IPageData; import com.java110.web.smo.ILoginServiceSMO; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.http.HttpStatus; import org.springframework.http.ResponseEntity; import org.springframework.stereotype.Component; /** * 验证码组件 * Created by wuxw on 2019/3/20. */ @Component("validate-code") public class ValidateCodeComponent { @Autowired private ILoginServiceSMO loginServiceSMOImpl; public ResponseEntity generateValidateCode(IPageData pd){ ResponseEntity responseEntity = null; try{ responseEntity = loginServiceSMOImpl.generateValidateCode(pd); }catch (Exception e){ responseEntity = new ResponseEntity(e.getMessage(), HttpStatus.INTERNAL_SERVER_ERROR); }finally { return responseEntity; } } /** * 校验验证码 * @param pd * @return */ public ResponseEntity validate(IPageData pd){ ResponseEntity responseEntity = null; try{ responseEntity = loginServiceSMOImpl.validate(pd); }catch (Exception e){ responseEntity = new ResponseEntity(e.getMessage(), HttpStatus.INTERNAL_SERVER_ERROR); }finally { return responseEntity; } } public ILoginServiceSMO getLoginServiceSMOImpl() { return loginServiceSMOImpl; } public void setLoginServiceSMOImpl(ILoginServiceSMO loginServiceSMOImpl) { this.loginServiceSMOImpl = loginServiceSMOImpl; } }