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

net.sf.scuba.smartcards.CardTerminalEvent Maven / Gradle / Ivy

There is a newer version: 0.0.21
Show newest version
/*
 * This file is part of the SCUBA smart card framework.
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 *
 * Copyright (C) 2009 - 2018  The SCUBA team.
 *
 * $Id: CardTerminalEvent.java 307 2018-01-15 13:39:38Z martijno $
 */

package net.sf.scuba.smartcards;

import java.util.EventObject;

import javax.smartcardio.CardTerminal;

/**
 * Event for terminal addition and removal.
 *
 * @author Pim Vullers ([email protected])
 *
 * @version $Revision: 307 $
 */
public class CardTerminalEvent extends EventObject {

  private static final long serialVersionUID = 8884602877518044124L;

  /** Event type constant. */
  public static final int REMOVED = 0;

  /** Event type constant. */
  public static final int ADDED = 1;

  private int type;
  private transient CardTerminal terminal;

  /**
   * Creates an event.
   *
   * @param type event type
   * @param terminal event source
   */
  public CardTerminalEvent(int type, CardTerminal terminal) {
    super(terminal);
    this.type = type;
    this.terminal = terminal;
  }

  /**
   * Gets the event type.
   *
   * @return event type
   */
  public int getType() {
    return type;
  }

  /**
   * Gets the event source.
   *
   * @return event source
   */
  public CardTerminal getTerminal() {
    return terminal;
  }

  /**
   * Gets a textual representation of this event.
   *
   * @return a textual representation of this event
   */
  @Override
  public String toString() {
    switch (type) {
      case REMOVED:
        return "Terminal '" + terminal + "' removed";
      case ADDED:
        return "Terminal '" + terminal + "' added";
      default:
        return "CardTerminalEvent " + terminal;
    }
  }

  /**
   * Whether this event is equal to the event in other.
   *
   * @return a boolean
   */
  @Override
  public boolean equals(Object other) {
    if (other == null) {
      return false;
    }
    if (other == this) {
      return true;
    }
    if (!other.getClass().equals(this.getClass())) {
      return false;
    }
    CardTerminalEvent otherCardTerminalEvent = (CardTerminalEvent)other;
    return type == otherCardTerminalEvent.type && terminal.equals(otherCardTerminalEvent.terminal);
  }

  /**
   * Gets a hash code for this event.
   *
   * @return a hash code for this event
   */
  @Override
  public int hashCode() {
    return 5 * terminal.hashCode() + 7 * type;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy