blob: 6b6f46e22c91e3023a63e5585c27732facd3dfc2 [file] [log] [blame]
var orion = orion || {};
orion.BundleData = function(bundleId, location, headers) {
this._bundleId = bundleId;
this._location = location;
this._headers = headers || eval("(" + orion.Framework._fetch(location + "/META-INF/manifest.json") + ")"); //naughty
};
orion.BundleData.prototype = {
getBundleId : function() {
return this._bundleId;
},
getLocation : function() {
return this._location;
},
getHeaders : function() {
return this._headers;
}
};