mirror of
https://github.com/apache/zeppelin
synced 2026-05-24 09:38:26 +00:00
Get publishedDate, artifactId and groupId from online registry data
This commit is contained in:
parent
03312acb60
commit
1707882983
1 changed files with 16 additions and 0 deletions
|
|
@ -34,6 +34,10 @@ public class HeliumPackage {
|
|||
// [[ .. and .. and .. ] or [ .. and .. and ..] ..]
|
||||
private String license;
|
||||
private String icon;
|
||||
private String published;
|
||||
|
||||
private String groupId; // get groupId of INTERPRETER type package
|
||||
private String artifactId; // get artifactId of INTERPRETER type package
|
||||
|
||||
private SpellPackageInfo spell;
|
||||
private Map<String, Object> config;
|
||||
|
|
@ -108,6 +112,18 @@ public class HeliumPackage {
|
|||
return icon;
|
||||
}
|
||||
|
||||
public String getPublishedDate() {
|
||||
return published;
|
||||
}
|
||||
|
||||
public String getGroupId() {
|
||||
return groupId;
|
||||
}
|
||||
|
||||
public String getArtifactId() {
|
||||
return artifactId;
|
||||
}
|
||||
|
||||
public SpellPackageInfo getSpellInfo() {
|
||||
return spell;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue