aboutsummaryrefslogtreecommitdiffstats
path: root/sdnr/wt/odlux/framework/src/models
diff options
context:
space:
mode:
Diffstat (limited to 'sdnr/wt/odlux/framework/src/models')
-rw-r--r--sdnr/wt/odlux/framework/src/models/applicationConfig.ts5
-rw-r--r--sdnr/wt/odlux/framework/src/models/applicationInfo.ts55
-rw-r--r--sdnr/wt/odlux/framework/src/models/authentication.ts94
-rw-r--r--sdnr/wt/odlux/framework/src/models/elasticSearch.ts72
-rw-r--r--sdnr/wt/odlux/framework/src/models/errorInfo.ts29
-rw-r--r--sdnr/wt/odlux/framework/src/models/externalLoginProvider.ts23
-rw-r--r--sdnr/wt/odlux/framework/src/models/iconDefinition.ts21
-rw-r--r--sdnr/wt/odlux/framework/src/models/index.ts18
-rw-r--r--sdnr/wt/odlux/framework/src/models/restService.ts48
-rw-r--r--sdnr/wt/odlux/framework/src/models/settings.ts48
-rw-r--r--sdnr/wt/odlux/framework/src/models/snackbarItem.ts20
11 files changed, 0 insertions, 433 deletions
diff --git a/sdnr/wt/odlux/framework/src/models/applicationConfig.ts b/sdnr/wt/odlux/framework/src/models/applicationConfig.ts
deleted file mode 100644
index 0ae9c266b..000000000
--- a/sdnr/wt/odlux/framework/src/models/applicationConfig.ts
+++ /dev/null
@@ -1,5 +0,0 @@
-export type ApplicationConfig = {
- authentication: "basic"|"oauth", // basic
- enablePolicy: false, // false
- transportpceUrl? : string
-}; \ No newline at end of file
diff --git a/sdnr/wt/odlux/framework/src/models/applicationInfo.ts b/sdnr/wt/odlux/framework/src/models/applicationInfo.ts
deleted file mode 100644
index ff07b7d7b..000000000
--- a/sdnr/wt/odlux/framework/src/models/applicationInfo.ts
+++ /dev/null
@@ -1,55 +0,0 @@
-/**
- * ============LICENSE_START========================================================================
- * ONAP : ccsdk feature sdnr wt odlux
- * =================================================================================================
- * Copyright (C) 2019 highstreet technologies GmbH Intellectual Property. All rights reserved.
- * =================================================================================================
- * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file 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.
- * ============LICENSE_END==========================================================================
- */
-import { ComponentType } from 'react';
-import { IconType } from './iconDefinition';
-
-import { IActionHandler } from '../flux/action';
-import { Middleware } from '../flux/middleware';
-import { SettingsComponentProps } from './settings';
-
-/** Represents the information needed about an application to integrate. */
-export class ApplicationInfo {
- /** The name of the application. */
- name: string;
- /** Optional: The title of the application, if null ot undefined the name will be used. */
- title?: string;
- /** Optional: The icon of the application for the navigation and title bar. */
- icon?: IconType;
- /** Optional: The description of the application. */
- description?: string;
- /** The root component of the application. */
- rootComponent: ComponentType;
- /** Optional: The root action handler of the application. */
- rootActionHandler?: IActionHandler<{ [key: string]: any }>;
- /** Optional: Application speciffic middlewares. */
- middlewares?: Middleware<{ [key: string]: any }>[];
- /** Optional: A mapping object with the exported components. */
- exportedComponents?: { [key: string]: ComponentType }
- /** Optional: The entry to be shown in the menu. If undefiened the name will be used. */
- menuEntry?: string | React.ComponentType;
- /** Optional: A component to be shown in the menu when this app is active below the main entry. If undefiened the name will be used. */
- subMenuEntry?: React.ComponentType;
- /** Optional: A component to be shown in the applications status bar. If undefiened the name will be used. */
- statusBarElement?: React.ComponentType;
- /** Optional: A component to be shown in the dashboardview. If undefiened the name will be used. */
- dashbaordElement?: React.ComponentType;
- /** Optional: A component shown in the settings view */
- settingsElement?: React.ComponentType<SettingsComponentProps>;
- /** Optional: The pasth for this application. If undefined the name will be use as path. */
- path?: string;
-}
diff --git a/sdnr/wt/odlux/framework/src/models/authentication.ts b/sdnr/wt/odlux/framework/src/models/authentication.ts
deleted file mode 100644
index f56538184..000000000
--- a/sdnr/wt/odlux/framework/src/models/authentication.ts
+++ /dev/null
@@ -1,94 +0,0 @@
-/**
- * ============LICENSE_START========================================================================
- * ONAP : ccsdk feature sdnr wt odlux
- * =================================================================================================
- * Copyright (C) 2019 highstreet technologies GmbH Intellectual Property. All rights reserved.
- * =================================================================================================
- * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file 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.
- * ============LICENSE_END==========================================================================
- */
-
-export type AuthToken = {
- username: string;
- access_token: string;
- token_type: string;
- /***
- * datetime the token should expire in unix timestamp
- *
- * must be in seconds
- */
- expires: number;
- /***
- * time the token was issued in unix timestamp
- *
- * must be in seconds
- *
- */
- issued: number;
-}
-
-export type AuthPolicy = {
- path: string;
- methods: {
- get?: boolean;
- post?: boolean;
- put?: boolean;
- patch?: boolean;
- delete?: boolean;
- }
-}
-
-export class User {
-
- constructor (private _bearerToken: AuthToken) {
-
- }
-
- public get user(): string | null {
- return this._bearerToken && this._bearerToken.username;
- };
-
- public get token(): string | null {
- return this._bearerToken && this._bearerToken.access_token;
- }
-
- public get tokenType(): string | null {
- return this._bearerToken && this._bearerToken.token_type;
- }
-
- /***
- * Time the user should be logged out, in unix timestamp in seconds
- */
- public get logoutAt(): number{
- return this._bearerToken && this._bearerToken.expires;
- }
-
- /***
- * Time the user logged in, in unix timestamp in seconds
- */
- public get loginAt(): number{
- return this._bearerToken && this._bearerToken.issued;
- }
-
- public get isValid(): boolean {
- return (this._bearerToken && (new Date().valueOf()) < this._bearerToken.expires*1000) || false;
- }
-
- public toString() {
- return JSON.stringify(this._bearerToken);
- }
-
- public static fromString(data: string) {
- return new User(JSON.parse(data));
- }
-
-
-}
diff --git a/sdnr/wt/odlux/framework/src/models/elasticSearch.ts b/sdnr/wt/odlux/framework/src/models/elasticSearch.ts
deleted file mode 100644
index fc4383612..000000000
--- a/sdnr/wt/odlux/framework/src/models/elasticSearch.ts
+++ /dev/null
@@ -1,72 +0,0 @@
-/**
- * ============LICENSE_START========================================================================
- * ONAP : ccsdk feature sdnr wt odlux
- * =================================================================================================
- * Copyright (C) 2019 highstreet technologies GmbH Intellectual Property. All rights reserved.
- * =================================================================================================
- * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file 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.
- * ============LICENSE_END==========================================================================
- */
-export type Result<TSource extends {}> = {
- "data-provider:output": {
- pagination?: {
- size: number;
- page: number;
- total: number;
- },
- data: TSource[];
- }
-}
-
-export type SingeResult<TSource extends {}> = {
- "data-provider:output": TSource;
-}
-
-
-export type ResultTopology<TSource extends {}> = {
- "output": {
- pagination?: {
- size: number;
- page: number;
- total: number;
- },
- data: TSource[];
- }
-}
-
-export type HitEntry<TSource extends {}> = {
- _index: string;
- _type: string;
- _id: string;
- _score: number;
- _source: TSource;
-}
-
-type ActionResponse ={
- _index: string;
- _type: string;
- _id: string;
- _shards: {
- total: number,
- successful: number,
- failed: number
- },
-
-}
-
-export type PostResponse = ActionResponse & {
- created: boolean
-}
-
-export type DeleteResponse = ActionResponse & {
- found: boolean
-}
-
diff --git a/sdnr/wt/odlux/framework/src/models/errorInfo.ts b/sdnr/wt/odlux/framework/src/models/errorInfo.ts
deleted file mode 100644
index 21217a108..000000000
--- a/sdnr/wt/odlux/framework/src/models/errorInfo.ts
+++ /dev/null
@@ -1,29 +0,0 @@
-/**
- * ============LICENSE_START========================================================================
- * ONAP : ccsdk feature sdnr wt odlux
- * =================================================================================================
- * Copyright (C) 2019 highstreet technologies GmbH Intellectual Property. All rights reserved.
- * =================================================================================================
- * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file 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.
- * ============LICENSE_END==========================================================================
- */
-export type ErrorInfo = {
- title?: string,
- error?: Error | null,
- url?: string,
- line?: number,
- col?: number,
- info?: {
- extra?: string,
- componentStack?: string
- },
- message?: string
-} \ No newline at end of file
diff --git a/sdnr/wt/odlux/framework/src/models/externalLoginProvider.ts b/sdnr/wt/odlux/framework/src/models/externalLoginProvider.ts
deleted file mode 100644
index 357feed06..000000000
--- a/sdnr/wt/odlux/framework/src/models/externalLoginProvider.ts
+++ /dev/null
@@ -1,23 +0,0 @@
-/**
- * ============LICENSE_START========================================================================
- * ONAP : ccsdk feature sdnr wt odlux
- * =================================================================================================
- * Copyright (C) 2019 highstreet technologies GmbH Intellectual Property. All rights reserved.
- * =================================================================================================
- * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file 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.
- * ============LICENSE_END==========================================================================
- */
-
-export type ExternalLoginProvider = {
- id: string;
- title: string;
- loginUrl: string;
- } \ No newline at end of file
diff --git a/sdnr/wt/odlux/framework/src/models/iconDefinition.ts b/sdnr/wt/odlux/framework/src/models/iconDefinition.ts
deleted file mode 100644
index ff50aa73c..000000000
--- a/sdnr/wt/odlux/framework/src/models/iconDefinition.ts
+++ /dev/null
@@ -1,21 +0,0 @@
-/**
- * ============LICENSE_START========================================================================
- * ONAP : ccsdk feature sdnr wt odlux
- * =================================================================================================
- * Copyright (C) 2019 highstreet technologies GmbH Intellectual Property. All rights reserved.
- * =================================================================================================
- * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file 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.
- * ============LICENSE_END==========================================================================
- */
-
-import { IconDefinition } from '@fortawesome/free-solid-svg-icons';
-
-export type IconType = IconDefinition | string; \ No newline at end of file
diff --git a/sdnr/wt/odlux/framework/src/models/index.ts b/sdnr/wt/odlux/framework/src/models/index.ts
deleted file mode 100644
index 4b8dc20aa..000000000
--- a/sdnr/wt/odlux/framework/src/models/index.ts
+++ /dev/null
@@ -1,18 +0,0 @@
-/**
- * ============LICENSE_START========================================================================
- * ONAP : ccsdk feature sdnr wt odlux
- * =================================================================================================
- * Copyright (C) 2019 highstreet technologies GmbH Intellectual Property. All rights reserved.
- * =================================================================================================
- * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file 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.
- * ============LICENSE_END==========================================================================
- */
-export * from './elasticSearch'; \ No newline at end of file
diff --git a/sdnr/wt/odlux/framework/src/models/restService.ts b/sdnr/wt/odlux/framework/src/models/restService.ts
deleted file mode 100644
index 03f580b01..000000000
--- a/sdnr/wt/odlux/framework/src/models/restService.ts
+++ /dev/null
@@ -1,48 +0,0 @@
-/**
- * ============LICENSE_START========================================================================
- * ONAP : ccsdk feature sdnr wt odlux
- * =================================================================================================
- * Copyright (C) 2019 highstreet technologies GmbH Intellectual Property. All rights reserved.
- * =================================================================================================
- * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file 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.
- * ============LICENSE_END==========================================================================
- */
-
-/**
- * The PlainObject type is a JavaScript object containing zero or more key-value pairs.
- */
-export interface PlainObject<T = any> {
- [key: string]: T;
-}
-
-export interface AjaxParameter {
- /**
- * The HTTP method to use for the request (e.g. "POST", "GET", "PUT").
- */
- method?: 'GET' | 'POST' | 'PUT' | 'DELETE' | 'OPTIONS' | 'PATCH';
- /**
- * An object of additional header key/value pairs to send along with requests using the XMLHttpRequest
- * transport. The header X-Requested-With: XMLHttpRequest is always added, but its default
- * XMLHttpRequest value can be changed here. Values in the headers setting can also be overwritten from
- * within the beforeSend function.
- */
- headers?: PlainObject<string | null | undefined>;
- /**
- * Data to be sent to the server. It is converted to a query string, if not already a string. It's
- * appended to the url for GET-requests. See processData option to prevent this automatic processing.
- * Object must be Key/Value pairs. If value is an Array, jQuery serializes multiple values with same
- * key based on the value of the traditional setting (described below).
- */
- data?: PlainObject | string;
-}
-
-
-
diff --git a/sdnr/wt/odlux/framework/src/models/settings.ts b/sdnr/wt/odlux/framework/src/models/settings.ts
deleted file mode 100644
index 1752d6a52..000000000
--- a/sdnr/wt/odlux/framework/src/models/settings.ts
+++ /dev/null
@@ -1,48 +0,0 @@
-/**
- * ============LICENSE_START========================================================================
- * ONAP : ccsdk feature sdnr wt odlux
- * =================================================================================================
- * Copyright (C) 2021 highstreet technologies GmbH Intellectual Property. All rights reserved.
- * =================================================================================================
- * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file 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.
- * ============LICENSE_END==========================================================================
- */
-
-export type TableSettingsColumn = {
- property: string;
- displayed: boolean;
-};
-
-export type TableSettings = {
- tables:{
- [key: string]: {
- columns: TableSettingsColumn[];
-
- //match prop names, hide them
- //via property name! -> only those which are hidden!
- //all others default false, oh yeah
- //or maybe the other way around, gotta think about that
-
- };
- };
-};
-
-export type GeneralSettings = {
- general:{
- areNotificationsEnabled: boolean | null;
- };
-};
-
-export type Settings = TableSettings & GeneralSettings;
-
-export type SettingsComponentProps = {
- onClose(): void;
-}; \ No newline at end of file
diff --git a/sdnr/wt/odlux/framework/src/models/snackbarItem.ts b/sdnr/wt/odlux/framework/src/models/snackbarItem.ts
deleted file mode 100644
index c10d7ef37..000000000
--- a/sdnr/wt/odlux/framework/src/models/snackbarItem.ts
+++ /dev/null
@@ -1,20 +0,0 @@
-/**
- * ============LICENSE_START========================================================================
- * ONAP : ccsdk feature sdnr wt odlux
- * =================================================================================================
- * Copyright (C) 2019 highstreet technologies GmbH Intellectual Property. All rights reserved.
- * =================================================================================================
- * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file 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.
- * ============LICENSE_END==========================================================================
- */
-import { OptionsObject } from "notistack";
-
-export type SnackbarItem = { key: number, message: string, options?: OptionsObject }; \ No newline at end of file