public final void setResource(String name, int type, byte[] data) { Object[] value = new Object[] {UUID.randomUUID().toString(), name, new Integer(type), data}; try { if (m_resourcebytesupdate.exec(value) == 0) { m_resourcebytesinsert.exec(value); } resourcescache.put(name, data); } catch (BasicException e) { } }
public final void addOrder( String id, String orderId, Integer qty, String details, String attributes, String notes, String ticketId, Integer displayId) throws BasicException { m_addOrder.exec(id, orderId, qty, details, attributes, notes, ticketId, displayId); }
public final void execDrawerOpened(Object[] drawer) throws BasicException { m_draweropened.exec(drawer); }
public final void execInsertCash(Object[] cash) throws BasicException { m_insertcash.exec(cash); }
public final void execChangePassword(Object[] userdata) throws BasicException { m_changepassword.exec(userdata); }
public final void execDummy() throws BasicException { m_dummy.exec(); }
/** * @param csv * @throws BasicException */ public final void execAddCSVEntry(Object[] csv) throws BasicException { m_insertCSVEntry.exec(csv); }
/** @param line */ public final void execLineRemoved(Object[] line) { try { m_lineremoved.exec(line); } catch (BasicException e) { } }
/** * @param permissions * @throws BasicException */ public final void execUpdatePermissions(Object[] permissions) throws BasicException { m_updatepermissions.exec(permissions); }