public class org.apache.nifi.registry.db.entity.FlowEntity extends org.apache.nifi.registry.db.entity.BucketItemEntity
{
private long snapshotCount;
public void <init>()
{
org.apache.nifi.registry.db.entity.BucketItemEntityType v;
org.apache.nifi.registry.db.entity.FlowEntity v;
v := @this: org.apache.nifi.registry.db.entity.FlowEntity;
specialinvoke v.<org.apache.nifi.registry.db.entity.BucketItemEntity: void <init>()>();
v = <org.apache.nifi.registry.db.entity.BucketItemEntityType: org.apache.nifi.registry.db.entity.BucketItemEntityType FLOW>;
virtualinvoke v.<org.apache.nifi.registry.db.entity.FlowEntity: void setType(org.apache.nifi.registry.db.entity.BucketItemEntityType)>(v);
return;
}
public long getSnapshotCount()
{
long v;
org.apache.nifi.registry.db.entity.FlowEntity v;
v := @this: org.apache.nifi.registry.db.entity.FlowEntity;
v = v.<org.apache.nifi.registry.db.entity.FlowEntity: long snapshotCount>;
return v;
}
public void setSnapshotCount(long)
{
long v;
org.apache.nifi.registry.db.entity.FlowEntity v;
v := @this: org.apache.nifi.registry.db.entity.FlowEntity;
v := @parameter: long;
v.<org.apache.nifi.registry.db.entity.FlowEntity: long snapshotCount> = v;
return;
}
public void setType(org.apache.nifi.registry.db.entity.BucketItemEntityType)
{
java.lang.IllegalStateException v;
org.apache.nifi.registry.db.entity.BucketItemEntityType v, v;
org.apache.nifi.registry.db.entity.FlowEntity v;
v := @this: org.apache.nifi.registry.db.entity.FlowEntity;
v := @parameter: org.apache.nifi.registry.db.entity.BucketItemEntityType;
v = <org.apache.nifi.registry.db.entity.BucketItemEntityType: org.apache.nifi.registry.db.entity.BucketItemEntityType FLOW>;
if v == v goto label;
v = new java.lang.IllegalStateException;
specialinvoke v.<java.lang.IllegalStateException: void <init>(java.lang.String)>("Must set type to FLOW");
throw v;
label:
specialinvoke v.<org.apache.nifi.registry.db.entity.BucketItemEntity: void setType(org.apache.nifi.registry.db.entity.BucketItemEntityType)>(v);
return;
}
}