igniteui-react-core
Version:
Ignite UI React Core.
122 lines (121 loc) • 4.09 kB
JavaScript
/*
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
https://www.infragistics.com/legal/license/igultimate-la
https://www.infragistics.com/legal/license/igultimate-eula
GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
*/
import { __extends } from "tslib";
import { GeographicMapImageryDescription } from "./GeographicMapImageryDescription";
import { markType } from "./type";
/**
* @hidden
*/
var ArcGISOnlineMapImageryDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(ArcGISOnlineMapImageryDescription, _super);
function ArcGISOnlineMapImageryDescription() {
var _this = _super.call(this) || this;
_this.ag = null;
_this.ak = null;
_this.ah = null;
_this.al = null;
_this.ac = false;
_this.ae = 0;
_this.aj = null;
_this.ai = null;
return _this;
}
ArcGISOnlineMapImageryDescription.prototype.get_type = function () {
return "ArcGISOnlineMapImagery";
};
Object.defineProperty(ArcGISOnlineMapImageryDescription.prototype, "mapServerUri", {
get: function () {
return this.ag;
},
set: function (a) {
this.ag = a;
this.g("MapServerUri");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ArcGISOnlineMapImageryDescription.prototype, "userName", {
get: function () {
return this.ak;
},
set: function (a) {
this.ak = a;
this.g("UserName");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ArcGISOnlineMapImageryDescription.prototype, "password", {
get: function () {
return this.ah;
},
set: function (a) {
this.ah = a;
this.g("Password");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ArcGISOnlineMapImageryDescription.prototype, "userToken", {
get: function () {
return this.al;
},
set: function (a) {
this.al = a;
this.g("UserToken");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ArcGISOnlineMapImageryDescription.prototype, "isMapPublic", {
get: function () {
return this.ac;
},
set: function (a) {
this.ac = a;
this.g("IsMapPublic");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ArcGISOnlineMapImageryDescription.prototype, "defaultTokenTimeout", {
get: function () {
return this.ae;
},
set: function (a) {
this.ae = a;
this.g("DefaultTokenTimeout");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ArcGISOnlineMapImageryDescription.prototype, "tokenGenerationEndPoint", {
get: function () {
return this.aj;
},
set: function (a) {
this.aj = a;
this.g("TokenGenerationEndPoint");
},
enumerable: false,
configurable: true
});
Object.defineProperty(ArcGISOnlineMapImageryDescription.prototype, "refererUri", {
get: function () {
return this.ai;
},
set: function (a) {
this.ai = a;
this.g("RefererUri");
},
enumerable: false,
configurable: true
});
ArcGISOnlineMapImageryDescription.$t = markType(ArcGISOnlineMapImageryDescription, 'ArcGISOnlineMapImageryDescription', GeographicMapImageryDescription.$);
return ArcGISOnlineMapImageryDescription;
}(GeographicMapImageryDescription));
export { ArcGISOnlineMapImageryDescription };