Package org.plugtree.training.model

Examples of org.plugtree.training.model.Patient


    @Test
    public void testNurseNotification() throws Exception{
        final StatefulKnowledgeSession ksession = this.createKSession();
        WorkingMemoryEntryPoint bedEventsEP = ksession.getWorkingMemoryEntryPoint("bed-events");

        Patient patient = new Patient("John","Doe");

        Nurse nurse = new Nurse("Mary","Douglas");
        ksession.setGlobal("nurse", nurse);
        Doctor doctor = new Doctor("Gregory","House");
        ksession.setGlobal("doctor", doctor);
View Full Code Here


    @Test
    public void testDoctorNotification() throws Exception{
        final StatefulKnowledgeSession ksession = this.createKSession();
        WorkingMemoryEntryPoint bedEventsEP = ksession.getWorkingMemoryEntryPoint("bed-events");

        Patient patient = new Patient("John","Doe");

        Nurse nurse = new Nurse("Mary","Douglas");
        ksession.setGlobal("nurse", nurse);
        Doctor doctor = new Doctor("Gregory","House");
        ksession.setGlobal("doctor", doctor);
View Full Code Here

TOP

Related Classes of org.plugtree.training.model.Patient

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.