Class OAuthPopupControllerBase.HandlerContext
- java.lang.Object
-
- jetbrains.buildServer.serverSide.oauth.OAuthPopupControllerBase.HandlerContext
-
- Enclosing class:
- OAuthPopupControllerBase
protected static class OAuthPopupControllerBase.HandlerContext extends Object
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description OAuthConnectionDescriptor
getConnection()
Object
getErrorCodeAttribute()
org.springframework.web.servlet.ModelAndView
getModelAndView()
SProject
getProject()
javax.servlet.http.HttpServletRequest
getRequest()
String
getRequestParameter(String parameterName)
String
getShowMode()
String
getVcsType()
void
putError(String errorMessage)
void
putModelAttribute(String key, Object value)
void
setModelAndView(org.springframework.web.servlet.ModelAndView modelAndView)
void
setVcsType(String vcsType)
boolean
shouldContinue()
void
stopHandling()
-
-
-
Method Detail
-
putError
public void putError(@NotNull String errorMessage)
-
stopHandling
public void stopHandling()
-
shouldContinue
public boolean shouldContinue()
-
getRequest
@NotNull public javax.servlet.http.HttpServletRequest getRequest()
-
getProject
@NotNull public SProject getProject()
-
getConnection
@NotNull public OAuthConnectionDescriptor getConnection()
-
getShowMode
@NotNull public String getShowMode()
-
getErrorCodeAttribute
@Nullable public Object getErrorCodeAttribute()
-
getModelAndView
@NotNull public org.springframework.web.servlet.ModelAndView getModelAndView()
-
setModelAndView
public void setModelAndView(@NotNull org.springframework.web.servlet.ModelAndView modelAndView)
-
getVcsType
@Nullable public String getVcsType()
-
setVcsType
public void setVcsType(@Nullable String vcsType)
-
-