smartstatus/ts/smartstatus.classes.http.ts
2019-01-02 01:29:35 +01:00

24 lines
836 B
TypeScript

export type TStatusGroup = 'clientError' | 'serverError';
export class HttpStatus {
protected static statusMap: {[key:string]: HttpStatus} = {};
public static getHttpStatusByString (codeStringArg: string) {
return HttpStatus.statusMap[codeStringArg];
}
public code: number;
public text: string;
public description: string;
constructor(optionsArg: { code: number; text: string; description: string }) {
this.code = optionsArg.code;
this.text = optionsArg.text;
this.description = optionsArg.description;
HttpStatus.statusMap[this.code.toString()] = this;
}
}
export * from './smartstatus.classes.http.1xx';
export * from './smartstatus.classes.http.2xx';
export * from './smartstatus.classes.http.3xx';
export * from './smartstatus.classes.http.4xx';
export * from './smartstatus.classes.http.5xx';