Codota Logo
HardwareWalletEventType
Code IndexAdd Codota to your IDE (free)

How to use
HardwareWalletEventType
in
org.multibit.hd.hardware.core.events

Best Java code snippets using org.multibit.hd.hardware.core.events.HardwareWalletEventType (Showing top 12 results out of 315)

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
StringBuilder s =
  • Codota Iconnew StringBuilder()
  • Codota Iconnew StringBuilder(32)
  • Codota IconString str;new StringBuilder(str)
  • Smart code suggestions by Codota
}
origin: Multibit-Legacy/multibit-hardware

 @Override
 public void onFailure(Throwable t) {
  log.error("Failed to complete 'hardware wallet' event: {}", eventType.name(), t);
 }
});
origin: Multibit-Legacy/multibit-hardware

@Override
public void onSuccess(Boolean result) {
 log.debug("Completed 'hardware wallet' event: {}", eventType.name());
}
origin: Multibit-Legacy/multibit-hardware

 @Override
 public void onFailure(Throwable t) {
  log.error("Failed to complete 'hardware wallet' event: {}", eventType.name(), t);
 }
});
origin: Multibit-Legacy/multibit-hardware

@Override
public void onSuccess(Boolean result) {
 log.debug("Completed 'hardware wallet' event: {}", eventType.name());
}
origin: Multibit-Legacy/multibit-hardware

 @Override
 public Boolean call() {
  log.debug("Firing 'hardware wallet' event: {} for {}", eventType.name(), source);
  hardwareWalletEventBus.post(
   new HardwareWalletEvent(
    eventType,
    Optional.<HardwareWalletMessage>absent(),
    source));
  // Must be OK to be here
  return true;
 }
});
origin: Multibit-Legacy/multibit-hardware

 @Override
 public Boolean call() {
  log.debug("Firing 'hardware wallet' event: {} for {}", eventType.name(), source);
  hardwareWalletEventBus.post(
   new HardwareWalletEvent(
    eventType,
    Optional.of(message),
    source));
  // Must be OK to be here
  return true;
 }
});
origin: Multibit-Legacy/multibit-hd

@Override
public void showButtonPress(HardwareWalletEvent event) {
 log.debug("Received hardware event: '{}'.{}", event.getEventType().name(), event.getMessage());
 // Ensure we transition to the confirm screen
 state = SignMessageState.SIGN_MESSAGE_HARDWARE_CONFIRM_SIGN;
}
origin: Multibit-Legacy/multibit-hd

log.debug("Received hardware event: '{}'", event.getEventType().name());
origin: martin-lizner/trezor-ssh-agent

Logger.getLogger(DeviceService.class.getName()).log(Level.INFO, "Received USB event: {0}", new Object[]{event.getEventType().name()});
Logger.getLogger(DeviceService.class.getName()).log(Level.FINE, "Received USB event message: {0}", new Object[]{event.getMessage()});
origin: Multibit-Legacy/multibit-hd

public void onHardwareWalletEvent(HardwareWalletEvent event) {
 log.debug("{} Received hardware event: '{}'.", this, event.getEventType().name());
   break;
  default:
   log.warn("Unknown hardware wallet event type: {}", event.getEventType().name());
   break;
origin: Multibit-Legacy/multibit-hd

@Override
public void showButtonPress(HardwareWalletEvent event) {
 log.debug("Received hardware event: '{}'.{}", event.getEventType().name(), event.getMessage());
origin: Multibit-Legacy/multibit-hd

@Override
public void showButtonPress(HardwareWalletEvent event) {
 log.debug("Received hardware event: '{}'.{}", event.getEventType().name(), event.getMessage());
org.multibit.hd.hardware.core.eventsHardwareWalletEventType

Javadoc

Enum to provide the following to application:

  • Identification of high level events for downstream consumers

A high level event provides sufficient information for a downstream consumer to present appropriate information to the user and handle the subsequent response. They allow the hardware wallet to make assumptions about what is being shown on the user interface.

These high level messages are considered to be common across all hardware wallets supported through MultiBit Hardware.

Most used methods

  • name

Popular in Java

  • Reading from database using SQL prepared statement
  • onRequestPermissionsResult (Fragment)
  • compareTo (BigDecimal)
    Compares this BigDecimal with the specified BigDecimal. Two BigDecimal objects that are equal in val
  • setScale (BigDecimal)
    Returns a BigDecimal whose scale is the specified value, and whose value is numerically equal to thi
  • BufferedInputStream (java.io)
    Wraps an existing InputStream and buffers the input. Expensive interaction with the underlying input
  • File (java.io)
    An "abstract" representation of a file system entity identified by a pathname. The pathname may be a
  • PrintWriter (java.io)
    Prints formatted representations of objects to a text-output stream. This class implements all of th
  • HashSet (java.util)
    This class implements the Set interface, backed by a hash table (actually a HashMap instance). It m
  • ImageIO (javax.imageio)
  • JTextField (javax.swing)
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now