Interface OwnableState

  • All Implemented Interfaces:
    net.corda.core.contracts.ContractState

    
    public interface OwnableState
     implements ContractState
                        

    A contract state that can have a single owner.

    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
    • Field Summary

      Fields 
      Modifier and Type Field Description
    • Constructor Summary

      Constructors 
      Constructor Description
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
    • Method Summary

      Modifier and Type Method Description
      abstract CommandAndState withNewOwner(AbstractParty newOwner) Copies the underlying data structure, replacing the owner field with this new value and leaving the rest alone.
      abstract AbstractParty getOwner() There must be a MoveCommand signed by this key to claim the amount.
      • Methods inherited from class net.corda.core.contracts.ContractState

        getParticipants
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail