|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.apache.struts.action.ActionForm
com.actuate.activeportal.forms.BaseActionForm
com.actuate.activeportal.forms.GeneralFilterActionForm
com.actuate.activeportal.forms.SubscribeChannelActionForm
public class SubscribeChannelActionForm
The form contains list of (un)subscribed channels available to the login user.
-The action classes use the setter methods to set channel list.
-The JSP pages use the getter method to get the channel list.
Constructor Summary | |
---|---|
SubscribeChannelActionForm()
|
Method Summary | |
---|---|
void |
clear()
|
java.lang.Object[] |
getArray(java.lang.String _categoryName)
This method should return the list of objects whose properties are to be displayed. |
java.util.Vector |
getAvailableChannels()
Gets the list of available channels for the user. |
java.lang.String[] |
getCategories()
This method is used by the categories view to retrieve the list of categories it is supposed to display. |
java.lang.String |
getCheckboxlist()
Gets the list of items |
java.util.Collection |
getCollection(java.lang.String _categoryName)
This method should return the list of objects whose properties are to be displayed. |
java.lang.String |
getSubmitState()
Gets the submitState |
boolean |
isEmpty()
This method is called by the views to determine whether the list is empty. |
void |
setAvailableChannels(java.util.Vector vector)
Sets the list of available channels. |
void |
setCheckboxlist(java.lang.String string)
Sets the checkbox list. |
void |
setSubmitState(java.lang.String string)
Sets the submit state. |
Methods inherited from class com.actuate.activeportal.forms.GeneralFilterActionForm |
---|
getCompletedFilter, getFilter, getPendingFilter, getRunningFilter, getScheduledFilter, getWaitingFilter, isApplyFilter, isCbFail, isCbSuccess, isFilterEnabled, isOnlyLatest, isResetFilter, isShowDocuments, isShowExecutables, isShowFolders, reset, setApplyFilter, setCbFail, setCbSuccess, setCompletedFilter, setFilter, setFilterEnabled, setOnlyLatest, setPendingFilter, setResetFilter, setRunningFilter, setScheduledFilter, setShowDocuments, setShowExecutables, setShowFolders, setWaitingFilter |
Methods inherited from class com.actuate.activeportal.forms.BaseActionForm |
---|
fixUTF8, isPostback, setPostback |
Methods inherited from class org.apache.struts.action.ActionForm |
---|
getMultipartRequestHandler, getServletWrapper, reset, setMultipartRequestHandler, setServlet, validate, validate |
Methods inherited from class java.lang.Object |
---|
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public SubscribeChannelActionForm()
Method Detail |
---|
public void clear()
public java.util.Vector getAvailableChannels()
public void setAvailableChannels(java.util.Vector vector)
public java.lang.String getSubmitState()
public void setSubmitState(java.lang.String string)
public java.lang.String getCheckboxlist()
public void setCheckboxlist(java.lang.String string)
public java.lang.String[] getCategories()
IContentList
This method is used by the categories view to retrieve the list of categories it is supposed to display.
For e.g.
The file list implementation will return
{folders}
{documents}
{executables}
etc....
getCategories
in interface IContentList
public java.lang.Object[] getArray(java.lang.String _categoryName)
IContentList
This method should return the list of objects whose properties are to be displayed.
For e.g.
If the file list is being displayed then each object in the array will be an
instance of com.actuate.schemas.File
If this method returns null then the getCollection() method will be called.
This method is called with the category name as a parameter.
Bear in mind that this can be null if the view is not the category view; in such a case
the entire list should normally be returned.
getArray
in interface IContentList
_categoryName
- The category which is being displayed currently
public java.util.Collection getCollection(java.lang.String _categoryName)
IContentList
This method should return the list of objects whose properties are to be displayed.
For e.g. If the file list is being displayed then each object in the array will be an instance of com.actuate.schemas.File If this method returns null then the getCollection() method will be called. This method is called with the category name as a parameter. Bear in mind that this can be null if the view is not the category view; in such a case the entire list should normally be returned.
getCollection
in interface IContentList
_categoryName
- The category which is being displayed currently
public boolean isEmpty()
IContentList
isEmpty
in interface IContentList
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |