Examples of addFingerprint()


Examples of ke.go.moh.oec.reception.controller.PersonWrapper.addFingerprint()

                return new SearchProcessResult(SearchProcessResult.Type.ABORT, null);
            }
            personWrapper.setClinicName(basicSearchClinicNameTextField.getText());
            personWrapper.setAliveStatus(Person.AliveStatus.yes);
            ImagedFingerprint imagedFingerprint = mainViewHelper.getActiveImagedFingerprint();
            personWrapper.addFingerprint(imagedFingerprint);
            return mainViewHelper.findPerson(Server.MPI_LPI);
        }

        @Override
        protected void succeeded(Object result) {
View Full Code Here

Examples of ke.go.moh.oec.reception.controller.PersonWrapper.addFingerprint()

                    }
                }
                personWrapper.setOtherName(extendedSearchOtherNameTextField.getText());
                personWrapper.setClanName(extendedSearchClanNameTextField.getText());
                personWrapper.setVillageName(extendedSearchVillageTextField.getText());
                personWrapper.addFingerprint(mainViewHelper.getSession().getActiveImagedFingerprint());
                return mainViewHelper.findPerson(Server.MPI_LPI);
            } catch (MalformedCliniIdException ex) {
                showWarningMessage(ex.getMessage(), extendedSearchButton, extendedSearchClinicIdTextField);
                return new SearchProcessResult(SearchProcessResult.Type.ABORT, null);
            }
View Full Code Here

Examples of ke.go.moh.oec.reception.controller.PersonWrapper.addFingerprint()

            } catch (Exception ex) {
                return new SearchProcessResult(SearchProcessResult.Type.ABORT, null);
            }
            mainViewHelper.getSession().getImagedFingerprintList().add(ifp);
            mainViewHelper.getSession().setActiveImagedFingerprint(ifp);
            quickSearchPersonWrapper.addFingerprint(mainViewHelper.getSession().getActiveImagedFingerprint());
            return mainViewHelper.findPerson(Server.MPI_LPI, quickSearchPersonWrapper);
        }

        @Override
        protected void succeeded(Object result) {
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.