Class UserData

java.lang.Object
i5.las2peer.registry.data.UserData

public class UserData
extends java.lang.Object
Contains user data exactly as stored in blockchain. In the getters the fields will be converted to useful values.
  • Constructor Summary

    Constructors 
    Constructor Description
    UserData​(byte[] name, byte[] agentId, byte[] publicKey, java.lang.String ownerAddress)  
  • Method Summary

    Modifier and Type Method Description
    java.lang.String getAgentId()  
    java.lang.String getName()  
    java.lang.String getOwnerAddress()  
    java.security.PublicKey getPublicKey()  
    byte[] getRawPublicKey()
    serialized (or otherwise encoded) form of public key
    java.lang.String toString()  

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
  • Constructor Details

    • UserData

      public UserData​(byte[] name, byte[] agentId, byte[] publicKey, java.lang.String ownerAddress)
  • Method Details