JProfiler API

com.jprofiler.api.platform.data
Interface InterceptorsInfo


public interface InterceptorsInfo

Data object that holds informaton about registered interceptors.

This object is returned by Connection.getInterceptorsInfo().

See Also:
Interceptor, InterceptorProvider

Method Summary
 java.util.Map<java.lang.String,java.lang.Integer> getDescriptionToId()
          Returns a map with the interceptor descriptions as keys and payload ids as values.
 java.util.Map<java.lang.Integer,java.lang.String> getIdToDescription()
          Returns a map with the payload ids as keys and interceptor descriptions as values.
 

Method Detail

getIdToDescription

java.util.Map<java.lang.Integer,java.lang.String> getIdToDescription()
Returns a map with the payload ids as keys and interceptor descriptions as values.

Returns:
the map

getDescriptionToId

java.util.Map<java.lang.String,java.lang.Integer> getDescriptionToId()
Returns a map with the interceptor descriptions as keys and payload ids as values.

Returns:
the map

JProfiler API