RegistrationVerify.java 394 B

1234567891011121314151617181920212223242526272829
  1. package com.yihu.ehr.model.verify;
  2. /**
  3. * @author Airhead
  4. * @version 1.0
  5. * @created 22-5-2015 11:24:26
  6. */
  7. public class RegistrationVerify implements IVerifier {
  8. public RegistrationVerify(){
  9. }
  10. public void finalize() throws Throwable {
  11. }
  12. /**
  13. *
  14. */
  15. public boolean check(){
  16. return false;
  17. }
  18. @Override
  19. public String getErrorInfo() {
  20. return null;
  21. }
  22. }//end RegistrationVerify