public class io.ebeaninternal.server.deploy.parse.AnnotationClass extends io.ebeaninternal.server.deploy.parse.AnnotationParser
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: io.ebeaninternal.server.deploy.parse.AnnotationClass
  super_class: io.ebeaninternal.server.deploy.parse.AnnotationParser
{
  private static final org.slf4j.Logger logger;
    descriptor: Lorg/slf4j/Logger;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  private final java.lang.String asOfViewSuffix;
    descriptor: Ljava/lang/String;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final java.lang.String versionsBetweenSuffix;
    descriptor: Ljava/lang/String;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final boolean disableL2Cache;
    descriptor: Z
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 41
            ldc Lio/ebeaninternal/server/deploy/parse/AnnotationClass;
            invokestatic org.slf4j.LoggerFactory.getLogger:(Ljava/lang/Class;)Lorg/slf4j/Logger;
            putstatic io.ebeaninternal.server.deploy.parse.AnnotationClass.logger:Lorg/slf4j/Logger;
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  void <init>(io.ebeaninternal.server.deploy.parse.DeployBeanInfo<?>, io.ebeaninternal.server.deploy.parse.ReadAnnotationConfig);
    descriptor: (Lio/ebeaninternal/server/deploy/parse/DeployBeanInfo;Lio/ebeaninternal/server/deploy/parse/ReadAnnotationConfig;)V
    flags: (0x0000) 
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.ebeaninternal.server.deploy.parse.AnnotationClass this
        start local 1 // io.ebeaninternal.server.deploy.parse.DeployBeanInfo info
        start local 2 // io.ebeaninternal.server.deploy.parse.ReadAnnotationConfig readConfig
         0: .line 54
            aload 0 /* this */
            aload 1 /* info */
            aload 2 /* readConfig */
            invokespecial io.ebeaninternal.server.deploy.parse.AnnotationParser.<init>:(Lio/ebeaninternal/server/deploy/parse/DeployBeanInfo;Lio/ebeaninternal/server/deploy/parse/ReadAnnotationConfig;)V
         1: .line 55
            aload 0 /* this */
            aload 2 /* readConfig */
            invokevirtual io.ebeaninternal.server.deploy.parse.ReadAnnotationConfig.getAsOfViewSuffix:()Ljava/lang/String;
            putfield io.ebeaninternal.server.deploy.parse.AnnotationClass.asOfViewSuffix:Ljava/lang/String;
         2: .line 56
            aload 0 /* this */
            aload 2 /* readConfig */
            invokevirtual io.ebeaninternal.server.deploy.parse.ReadAnnotationConfig.getVersionsBetweenSuffix:()Ljava/lang/String;
            putfield io.ebeaninternal.server.deploy.parse.AnnotationClass.versionsBetweenSuffix:Ljava/lang/String;
         3: .line 57
            aload 0 /* this */
            aload 2 /* readConfig */
            invokevirtual io.ebeaninternal.server.deploy.parse.ReadAnnotationConfig.isDisableL2Cache:()Z
            putfield io.ebeaninternal.server.deploy.parse.AnnotationClass.disableL2Cache:Z
         4: .line 58
            return
        end local 2 // io.ebeaninternal.server.deploy.parse.ReadAnnotationConfig readConfig
        end local 1 // io.ebeaninternal.server.deploy.parse.DeployBeanInfo info
        end local 0 // io.ebeaninternal.server.deploy.parse.AnnotationClass this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    5     0        this  Lio/ebeaninternal/server/deploy/parse/AnnotationClass;
            0    5     1        info  Lio/ebeaninternal/server/deploy/parse/DeployBeanInfo<*>;
            0    5     2  readConfig  Lio/ebeaninternal/server/deploy/parse/ReadAnnotationConfig;
    Signature: (Lio/ebeaninternal/server/deploy/parse/DeployBeanInfo<*>;Lio/ebeaninternal/server/deploy/parse/ReadAnnotationConfig;)V
    MethodParameters:
            Name  Flags
      info        
      readConfig  

  void parseAttributeOverride();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=4, locals=6, args_size=1
        start local 0 // io.ebeaninternal.server.deploy.parse.AnnotationClass this
         0: .line 64
            aload 0 /* this */
            getfield io.ebeaninternal.server.deploy.parse.AnnotationClass.descriptor:Lio/ebeaninternal/server/deploy/meta/DeployBeanDescriptor;
            invokevirtual io.ebeaninternal.server.deploy.meta.DeployBeanDescriptor.getBeanType:()Ljava/lang/Class;
            astore 1 /* cls */
        start local 1 // java.lang.Class cls
         1: .line 65
            aload 1 /* cls */
            ldc Ljavax/persistence/AttributeOverride;
            invokestatic io.ebean.util.AnnotationUtil.typeGet:(Ljava/lang/Class;Ljava/lang/Class;)Ljava/lang/annotation/Annotation;
            checkcast javax.persistence.AttributeOverride
            astore 2 /* override */
        start local 2 // javax.persistence.AttributeOverride override
         2: .line 66
            aload 2 /* override */
            ifnull 10
         3: .line 67
            aload 2 /* override */
            invokeinterface javax.persistence.AttributeOverride.name:()Ljava/lang/String;
            astore 3 /* propertyName */
        start local 3 // java.lang.String propertyName
         4: .line 68
            aload 2 /* override */
            invokeinterface javax.persistence.AttributeOverride.column:()Ljavax/persistence/Column;
            astore 4 /* column */
        start local 4 // javax.persistence.Column column
         5: .line 69
            aload 0 /* this */
            getfield io.ebeaninternal.server.deploy.parse.AnnotationClass.descriptor:Lio/ebeaninternal/server/deploy/meta/DeployBeanDescriptor;
            aload 3 /* propertyName */
            invokevirtual io.ebeaninternal.server.deploy.meta.DeployBeanDescriptor.getBeanProperty:(Ljava/lang/String;)Lio/ebeaninternal/server/deploy/meta/DeployBeanProperty;
            astore 5 /* beanProperty */
        start local 5 // io.ebeaninternal.server.deploy.meta.DeployBeanProperty beanProperty
         6: .line 70
            aload 5 /* beanProperty */
            ifnonnull 9
         7: .line 71
            getstatic io.ebeaninternal.server.deploy.parse.AnnotationClass.logger:Lorg/slf4j/Logger;
            new java.lang.StringBuilder
            dup
            ldc "AttributeOverride property ["
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 3 /* propertyName */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc "] not found on "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield io.ebeaninternal.server.deploy.parse.AnnotationClass.descriptor:Lio/ebeaninternal/server/deploy/meta/DeployBeanDescriptor;
            invokevirtual io.ebeaninternal.server.deploy.meta.DeployBeanDescriptor.getFullName:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokeinterface org.slf4j.Logger.error:(Ljava/lang/String;)V
         8: .line 72
            goto 10
         9: .line 73
      StackMap locals: io.ebeaninternal.server.deploy.parse.AnnotationClass java.lang.Class javax.persistence.AttributeOverride java.lang.String javax.persistence.Column io.ebeaninternal.server.deploy.meta.DeployBeanProperty
      StackMap stack:
            aload 0 /* this */
            aload 4 /* column */
            aload 5 /* beanProperty */
            invokevirtual io.ebeaninternal.server.deploy.parse.AnnotationClass.readColumn:(Ljavax/persistence/Column;Lio/ebeaninternal/server/deploy/meta/DeployBeanProperty;)V
        end local 5 // io.ebeaninternal.server.deploy.meta.DeployBeanProperty beanProperty
        end local 4 // javax.persistence.Column column
        end local 3 // java.lang.String propertyName
        10: .line 76
      StackMap locals:
      StackMap stack:
            return
        end local 2 // javax.persistence.AttributeOverride override
        end local 1 // java.lang.Class cls
        end local 0 // io.ebeaninternal.server.deploy.parse.AnnotationClass this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   11     0          this  Lio/ebeaninternal/server/deploy/parse/AnnotationClass;
            1   11     1           cls  Ljava/lang/Class<*>;
            2   11     2      override  Ljavax/persistence/AttributeOverride;
            4   10     3  propertyName  Ljava/lang/String;
            5   10     4        column  Ljavax/persistence/Column;
            6   10     5  beanProperty  Lio/ebeaninternal/server/deploy/meta/DeployBeanProperty;

  public void parse();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.ebeaninternal.server.deploy.parse.AnnotationClass this
         0: .line 83
            aload 0 /* this */
            aload 0 /* this */
            getfield io.ebeaninternal.server.deploy.parse.AnnotationClass.descriptor:Lio/ebeaninternal/server/deploy/meta/DeployBeanDescriptor;
            invokevirtual io.ebeaninternal.server.deploy.meta.DeployBeanDescriptor.getBeanType:()Ljava/lang/Class;
            invokevirtual io.ebeaninternal.server.deploy.parse.AnnotationClass.read:(Ljava/lang/Class;)V
         1: .line 84
            aload 0 /* this */
            invokevirtual io.ebeaninternal.server.deploy.parse.AnnotationClass.setTableName:()V
         2: .line 85
            return
        end local 0 // io.ebeaninternal.server.deploy.parse.AnnotationClass this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/ebeaninternal/server/deploy/parse/AnnotationClass;

  private void setTableName();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=4, args_size=1
        start local 0 // io.ebeaninternal.server.deploy.parse.AnnotationClass this
         0: .line 92
            aload 0 /* this */
            getfield io.ebeaninternal.server.deploy.parse.AnnotationClass.descriptor:Lio/ebeaninternal/server/deploy/meta/DeployBeanDescriptor;
            invokevirtual io.ebeaninternal.server.deploy.meta.DeployBeanDescriptor.isBaseTableType:()Z
            ifeq 7
         1: .line 93
            aload 0 /* this */
            getfield io.ebeaninternal.server.deploy.parse.AnnotationClass.descriptor:Lio/ebeaninternal/server/deploy/meta/DeployBeanDescriptor;
            invokevirtual io.ebeaninternal.server.deploy.meta.DeployBeanDescriptor.getBeanType:()Ljava/lang/Class;
            astore 1 /* beanType */
        start local 1 // java.lang.Class beanType
         2: .line 94
            aload 0 /* this */
            getfield io.ebeaninternal.server.deploy.parse.AnnotationClass.descriptor:Lio/ebeaninternal/server/deploy/meta/DeployBeanDescriptor;
            invokevirtual io.ebeaninternal.server.deploy.meta.DeployBeanDescriptor.getInheritInfo:()Lio/ebeaninternal/server/deploy/InheritInfo;
            astore 2 /* inheritInfo */
        start local 2 // io.ebeaninternal.server.deploy.InheritInfo inheritInfo
         3: .line 95
            aload 2 /* inheritInfo */
            ifnull 5
         4: .line 96
            aload 2 /* inheritInfo */
            invokevirtual io.ebeaninternal.server.deploy.InheritInfo.getRoot:()Lio/ebeaninternal/server/deploy/InheritInfo;
            invokevirtual io.ebeaninternal.server.deploy.InheritInfo.getType:()Ljava/lang/Class;
            astore 1 /* beanType */
         5: .line 99
      StackMap locals: java.lang.Class io.ebeaninternal.server.deploy.InheritInfo
      StackMap stack:
            aload 0 /* this */
            getfield io.ebeaninternal.server.deploy.parse.AnnotationClass.namingConvention:Lio/ebean/config/NamingConvention;
            aload 1 /* beanType */
            invokeinterface io.ebean.config.NamingConvention.getTableName:(Ljava/lang/Class;)Lio/ebean/config/TableName;
            astore 3 /* tableName */
        start local 3 // io.ebean.config.TableName tableName
         6: .line 100
            aload 0 /* this */
            getfield io.ebeaninternal.server.deploy.parse.AnnotationClass.descriptor:Lio/ebeaninternal/server/deploy/meta/DeployBeanDescriptor;
            aload 3 /* tableName */
            aload 0 /* this */
            getfield io.ebeaninternal.server.deploy.parse.AnnotationClass.asOfViewSuffix:Ljava/lang/String;
            aload 0 /* this */
            getfield io.ebeaninternal.server.deploy.parse.AnnotationClass.versionsBetweenSuffix:Ljava/lang/String;
            invokevirtual io.ebeaninternal.server.deploy.meta.DeployBeanDescriptor.setBaseTable:(Lio/ebean/config/TableName;Ljava/lang/String;Ljava/lang/String;)V
        end local 3 // io.ebean.config.TableName tableName
        end local 2 // io.ebeaninternal.server.deploy.InheritInfo inheritInfo
        end local 1 // java.lang.Class beanType
         7: .line 102
      StackMap locals:
      StackMap stack:
            return
        end local 0 // io.ebeaninternal.server.deploy.parse.AnnotationClass this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    8     0         this  Lio/ebeaninternal/server/deploy/parse/AnnotationClass;
            2    7     1     beanType  Ljava/lang/Class<*>;
            3    7     2  inheritInfo  Lio/ebeaninternal/server/deploy/InheritInfo;
            6    7     3    tableName  Lio/ebean/config/TableName;

  private void read(java.lang.Class<?>);
    descriptor: (Ljava/lang/Class;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=9, locals=19, args_size=2
        start local 0 // io.ebeaninternal.server.deploy.parse.AnnotationClass this
        start local 1 // java.lang.Class cls
         0: .line 106
            aload 1 /* cls */
            ldc Lio/ebean/annotation/DocStore;
            invokestatic io.ebean.util.AnnotationUtil.typeGet:(Ljava/lang/Class;Ljava/lang/Class;)Ljava/lang/annotation/Annotation;
            checkcast io.ebean.annotation.DocStore
            astore 2 /* docStore */
        start local 2 // io.ebean.annotation.DocStore docStore
         1: .line 107
            aload 2 /* docStore */
            ifnull 5
         2: .line 108
            aload 0 /* this */
            getfield io.ebeaninternal.server.deploy.parse.AnnotationClass.descriptor:Lio/ebeaninternal/server/deploy/meta/DeployBeanDescriptor;
            aload 2 /* docStore */
            invokevirtual io.ebeaninternal.server.deploy.meta.DeployBeanDescriptor.readDocStore:(Lio/ebean/annotation/DocStore;)V
         3: .line 109
            aload 0 /* this */
            getfield io.ebeaninternal.server.deploy.parse.AnnotationClass.descriptor:Lio/ebeaninternal/server/deploy/meta/DeployBeanDescriptor;
            getstatic io.ebeaninternal.server.deploy.BeanDescriptor$EntityType.DOC:Lio/ebeaninternal/server/deploy/BeanDescriptor$EntityType;
            invokevirtual io.ebeaninternal.server.deploy.meta.DeployBeanDescriptor.setEntityType:(Lio/ebeaninternal/server/deploy/BeanDescriptor$EntityType;)V
         4: .line 110
            aload 0 /* this */
            getfield io.ebeaninternal.server.deploy.parse.AnnotationClass.descriptor:Lio/ebeaninternal/server/deploy/meta/DeployBeanDescriptor;
            aload 1 /* cls */
            invokevirtual java.lang.Class.getSimpleName:()Ljava/lang/String;
            invokevirtual io.ebeaninternal.server.deploy.meta.DeployBeanDescriptor.setName:(Ljava/lang/String;)V
         5: .line 113
      StackMap locals: io.ebean.annotation.DocStore
      StackMap stack:
            aload 1 /* cls */
            ldc Ljavax/persistence/Entity;
            invokestatic io.ebean.util.AnnotationUtil.typeGet:(Ljava/lang/Class;Ljava/lang/Class;)Ljava/lang/annotation/Annotation;
            checkcast javax.persistence.Entity
            astore 3 /* entity */
        start local 3 // javax.persistence.Entity entity
         6: .line 114
            aload 3 /* entity */
            ifnull 12
         7: .line 115
            aload 0 /* this */
            getfield io.ebeaninternal.server.deploy.parse.AnnotationClass.descriptor:Lio/ebeaninternal/server/deploy/meta/DeployBeanDescriptor;
            getstatic io.ebeaninternal.server.deploy.BeanDescriptor$EntityType.ORM:Lio/ebeaninternal/server/deploy/BeanDescriptor$EntityType;
            invokevirtual io.ebeaninternal.server.deploy.meta.DeployBeanDescriptor.setEntityType:(Lio/ebeaninternal/server/deploy/BeanDescriptor$EntityType;)V
         8: .line 116
            aload 3 /* entity */
            invokeinterface javax.persistence.Entity.name:()Ljava/lang/String;
            invokevirtual java.lang.String.isEmpty:()Z
            ifeq 11
         9: .line 117
            aload 0 /* this */
            getfield io.ebeaninternal.server.deploy.parse.AnnotationClass.descriptor:Lio/ebeaninternal/server/deploy/meta/DeployBeanDescriptor;
            aload 1 /* cls */
            invokevirtual java.lang.Class.getSimpleName:()Ljava/lang/String;
            invokevirtual io.ebeaninternal.server.deploy.meta.DeployBeanDescriptor.setName:(Ljava/lang/String;)V
        10: .line 118
            goto 12
        11: .line 119
      StackMap locals: javax.persistence.Entity
      StackMap stack:
            aload 0 /* this */
            getfield io.ebeaninternal.server.deploy.parse.AnnotationClass.descriptor:Lio/ebeaninternal/server/deploy/meta/DeployBeanDescriptor;
            aload 3 /* entity */
            invokeinterface javax.persistence.Entity.name:()Ljava/lang/String;
            invokevirtual io.ebeaninternal.server.deploy.meta.DeployBeanDescriptor.setName:(Ljava/lang/String;)V
        12: .line 123
      StackMap locals:
      StackMap stack:
            aload 1 /* cls */
            ldc Lio/ebean/annotation/Identity;
            invokestatic io.ebean.util.AnnotationUtil.typeGet:(Ljava/lang/Class;Ljava/lang/Class;)Ljava/lang/annotation/Annotation;
            checkcast io.ebean.annotation.Identity
            astore 4 /* identity */
        start local 4 // io.ebean.annotation.Identity identity
        13: .line 124
            aload 4 /* identity */
            ifnull 15
        14: .line 125
            aload 0 /* this */
            getfield io.ebeaninternal.server.deploy.parse.AnnotationClass.descriptor:Lio/ebeaninternal/server/deploy/meta/DeployBeanDescriptor;
            aload 4 /* identity */
            invokevirtual io.ebeaninternal.server.deploy.meta.DeployBeanDescriptor.setIdentityMode:(Lio/ebean/annotation/Identity;)V
        15: .line 128
      StackMap locals: io.ebean.annotation.Identity
      StackMap stack:
            aload 1 /* cls */
            ldc Ljavax/persistence/IdClass;
            invokestatic io.ebean.util.AnnotationUtil.typeGet:(Ljava/lang/Class;Ljava/lang/Class;)Ljava/lang/annotation/Annotation;
            checkcast javax.persistence.IdClass
            astore 5 /* idClass */
        start local 5 // javax.persistence.IdClass idClass
        16: .line 129
            aload 5 /* idClass */
            ifnull 18
        17: .line 130
            aload 0 /* this */
            getfield io.ebeaninternal.server.deploy.parse.AnnotationClass.descriptor:Lio/ebeaninternal/server/deploy/meta/DeployBeanDescriptor;
            aload 5 /* idClass */
            invokeinterface javax.persistence.IdClass.value:()Ljava/lang/Class;
            invokevirtual io.ebeaninternal.server.deploy.meta.DeployBeanDescriptor.setIdClass:(Ljava/lang/Class;)V
        18: .line 133
      StackMap locals: javax.persistence.IdClass
      StackMap stack:
            aload 1 /* cls */
            ldc Ljavax/persistence/Embeddable;
            invokestatic io.ebean.util.AnnotationUtil.typeGet:(Ljava/lang/Class;Ljava/lang/Class;)Ljava/lang/annotation/Annotation;
            checkcast javax.persistence.Embeddable
            astore 6 /* embeddable */
        start local 6 // javax.persistence.Embeddable embeddable
        19: .line 134
            aload 6 /* embeddable */
            ifnull 22
        20: .line 135
            aload 0 /* this */
            getfield io.ebeaninternal.server.deploy.parse.AnnotationClass.descriptor:Lio/ebeaninternal/server/deploy/meta/DeployBeanDescriptor;
            getstatic io.ebeaninternal.server.deploy.BeanDescriptor$EntityType.EMBEDDED:Lio/ebeaninternal/server/deploy/BeanDescriptor$EntityType;
            invokevirtual io.ebeaninternal.server.deploy.meta.DeployBeanDescriptor.setEntityType:(Lio/ebeaninternal/server/deploy/BeanDescriptor$EntityType;)V
        21: .line 136
            aload 0 /* this */
            getfield io.ebeaninternal.server.deploy.parse.AnnotationClass.descriptor:Lio/ebeaninternal/server/deploy/meta/DeployBeanDescriptor;
            new java.lang.StringBuilder
            dup
            ldc "Embeddable:"
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 1 /* cls */
            invokevirtual java.lang.Class.getSimpleName:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokevirtual io.ebeaninternal.server.deploy.meta.DeployBeanDescriptor.setName:(Ljava/lang/String;)V
        22: .line 139
      StackMap locals: javax.persistence.Embeddable
      StackMap stack:
            aload 0 /* this */
            aload 1 /* cls */
            invokevirtual io.ebeaninternal.server.deploy.parse.AnnotationClass.annotationClassIndexes:(Ljava/lang/Class;)Ljava/util/Set;
            invokeinterface java.util.Set.iterator:()Ljava/util/Iterator;
            astore 8
            goto 27
      StackMap locals: io.ebeaninternal.server.deploy.parse.AnnotationClass java.lang.Class io.ebean.annotation.DocStore javax.persistence.Entity io.ebean.annotation.Identity javax.persistence.IdClass javax.persistence.Embeddable top java.util.Iterator
      StackMap stack:
        23: aload 8
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast io.ebean.annotation.Index
            astore 7 /* index */
        start local 7 // io.ebean.annotation.Index index
        24: .line 140
            aload 0 /* this */
            getfield io.ebeaninternal.server.deploy.parse.AnnotationClass.descriptor:Lio/ebeaninternal/server/deploy/meta/DeployBeanDescriptor;
            new io.ebeaninternal.server.deploy.IndexDefinition
            dup
            aload 0 /* this */
            aload 7 /* index */
            invokeinterface io.ebean.annotation.Index.columnNames:()[Ljava/lang/String;
            invokevirtual io.ebeaninternal.server.deploy.parse.AnnotationClass.convertColumnNames:([Ljava/lang/String;)[Ljava/lang/String;
            aload 7 /* index */
            invokeinterface io.ebean.annotation.Index.name:()Ljava/lang/String;
        25: .line 141
            aload 7 /* index */
            invokeinterface io.ebean.annotation.Index.unique:()Z
            aload 7 /* index */
            invokeinterface io.ebean.annotation.Index.platforms:()[Lio/ebean/annotation/Platform;
            aload 7 /* index */
            invokeinterface io.ebean.annotation.Index.concurrent:()Z
            aload 7 /* index */
            invokeinterface io.ebean.annotation.Index.definition:()Ljava/lang/String;
            invokespecial io.ebeaninternal.server.deploy.IndexDefinition.<init>:([Ljava/lang/String;Ljava/lang/String;Z[Lio/ebean/annotation/Platform;ZLjava/lang/String;)V
        26: .line 140
            invokevirtual io.ebeaninternal.server.deploy.meta.DeployBeanDescriptor.addIndex:(Lio/ebeaninternal/server/deploy/IndexDefinition;)V
        end local 7 // io.ebean.annotation.Index index
        27: .line 139
      StackMap locals:
      StackMap stack:
            aload 8
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 23
        28: .line 144
            aload 1 /* cls */
            ldc Ljavax/persistence/UniqueConstraint;
            invokestatic io.ebean.util.AnnotationUtil.typeGet:(Ljava/lang/Class;Ljava/lang/Class;)Ljava/lang/annotation/Annotation;
            checkcast javax.persistence.UniqueConstraint
            astore 7 /* uc */
        start local 7 // javax.persistence.UniqueConstraint uc
        29: .line 145
            aload 7 /* uc */
            ifnull 31
        30: .line 146
            aload 0 /* this */
            getfield io.ebeaninternal.server.deploy.parse.AnnotationClass.descriptor:Lio/ebeaninternal/server/deploy/meta/DeployBeanDescriptor;
            new io.ebeaninternal.server.deploy.IndexDefinition
            dup
            aload 0 /* this */
            aload 7 /* uc */
            invokeinterface javax.persistence.UniqueConstraint.columnNames:()[Ljava/lang/String;
            invokevirtual io.ebeaninternal.server.deploy.parse.AnnotationClass.convertColumnNames:([Ljava/lang/String;)[Ljava/lang/String;
            invokespecial io.ebeaninternal.server.deploy.IndexDefinition.<init>:([Ljava/lang/String;)V
            invokevirtual io.ebeaninternal.server.deploy.meta.DeployBeanDescriptor.addIndex:(Lio/ebeaninternal/server/deploy/IndexDefinition;)V
        31: .line 149
      StackMap locals: io.ebeaninternal.server.deploy.parse.AnnotationClass java.lang.Class io.ebean.annotation.DocStore javax.persistence.Entity io.ebean.annotation.Identity javax.persistence.IdClass javax.persistence.Embeddable javax.persistence.UniqueConstraint
      StackMap stack:
            aload 1 /* cls */
            ldc Lio/ebean/annotation/View;
            invokestatic io.ebean.util.AnnotationUtil.typeGet:(Ljava/lang/Class;Ljava/lang/Class;)Ljava/lang/annotation/Annotation;
            checkcast io.ebean.annotation.View
            astore 8 /* view */
        start local 8 // io.ebean.annotation.View view
        32: .line 150
            aload 8 /* view */
            ifnull 34
        33: .line 151
            aload 0 /* this */
            getfield io.ebeaninternal.server.deploy.parse.AnnotationClass.descriptor:Lio/ebeaninternal/server/deploy/meta/DeployBeanDescriptor;
            aload 8 /* view */
            invokeinterface io.ebean.annotation.View.name:()Ljava/lang/String;
            aload 8 /* view */
            invokeinterface io.ebean.annotation.View.dependentTables:()[Ljava/lang/String;
            invokevirtual io.ebeaninternal.server.deploy.meta.DeployBeanDescriptor.setView:(Ljava/lang/String;[Ljava/lang/String;)V
        34: .line 153
      StackMap locals: io.ebean.annotation.View
      StackMap stack:
            aload 1 /* cls */
            ldc Ljavax/persistence/Table;
            invokestatic io.ebean.util.AnnotationUtil.typeGet:(Ljava/lang/Class;Ljava/lang/Class;)Ljava/lang/annotation/Annotation;
            checkcast javax.persistence.Table
            astore 9 /* table */
        start local 9 // javax.persistence.Table table
        35: .line 154
            aload 9 /* table */
            ifnull 42
        36: .line 155
            aload 9 /* table */
            invokeinterface javax.persistence.Table.uniqueConstraints:()[Ljavax/persistence/UniqueConstraint;
            astore 10 /* uniqueConstraints */
        start local 10 // javax.persistence.UniqueConstraint[] uniqueConstraints
        37: .line 156
            aload 10 /* uniqueConstraints */
            dup
            astore 14
            arraylength
            istore 13
            iconst_0
            istore 12
            goto 41
      StackMap locals: io.ebeaninternal.server.deploy.parse.AnnotationClass java.lang.Class io.ebean.annotation.DocStore javax.persistence.Entity io.ebean.annotation.Identity javax.persistence.IdClass javax.persistence.Embeddable javax.persistence.UniqueConstraint io.ebean.annotation.View javax.persistence.Table javax.persistence.UniqueConstraint[] top int int javax.persistence.UniqueConstraint[]
      StackMap stack:
        38: aload 14
            iload 12
            aaload
            astore 11 /* c */
        start local 11 // javax.persistence.UniqueConstraint c
        39: .line 157
            aload 0 /* this */
            getfield io.ebeaninternal.server.deploy.parse.AnnotationClass.descriptor:Lio/ebeaninternal/server/deploy/meta/DeployBeanDescriptor;
            new io.ebeaninternal.server.deploy.IndexDefinition
            dup
            aload 0 /* this */
            aload 11 /* c */
            invokeinterface javax.persistence.UniqueConstraint.columnNames:()[Ljava/lang/String;
            invokevirtual io.ebeaninternal.server.deploy.parse.AnnotationClass.convertColumnNames:([Ljava/lang/String;)[Ljava/lang/String;
            invokespecial io.ebeaninternal.server.deploy.IndexDefinition.<init>:([Ljava/lang/String;)V
            invokevirtual io.ebeaninternal.server.deploy.meta.DeployBeanDescriptor.addIndex:(Lio/ebeaninternal/server/deploy/IndexDefinition;)V
        end local 11 // javax.persistence.UniqueConstraint c
        40: .line 156
            iinc 12 1
      StackMap locals:
      StackMap stack:
        41: iload 12
            iload 13
            if_icmplt 38
        end local 10 // javax.persistence.UniqueConstraint[] uniqueConstraints
        42: .line 161
      StackMap locals: io.ebeaninternal.server.deploy.parse.AnnotationClass java.lang.Class io.ebean.annotation.DocStore javax.persistence.Entity io.ebean.annotation.Identity javax.persistence.IdClass javax.persistence.Embeddable javax.persistence.UniqueConstraint io.ebean.annotation.View javax.persistence.Table
      StackMap stack:
            aload 1 /* cls */
            ldc Lio/ebean/annotation/StorageEngine;
            invokestatic io.ebean.util.AnnotationUtil.typeGet:(Ljava/lang/Class;Ljava/lang/Class;)Ljava/lang/annotation/Annotation;
            checkcast io.ebean.annotation.StorageEngine
            astore 10 /* storage */
        start local 10 // io.ebean.annotation.StorageEngine storage
        43: .line 162
            aload 10 /* storage */
            ifnull 45
        44: .line 163
            aload 0 /* this */
            getfield io.ebeaninternal.server.deploy.parse.AnnotationClass.descriptor:Lio/ebeaninternal/server/deploy/meta/DeployBeanDescriptor;
            aload 10 /* storage */
            invokeinterface io.ebean.annotation.StorageEngine.value:()Ljava/lang/String;
            invokevirtual io.ebeaninternal.server.deploy.meta.DeployBeanDescriptor.setStorageEngine:(Ljava/lang/String;)V
        45: .line 166
      StackMap locals: io.ebean.annotation.StorageEngine
      StackMap stack:
            aload 1 /* cls */
            ldc Lio/ebean/annotation/DbPartition;
            invokestatic io.ebean.util.AnnotationUtil.typeGet:(Ljava/lang/Class;Ljava/lang/Class;)Ljava/lang/annotation/Annotation;
            checkcast io.ebean.annotation.DbPartition
            astore 11 /* partition */
        start local 11 // io.ebean.annotation.DbPartition partition
        46: .line 167
            aload 11 /* partition */
            ifnull 48
        47: .line 168
            aload 0 /* this */
            getfield io.ebeaninternal.server.deploy.parse.AnnotationClass.descriptor:Lio/ebeaninternal/server/deploy/meta/DeployBeanDescriptor;
            new io.ebeaninternal.server.deploy.PartitionMeta
            dup
            aload 11 /* partition */
            invokeinterface io.ebean.annotation.DbPartition.mode:()Lio/ebean/annotation/PartitionMode;
            aload 11 /* partition */
            invokeinterface io.ebean.annotation.DbPartition.property:()Ljava/lang/String;
            invokespecial io.ebeaninternal.server.deploy.PartitionMeta.<init>:(Lio/ebean/annotation/PartitionMode;Ljava/lang/String;)V
            invokevirtual io.ebeaninternal.server.deploy.meta.DeployBeanDescriptor.setPartitionMeta:(Lio/ebeaninternal/server/deploy/PartitionMeta;)V
        48: .line 171
      StackMap locals: io.ebean.annotation.DbPartition
      StackMap stack:
            aload 1 /* cls */
            ldc Lio/ebean/annotation/Draftable;
            invokestatic io.ebean.util.AnnotationUtil.typeGet:(Ljava/lang/Class;Ljava/lang/Class;)Ljava/lang/annotation/Annotation;
            checkcast io.ebean.annotation.Draftable
            astore 12 /* draftable */
        start local 12 // io.ebean.annotation.Draftable draftable
        49: .line 172
            aload 12 /* draftable */
            ifnull 51
        50: .line 173
            aload 0 /* this */
            getfield io.ebeaninternal.server.deploy.parse.AnnotationClass.descriptor:Lio/ebeaninternal/server/deploy/meta/DeployBeanDescriptor;
            invokevirtual io.ebeaninternal.server.deploy.meta.DeployBeanDescriptor.setDraftable:()V
        51: .line 176
      StackMap locals: io.ebean.annotation.Draftable
      StackMap stack:
            aload 1 /* cls */
            ldc Lio/ebean/annotation/DraftableElement;
            invokestatic io.ebean.util.AnnotationUtil.typeGet:(Ljava/lang/Class;Ljava/lang/Class;)Ljava/lang/annotation/Annotation;
            checkcast io.ebean.annotation.DraftableElement
            astore 13 /* draftableElement */
        start local 13 // io.ebean.annotation.DraftableElement draftableElement
        52: .line 177
            aload 13 /* draftableElement */
            ifnull 54
        53: .line 178
            aload 0 /* this */
            getfield io.ebeaninternal.server.deploy.parse.AnnotationClass.descriptor:Lio/ebeaninternal/server/deploy/meta/DeployBeanDescriptor;
            invokevirtual io.ebeaninternal.server.deploy.meta.DeployBeanDescriptor.setDraftableElement:()V
        54: .line 181
      StackMap locals: io.ebean.annotation.DraftableElement
      StackMap stack:
            aload 1 /* cls */
            ldc Lio/ebean/annotation/ReadAudit;
            invokestatic io.ebean.util.AnnotationUtil.typeGet:(Ljava/lang/Class;Ljava/lang/Class;)Ljava/lang/annotation/Annotation;
            checkcast io.ebean.annotation.ReadAudit
            astore 14 /* readAudit */
        start local 14 // io.ebean.annotation.ReadAudit readAudit
        55: .line 182
            aload 14 /* readAudit */
            ifnull 57
        56: .line 183
            aload 0 /* this */
            getfield io.ebeaninternal.server.deploy.parse.AnnotationClass.descriptor:Lio/ebeaninternal/server/deploy/meta/DeployBeanDescriptor;
            invokevirtual io.ebeaninternal.server.deploy.meta.DeployBeanDescriptor.setReadAuditing:()V
        57: .line 186
      StackMap locals: io.ebean.annotation.ReadAudit
      StackMap stack:
            aload 1 /* cls */
            ldc Lio/ebean/annotation/History;
            invokestatic io.ebean.util.AnnotationUtil.typeGet:(Ljava/lang/Class;Ljava/lang/Class;)Ljava/lang/annotation/Annotation;
            checkcast io.ebean.annotation.History
            astore 15 /* history */
        start local 15 // io.ebean.annotation.History history
        58: .line 187
            aload 15 /* history */
            ifnull 60
        59: .line 188
            aload 0 /* this */
            getfield io.ebeaninternal.server.deploy.parse.AnnotationClass.descriptor:Lio/ebeaninternal/server/deploy/meta/DeployBeanDescriptor;
            invokevirtual io.ebeaninternal.server.deploy.meta.DeployBeanDescriptor.setHistorySupport:()V
        60: .line 191
      StackMap locals: io.ebean.annotation.History
      StackMap stack:
            aload 1 /* cls */
            ldc Lio/ebean/annotation/DbComment;
            invokestatic io.ebean.util.AnnotationUtil.typeGet:(Ljava/lang/Class;Ljava/lang/Class;)Ljava/lang/annotation/Annotation;
            checkcast io.ebean.annotation.DbComment
            astore 16 /* comment */
        start local 16 // io.ebean.annotation.DbComment comment
        61: .line 192
            aload 16 /* comment */
            ifnull 63
        62: .line 193
            aload 0 /* this */
            getfield io.ebeaninternal.server.deploy.parse.AnnotationClass.descriptor:Lio/ebeaninternal/server/deploy/meta/DeployBeanDescriptor;
            aload 16 /* comment */
            invokeinterface io.ebean.annotation.DbComment.value:()Ljava/lang/String;
            invokevirtual io.ebeaninternal.server.deploy.meta.DeployBeanDescriptor.setDbComment:(Ljava/lang/String;)V
        63: .line 196
      StackMap locals: io.ebean.annotation.DbComment
      StackMap stack:
            aload 0 /* this */
            getfield io.ebeaninternal.server.deploy.parse.AnnotationClass.disableL2Cache:Z
            ifne 71
        64: .line 197
            aload 1 /* cls */
            ldc Lio/ebean/annotation/Cache;
            invokestatic io.ebean.util.AnnotationUtil.typeGet:(Ljava/lang/Class;Ljava/lang/Class;)Ljava/lang/annotation/Annotation;
            checkcast io.ebean.annotation.Cache
            astore 17 /* cache */
        start local 17 // io.ebean.annotation.Cache cache
        65: .line 198
            aload 17 /* cache */
            ifnull 68
        66: .line 199
            aload 0 /* this */
            getfield io.ebeaninternal.server.deploy.parse.AnnotationClass.descriptor:Lio/ebeaninternal/server/deploy/meta/DeployBeanDescriptor;
            aload 17 /* cache */
            invokevirtual io.ebeaninternal.server.deploy.meta.DeployBeanDescriptor.setCache:(Lio/ebean/annotation/Cache;)V
        67: .line 200
            goto 71
        68: .line 201
      StackMap locals: io.ebean.annotation.Cache
      StackMap stack:
            aload 1 /* cls */
            ldc Lio/ebean/annotation/InvalidateQueryCache;
            invokestatic io.ebean.util.AnnotationUtil.typeGet:(Ljava/lang/Class;Ljava/lang/Class;)Ljava/lang/annotation/Annotation;
            checkcast io.ebean.annotation.InvalidateQueryCache
            astore 18 /* invalidateQueryCache */
        start local 18 // io.ebean.annotation.InvalidateQueryCache invalidateQueryCache
        69: .line 202
            aload 18 /* invalidateQueryCache */
            ifnull 71
        70: .line 203
            aload 0 /* this */
            getfield io.ebeaninternal.server.deploy.parse.AnnotationClass.descriptor:Lio/ebeaninternal/server/deploy/meta/DeployBeanDescriptor;
            aload 18 /* invalidateQueryCache */
            invokeinterface io.ebean.annotation.InvalidateQueryCache.region:()Ljava/lang/String;
            invokevirtual io.ebeaninternal.server.deploy.meta.DeployBeanDescriptor.setInvalidateQueryCache:(Ljava/lang/String;)V
        end local 18 // io.ebean.annotation.InvalidateQueryCache invalidateQueryCache
        end local 17 // io.ebean.annotation.Cache cache
        71: .line 208
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* cls */
            invokevirtual io.ebeaninternal.server.deploy.parse.AnnotationClass.annotationClassNamedQuery:(Ljava/lang/Class;)Ljava/util/Set;
            invokeinterface java.util.Set.iterator:()Ljava/util/Iterator;
            astore 18
            goto 74
      StackMap locals: io.ebeaninternal.server.deploy.parse.AnnotationClass java.lang.Class io.ebean.annotation.DocStore javax.persistence.Entity io.ebean.annotation.Identity javax.persistence.IdClass javax.persistence.Embeddable javax.persistence.UniqueConstraint io.ebean.annotation.View javax.persistence.Table io.ebean.annotation.StorageEngine io.ebean.annotation.DbPartition io.ebean.annotation.Draftable io.ebean.annotation.DraftableElement io.ebean.annotation.ReadAudit io.ebean.annotation.History io.ebean.annotation.DbComment top java.util.Iterator
      StackMap stack:
        72: aload 18
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast javax.persistence.NamedQuery
            astore 17 /* namedQuery */
        start local 17 // javax.persistence.NamedQuery namedQuery
        73: .line 209
            aload 0 /* this */
            getfield io.ebeaninternal.server.deploy.parse.AnnotationClass.descriptor:Lio/ebeaninternal/server/deploy/meta/DeployBeanDescriptor;
            aload 17 /* namedQuery */
            invokeinterface javax.persistence.NamedQuery.name:()Ljava/lang/String;
            aload 17 /* namedQuery */
            invokeinterface javax.persistence.NamedQuery.query:()Ljava/lang/String;
            invokevirtual io.ebeaninternal.server.deploy.meta.DeployBeanDescriptor.addNamedQuery:(Ljava/lang/String;Ljava/lang/String;)V
        end local 17 // javax.persistence.NamedQuery namedQuery
        74: .line 208
      StackMap locals:
      StackMap stack:
            aload 18
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 72
        75: .line 211
            return
        end local 16 // io.ebean.annotation.DbComment comment
        end local 15 // io.ebean.annotation.History history
        end local 14 // io.ebean.annotation.ReadAudit readAudit
        end local 13 // io.ebean.annotation.DraftableElement draftableElement
        end local 12 // io.ebean.annotation.Draftable draftable
        end local 11 // io.ebean.annotation.DbPartition partition
        end local 10 // io.ebean.annotation.StorageEngine storage
        end local 9 // javax.persistence.Table table
        end local 8 // io.ebean.annotation.View view
        end local 7 // javax.persistence.UniqueConstraint uc
        end local 6 // javax.persistence.Embeddable embeddable
        end local 5 // javax.persistence.IdClass idClass
        end local 4 // io.ebean.annotation.Identity identity
        end local 3 // javax.persistence.Entity entity
        end local 2 // io.ebean.annotation.DocStore docStore
        end local 1 // java.lang.Class cls
        end local 0 // io.ebeaninternal.server.deploy.parse.AnnotationClass this
      LocalVariableTable:
        Start  End  Slot                  Name  Signature
            0   76     0                  this  Lio/ebeaninternal/server/deploy/parse/AnnotationClass;
            0   76     1                   cls  Ljava/lang/Class<*>;
            1   76     2              docStore  Lio/ebean/annotation/DocStore;
            6   76     3                entity  Ljavax/persistence/Entity;
           13   76     4              identity  Lio/ebean/annotation/Identity;
           16   76     5               idClass  Ljavax/persistence/IdClass;
           19   76     6            embeddable  Ljavax/persistence/Embeddable;
           24   27     7                 index  Lio/ebean/annotation/Index;
           29   76     7                    uc  Ljavax/persistence/UniqueConstraint;
           32   76     8                  view  Lio/ebean/annotation/View;
           35   76     9                 table  Ljavax/persistence/Table;
           37   42    10     uniqueConstraints  [Ljavax/persistence/UniqueConstraint;
           39   40    11                     c  Ljavax/persistence/UniqueConstraint;
           43   76    10               storage  Lio/ebean/annotation/StorageEngine;
           46   76    11             partition  Lio/ebean/annotation/DbPartition;
           49   76    12             draftable  Lio/ebean/annotation/Draftable;
           52   76    13      draftableElement  Lio/ebean/annotation/DraftableElement;
           55   76    14             readAudit  Lio/ebean/annotation/ReadAudit;
           58   76    15               history  Lio/ebean/annotation/History;
           61   76    16               comment  Lio/ebean/annotation/DbComment;
           65   71    17                 cache  Lio/ebean/annotation/Cache;
           69   71    18  invalidateQueryCache  Lio/ebean/annotation/InvalidateQueryCache;
           73   74    17            namedQuery  Ljavax/persistence/NamedQuery;
    Signature: (Ljava/lang/Class<*>;)V
    MethodParameters:
      Name  Flags
      cls   
}
SourceFile: "AnnotationClass.java"
InnerClasses:
  public final EntityType = io.ebeaninternal.server.deploy.BeanDescriptor$EntityType of io.ebeaninternal.server.deploy.BeanDescriptor