All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.ocap.shared.dvr.RecordingSpec Maven / Gradle / Ivy

There is a newer version: 1.3.1
Show newest version
package org.ocap.shared.dvr;

/**
 * Base class for specifying what to record and how to record it.
 */
public abstract class RecordingSpec
{
    /**
     * Constructor.
     *
     * @param properties The definition of how the recording is to be done.
     */
    public RecordingSpec(RecordingProperties properties)
    {
    }

    /**
     * Return the description of how the recording is to be done.
     *
     * @return The properties to use for the recording.
     */
    public RecordingProperties getProperties()
    {
        return null;
    }
}






© 2015 - 2024 Weber Informatics LLC | Privacy Policy