Package org.red5.server.security
Interface IRed5Realm
-
public interface IRed5RealmRed5 security realm.- Author:
- Paul Gregoire
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description org.springframework.context.ApplicationContextgetApplicationContext()Returns the application context.javax.servlet.ServletContextgetServletContext()Returns the servlet context.voidsetApplicationContext(org.springframework.context.ApplicationContext applicationContext)Sets an application context.voidsetServletContext(javax.servlet.ServletContext servletContext)Sets a servlet context.
-
-
-
Method Detail
-
setServletContext
void setServletContext(javax.servlet.ServletContext servletContext)
Sets a servlet context.- Parameters:
servletContext-
-
getServletContext
javax.servlet.ServletContext getServletContext()
Returns the servlet context.- Returns:
- servlet context
-
setApplicationContext
void setApplicationContext(org.springframework.context.ApplicationContext applicationContext)
Sets an application context.- Parameters:
applicationContext-
-
getApplicationContext
org.springframework.context.ApplicationContext getApplicationContext()
Returns the application context.- Returns:
- application context
-
-