Package org.plugtree.training.model

Examples of org.plugtree.training.model.Employee


    public void testLuggageNotCheckedInOnTime() throws Exception{
        final StatefulKnowledgeSession ksession = this.createKSession();
        WorkingMemoryEntryPoint meetingsEP = ksession.getWorkingMemoryEntryPoint("meetings");
        WorkingMemoryEntryPoint incomingCallsEP = ksession.getWorkingMemoryEntryPoint("incoming-calls");

        Employee john = new Employee("John", "Terry");
        Employee paul = new Employee("Paul", "Stewart");
        Employee peter = new Employee("Peter", "Corning");
        Employee michael = new Employee("Michael", "Williams");

        //a 2 hours meeting is created
        Meeting meeting = new Meeting("Some important meeting",2*60*60*1000);
        meeting.addParticipant(john);
        meeting.addParticipant(paul);
View Full Code Here

TOP

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

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.