Class InternalPageBeanResponse
- java.lang.Object
-
- net.anotheria.anosite.content.servlet.InternalResponse
-
- net.anotheria.anosite.content.servlet.InternalPageBeanResponse
-
- Direct Known Subclasses:
InternalPageBeanWithRedirectResponse
public class InternalPageBeanResponse extends InternalResponse
Internal response with a resulting page bean. Used for successful processing of a page.- Author:
- lrosenberg
-
-
Constructor Summary
Constructors Constructor Description InternalPageBeanResponse(PageBean aPageBean)Creates a new InternalPageBeanResponse with a pagebean and InternalResponseCode.CONTINUE.InternalPageBeanResponse(InternalResponseCode code, PageBean aPageBean)Creates a new InternalPageBeanResponse with the given response code and pageBean.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description PageBeangetPageBean()Returns the page bean.-
Methods inherited from class net.anotheria.anosite.content.servlet.InternalResponse
canContinue, getCode, setCode, toString
-
-
-
-
Constructor Detail
-
InternalPageBeanResponse
public InternalPageBeanResponse(PageBean aPageBean)
Creates a new InternalPageBeanResponse with a pagebean and InternalResponseCode.CONTINUE.- Parameters:
aPageBean- TODO dummy comment for javadoc.
-
InternalPageBeanResponse
public InternalPageBeanResponse(InternalResponseCode code, PageBean aPageBean)
Creates a new InternalPageBeanResponse with the given response code and pageBean.- Parameters:
code- TODO dummy comment for javadoc.aPageBean- TODO dummy comment for javadoc.
-
-
Method Detail
-
getPageBean
public PageBean getPageBean()
Returns the page bean.- Returns:
- TODO dummy comment for javadoc.
-
-