Home
last modified time | relevance | path

Searched refs:MethodType (Results 1 – 1 of 1) sorted by relevance

/unit/src/java/nginx/unit/websocket/pojo/
H A DPojoMethodMapping.java185 onOpenParams = getPathParams(onOpen, MethodType.ON_OPEN); in PojoMethodMapping()
186 onCloseParams = getPathParams(onClose, MethodType.ON_CLOSE); in PojoMethodMapping()
187 onErrorParams = getPathParams(onError, MethodType.ON_ERROR); in PojoMethodMapping()
277 MethodType methodType) throws DeploymentException { in getPathParams()
289 } else if (methodType == MethodType.ON_OPEN && in getPathParams()
292 } else if (methodType == MethodType.ON_ERROR in getPathParams()
296 } else if (methodType == MethodType.ON_CLOSE && in getPathParams()
326 if (methodType == MethodType.ON_ERROR && !foundThrowable) { in getPathParams()
726 private enum MethodType { enum in PojoMethodMapping