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 Summary
Modifier and TypeFieldDescriptionfinal long
The App numeric ID.final String
The app ID.final long
The creation date of the entry: milliseconds since epoch.final String
The server environment.final IJarFile
The JarFile instance loaded from the database in case the app is enabled,null
if app is disabled or the JarFile is not stored in the database.final String
The full path to the directory (for development server) or the Jar file (production server).final String
Version of app.Constructor Summary
Method Summary
Field Details
appID
The app ID.aid
public final long aidThe App numeric ID.created
public final long createdThe 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,null
if app is disabled or the JarFile is not stored in the database.
Constructor Details
DBApp
public 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,null
if app not stored in the database.