public class org.apache.nifi.registry.db.entity.BundleEntity extends org.apache.nifi.registry.db.entity.BucketItemEntity
{
private java.lang.String groupId;
private java.lang.String artifactId;
private org.apache.nifi.registry.extension.bundle.BundleType bundleType;
private long versionCount;
public void <init>()
{
org.apache.nifi.registry.db.entity.BucketItemEntityType v;
org.apache.nifi.registry.db.entity.BundleEntity v;
v := @this: org.apache.nifi.registry.db.entity.BundleEntity;
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 BUNDLE>;
virtualinvoke v.<org.apache.nifi.registry.db.entity.BundleEntity: void setType(org.apache.nifi.registry.db.entity.BucketItemEntityType)>(v);
return;
}
public org.apache.nifi.registry.extension.bundle.BundleType getBundleType()
{
org.apache.nifi.registry.db.entity.BundleEntity v;
org.apache.nifi.registry.extension.bundle.BundleType v;
v := @this: org.apache.nifi.registry.db.entity.BundleEntity;
v = v.<org.apache.nifi.registry.db.entity.BundleEntity: org.apache.nifi.registry.extension.bundle.BundleType bundleType>;
return v;
}
public void setBundleType(org.apache.nifi.registry.extension.bundle.BundleType)
{
org.apache.nifi.registry.db.entity.BundleEntity v;
org.apache.nifi.registry.extension.bundle.BundleType v;
v := @this: org.apache.nifi.registry.db.entity.BundleEntity;
v := @parameter: org.apache.nifi.registry.extension.bundle.BundleType;
v.<org.apache.nifi.registry.db.entity.BundleEntity: org.apache.nifi.registry.extension.bundle.BundleType bundleType> = v;
return;
}
public java.lang.String getGroupId()
{
java.lang.String v;
org.apache.nifi.registry.db.entity.BundleEntity v;
v := @this: org.apache.nifi.registry.db.entity.BundleEntity;
v = v.<org.apache.nifi.registry.db.entity.BundleEntity: java.lang.String groupId>;
return v;
}
public void setGroupId(java.lang.String)
{
java.lang.String v;
org.apache.nifi.registry.db.entity.BundleEntity v;
v := @this: org.apache.nifi.registry.db.entity.BundleEntity;
v := @parameter: java.lang.String;
v.<org.apache.nifi.registry.db.entity.BundleEntity: java.lang.String groupId> = v;
return;
}
public java.lang.String getArtifactId()
{
java.lang.String v;
org.apache.nifi.registry.db.entity.BundleEntity v;
v := @this: org.apache.nifi.registry.db.entity.BundleEntity;
v = v.<org.apache.nifi.registry.db.entity.BundleEntity: java.lang.String artifactId>;
return v;
}
public void setArtifactId(java.lang.String)
{
java.lang.String v;
org.apache.nifi.registry.db.entity.BundleEntity v;
v := @this: org.apache.nifi.registry.db.entity.BundleEntity;
v := @parameter: java.lang.String;
v.<org.apache.nifi.registry.db.entity.BundleEntity: java.lang.String artifactId> = v;
return;
}
public long getVersionCount()
{
long v;
org.apache.nifi.registry.db.entity.BundleEntity v;
v := @this: org.apache.nifi.registry.db.entity.BundleEntity;
v = v.<org.apache.nifi.registry.db.entity.BundleEntity: long versionCount>;
return v;
}
public void setVersionCount(long)
{
long v;
org.apache.nifi.registry.db.entity.BundleEntity v;
v := @this: org.apache.nifi.registry.db.entity.BundleEntity;
v := @parameter: long;
v.<org.apache.nifi.registry.db.entity.BundleEntity: long versionCount> = 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.BundleEntity v;
v := @this: org.apache.nifi.registry.db.entity.BundleEntity;
v := @parameter: org.apache.nifi.registry.db.entity.BucketItemEntityType;
v = <org.apache.nifi.registry.db.entity.BucketItemEntityType: org.apache.nifi.registry.db.entity.BucketItemEntityType BUNDLE>;
if v == v goto label;
v = new java.lang.IllegalStateException;
specialinvoke v.<java.lang.IllegalStateException: void <init>(java.lang.String)>("Must set type to BUNDLE");
throw v;
label:
specialinvoke v.<org.apache.nifi.registry.db.entity.BucketItemEntity: void setType(org.apache.nifi.registry.db.entity.BucketItemEntityType)>(v);
return;
}
}