var __extends = (this && this.__extends) || function (d, b) {
    for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p];
    function __() { this.constructor = d; }
    d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
};
/// <reference path="AjaxProxy.ts" />
var econda;
(function (econda) {
    var profileaccess;
    (function (profileaccess) {
        var proxy;
        (function (proxy) {
            var AjaxProxy = econda.profileaccess.proxy.AjaxProxy;
            /**
             * PublicEndpointProxy class.
             *
             * @class econda.profileaccess.proxy.PublicEndpointProxy
             * @extends econda.profileaccess.proxy.AjaxProxy
             */
            var PublicEndpointProxy = (function (_super) {
                __extends(PublicEndpointProxy, _super);
                function PublicEndpointProxy(cfg) {
                    if (cfg === void 0) { cfg = null; }
                    _super.call(this, cfg);
                    this.setIsPost(true);
                    this.setHasContextParams(true);
                }
                return PublicEndpointProxy;
            }(AjaxProxy));
            proxy.PublicEndpointProxy = PublicEndpointProxy;
        })(proxy = profileaccess.proxy || (profileaccess.proxy = {}));
    })(profileaccess = econda.profileaccess || (econda.profileaccess = {}));
})(econda || (econda = {}));