Package ke.go.moh.oec.reception.controller.exceptions

Examples of ke.go.moh.oec.reception.controller.exceptions.MalformedCliniIdException


    }

    public void setClinicId(String clinicId) throws MalformedCliniIdException {
        PersonIdentifier personIdentifier = OECReception.createPersonIdentifier(clinicId);
        if (personIdentifier == null) {
            throw new MalformedCliniIdException();
        }
        List<PersonIdentifier> personIdentifierList = preparedPersonIdentifierList(personIdentifier);
        if (!personIdentifierList.contains(personIdentifier)) {
            personIdentifierList.add(personIdentifier);
        }
View Full Code Here

TOP

Related Classes of ke.go.moh.oec.reception.controller.exceptions.MalformedCliniIdException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.