public class io.ebeaninternal.server.deploy.ChainedBeanPersistController implements io.ebean.event.BeanPersistController
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: io.ebeaninternal.server.deploy.ChainedBeanPersistController
  super_class: java.lang.Object
{
  private static final io.ebeaninternal.server.deploy.ChainedBeanPersistController$Sorter SORTER;
    descriptor: Lio/ebeaninternal/server/deploy/ChainedBeanPersistController$Sorter;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  private final java.util.List<io.ebean.event.BeanPersistController> list;
    descriptor: Ljava/util/List;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/List<Lio/ebean/event/BeanPersistController;>;

  private final io.ebean.event.BeanPersistController[] chain;
    descriptor: [Lio/ebean/event/BeanPersistController;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=0, args_size=0
         0: .line 19
            new io.ebeaninternal.server.deploy.ChainedBeanPersistController$Sorter
            dup
            invokespecial io.ebeaninternal.server.deploy.ChainedBeanPersistController$Sorter.<init>:()V
            putstatic io.ebeaninternal.server.deploy.ChainedBeanPersistController.SORTER:Lio/ebeaninternal/server/deploy/ChainedBeanPersistController$Sorter;
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>(io.ebean.event.BeanPersistController, io.ebean.event.BeanPersistController);
    descriptor: (Lio/ebean/event/BeanPersistController;Lio/ebean/event/BeanPersistController;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.ebeaninternal.server.deploy.ChainedBeanPersistController this
        start local 1 // io.ebean.event.BeanPersistController c1
        start local 2 // io.ebean.event.BeanPersistController c2
         0: .line 29
            aload 0 /* this */
            aload 1 /* c1 */
            aload 2 /* c2 */
            invokestatic io.ebeaninternal.server.deploy.ChainedBeanPersistController.addList:(Lio/ebean/event/BeanPersistController;Lio/ebean/event/BeanPersistController;)Ljava/util/List;
            invokespecial io.ebeaninternal.server.deploy.ChainedBeanPersistController.<init>:(Ljava/util/List;)V
         1: .line 30
            return
        end local 2 // io.ebean.event.BeanPersistController c2
        end local 1 // io.ebean.event.BeanPersistController c1
        end local 0 // io.ebeaninternal.server.deploy.ChainedBeanPersistController this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/ebeaninternal/server/deploy/ChainedBeanPersistController;
            0    2     1    c1  Lio/ebean/event/BeanPersistController;
            0    2     2    c2  Lio/ebean/event/BeanPersistController;
    MethodParameters:
      Name  Flags
      c1    
      c2    

  private static java.util.List<io.ebean.event.BeanPersistController> addList(io.ebean.event.BeanPersistController, io.ebean.event.BeanPersistController);
    descriptor: (Lio/ebean/event/BeanPersistController;Lio/ebean/event/BeanPersistController;)Ljava/util/List;
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // io.ebean.event.BeanPersistController c1
        start local 1 // io.ebean.event.BeanPersistController c2
         0: .line 36
            new java.util.ArrayList
            dup
            iconst_2
            invokespecial java.util.ArrayList.<init>:(I)V
            astore 2 /* addList */
        start local 2 // java.util.ArrayList addList
         1: .line 37
            aload 2 /* addList */
            aload 0 /* c1 */
            invokevirtual java.util.ArrayList.add:(Ljava/lang/Object;)Z
            pop
         2: .line 38
            aload 2 /* addList */
            aload 1 /* c2 */
            invokevirtual java.util.ArrayList.add:(Ljava/lang/Object;)Z
            pop
         3: .line 39
            aload 2 /* addList */
            areturn
        end local 2 // java.util.ArrayList addList
        end local 1 // io.ebean.event.BeanPersistController c2
        end local 0 // io.ebean.event.BeanPersistController c1
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    4     0       c1  Lio/ebean/event/BeanPersistController;
            0    4     1       c2  Lio/ebean/event/BeanPersistController;
            1    4     2  addList  Ljava/util/ArrayList<Lio/ebean/event/BeanPersistController;>;
    Signature: (Lio/ebean/event/BeanPersistController;Lio/ebean/event/BeanPersistController;)Ljava/util/List<Lio/ebean/event/BeanPersistController;>;
    MethodParameters:
      Name  Flags
      c1    
      c2    

  public void <init>(java.util.List<io.ebean.event.BeanPersistController>);
    descriptor: (Ljava/util/List;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // io.ebeaninternal.server.deploy.ChainedBeanPersistController this
        start local 1 // java.util.List list
         0: .line 45
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 46
            aload 0 /* this */
            aload 1 /* list */
            putfield io.ebeaninternal.server.deploy.ChainedBeanPersistController.list:Ljava/util/List;
         2: .line 47
            aload 1 /* list */
            iconst_0
            anewarray io.ebean.event.BeanPersistController
            invokeinterface java.util.List.toArray:([Ljava/lang/Object;)[Ljava/lang/Object;
            checkcast io.ebean.event.BeanPersistController[]
            astore 2 /* c */
        start local 2 // io.ebean.event.BeanPersistController[] c
         3: .line 48
            aload 2 /* c */
            getstatic io.ebeaninternal.server.deploy.ChainedBeanPersistController.SORTER:Lio/ebeaninternal/server/deploy/ChainedBeanPersistController$Sorter;
            invokestatic java.util.Arrays.sort:([Ljava/lang/Object;Ljava/util/Comparator;)V
         4: .line 49
            aload 0 /* this */
            aload 2 /* c */
            putfield io.ebeaninternal.server.deploy.ChainedBeanPersistController.chain:[Lio/ebean/event/BeanPersistController;
         5: .line 50
            return
        end local 2 // io.ebean.event.BeanPersistController[] c
        end local 1 // java.util.List list
        end local 0 // io.ebeaninternal.server.deploy.ChainedBeanPersistController this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lio/ebeaninternal/server/deploy/ChainedBeanPersistController;
            0    6     1  list  Ljava/util/List<Lio/ebean/event/BeanPersistController;>;
            3    6     2     c  [Lio/ebean/event/BeanPersistController;
    Signature: (Ljava/util/List<Lio/ebean/event/BeanPersistController;>;)V
    MethodParameters:
      Name  Flags
      list  

  protected int size();
    descriptor: ()I
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.ebeaninternal.server.deploy.ChainedBeanPersistController this
         0: .line 56
            aload 0 /* this */
            getfield io.ebeaninternal.server.deploy.ChainedBeanPersistController.chain:[Lio/ebean/event/BeanPersistController;
            arraylength
            ireturn
        end local 0 // io.ebeaninternal.server.deploy.ChainedBeanPersistController this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/ebeaninternal/server/deploy/ChainedBeanPersistController;

  public io.ebeaninternal.server.deploy.ChainedBeanPersistController register(io.ebean.event.BeanPersistController);
    descriptor: (Lio/ebean/event/BeanPersistController;)Lio/ebeaninternal/server/deploy/ChainedBeanPersistController;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // io.ebeaninternal.server.deploy.ChainedBeanPersistController this
        start local 1 // io.ebean.event.BeanPersistController c
         0: .line 63
            aload 0 /* this */
            getfield io.ebeaninternal.server.deploy.ChainedBeanPersistController.list:Ljava/util/List;
            aload 1 /* c */
            invokeinterface java.util.List.contains:(Ljava/lang/Object;)Z
            ifeq 2
         1: .line 64
            aload 0 /* this */
            areturn
         2: .line 66
      StackMap locals:
      StackMap stack:
            new java.util.ArrayList
            dup
            aload 0 /* this */
            getfield io.ebeaninternal.server.deploy.ChainedBeanPersistController.list:Ljava/util/List;
            invokespecial java.util.ArrayList.<init>:(Ljava/util/Collection;)V
            astore 2 /* newList */
        start local 2 // java.util.List newList
         3: .line 67
            aload 2 /* newList */
            aload 1 /* c */
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
         4: .line 69
            new io.ebeaninternal.server.deploy.ChainedBeanPersistController
            dup
            aload 2 /* newList */
            invokespecial io.ebeaninternal.server.deploy.ChainedBeanPersistController.<init>:(Ljava/util/List;)V
            areturn
        end local 2 // java.util.List newList
        end local 1 // io.ebean.event.BeanPersistController c
        end local 0 // io.ebeaninternal.server.deploy.ChainedBeanPersistController this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    5     0     this  Lio/ebeaninternal/server/deploy/ChainedBeanPersistController;
            0    5     1        c  Lio/ebean/event/BeanPersistController;
            3    5     2  newList  Ljava/util/List<Lio/ebean/event/BeanPersistController;>;
    MethodParameters:
      Name  Flags
      c     

  public io.ebeaninternal.server.deploy.ChainedBeanPersistController deregister(io.ebean.event.BeanPersistController);
    descriptor: (Lio/ebean/event/BeanPersistController;)Lio/ebeaninternal/server/deploy/ChainedBeanPersistController;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // io.ebeaninternal.server.deploy.ChainedBeanPersistController this
        start local 1 // io.ebean.event.BeanPersistController c
         0: .line 77
            aload 0 /* this */
            getfield io.ebeaninternal.server.deploy.ChainedBeanPersistController.list:Ljava/util/List;
            aload 1 /* c */
            invokeinterface java.util.List.contains:(Ljava/lang/Object;)Z
            ifne 2
         1: .line 78
            aload 0 /* this */
            areturn
         2: .line 80
      StackMap locals:
      StackMap stack:
            new java.util.ArrayList
            dup
            aload 0 /* this */
            getfield io.ebeaninternal.server.deploy.ChainedBeanPersistController.list:Ljava/util/List;
            invokespecial java.util.ArrayList.<init>:(Ljava/util/Collection;)V
            astore 2 /* newList */
        start local 2 // java.util.List newList
         3: .line 81
            aload 2 /* newList */
            aload 1 /* c */
            invokeinterface java.util.List.remove:(Ljava/lang/Object;)Z
            pop
         4: .line 83
            new io.ebeaninternal.server.deploy.ChainedBeanPersistController
            dup
            aload 2 /* newList */
            invokespecial io.ebeaninternal.server.deploy.ChainedBeanPersistController.<init>:(Ljava/util/List;)V
            areturn
        end local 2 // java.util.List newList
        end local 1 // io.ebean.event.BeanPersistController c
        end local 0 // io.ebeaninternal.server.deploy.ChainedBeanPersistController this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    5     0     this  Lio/ebeaninternal/server/deploy/ChainedBeanPersistController;
            0    5     1        c  Lio/ebean/event/BeanPersistController;
            3    5     2  newList  Ljava/util/List<Lio/ebean/event/BeanPersistController;>;
    MethodParameters:
      Name  Flags
      c     

  public int getExecutionOrder();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.ebeaninternal.server.deploy.ChainedBeanPersistController this
         0: .line 92
            iconst_0
            ireturn
        end local 0 // io.ebeaninternal.server.deploy.ChainedBeanPersistController this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/ebeaninternal/server/deploy/ChainedBeanPersistController;

  public boolean isRegisterFor(java.lang.Class<?>);
    descriptor: (Ljava/lang/Class;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // io.ebeaninternal.server.deploy.ChainedBeanPersistController this
        start local 1 // java.lang.Class cls
         0: .line 100
            iconst_0
            ireturn
        end local 1 // java.lang.Class cls
        end local 0 // io.ebeaninternal.server.deploy.ChainedBeanPersistController this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/ebeaninternal/server/deploy/ChainedBeanPersistController;
            0    1     1   cls  Ljava/lang/Class<*>;
    Signature: (Ljava/lang/Class<*>;)Z
    MethodParameters:
      Name  Flags
      cls   

  public void postDelete(io.ebean.event.BeanPersistRequest<?>);
    descriptor: (Lio/ebean/event/BeanPersistRequest;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=6, args_size=2
        start local 0 // io.ebeaninternal.server.deploy.ChainedBeanPersistController this
        start local 1 // io.ebean.event.BeanPersistRequest request
         0: .line 105
            aload 0 /* this */
            getfield io.ebeaninternal.server.deploy.ChainedBeanPersistController.chain:[Lio/ebean/event/BeanPersistController;
            dup
            astore 5
            arraylength
            istore 4
            iconst_0
            istore 3
            goto 4
      StackMap locals: io.ebeaninternal.server.deploy.ChainedBeanPersistController io.ebean.event.BeanPersistRequest top int int io.ebean.event.BeanPersistController[]
      StackMap stack:
         1: aload 5
            iload 3
            aaload
            astore 2 /* aChain */
        start local 2 // io.ebean.event.BeanPersistController aChain
         2: .line 106
            aload 2 /* aChain */
            aload 1 /* request */
            invokeinterface io.ebean.event.BeanPersistController.postDelete:(Lio/ebean/event/BeanPersistRequest;)V
        end local 2 // io.ebean.event.BeanPersistController aChain
         3: .line 105
            iinc 3 1
      StackMap locals:
      StackMap stack:
         4: iload 3
            iload 4
            if_icmplt 1
         5: .line 108
            return
        end local 1 // io.ebean.event.BeanPersistRequest request
        end local 0 // io.ebeaninternal.server.deploy.ChainedBeanPersistController this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    6     0     this  Lio/ebeaninternal/server/deploy/ChainedBeanPersistController;
            0    6     1  request  Lio/ebean/event/BeanPersistRequest<*>;
            2    3     2   aChain  Lio/ebean/event/BeanPersistController;
    Signature: (Lio/ebean/event/BeanPersistRequest<*>;)V
    MethodParameters:
         Name  Flags
      request  

  public void postInsert(io.ebean.event.BeanPersistRequest<?>);
    descriptor: (Lio/ebean/event/BeanPersistRequest;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=6, args_size=2
        start local 0 // io.ebeaninternal.server.deploy.ChainedBeanPersistController this
        start local 1 // io.ebean.event.BeanPersistRequest request
         0: .line 112
            aload 0 /* this */
            getfield io.ebeaninternal.server.deploy.ChainedBeanPersistController.chain:[Lio/ebean/event/BeanPersistController;
            dup
            astore 5
            arraylength
            istore 4
            iconst_0
            istore 3
            goto 4
      StackMap locals: io.ebeaninternal.server.deploy.ChainedBeanPersistController io.ebean.event.BeanPersistRequest top int int io.ebean.event.BeanPersistController[]
      StackMap stack:
         1: aload 5
            iload 3
            aaload
            astore 2 /* aChain */
        start local 2 // io.ebean.event.BeanPersistController aChain
         2: .line 113
            aload 2 /* aChain */
            aload 1 /* request */
            invokeinterface io.ebean.event.BeanPersistController.postInsert:(Lio/ebean/event/BeanPersistRequest;)V
        end local 2 // io.ebean.event.BeanPersistController aChain
         3: .line 112
            iinc 3 1
      StackMap locals:
      StackMap stack:
         4: iload 3
            iload 4
            if_icmplt 1
         5: .line 115
            return
        end local 1 // io.ebean.event.BeanPersistRequest request
        end local 0 // io.ebeaninternal.server.deploy.ChainedBeanPersistController this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    6     0     this  Lio/ebeaninternal/server/deploy/ChainedBeanPersistController;
            0    6     1  request  Lio/ebean/event/BeanPersistRequest<*>;
            2    3     2   aChain  Lio/ebean/event/BeanPersistController;
    Signature: (Lio/ebean/event/BeanPersistRequest<*>;)V
    MethodParameters:
         Name  Flags
      request  

  public void postUpdate(io.ebean.event.BeanPersistRequest<?>);
    descriptor: (Lio/ebean/event/BeanPersistRequest;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=6, args_size=2
        start local 0 // io.ebeaninternal.server.deploy.ChainedBeanPersistController this
        start local 1 // io.ebean.event.BeanPersistRequest request
         0: .line 119
            aload 0 /* this */
            getfield io.ebeaninternal.server.deploy.ChainedBeanPersistController.chain:[Lio/ebean/event/BeanPersistController;
            dup
            astore 5
            arraylength
            istore 4
            iconst_0
            istore 3
            goto 4
      StackMap locals: io.ebeaninternal.server.deploy.ChainedBeanPersistController io.ebean.event.BeanPersistRequest top int int io.ebean.event.BeanPersistController[]
      StackMap stack:
         1: aload 5
            iload 3
            aaload
            astore 2 /* aChain */
        start local 2 // io.ebean.event.BeanPersistController aChain
         2: .line 120
            aload 2 /* aChain */
            aload 1 /* request */
            invokeinterface io.ebean.event.BeanPersistController.postUpdate:(Lio/ebean/event/BeanPersistRequest;)V
        end local 2 // io.ebean.event.BeanPersistController aChain
         3: .line 119
            iinc 3 1
      StackMap locals:
      StackMap stack:
         4: iload 3
            iload 4
            if_icmplt 1
         5: .line 122
            return
        end local 1 // io.ebean.event.BeanPersistRequest request
        end local 0 // io.ebeaninternal.server.deploy.ChainedBeanPersistController this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    6     0     this  Lio/ebeaninternal/server/deploy/ChainedBeanPersistController;
            0    6     1  request  Lio/ebean/event/BeanPersistRequest<*>;
            2    3     2   aChain  Lio/ebean/event/BeanPersistController;
    Signature: (Lio/ebean/event/BeanPersistRequest<*>;)V
    MethodParameters:
         Name  Flags
      request  

  public void postSoftDelete(io.ebean.event.BeanPersistRequest<?>);
    descriptor: (Lio/ebean/event/BeanPersistRequest;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=6, args_size=2
        start local 0 // io.ebeaninternal.server.deploy.ChainedBeanPersistController this
        start local 1 // io.ebean.event.BeanPersistRequest request
         0: .line 126
            aload 0 /* this */
            getfield io.ebeaninternal.server.deploy.ChainedBeanPersistController.chain:[Lio/ebean/event/BeanPersistController;
            dup
            astore 5
            arraylength
            istore 4
            iconst_0
            istore 3
            goto 4
      StackMap locals: io.ebeaninternal.server.deploy.ChainedBeanPersistController io.ebean.event.BeanPersistRequest top int int io.ebean.event.BeanPersistController[]
      StackMap stack:
         1: aload 5
            iload 3
            aaload
            astore 2 /* aChain */
        start local 2 // io.ebean.event.BeanPersistController aChain
         2: .line 127
            aload 2 /* aChain */
            aload 1 /* request */
            invokeinterface io.ebean.event.BeanPersistController.postSoftDelete:(Lio/ebean/event/BeanPersistRequest;)V
        end local 2 // io.ebean.event.BeanPersistController aChain
         3: .line 126
            iinc 3 1
      StackMap locals:
      StackMap stack:
         4: iload 3
            iload 4
            if_icmplt 1
         5: .line 129
            return
        end local 1 // io.ebean.event.BeanPersistRequest request
        end local 0 // io.ebeaninternal.server.deploy.ChainedBeanPersistController this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    6     0     this  Lio/ebeaninternal/server/deploy/ChainedBeanPersistController;
            0    6     1  request  Lio/ebean/event/BeanPersistRequest<*>;
            2    3     2   aChain  Lio/ebean/event/BeanPersistController;
    Signature: (Lio/ebean/event/BeanPersistRequest<*>;)V
    MethodParameters:
         Name  Flags
      request  

  public boolean preDelete(io.ebean.event.BeanPersistRequest<?>);
    descriptor: (Lio/ebean/event/BeanPersistRequest;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=6, args_size=2
        start local 0 // io.ebeaninternal.server.deploy.ChainedBeanPersistController this
        start local 1 // io.ebean.event.BeanPersistRequest request
         0: .line 133
            aload 0 /* this */
            getfield io.ebeaninternal.server.deploy.ChainedBeanPersistController.chain:[Lio/ebean/event/BeanPersistController;
            dup
            astore 5
            arraylength
            istore 4
            iconst_0
            istore 3
            goto 5
      StackMap locals: io.ebeaninternal.server.deploy.ChainedBeanPersistController io.ebean.event.BeanPersistRequest top int int io.ebean.event.BeanPersistController[]
      StackMap stack:
         1: aload 5
            iload 3
            aaload
            astore 2 /* aChain */
        start local 2 // io.ebean.event.BeanPersistController aChain
         2: .line 134
            aload 2 /* aChain */
            aload 1 /* request */
            invokeinterface io.ebean.event.BeanPersistController.preDelete:(Lio/ebean/event/BeanPersistRequest;)Z
            ifne 4
         3: .line 135
            iconst_0
            ireturn
        end local 2 // io.ebean.event.BeanPersistController aChain
         4: .line 133
      StackMap locals:
      StackMap stack:
            iinc 3 1
      StackMap locals:
      StackMap stack:
         5: iload 3
            iload 4
            if_icmplt 1
         6: .line 138
            iconst_1
            ireturn
        end local 1 // io.ebean.event.BeanPersistRequest request
        end local 0 // io.ebeaninternal.server.deploy.ChainedBeanPersistController this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    7     0     this  Lio/ebeaninternal/server/deploy/ChainedBeanPersistController;
            0    7     1  request  Lio/ebean/event/BeanPersistRequest<*>;
            2    4     2   aChain  Lio/ebean/event/BeanPersistController;
    Signature: (Lio/ebean/event/BeanPersistRequest<*>;)Z
    MethodParameters:
         Name  Flags
      request  

  public boolean preSoftDelete(io.ebean.event.BeanPersistRequest<?>);
    descriptor: (Lio/ebean/event/BeanPersistRequest;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=6, args_size=2
        start local 0 // io.ebeaninternal.server.deploy.ChainedBeanPersistController this
        start local 1 // io.ebean.event.BeanPersistRequest request
         0: .line 143
            aload 0 /* this */
            getfield io.ebeaninternal.server.deploy.ChainedBeanPersistController.chain:[Lio/ebean/event/BeanPersistController;
            dup
            astore 5
            arraylength
            istore 4
            iconst_0
            istore 3
            goto 5
      StackMap locals: io.ebeaninternal.server.deploy.ChainedBeanPersistController io.ebean.event.BeanPersistRequest top int int io.ebean.event.BeanPersistController[]
      StackMap stack:
         1: aload 5
            iload 3
            aaload
            astore 2 /* aChain */
        start local 2 // io.ebean.event.BeanPersistController aChain
         2: .line 144
            aload 2 /* aChain */
            aload 1 /* request */
            invokeinterface io.ebean.event.BeanPersistController.preSoftDelete:(Lio/ebean/event/BeanPersistRequest;)Z
            ifne 4
         3: .line 145
            iconst_0
            ireturn
        end local 2 // io.ebean.event.BeanPersistController aChain
         4: .line 143
      StackMap locals:
      StackMap stack:
            iinc 3 1
      StackMap locals:
      StackMap stack:
         5: iload 3
            iload 4
            if_icmplt 1
         6: .line 148
            iconst_1
            ireturn
        end local 1 // io.ebean.event.BeanPersistRequest request
        end local 0 // io.ebeaninternal.server.deploy.ChainedBeanPersistController this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    7     0     this  Lio/ebeaninternal/server/deploy/ChainedBeanPersistController;
            0    7     1  request  Lio/ebean/event/BeanPersistRequest<*>;
            2    4     2   aChain  Lio/ebean/event/BeanPersistController;
    Signature: (Lio/ebean/event/BeanPersistRequest<*>;)Z
    MethodParameters:
         Name  Flags
      request  

  public void preDelete(io.ebean.event.BeanDeleteIdRequest);
    descriptor: (Lio/ebean/event/BeanDeleteIdRequest;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=6, args_size=2
        start local 0 // io.ebeaninternal.server.deploy.ChainedBeanPersistController this
        start local 1 // io.ebean.event.BeanDeleteIdRequest request
         0: .line 153
            aload 0 /* this */
            getfield io.ebeaninternal.server.deploy.ChainedBeanPersistController.chain:[Lio/ebean/event/BeanPersistController;
            dup
            astore 5
            arraylength
            istore 4
            iconst_0
            istore 3
            goto 4
      StackMap locals: io.ebeaninternal.server.deploy.ChainedBeanPersistController io.ebean.event.BeanDeleteIdRequest top int int io.ebean.event.BeanPersistController[]
      StackMap stack:
         1: aload 5
            iload 3
            aaload
            astore 2 /* aChain */
        start local 2 // io.ebean.event.BeanPersistController aChain
         2: .line 154
            aload 2 /* aChain */
            aload 1 /* request */
            invokeinterface io.ebean.event.BeanPersistController.preDelete:(Lio/ebean/event/BeanDeleteIdRequest;)V
        end local 2 // io.ebean.event.BeanPersistController aChain
         3: .line 153
            iinc 3 1
      StackMap locals:
      StackMap stack:
         4: iload 3
            iload 4
            if_icmplt 1
         5: .line 156
            return
        end local 1 // io.ebean.event.BeanDeleteIdRequest request
        end local 0 // io.ebeaninternal.server.deploy.ChainedBeanPersistController this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    6     0     this  Lio/ebeaninternal/server/deploy/ChainedBeanPersistController;
            0    6     1  request  Lio/ebean/event/BeanDeleteIdRequest;
            2    3     2   aChain  Lio/ebean/event/BeanPersistController;
    MethodParameters:
         Name  Flags
      request  

  public boolean preInsert(io.ebean.event.BeanPersistRequest<?>);
    descriptor: (Lio/ebean/event/BeanPersistRequest;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=6, args_size=2
        start local 0 // io.ebeaninternal.server.deploy.ChainedBeanPersistController this
        start local 1 // io.ebean.event.BeanPersistRequest request
         0: .line 160
            aload 0 /* this */
            getfield io.ebeaninternal.server.deploy.ChainedBeanPersistController.chain:[Lio/ebean/event/BeanPersistController;
            dup
            astore 5
            arraylength
            istore 4
            iconst_0
            istore 3
            goto 5
      StackMap locals: io.ebeaninternal.server.deploy.ChainedBeanPersistController io.ebean.event.BeanPersistRequest top int int io.ebean.event.BeanPersistController[]
      StackMap stack:
         1: aload 5
            iload 3
            aaload
            astore 2 /* aChain */
        start local 2 // io.ebean.event.BeanPersistController aChain
         2: .line 161
            aload 2 /* aChain */
            aload 1 /* request */
            invokeinterface io.ebean.event.BeanPersistController.preInsert:(Lio/ebean/event/BeanPersistRequest;)Z
            ifne 4
         3: .line 162
            iconst_0
            ireturn
        end local 2 // io.ebean.event.BeanPersistController aChain
         4: .line 160
      StackMap locals:
      StackMap stack:
            iinc 3 1
      StackMap locals:
      StackMap stack:
         5: iload 3
            iload 4
            if_icmplt 1
         6: .line 165
            iconst_1
            ireturn
        end local 1 // io.ebean.event.BeanPersistRequest request
        end local 0 // io.ebeaninternal.server.deploy.ChainedBeanPersistController this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    7     0     this  Lio/ebeaninternal/server/deploy/ChainedBeanPersistController;
            0    7     1  request  Lio/ebean/event/BeanPersistRequest<*>;
            2    4     2   aChain  Lio/ebean/event/BeanPersistController;
    Signature: (Lio/ebean/event/BeanPersistRequest<*>;)Z
    MethodParameters:
         Name  Flags
      request  

  public boolean preUpdate(io.ebean.event.BeanPersistRequest<?>);
    descriptor: (Lio/ebean/event/BeanPersistRequest;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=6, args_size=2
        start local 0 // io.ebeaninternal.server.deploy.ChainedBeanPersistController this
        start local 1 // io.ebean.event.BeanPersistRequest request
         0: .line 170
            aload 0 /* this */
            getfield io.ebeaninternal.server.deploy.ChainedBeanPersistController.chain:[Lio/ebean/event/BeanPersistController;
            dup
            astore 5
            arraylength
            istore 4
            iconst_0
            istore 3
            goto 5
      StackMap locals: io.ebeaninternal.server.deploy.ChainedBeanPersistController io.ebean.event.BeanPersistRequest top int int io.ebean.event.BeanPersistController[]
      StackMap stack:
         1: aload 5
            iload 3
            aaload
            astore 2 /* aChain */
        start local 2 // io.ebean.event.BeanPersistController aChain
         2: .line 171
            aload 2 /* aChain */
            aload 1 /* request */
            invokeinterface io.ebean.event.BeanPersistController.preUpdate:(Lio/ebean/event/BeanPersistRequest;)Z
            ifne 4
         3: .line 172
            iconst_0
            ireturn
        end local 2 // io.ebean.event.BeanPersistController aChain
         4: .line 170
      StackMap locals:
      StackMap stack:
            iinc 3 1
      StackMap locals:
      StackMap stack:
         5: iload 3
            iload 4
            if_icmplt 1
         6: .line 175
            iconst_1
            ireturn
        end local 1 // io.ebean.event.BeanPersistRequest request
        end local 0 // io.ebeaninternal.server.deploy.ChainedBeanPersistController this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    7     0     this  Lio/ebeaninternal/server/deploy/ChainedBeanPersistController;
            0    7     1  request  Lio/ebean/event/BeanPersistRequest<*>;
            2    4     2   aChain  Lio/ebean/event/BeanPersistController;
    Signature: (Lio/ebean/event/BeanPersistRequest<*>;)Z
    MethodParameters:
         Name  Flags
      request  
}
SourceFile: "ChainedBeanPersistController.java"
NestMembers:
  io.ebeaninternal.server.deploy.ChainedBeanPersistController$Sorter
InnerClasses:
  private Sorter = io.ebeaninternal.server.deploy.ChainedBeanPersistController$Sorter of io.ebeaninternal.server.deploy.ChainedBeanPersistController