|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.dps.core.model.CachedData
org.dps.core.model.HibernateCachedData
org.dps.core.model.character.CharacterNotificationTexts
public class CharacterNotificationTexts
Character notification texts is mainly a front-end for accessing notification text entries stored in a SQL database. We use Hibernate to abstract over the structure of the database in use. Character notification texts provides access to the raw table (via Hibernate Query's) as well as several convenience methods for accessing rows:
DPCharacterNotificationTexts notificationTexts; List results; try { notificationTexts.begin(); Query select = notificationTexts.query("from org.dpv.eve.data.persist.ICharacterNotificationTextEntry"); results = select.list(); notificationTexts.commit(); } catch (HibernateException e) { notificationTexts.rollback(); } ... do something with results ...
Field Summary | |
---|---|
Capsuleer |
character
|
Fields inherited from class org.dps.core.model.CachedData |
---|
apiVersion, cachedUntil, currentTime, dataMap, lock |
Method Summary | |
---|---|
java.lang.String |
toString()
|
Methods inherited from class org.dps.core.model.HibernateCachedData |
---|
begin, close, commit, getSession, rollback, setPersistenceFactory, storeEntry, storeEntry, storeEntry, storeEntry, storeEntry, storeEntry, storeEntry, storeEntry, storeEntry, storeEntry |
Methods inherited from class org.dps.core.model.CachedData |
---|
expiresIn, getMeta, getMeta, isExpired, putMeta |
Methods inherited from class java.lang.Object |
---|
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Field Detail |
---|
public Capsuleer character
Method Detail |
---|
public java.lang.String toString()
toString
in class HibernateCachedData
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |