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
FieldsModifier and TypeFieldDescriptionfinal 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 Summary
ConstructorsMethod 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,nullif 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,nullif app not stored in the database.