Uses of Class
org.dvb.application.AppID

Packages that use AppID
org.dvb.application Provides access to lists of applications which are available in this context and the ability to launch those applications. 
org.dvb.application.plugins Provides support for inter-operable plug-ins in the GEM specification. 
org.dvb.application.storage Provides support for storage of applications. 
org.oipf.download This package enables downloading of arbitrary content. 
 

Uses of AppID in org.dvb.application
 

Methods in org.dvb.application that return AppID
 AppID AppStateChangeEvent.getAppID()
          The application the listener was tracking has made a state transition from fromState to toState.
 AppID AppsDatabaseEvent.getAppID()
          gets the application ID object for the entry in the database that changed.
 AppID AppAttributes.getIdentifier()
          This method returns the application identifier.
 

Methods in org.dvb.application with parameters of type AppID
 boolean RunningApplicationsFilter.accept(AppID appid)
          Test if a specified appid should be included in the Enumeration.
 boolean CurrentServiceFilter.accept(AppID appid)
          Test if a specified appid should be included in the Enumeration.
abstract  boolean AppsDatabaseFilter.accept(AppID appid)
          Test if a specified appid should be included in the Enumeration.
 AppAttributes AppsDatabase.getAppAttributes(AppID key)
          Returns the properties associated with the given ID.
 AppProxy AppsDatabase.getAppProxy(AppID key)
          Returns the ApplicationProxy associated with the given ID.
 

Constructors in org.dvb.application with parameters of type AppID
AppsDatabaseEvent(int id, AppID appid, java.lang.Object source)
          Create a new AppsDatabaseEvent object for the entry in the database that changed, or for a new database.
AppStateChangeEvent(AppID appid, int fromstate, int tostate, java.lang.Object source, boolean hasFailed)
          Create an AppStateChangeEvent object.
 

Uses of AppID in org.dvb.application.plugins
 

Constructors in org.dvb.application.plugins with parameters of type AppID
ApplicationSecurityContext(java.net.URL[] path, java.net.URL entryPoint, AppID appID)
          Creates a new security context for an application whose code can be found on the path supplied, and whose entry point directory is as given.
 

Uses of AppID in org.dvb.application.storage
 

Methods in org.dvb.application.storage that return AppID
 AppID[] ApplicationStorageController.getStoredAppIDs()
          Lists the AppIDs of the applications that are stored within this service.
abstract  AppID[] ApplicationCache.getStoredAppIDs()
          Lists the AppIDs of the applications that are stored within this cache.
 

Methods in org.dvb.application.storage with parameters of type AppID
 int ApplicationStorageController.getVersionNumber(AppID appId)
          Return the version number of the stored application whose AppID is given as a parameter.
abstract  int ApplicationCache.getVersionNumber(AppID appId)
          Return the version number of the stored application whose AppID is given as a parameter.
 void ApplicationStorageController.remove(AppID appId)
          Removes a stored application from this service.
abstract  void ApplicationCache.remove(AppID appId)
          Requests the GEM terminal to initiate the removal of an application stored in the GEM terminal from this cache.
 void ApplicationStorageController.remove(AppID[] appIds)
          Removes multiple stored applications from this service.
 void ApplicationStorageListener.storageCompleted(AppID id)
          Called when a storage operation is successfully completed.
 void ApplicationStorageListener.storageFailed(AppID id, java.lang.Exception failureMode)
          Called if a storage operation fails.
 void ApplicationStorageListener.storageUpdate(AppID id, byte completion, int size)
          Called at 1 second intervals after a storage operation starts until it completes.
 void ApplicationStorageController.store(Locator locator, AppID[] apps, boolean[] autoStart, java.lang.String[][] args, ApplicationStorageListener listener)
          Installs several applications into this stored service.
 

Uses of AppID in org.oipf.download
 

Methods in org.oipf.download that return AppID
 AppID ApplicationDownloadSpec.getAppID()
          Return the application ID specified.
 

Constructors in org.oipf.download with parameters of type AppID
ApplicationDownloadSpec(AppID app, java.lang.String source, org.ocap.shared.dvr.RecordingProperties properties)
          Create a request for content download by application.