Name
sn_appclient.ArtifactServiceAjax
Description
No description available
Script
var ArtifactServiceAjax = Class.create();
ArtifactServiceAjax.prototype = Object.extendsObject(global.AbstractAjaxProcessor, {
authenticate: function() {
var svc = this._createArtifactService();
var authenticated = svc.authenticate();
return authenticated;
},
getArtifacts: function() {
var groupId = this.getParameter("sysparm_group_id");
var svc = this._createArtifactService();
var artifacts = svc.getArtifacts(groupId);
return new global.JSON().encode(artifacts);
},
getArtifactVersions: function() {
var groupId = this.getParameter("sysparm_group_id");
var artifactId = this.getParameter("sysparm_artifact_id");
var svc = this._createArtifactService();
var versions = svc.getArtifactVersions(groupId, artifactId);
return new global.JSON().encode(versions);
},
getResourceURI: function() {
var groupId = this.getParameter("sysparm_group_id");
var artifactId = this.getParameter("sysparm_artifact_id");
var artifactVersion = this.getParameter("sysparm_artifact_version");
var svc = this._createArtifactService();
var resourceURI = svc.getResourceURI(groupId, artifactId,artifactVersion);
return new global.JSON().encode(resourceURI);
},
_createArtifactService: function() {
var repoUrl = this.getParameter("sysparm_repo_url");
var username = this.getParameter("sysparm_repo_username");
var password = this.getParameter("sysparm_repo_password");
return new ArtifactService(repoUrl, username, password);
},
type: 'ArtifactServiceAjax'
});
Sys ID
28b50330d702310092610eca5e6103d2