Code polish

This commit is contained in:
David Majdandžić
2023-04-05 19:29:26 +02:00
parent 694124a6b7
commit 42493aab50
9 changed files with 18 additions and 15 deletions

View File

@@ -36,6 +36,10 @@ export default abstract class SmppSession {
this.processors[Postprocessor.name] = [];
}
get appliedProcessors(): PduProcessor[] {
return this.processors[Preprocessor.name].concat(this.processors[Postprocessor.name]);
}
abstract _username: string;
get username(): string {