blob: 47c19dd01d38c8017b56e5a27b67ec161f4624ef [file] [log] [blame]
/********************************************************************************
* Copyright (c) 2020 Contributors to the Eclipse Foundation
*
* See the NOTICE file(s) distributed with this work for additional
* information regarding copyright ownership.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* SPDX-License-Identifier: EPL-2.0
********************************************************************************/
export class PermissionsModel {
public reader: boolean = false;
public writer: boolean = false;
public admin: boolean = false;
/**
*Creates an instance of PermissionsModel.
* @param {*} [data=null]
* @memberof PermissionsModel
*/
public constructor(data: string[] = null) {
if (!!data) {
data.forEach((permissionItem: string) => {
switch (permissionItem) {
case 'kon-admin':
this.admin = true;
break;
case 'kon-writer':
this.writer = true;
break;
case 'kon-reader':
this.reader = true;
break;
default:
break;
}
});
}
}
}