Package com.iizix.server.app
Class DBApp
java.lang.Object
com.iizix.server.app.DBApp
Class containing information about app to load in the server from its database.
- Field SummaryFieldsModifier and TypeFieldDescription- final longThe App numeric ID.- final StringThe app ID.- final longThe creation date of the entry: milliseconds since epoch.- final StringThe server environment.- final IJarFileThe JarFile instance loaded from the database in case the app is enabled,- nullif app is disabled or the JarFile is not stored in the database.- final StringThe full path to the directory (for development server) or the Jar file (production server).- final StringVersion of app.
- Constructor SummaryConstructors
- Method Summary
- Field Details- appIDThe app ID.
- aidpublic final long aidThe App numeric ID.
- createdpublic final long createdThe creation date of the entry: milliseconds since epoch.
- versionVersion of app.
- environmentThe server environment.
- pathThe full path to the directory (for development server) or the Jar file (production server).
- jarThe JarFile instance loaded from the database in case the app is enabled,- nullif app is disabled or the JarFile is not stored in the database.
 
- Constructor Details- DBApppublic DBApp- (String appID, long aid, long created, String version, String environment, String path, IJarFile jar) Constructor.- Parameters:
- appID- The String App ID.
- aid- The App numeric ID.
- created- The creation date of the entry: milliseconds since epoch.
- version- Version of app.
- environment- The server environment.
- path- The full path to the directory (for development server) or the Jar file (production server).
- jar- The JarFile instance loaded from the database in case the app is enabled,- nullif app not stored in the database.