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

org.ocap.system.event.CableCARDResetEvent Maven / Gradle / Ivy

There is a newer version: 1.3.1
Show newest version
/*
 * CableCARDResetEvent.java
*/

package org.ocap.system.event;

import java.lang.*;
import java.util.*;

/**
 * Events that indicate the CableCARD is about to be reset and has successfully
*  completed initialization after a reset.
 */
public class CableCARDResetEvent extends SystemEvent
{
    /**
     * CableCARD reset request to Host
     */
    public final static int CABLECARD_RESET_BEGIN =  
                 BEGIN_SYS_CABLECARD_RESET_EVENT_TYPES;

    /**
     * CableCARD reset and initialization complete
     */
    public final static int CABLECARD_RESET_COMPLETE =
                                                BEGIN_SYS_CABLECARD_RESET_EVENT_TYPES + 1;
    /**
     * System event constructor assigns an eventId, Date, and ApplicationIdentifier.
     *
     * @param typeCode - Unique event type.
     *
     * @throws IllegalArgumentException if the typeCode is not in a defined application range
     * when the event is created by an application.  Since there are no defined
     * application ranges for resource depletion events, this exception will always be
     * thrown if this constructor is called by an application.
     */
    public CableCARDResetEvent(int typeCode)
    {
        super(typeCode);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy