(function(window) { var Gitana = window.Gitana; Gitana.InteractionUserAgent = Gitana.AbstractReportableWarehouseObject.extend( /** @lends Gitana.InteractionUserAgent.prototype */ { /** * @constructs * @augments Gitana.AbstractReportableWarehouseObject * * @class InteractionUserAgent * * @param {Gitana.Warehouse} warehouse * @param [Object] object json object (if no callback required for populating) */ constructor: function(warehouse, object) { this.base(warehouse, object); this.objectType = function() { return "Gitana.InteractionUserAgent"; }; }, /** * @OVERRIDE */ getType: function() { return Gitana.TypedIDConstants.TYPE_INTERACTION_USERAGENT; }, /** * @OVERRIDE */ getUri: function() { return "/warehouses/" + this.getWarehouseId() + "/useragents/" + this.getId(); }, /** * @override */ clone: function() { return this.getFactory().interactionUserAgent(this.getWarehouse(), this); } }); })(window);