1234567891011121314151617181920212223242526272829 |
- package com.yihu.ehr.model.verify;
- /**
- * @author Airhead
- * @version 1.0
- * @created 22-5-2015 11:24:26
- */
- public class RegistrationVerify implements IVerifier {
- public RegistrationVerify(){
- }
- public void finalize() throws Throwable {
- }
- /**
- *
- */
- public boolean check(){
- return false;
- }
- @Override
- public String getErrorInfo() {
- return null;
- }
- }//end RegistrationVerify
|