/*- * ============LICENSE_START========================================== * ONAP Portal-SDK * =================================================================== * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved. * =================================================================== * * Unless otherwise specified, all software contained herein is licensed * under the Apache License, Version 2.0 (the "License"); * you may not use this software except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * * Unless otherwise specified, all documentation contained herein is licensed * under the Creative Commons License, Attribution 4.0 Intl. (the "License"); * you may not use this documentation except in compliance with the License. * You may obtain a copy of the License at * * https://creativecommons.org/licenses/by/4.0/ * * Unless required by applicable law or agreed to in writing, documentation * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * * ============LICENSE_END============================================ * * */ import { Column } from './column'; export class DataTableSettings { private _columns: Array = []; private _paginationsSize:string; private _isPaginationEnabled:boolean; private _isTableSearchEnabled: boolean; private _isReadOnly: boolean; private _isServerSidePaginationEnabled: boolean; private _isServerSideSortingEnabled: boolean; private _toggleEnabled: boolean; private _applicationService: any; private _modalPopupTitle: string; constructor() { this._paginationsSize="10"; this._isPaginationEnabled = true; this._isReadOnly = false; this._isTableSearchEnabled = true; this._toggleEnabled = false; } get columns(): Array { return this._columns; } set columns(value: Array) { this._columns = value; } get isPaginationEnabled(): boolean { return this._isPaginationEnabled; } set isPaginationEnabled(value: boolean) { this._isPaginationEnabled = value; } get paginationsSize(): string { return this._paginationsSize; } set paginationsSize(value: string) { this._paginationsSize = value; } get isReadOnly(): boolean { return this._isReadOnly; } set isReadOnly(value: boolean) { this._isReadOnly = value; } get isServerSidePaginationEnabled (): boolean { return this._isServerSidePaginationEnabled ; } set isServerSidePaginationEnabled(value: boolean) { this._isServerSidePaginationEnabled = value; } get isServerSideSortingEnabled(): boolean { return this._isServerSideSortingEnabled; } set isServerSideSortingEnabled(value: boolean) { this._isServerSideSortingEnabled = value; } get isTableSearchEnabled(): boolean { return this._isTableSearchEnabled; } set isTableSearchEnabled(value: boolean) { this._isTableSearchEnabled = value; } get isToggleEnabled(): boolean { return this._toggleEnabled; } set isToggleEnabled(value: boolean) { this._toggleEnabled = value; } get applicationService(): any { return this._applicationService; } set applicationService(value: any) { this._applicationService = value; } get modalPopupTitle(): string { return this._modalPopupTitle; } set modalPopupTitle(value: string) { this._modalPopupTitle = value; } }