-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
41 changed files
with
497 additions
and
309 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
export enum ArgumentType { | ||
InputArgument= 0, | ||
OutputArgument= 1 | ||
InputArgument = 0, | ||
OutputArgument = 1 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
export enum BrowseOrAll { | ||
ALL = 0, | ||
BROWSE, | ||
CANCEL, | ||
ALL = 0, | ||
BROWSE, | ||
CANCEL | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,23 @@ | ||
export enum MappingState { | ||
Undefined = 0, | ||
NotMapped = 1, | ||
CorrectMapped = 2, | ||
Conflict = 4, | ||
ConflictAccessLevel = 8, | ||
ManualMapped = 16, | ||
ValueDefined = 32, | ||
NoMappingNeeded = 64, | ||
ChildrenNotMapped = 128, | ||
ChildrenCorrectMapped = 256, | ||
ChildrenConflict = 512, | ||
ChildrenConflictAccessLevel = 1024, | ||
ChildrenManualMapped = 2048, | ||
ChildrenValueDefined = 4096, | ||
AlarmInstanceMapped = 8192, | ||
ChildrenAlarmInstanceMapped = 16384, | ||
AlarmTypeMapped = 32768, | ||
ChildrenAlarmTypeMapped = 65536, | ||
Information = 131072, | ||
ChildrenInformation = 262144, | ||
All = 524287, | ||
Undefined = 0, | ||
NotMapped = 1, | ||
CorrectMapped = 2, | ||
Conflict = 4, | ||
ConflictAccessLevel = 8, | ||
ManualMapped = 16, | ||
ValueDefined = 32, | ||
NoMappingNeeded = 64, | ||
ChildrenNotMapped = 128, | ||
ChildrenCorrectMapped = 256, | ||
ChildrenConflict = 512, | ||
ChildrenConflictAccessLevel = 1024, | ||
ChildrenManualMapped = 2048, | ||
ChildrenValueDefined = 4096, | ||
AlarmInstanceMapped = 8192, | ||
ChildrenAlarmInstanceMapped = 16384, | ||
AlarmTypeMapped = 32768, | ||
ChildrenAlarmTypeMapped = 65536, | ||
Information = 131072, | ||
ChildrenInformation = 262144, | ||
All = 524287 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,8 @@ | ||
export enum ModellingRules { | ||
NoModellingRule = 0, | ||
Optional = 1, | ||
Mandatory = 2, | ||
OptionalPlaceholder = 3, | ||
MandatoryPlaceholder = 4, | ||
NoModellingRule = 0, | ||
Optional = 1, | ||
Mandatory = 2, | ||
OptionalPlaceholder = 3, | ||
MandatoryPlaceholder = 4, | ||
ExposesItsArray | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
export enum NamespaceChangeType { | ||
DELETE_NAMESPACE, | ||
NEW_NAMESPACE, | ||
NEW_NODE, | ||
DELETE_NODE, | ||
DELETE_NAMESPACE, | ||
NEW_NAMESPACE, | ||
NEW_NODE, | ||
DELETE_NODE | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
export enum NodeClass { | ||
Unspecified = 0, | ||
Object = 1, | ||
Variable = 2, | ||
Method = 4, | ||
ObjectType = 8, | ||
VariableType = 16, | ||
ReferenceType = 32, | ||
DataType = 64, | ||
View = 128, | ||
Unspecified = 0, | ||
Object = 1, | ||
Variable = 2, | ||
Method = 4, | ||
ObjectType = 8, | ||
VariableType = 16, | ||
ReferenceType = 32, | ||
DataType = 64, | ||
View = 128 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
export enum PluginEventType { | ||
REQUEST_API, | ||
REQUEST_API | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
export enum PublisherId { | ||
Multicast = 1, | ||
Unicast = 2, | ||
Multicast = 1, | ||
Unicast = 2 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
export enum SecurityMode { | ||
INVALID, | ||
NONE, | ||
SIGN, | ||
SIGNANDENCRYPT, | ||
INVALID, | ||
NONE, | ||
SIGN, | ||
SIGNANDENCRYPT | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
export enum SupportedFileFormat { | ||
AML, | ||
XML, | ||
TTL, | ||
PEM, | ||
DER, | ||
ALL, | ||
AML, | ||
XML, | ||
TTL, | ||
PEM, | ||
DER, | ||
ALL | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import {IAddNodeParameter} from "./add-node-parameter.interface"; | ||
|
||
export interface IAddEnumeration extends IAddNodeParameter { | ||
valueType: boolean; | ||
} |
16 changes: 8 additions & 8 deletions
16
src/app/shared/public-api/interfaces/add-structure-item-parameter.interface.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
export interface IAddStructurItemParameter { | ||
name: string; | ||
dataType: string; | ||
isOptional: boolean; | ||
valueRank: number; | ||
allowSubTypes: boolean; | ||
description?: string; | ||
maxStringLength?: string; | ||
arrayDimensions?: string; | ||
name: string; | ||
dataType: string; | ||
isOptional: boolean; | ||
valueRank: number; | ||
allowSubTypes: boolean; | ||
description?: string; | ||
maxStringLength?: string; | ||
arrayDimensions?: string; | ||
} |
6 changes: 3 additions & 3 deletions
6
src/app/shared/public-api/interfaces/base-attribute-data.interface.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
import { AttributeId } from "../enums/attribute-ids"; | ||
|
||
export interface IBaseAttributeData { | ||
attributeId: AttributeId; | ||
name: string; | ||
value: any; | ||
attributeId: AttributeId; | ||
name: string; | ||
value: any; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
22 changes: 11 additions & 11 deletions
22
src/app/shared/public-api/interfaces/connect-params.interface.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
export interface IConnectParams { | ||
address: string; | ||
allowExpiredTokens: boolean; | ||
applicationName: string; | ||
certificateKeyPathClient: string; | ||
certificatePathClient: string; | ||
overrideEndpointUrl: string; | ||
securityMode: number; | ||
securityPolicy: string; | ||
session: string; | ||
password?: string; | ||
username?: string; | ||
address: string; | ||
allowExpiredTokens: boolean; | ||
applicationName: string; | ||
certificateKeyPathClient: string; | ||
certificatePathClient: string; | ||
overrideEndpointUrl: string; | ||
securityMode: number; | ||
securityPolicy: string; | ||
session: string; | ||
password?: string; | ||
username?: string; | ||
} |
40 changes: 20 additions & 20 deletions
40
src/app/shared/public-api/interfaces/endpoint-certificate.interface.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,26 @@ | ||
export interface IEndpointCertificate { | ||
issuerCommonName: string; | ||
issuerCountryName: string; | ||
issuerLocalityName: string; | ||
issuerOrganizationName: string; | ||
issuerOrganizationUnit: string; | ||
issuerStateOrProvinceName: string; | ||
issuerCommonName: string; | ||
issuerCountryName: string; | ||
issuerLocalityName: string; | ||
issuerOrganizationName: string; | ||
issuerOrganizationUnit: string; | ||
issuerStateOrProvinceName: string; | ||
|
||
subjectCommonName: string; | ||
subjectCountryName: string; | ||
subjectLocalityName: string; | ||
subjectOrganizationName: string; | ||
subjectOrganizationUnit: string; | ||
subjectStateOrProvinceName: string; | ||
subjectCommonName: string; | ||
subjectCountryName: string; | ||
subjectLocalityName: string; | ||
subjectOrganizationName: string; | ||
subjectOrganizationUnit: string; | ||
subjectStateOrProvinceName: string; | ||
|
||
notAfter: string; | ||
notBefore: string; | ||
notAfter: string; | ||
notBefore: string; | ||
|
||
applicationUri: string; | ||
ip: string; | ||
domainName: string; | ||
applicationUri: string; | ||
ip: string; | ||
domainName: string; | ||
|
||
serial: string; | ||
originalServerCertificate: string; | ||
serverCertificateBuffer: Uint8Array; | ||
serial: string; | ||
originalServerCertificate: string; | ||
serverCertificateBuffer: Uint8Array; | ||
} |
10 changes: 5 additions & 5 deletions
10
src/app/shared/public-api/interfaces/endpoint-identity-token.interface.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
export interface IEndpointIdentityToken { | ||
policyId: string; | ||
tokenType: string; | ||
securityPolicyUri: string; | ||
issuedTokenType: string; | ||
issuerEndpointUrl: string; | ||
policyId: string; | ||
tokenType: string; | ||
securityPolicyUri: string; | ||
issuedTokenType: string; | ||
issuerEndpointUrl: string; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
src/app/shared/public-api/interfaces/import-file.interface.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
export interface IImportFile { | ||
path: string; | ||
data: string; | ||
path: string; | ||
data: string; | ||
} |
10 changes: 5 additions & 5 deletions
10
src/app/shared/public-api/interfaces/method-arguments.interface.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
import { ILocalizedText } from "../opcua-types/interfaces/localized-text.interface"; | ||
|
||
export interface IMethodArguments { | ||
name: string; | ||
valueRank: number; | ||
dataType: string; | ||
arrayDimensions?: number[]; | ||
description?: ILocalizedText; | ||
name: string; | ||
valueRank: number; | ||
dataType: string; | ||
arrayDimensions?: number[]; | ||
description?: ILocalizedText; | ||
} |
4 changes: 2 additions & 2 deletions
4
src/app/shared/public-api/interfaces/namespace-change.interface.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
import { NamespaceChangeType } from "../enums/namespace-change-type"; | ||
|
||
export interface INamespaceChange { | ||
type: NamespaceChangeType; | ||
message: string; | ||
type: NamespaceChangeType; | ||
message: string; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.