Uses of Interface
org.ocap.shared.dvr.RecordingRequest

Packages that use RecordingRequest
org.ocap.dvr Provides extension classes and interfaces to the shared DVR APIs. 
org.ocap.dvr.event Manages stream events in store content. 
org.ocap.shared.dvr The shared DVR API for scheduling and managing recording requests. 
org.ocap.shared.dvr.navigation Provides support for Navigation of recording lists. 
 

Uses of RecordingRequest in org.ocap.dvr
 

Subinterfaces of RecordingRequest in org.ocap.dvr
 interface OcapRecordingRequest
          This interface represents a LeafRecordingRequest in OCAP.
 

Methods in org.ocap.dvr that return RecordingRequest
 RecordingRequest RecordingResourceUsage.getRecordingRequest()
          Gets the RecordingRequest associated with the set of resources contained in the usage and initiated by the application returned by the base ResourceUsage.getAppID method.
 RecordingRequest RecordingAlertEvent.getRecordingRequest()
          Returns the RecordingRequest that caused the event.
abstract  RecordingRequest OcapRecordingManager.record(RecordingSpec source, String[] keys, Serializable[] appData)
          Records the stream or streams according to the source parameter.
abstract  RecordingRequest OcapRecordingManager.resolve(RecordingRequest request, RecordingSpec spec, int resolutionState)
          Schedule a child recording request corresponding to an unresolved or partially resolved recording request.
 

Methods in org.ocap.dvr with parameters of type RecordingRequest
abstract  ResourceUsage[] OcapRecordingManager.getPrioritizedResourceUsages(RecordingRequest recording)
          Get the prioritized list of overlapping ResourceUsages corresponding to a particular recording request.
 void RequestResolutionHandler.requestResolution(RecordingRequest request)
          This method would be invoked by the implementation when an unresolved recording request is scheduled in response to an application calling the record(..) method of the RecordingManager.
abstract  RecordingRequest OcapRecordingManager.resolve(RecordingRequest request, RecordingSpec spec, int resolutionState)
          Schedule a child recording request corresponding to an unresolved or partially resolved recording request.
 

Constructors in org.ocap.dvr with parameters of type RecordingRequest
RecordingAlertEvent(RecordingRequest source)
          Constructs the event.
 

Uses of RecordingRequest in org.ocap.dvr.event
 

Methods in org.ocap.dvr.event that return RecordingRequest
 RecordingRequest LightweightTriggerSession.getRecordingRequest()
          Gets an in-progress recording request for this session.
 

Uses of RecordingRequest in org.ocap.shared.dvr
 

Subinterfaces of RecordingRequest in org.ocap.shared.dvr
 interface LeafRecordingRequest
          This interface represents information corresponding to a leaf level recording request.
 interface ParentRecordingRequest
          This interface represents information corresponding to a parent recording request.
 

Methods in org.ocap.shared.dvr that return RecordingRequest
 RecordingRequest RecordingRequest.getParent()
          Gets the parent recording request corresponding to this recording request.
 RecordingRequest RecordingChangedEvent.getRecordingRequest()
          Returns the RecordingRequest that caused the event.
 RecordingRequest RecordedService.getRecordingRequest()
          Gets the RecordingRequest corresponding to the RecordedService.
abstract  RecordingRequest RecordingManager.getRecordingRequest(int id)
          Look up a recording request from the identifier.
 RecordingRequest RecordingRequest.getRoot()
          Gets the root recording request corresponding to this recording request.
abstract  RecordingRequest RecordingManager.record(RecordingSpec source)
          Requests the recording of the stream or streams according to the source parameter.
 

Constructors in org.ocap.shared.dvr with parameters of type RecordingRequest
RecordingChangedEvent(RecordingRequest source, int newState, int oldState)
          Constructs the event.
RecordingChangedEvent(RecordingRequest source, int newState, int oldState, int type)
          Constructs the event.
 

Uses of RecordingRequest in org.ocap.shared.dvr.navigation
 

Methods in org.ocap.shared.dvr.navigation that return RecordingRequest
 RecordingRequest RecordingListIterator.getEntry(int index)
          Gets the RecordingRequest object at the specified position.
 RecordingRequest RecordingList.getRecordingRequest(int index)
          Reports the RecordingRequest at the specified index position.
 RecordingRequest[] RecordingListIterator.nextEntries(int n)
          Gets the next 'n' RecordingRequest objects in the list.
 RecordingRequest RecordingListIterator.nextEntry()
          Gets the next RecordingRequest object in the list.
 RecordingRequest[] RecordingListIterator.previousEntries(int n)
          Gets the previous 'n' RecordingRequest objects in the list.
 RecordingRequest RecordingListIterator.previousEntry()
          Gets the previous RecordingRequest object in the list.
 

Methods in org.ocap.shared.dvr.navigation with parameters of type RecordingRequest
 boolean RecordingStateFilter.accept(RecordingRequest entry)
          Tests if the given RecordingRequest passes the filter.
abstract  boolean RecordingListFilter.accept(RecordingRequest entry)
          Tests if a particular entry passes this filter.
 boolean OrgIDFilter.accept(RecordingRequest entry)
          Tests if the given RecordingRequest passes the filter.
 boolean AppIDFilter.accept(RecordingRequest entry)
          Tests if the given RecordingRequest passes the filter.
 int RecordingListComparator.compare(RecordingRequest first, RecordingRequest second)
          Compares two entries to check whether the first entry should be placed ahead of the second entry in the iterator list.
 boolean RecordingList.contains(RecordingRequest entry)
          Tests if the indicated RecordingRequest object is contained in the list.
 int RecordingListIterator.getPosition(RecordingRequest entry)
          Gets the position of a specified recording request in the list.
 int RecordingList.indexOf(RecordingRequest entry)
          Reports the position of the first occurrence of the indicated RecordingRequest object in the list.