Class JsrParamIdBase
- java.lang.Object
-
- org.eclipse.jetty.websocket.jsr356.annotations.JsrParamIdBase
-
- All Implemented Interfaces:
IJsrParamId
- Direct Known Subclasses:
JsrParamIdOnClose,JsrParamIdOnError,JsrParamIdOnMessage,JsrParamIdOnOpen
public abstract class JsrParamIdBase extends java.lang.Object implements IJsrParamId
Common base for Parameter Identification in JSR Callable methods
-
-
Constructor Summary
Constructors Constructor Description JsrParamIdBase()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanprocess(Param param, JsrCallable callable)Process the potential parameter.
-
-
-
Method Detail
-
process
public boolean process(Param param, JsrCallable callable) throws InvalidSignatureException
Description copied from interface:IJsrParamIdProcess the potential parameter.If known to be a valid parameter, bind a role to it.
- Specified by:
processin interfaceIJsrParamId- Parameters:
param- the parameter being processedcallable- the callable this param belongs to (used to obtain extra state about the callable that might impact decision making)- Returns:
- true if processed, false if not processed
- Throws:
InvalidSignatureException- if a violation of the signature rules occurred
-
-