public class io.ebean.event.changelog.ChangeSet
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: io.ebean.event.changelog.ChangeSet
  super_class: java.lang.Object
{
  java.lang.String txnId;
    descriptor: Ljava/lang/String;
    flags: (0x0000) 

  long txnBatch;
    descriptor: J
    flags: (0x0000) 

  io.ebean.event.changelog.TxnState txnState;
    descriptor: Lio/ebean/event/changelog/TxnState;
    flags: (0x0000) 

  java.lang.String source;
    descriptor: Ljava/lang/String;
    flags: (0x0000) 

  java.lang.String userId;
    descriptor: Ljava/lang/String;
    flags: (0x0000) 

  java.lang.String userIpAddress;
    descriptor: Ljava/lang/String;
    flags: (0x0000) 

  java.util.Map<java.lang.String, java.lang.String> userContext;
    descriptor: Ljava/util/Map;
    flags: (0x0000) 
    Signature: Ljava/util/Map<Ljava/lang/String;Ljava/lang/String;>;

  java.util.List<io.ebean.event.changelog.BeanChange> changes;
    descriptor: Ljava/util/List;
    flags: (0x0000) 
    Signature: Ljava/util/List<Lio/ebean/event/changelog/BeanChange;>;

  public void <init>(java.lang.String, long);
    descriptor: (Ljava/lang/String;J)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // io.ebean.event.changelog.ChangeSet this
        start local 1 // java.lang.String txnId
        start local 2 // long txnBatch
         0: .line 57
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 52
            aload 0 /* this */
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            putfield io.ebean.event.changelog.ChangeSet.changes:Ljava/util/List;
         2: .line 58
            aload 0 /* this */
            aload 1 /* txnId */
            putfield io.ebean.event.changelog.ChangeSet.txnId:Ljava/lang/String;
         3: .line 59
            aload 0 /* this */
            lload 2 /* txnBatch */
            putfield io.ebean.event.changelog.ChangeSet.txnBatch:J
         4: .line 60
            aload 0 /* this */
            getstatic io.ebean.event.changelog.TxnState.IN_PROGRESS:Lio/ebean/event/changelog/TxnState;
            putfield io.ebean.event.changelog.ChangeSet.txnState:Lio/ebean/event/changelog/TxnState;
         5: .line 61
            return
        end local 2 // long txnBatch
        end local 1 // java.lang.String txnId
        end local 0 // io.ebean.event.changelog.ChangeSet this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    6     0      this  Lio/ebean/event/changelog/ChangeSet;
            0    6     1     txnId  Ljava/lang/String;
            0    6     2  txnBatch  J
    MethodParameters:
          Name  Flags
      txnId     
      txnBatch  

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // io.ebean.event.changelog.ChangeSet this
         0: .line 66
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 52
            aload 0 /* this */
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            putfield io.ebean.event.changelog.ChangeSet.changes:Ljava/util/List;
         2: .line 67
            return
        end local 0 // io.ebean.event.changelog.ChangeSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/ebean/event/changelog/ChangeSet;

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // io.ebean.event.changelog.ChangeSet this
         0: .line 71
            new java.lang.StringBuilder
            dup
            ldc "txnId:"
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            getfield io.ebean.event.changelog.ChangeSet.txnId:Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc " txnState:"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield io.ebean.event.changelog.ChangeSet.txnState:Lio/ebean/event/changelog/TxnState;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            ldc " txnBatch:"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield io.ebean.event.changelog.ChangeSet.txnBatch:J
            invokevirtual java.lang.StringBuilder.append:(J)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 0 // io.ebean.event.changelog.ChangeSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/ebean/event/changelog/ChangeSet;

  public int size();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.ebean.event.changelog.ChangeSet this
         0: .line 78
            aload 0 /* this */
            getfield io.ebean.event.changelog.ChangeSet.changes:Ljava/util/List;
            invokeinterface java.util.List.size:()I
            ireturn
        end local 0 // io.ebean.event.changelog.ChangeSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/ebean/event/changelog/ChangeSet;

  public void addBeanChange(io.ebean.event.changelog.BeanChange);
    descriptor: (Lio/ebean/event/changelog/BeanChange;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.ebean.event.changelog.ChangeSet this
        start local 1 // io.ebean.event.changelog.BeanChange beanChange
         0: .line 85
            aload 0 /* this */
            getfield io.ebean.event.changelog.ChangeSet.changes:Ljava/util/List;
            aload 1 /* beanChange */
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
         1: .line 86
            return
        end local 1 // io.ebean.event.changelog.BeanChange beanChange
        end local 0 // io.ebean.event.changelog.ChangeSet this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    2     0        this  Lio/ebean/event/changelog/ChangeSet;
            0    2     1  beanChange  Lio/ebean/event/changelog/BeanChange;
    MethodParameters:
            Name  Flags
      beanChange  

  public java.lang.String getTxnId();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.ebean.event.changelog.ChangeSet this
         0: .line 92
            aload 0 /* this */
            getfield io.ebean.event.changelog.ChangeSet.txnId:Ljava/lang/String;
            areturn
        end local 0 // io.ebean.event.changelog.ChangeSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/ebean/event/changelog/ChangeSet;

  public void setTxnId(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.ebean.event.changelog.ChangeSet this
        start local 1 // java.lang.String txnId
         0: .line 99
            aload 0 /* this */
            aload 1 /* txnId */
            putfield io.ebean.event.changelog.ChangeSet.txnId:Ljava/lang/String;
         1: .line 100
            return
        end local 1 // java.lang.String txnId
        end local 0 // io.ebean.event.changelog.ChangeSet this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/ebean/event/changelog/ChangeSet;
            0    2     1  txnId  Ljava/lang/String;
    MethodParameters:
       Name  Flags
      txnId  

  public long getTxnBatch();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.ebean.event.changelog.ChangeSet this
         0: .line 106
            aload 0 /* this */
            getfield io.ebean.event.changelog.ChangeSet.txnBatch:J
            lreturn
        end local 0 // io.ebean.event.changelog.ChangeSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/ebean/event/changelog/ChangeSet;

  public void setTxnBatch(long);
    descriptor: (J)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // io.ebean.event.changelog.ChangeSet this
        start local 1 // long txnBatch
         0: .line 113
            aload 0 /* this */
            lload 1 /* txnBatch */
            putfield io.ebean.event.changelog.ChangeSet.txnBatch:J
         1: .line 114
            return
        end local 1 // long txnBatch
        end local 0 // io.ebean.event.changelog.ChangeSet this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lio/ebean/event/changelog/ChangeSet;
            0    2     1  txnBatch  J
    MethodParameters:
          Name  Flags
      txnBatch  

  public io.ebean.event.changelog.TxnState getTxnState();
    descriptor: ()Lio/ebean/event/changelog/TxnState;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.ebean.event.changelog.ChangeSet this
         0: .line 121
            aload 0 /* this */
            getfield io.ebean.event.changelog.ChangeSet.txnState:Lio/ebean/event/changelog/TxnState;
            areturn
        end local 0 // io.ebean.event.changelog.ChangeSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/ebean/event/changelog/ChangeSet;

  public void setTxnState(io.ebean.event.changelog.TxnState);
    descriptor: (Lio/ebean/event/changelog/TxnState;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.ebean.event.changelog.ChangeSet this
        start local 1 // io.ebean.event.changelog.TxnState txnState
         0: .line 128
            aload 0 /* this */
            aload 1 /* txnState */
            putfield io.ebean.event.changelog.ChangeSet.txnState:Lio/ebean/event/changelog/TxnState;
         1: .line 129
            return
        end local 1 // io.ebean.event.changelog.TxnState txnState
        end local 0 // io.ebean.event.changelog.ChangeSet this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lio/ebean/event/changelog/ChangeSet;
            0    2     1  txnState  Lio/ebean/event/changelog/TxnState;
    MethodParameters:
          Name  Flags
      txnState  

  public java.lang.String getSource();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.ebean.event.changelog.ChangeSet this
         0: .line 135
            aload 0 /* this */
            getfield io.ebean.event.changelog.ChangeSet.source:Ljava/lang/String;
            areturn
        end local 0 // io.ebean.event.changelog.ChangeSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/ebean/event/changelog/ChangeSet;

  public void setSource(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.ebean.event.changelog.ChangeSet this
        start local 1 // java.lang.String source
         0: .line 142
            aload 0 /* this */
            aload 1 /* source */
            putfield io.ebean.event.changelog.ChangeSet.source:Ljava/lang/String;
         1: .line 143
            return
        end local 1 // java.lang.String source
        end local 0 // io.ebean.event.changelog.ChangeSet this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lio/ebean/event/changelog/ChangeSet;
            0    2     1  source  Ljava/lang/String;
    MethodParameters:
        Name  Flags
      source  

  public java.lang.String getUserId();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.ebean.event.changelog.ChangeSet this
         0: .line 149
            aload 0 /* this */
            getfield io.ebean.event.changelog.ChangeSet.userId:Ljava/lang/String;
            areturn
        end local 0 // io.ebean.event.changelog.ChangeSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/ebean/event/changelog/ChangeSet;

  public void setUserId(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.ebean.event.changelog.ChangeSet this
        start local 1 // java.lang.String userId
         0: .line 160
            aload 0 /* this */
            aload 1 /* userId */
            putfield io.ebean.event.changelog.ChangeSet.userId:Ljava/lang/String;
         1: .line 161
            return
        end local 1 // java.lang.String userId
        end local 0 // io.ebean.event.changelog.ChangeSet this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lio/ebean/event/changelog/ChangeSet;
            0    2     1  userId  Ljava/lang/String;
    MethodParameters:
        Name  Flags
      userId  

  public java.lang.String getUserIpAddress();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.ebean.event.changelog.ChangeSet this
         0: .line 167
            aload 0 /* this */
            getfield io.ebean.event.changelog.ChangeSet.userIpAddress:Ljava/lang/String;
            areturn
        end local 0 // io.ebean.event.changelog.ChangeSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/ebean/event/changelog/ChangeSet;

  public void setUserIpAddress(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.ebean.event.changelog.ChangeSet this
        start local 1 // java.lang.String userIpAddress
         0: .line 178
            aload 0 /* this */
            aload 1 /* userIpAddress */
            putfield io.ebean.event.changelog.ChangeSet.userIpAddress:Ljava/lang/String;
         1: .line 179
            return
        end local 1 // java.lang.String userIpAddress
        end local 0 // io.ebean.event.changelog.ChangeSet this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    2     0           this  Lio/ebean/event/changelog/ChangeSet;
            0    2     1  userIpAddress  Ljava/lang/String;
    MethodParameters:
               Name  Flags
      userIpAddress  

  public java.util.Map<java.lang.String, java.lang.String> getUserContext();
    descriptor: ()Ljava/util/Map;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // io.ebean.event.changelog.ChangeSet this
         0: .line 185
            aload 0 /* this */
            getfield io.ebean.event.changelog.ChangeSet.userContext:Ljava/util/Map;
            ifnonnull 2
         1: .line 186
            aload 0 /* this */
            new java.util.LinkedHashMap
            dup
            invokespecial java.util.LinkedHashMap.<init>:()V
            putfield io.ebean.event.changelog.ChangeSet.userContext:Ljava/util/Map;
         2: .line 188
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.ebean.event.changelog.ChangeSet.userContext:Ljava/util/Map;
            areturn
        end local 0 // io.ebean.event.changelog.ChangeSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/ebean/event/changelog/ChangeSet;
    Signature: ()Ljava/util/Map<Ljava/lang/String;Ljava/lang/String;>;

  public void setUserContext(java.util.Map<java.lang.String, java.lang.String>);
    descriptor: (Ljava/util/Map;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.ebean.event.changelog.ChangeSet this
        start local 1 // java.util.Map userContext
         0: .line 199
            aload 0 /* this */
            aload 1 /* userContext */
            putfield io.ebean.event.changelog.ChangeSet.userContext:Ljava/util/Map;
         1: .line 200
            return
        end local 1 // java.util.Map userContext
        end local 0 // io.ebean.event.changelog.ChangeSet this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    2     0         this  Lio/ebean/event/changelog/ChangeSet;
            0    2     1  userContext  Ljava/util/Map<Ljava/lang/String;Ljava/lang/String;>;
    Signature: (Ljava/util/Map<Ljava/lang/String;Ljava/lang/String;>;)V
    MethodParameters:
             Name  Flags
      userContext  

  public java.util.List<io.ebean.event.changelog.BeanChange> getChanges();
    descriptor: ()Ljava/util/List;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.ebean.event.changelog.ChangeSet this
         0: .line 206
            aload 0 /* this */
            getfield io.ebean.event.changelog.ChangeSet.changes:Ljava/util/List;
            areturn
        end local 0 // io.ebean.event.changelog.ChangeSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/ebean/event/changelog/ChangeSet;
    Signature: ()Ljava/util/List<Lio/ebean/event/changelog/BeanChange;>;

  public void setChanges(java.util.List<io.ebean.event.changelog.BeanChange>);
    descriptor: (Ljava/util/List;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.ebean.event.changelog.ChangeSet this
        start local 1 // java.util.List changes
         0: .line 213
            aload 0 /* this */
            aload 1 /* changes */
            putfield io.ebean.event.changelog.ChangeSet.changes:Ljava/util/List;
         1: .line 214
            return
        end local 1 // java.util.List changes
        end local 0 // io.ebean.event.changelog.ChangeSet this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lio/ebean/event/changelog/ChangeSet;
            0    2     1  changes  Ljava/util/List<Lio/ebean/event/changelog/BeanChange;>;
    Signature: (Ljava/util/List<Lio/ebean/event/changelog/BeanChange;>;)V
    MethodParameters:
         Name  Flags
      changes  
}
SourceFile: "ChangeSet.java"