com.counterclaim.openefm.admin.actions
Class ManageFilingsAction

java.lang.Object
  extended byorg.apache.struts.action.Action
      extended bycom.counterclaim.openefm.admin.actions.BaseAction
          extended bycom.counterclaim.openefm.admin.actions.ManageFilingsAction

public class ManageFilingsAction
extends BaseAction

 

Field Summary
protected  java.lang.String[] allowedRoles
          Array of roles allowed to access this Action.
private static org.apache.log4j.Logger log
           
 
Fields inherited from class org.apache.struts.action.Action
ACTION_SERVLET_KEY, APPLICATION_KEY, DATA_SOURCE_KEY, defaultLocale, ERROR_KEY, EXCEPTION_KEY, FORM_BEANS_KEY, FORWARDS_KEY, LOCALE_KEY, MAPPING_KEY, MAPPINGS_KEY, MESSAGE_KEY, MESSAGES_KEY, MULTIPART_KEY, PLUG_INS_KEY, REQUEST_PROCESSOR_KEY, servlet, SERVLET_KEY, TRANSACTION_TOKEN_KEY
 
Constructor Summary
ManageFilingsAction()
           
 
Method Summary
private  org.apache.struts.action.ActionForward acceptFilings(javax.servlet.http.HttpServletRequest request, org.apache.struts.action.ActionMapping mapping, java.lang.String[] filingIdArray, java.lang.String filter)
           
private  org.apache.struts.action.ActionForward billFilings(javax.servlet.http.HttpServletRequest request, org.apache.struts.action.ActionMapping mapping, java.lang.String[] filingIdArray, java.lang.String filter)
          NOTE: This excepts an array of id's to bill, however, I only want one filing at a time to be billed.
private  ActorVO buildActorVO(InternalLxmlFiling filing, java.lang.String actorId)
           
private  java.util.List buildActorVOList(InternalLxmlFiling filing)
           
private  AddressVO buildAddressVO(InternalLxmlFiling filing, java.lang.String actorId)
           
private  DocumentVO buildDocumentVO(InternalLxmlFiling filing, java.lang.String documentId)
           
private  java.util.List buildDocumentVOList(InternalLxmlFiling filing, java.util.List documentAttachementIds)
           
private  FilingVO buildFilingVODetail(InternalLxmlFiling filing)
           
private  java.util.List buildFilingVOList(java.util.List filings)
           
private  org.apache.struts.action.ActionForward detailFiling(javax.servlet.http.HttpServletRequest request, org.apache.struts.action.ActionMapping mapping, java.lang.String id)
           
private  org.apache.struts.action.ActionForward differFilings(javax.servlet.http.HttpServletRequest request, org.apache.struts.action.ActionMapping mapping, java.lang.String[] filingIdArray, java.lang.String filter)
           
 org.apache.struts.action.ActionForward execute(org.apache.struts.action.ActionMapping mapping, org.apache.struts.action.ActionForm form, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
           
private  org.apache.struts.action.ActionForward listFilings(javax.servlet.http.HttpServletRequest request, org.apache.struts.action.ActionMapping mapping, java.lang.String filter)
           
private  org.apache.struts.action.ActionForward purgeFilings(javax.servlet.http.HttpServletRequest request, org.apache.struts.action.ActionMapping mapping, java.lang.String age, java.lang.String[] filingIdArray)
           
private  org.apache.struts.action.ActionForward rejectFilings(javax.servlet.http.HttpServletRequest request, org.apache.struts.action.ActionMapping mapping, java.lang.String[] filingIdArray, java.lang.String filter)
           
private  org.apache.struts.action.ActionForward removeFilings(javax.servlet.http.HttpServletRequest request, org.apache.struts.action.ActionMapping mapping, java.lang.String age)
           
 
Methods inherited from class com.counterclaim.openefm.admin.actions.BaseAction
executeAuthorizationCheck, executeError, getController, getFilingManager, handleException, handleInvocationTargetException, handleModelException
 
Methods inherited from class org.apache.struts.action.Action
execute, generateToken, getLocale, getResources, getResources, getServlet, isCancelled, isTokenValid, isTokenValid, perform, perform, resetToken, saveErrors, saveMessages, saveToken, setLocale, setServlet, toHex
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

log

private static org.apache.log4j.Logger log

allowedRoles

protected java.lang.String[] allowedRoles
Array of roles allowed to access this Action. Defaults to none. Subclasses must override to allow access.

Constructor Detail

ManageFilingsAction

public ManageFilingsAction()
Method Detail

execute

public org.apache.struts.action.ActionForward execute(org.apache.struts.action.ActionMapping mapping,
                                                      org.apache.struts.action.ActionForm form,
                                                      javax.servlet.http.HttpServletRequest request,
                                                      javax.servlet.http.HttpServletResponse response)
                                               throws java.io.IOException,
                                                      javax.servlet.ServletException
Throws:
java.io.IOException
javax.servlet.ServletException

rejectFilings

private org.apache.struts.action.ActionForward rejectFilings(javax.servlet.http.HttpServletRequest request,
                                                             org.apache.struts.action.ActionMapping mapping,
                                                             java.lang.String[] filingIdArray,
                                                             java.lang.String filter)

acceptFilings

private org.apache.struts.action.ActionForward acceptFilings(javax.servlet.http.HttpServletRequest request,
                                                             org.apache.struts.action.ActionMapping mapping,
                                                             java.lang.String[] filingIdArray,
                                                             java.lang.String filter)

detailFiling

private org.apache.struts.action.ActionForward detailFiling(javax.servlet.http.HttpServletRequest request,
                                                            org.apache.struts.action.ActionMapping mapping,
                                                            java.lang.String id)

billFilings

private org.apache.struts.action.ActionForward billFilings(javax.servlet.http.HttpServletRequest request,
                                                           org.apache.struts.action.ActionMapping mapping,
                                                           java.lang.String[] filingIdArray,
                                                           java.lang.String filter)
NOTE: This excepts an array of id's to bill, however, I only want one filing at a time to be billed. Therefore it will just bill the first filing in the array..


differFilings

private org.apache.struts.action.ActionForward differFilings(javax.servlet.http.HttpServletRequest request,
                                                             org.apache.struts.action.ActionMapping mapping,
                                                             java.lang.String[] filingIdArray,
                                                             java.lang.String filter)

removeFilings

private org.apache.struts.action.ActionForward removeFilings(javax.servlet.http.HttpServletRequest request,
                                                             org.apache.struts.action.ActionMapping mapping,
                                                             java.lang.String age)

purgeFilings

private org.apache.struts.action.ActionForward purgeFilings(javax.servlet.http.HttpServletRequest request,
                                                            org.apache.struts.action.ActionMapping mapping,
                                                            java.lang.String age,
                                                            java.lang.String[] filingIdArray)

listFilings

private org.apache.struts.action.ActionForward listFilings(javax.servlet.http.HttpServletRequest request,
                                                           org.apache.struts.action.ActionMapping mapping,
                                                           java.lang.String filter)

buildFilingVOList

private java.util.List buildFilingVOList(java.util.List filings)

buildFilingVODetail

private FilingVO buildFilingVODetail(InternalLxmlFiling filing)

buildActorVOList

private java.util.List buildActorVOList(InternalLxmlFiling filing)

buildActorVO

private ActorVO buildActorVO(InternalLxmlFiling filing,
                             java.lang.String actorId)

buildDocumentVO

private DocumentVO buildDocumentVO(InternalLxmlFiling filing,
                                   java.lang.String documentId)

buildDocumentVOList

private java.util.List buildDocumentVOList(InternalLxmlFiling filing,
                                           java.util.List documentAttachementIds)

buildAddressVO

private AddressVO buildAddressVO(InternalLxmlFiling filing,
                                 java.lang.String actorId)


Copyright © 2002 counterclaim.com. All Rights Reserved.