Get publishedDate, artifactId and groupId from online registry data

This commit is contained in:
AhyoungRyu 2017-03-05 01:40:38 +09:00
parent 03312acb60
commit 1707882983

View file

@ -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;
}