You need to store a Java long primitive attribute, called customerOID, into the session scope.
Which two code snippets allow you to insert this value into the session? (Choose two.)
A.
long customerOID = 47L;
session.setAttribute(“customerOID”, new Long(customerOID));
B.
long customerOID = 47L;
session.setLongAttribute(“customerOID”, new Long(customerOID));
C.
long customerOID = 47L;
session.setAttribute(“customerOID”, customerOID);
D.
long customerOID = 47L;
session.setNumericAttribute(“customerOID”, new Long(customerOID));
E.
long customerOID = 47L;
session.setLongAttribute(“customerOID”, customerOID);
F.
long customerOID = 47L;
session.setNumericAttribute(“customerOID”, customerOID);
Explanation: