TProtocolFilter -> TCustomProtocolFilter, TControllerFilter -> TCustomControllerFilter

This commit is contained in:
Daniele Teti 2023-07-03 20:19:53 +02:00
parent ed0c5ee942
commit 6357e71456
3 changed files with 4 additions and 4 deletions

View File

@ -38,7 +38,7 @@ uses
type type
TMVCActiveRecordProtocolFilter = class(TProtocolFilter) TMVCActiveRecordProtocolFilter = class(TCustomProtocolFilter)
private private
fDefaultConnectionDefName: string; fDefaultConnectionDefName: string;
fConnectionDefFileName: string; fConnectionDefFileName: string;

View File

@ -60,7 +60,7 @@ type
ALLOWS_METHODS = 'POST,GET,OPTIONS,PUT,DELETE'; ALLOWS_METHODS = 'POST,GET,OPTIONS,PUT,DELETE';
end; end;
TMVCCORSProtocolFilter = class(TProtocolFilter) TMVCCORSProtocolFilter = class(TCustomProtocolFilter)
private private
FAllowedOriginURL: string; FAllowedOriginURL: string;
FAllowsCredentials: string; FAllowsCredentials: string;

View File

@ -31,7 +31,7 @@ uses MVCFramework;
{$I dmvcframework.inc} {$I dmvcframework.inc}
type type
TMVCTraceProtocolFilter = class(TProtocolFilter) TMVCTraceProtocolFilter = class(TCustomProtocolFilter)
private private
fMaxBodySize: Int64; fMaxBodySize: Int64;
protected protected
@ -40,7 +40,7 @@ type
constructor Create(const MaxBodySizeInTrace: UInt64 = 1024); constructor Create(const MaxBodySizeInTrace: UInt64 = 1024);
end; end;
TMVCTraceControllerFilter = class(TControllerFilter) TMVCTraceControllerFilter = class(TCustomControllerFilter)
protected protected
procedure DoFilter( procedure DoFilter(
const Context: TWebContext; const Context: TWebContext;