Bluestep JS Documentation
    Preparing search index...

    Interface PhaseInterceptor<T>

    interface PhaseInterceptor<T extends Bluestep.Soap.Message> {
        getAdditionalInterceptors(): Iterable<PhaseInterceptor<any>>;
        getAfter(): Set<string>;
        getBefore(): Set<string>;
        getId(): string;
        getPhase(): string;
        handleFault(t: T): void;
        handleMessage(t: T): void;
    }

    Type Parameters

    Hierarchy (View Summary)

    Implemented by

    Index

    Methods

    • Returns Iterable<PhaseInterceptor<any>>

    • Returns Set<string>

    • Returns Set<string>

    • Returns string

    • Returns string

    • Parameters

      Returns void

    • Parameters

      Returns void