blob: 1694efe1ce8cd7477ddf0ecf1b84e3525e2ec45a [file] [log] [blame]
var orion = orion || {};
orion.BundleData = function(bundleId, location, headers) {
this._bundleId = bundleId;
this._location = location;
this._headers = headers;
};
orion.BundleData.prototype = {
getBundleId : function() {
return this._bundleId;
},
getLocation : function() {
return this._location;
},
getHeaders : function() {
return this._headers;
}
};