Class InterceptorMetadata
- java.lang.Object
-
- tech.rsqn.cacheservice.interceptors.InterceptorMetadata
-
public class InterceptorMetadata extends java.lang.Object
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classInterceptorMetadata.Operation
-
Constructor Summary
Constructors Constructor Description InterceptorMetadata()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description InterceptorMetadata.OperationgetOperation()java.lang.StringgetTarget()voidsetOperation(InterceptorMetadata.Operation operation)voidsetTarget(java.lang.String target)static InterceptorMetadatawith(InterceptorMetadata.Operation operation, java.lang.String target)static InterceptorMetadatawith(InvalidatingInterceptor r, java.lang.String target)static InterceptorMetadatawith(ReadInterceptor r, java.lang.String target)static InterceptorMetadatawith(WriteInterceptor r, java.lang.String target)
-
-
-
Method Detail
-
with
public static InterceptorMetadata with(ReadInterceptor r, java.lang.String target)
-
with
public static InterceptorMetadata with(WriteInterceptor r, java.lang.String target)
-
with
public static InterceptorMetadata with(InvalidatingInterceptor r, java.lang.String target)
-
with
public static InterceptorMetadata with(InterceptorMetadata.Operation operation, java.lang.String target)
-
getTarget
public java.lang.String getTarget()
-
setTarget
public void setTarget(java.lang.String target)
-
getOperation
public InterceptorMetadata.Operation getOperation()
-
setOperation
public void setOperation(InterceptorMetadata.Operation operation)
-
-