8:00 – 3:30 CSIP
- Hibernate chapter 6
- Chapter 7. Learning about annotations like all the other cool kids. Done. Chapter 8 on Monday.
8:00 – 3:30 CSIP
Start: 12:30
end: 6:30
#NOTE: Raspberry Pi and Cotton Candy do not use standard OpenGL. Instead they use OpenGL ES 2.0
“For programmable hardware: OpenGL ES 2.0 is defined relative to the OpenGL 2.0 specification and emphasizes a programmable 3D graphics pipeline with the ability to create shader and program objects and the ability to write vertex and fragment shaders in the OpenGL ES Shading Language. OpenGL ES 2.0 does not support the fixed function transformation and fragment pipeline of OpenGL ES 1.x”
More info: http://www.khronos.org/opengles/
8:00 – 4:00 CSIP
Start: 10:00
End: 5:20
8:00 – 4:30 CSIP
Start: 10:00
End: 6:00
8:00 – 1:30, 3:30 -6:00 CSIP
// Import the class
import droolsbook.bank.service.BankingInquiryService;
// create the session
static StatelessKnowledgeSession session;
// create rule engine
KnowledgeBaseConfiguration configuration = KnowledgeBaseFactory.newKnowledgeBaseConfiguration();
KnowledgeBase knowledgeBase = KnowledgeBaseFactory.newKnowledgeBase(configuration);
// declare our global
BankingInquiryService inquiryService = new BankingInquiryServiceImpl();
// make a session
session = knowledgeBase.newStatelessKnowledgeSession();
// add the global to the session
session.setGlobal("inquiryService", inquiryService);
// import
import droolsbook.bank.service.*;
// declare
global BankingInquiryService inquiryService;
// use the global in a rule (note the surrounding eval(), which can evaluate any code that returns a TRUE or FALSE).
rule "accountNumberUnique"
when
$account : Account(eval(!inquiryService.isAccountNumberUnique($account)))
then
error(kcontext, $account);
end

Start: 10:00
Parts:
End: 6:00
You must be logged in to post a comment.