Examples of makeListDirty()


Examples of com.centraview.common.ListGenerator.makeListDirty()

      returnStatus = "successandnew";
    }

    // this.updateGroup(form , status);
    ListGenerator lg = ListGenerator.getListGenerator(dataSource);
    lg.makeListDirty("Marketing");
    dynaForm.initialize(mapping);

    return (mapping.findForward(returnStatus));
  }
View Full Code Here

Examples of com.centraview.common.ListGenerator.makeListDirty()

       ContactFacade remote = (ContactFacade) cfh.create();
       remote.setDataSource(dataSource);
       //System.out.println("GOT HOME IN HANDLER");
      // listid = remote.updateList( userID , form );
      ListGenerator lg = ListGenerator.getListGenerator(dataSource);
      lg.makeListDirty("Marketing");
    }
    catch (Exception e)
    {
      System.out.println("[Exception] EditListHandler.updateList: " + e.toString());
      //System.out.println(e);
View Full Code Here

Examples of com.centraview.common.ListGenerator.makeListDirty()

      if (newIndividualID > 0)
      {
        // we need to make the IndividualList dirty, so that the next time
        // it is viewed, it is refreshed and contains the record we just added
        ListGenerator lg = ListGenerator.getListGenerator(dataSource);
        lg.makeListDirty("Individual");
        lg.makeListDirty("Entity");
      }else{
    // TODO: create an ActionError message..
        forward = "errorOccurred";
      }
View Full Code Here

Examples of com.centraview.common.ListGenerator.makeListDirty()

      {
        // we need to make the IndividualList dirty, so that the next time
        // it is viewed, it is refreshed and contains the record we just added
        ListGenerator lg = ListGenerator.getListGenerator(dataSource);
        lg.makeListDirty("Individual");
        lg.makeListDirty("Entity");
      }else{
    // TODO: create an ActionError message..
        forward = "errorOccurred";
      }
    }catch(Exception e){
View Full Code Here

Examples of com.centraview.common.ListGenerator.makeListDirty()

      {
        indvID = userobject.getIndividualID();
      }

      ListGenerator lg = ListGenerator.getListGenerator(dataSource);
      lg.makeListDirty("Entity");
      lg.makeListDirty("Individual");

      RandomAccessFile ral = new RandomAccessFile(new File(dyn.getFilePath()), "r");

      String readline = "";
View Full Code Here

Examples of com.centraview.common.ListGenerator.makeListDirty()

        indvID = userobject.getIndividualID();
      }

      ListGenerator lg = ListGenerator.getListGenerator(dataSource);
      lg.makeListDirty("Entity");
      lg.makeListDirty("Individual");

      RandomAccessFile ral = new RandomAccessFile(new File(dyn.getFilePath()), "r");

      String readline = "";
      int i = 0;
View Full Code Here

Examples of com.centraview.common.ListGenerator.makeListDirty()

    // set the form elements
    populateMarketingForm.resetForm(request, response, form);

    ListGenerator lg = ListGenerator.getListGenerator(dataSource);
    lg.makeListDirty("Marketing");

    return (mapping.findForward(".view.marketing.newlistmanager"));
  }

  public int saveList(ActionForm form, int userid) throws CommunicationException, NamingException
View Full Code Here

Examples of com.centraview.common.ListGenerator.makeListDirty()

      HrFacade remote = (HrFacade) hfh.create();
      remote.setDataSource(dataSource);
      remote.createExpense(expenseFormVO, indvID);

      ListGenerator lg = ListGenerator.getListGenerator(dataSource);
      lg.makeListDirty("hr");

      return true;
    }
    catch (Exception e)
    {
View Full Code Here

Examples of com.centraview.common.ListGenerator.makeListDirty()

        }

        // we need to make the IndividualList dirty, so that the next time
        // it is viewed, it is refreshed and contains the record we just added
        ListGenerator lg = ListGenerator.getListGenerator(dataSource);
        lg.makeListDirty("Individual");
       
        // now print the new record's ID to the browser
        writer.print(newIndividualID);
      }else{
        writer.print("FAIL: Could not create Contact record.");
View Full Code Here

Examples of com.centraview.common.ListGenerator.makeListDirty()

            writer.print(record.get("mobilePhoneExt") + "\t");
            writer.print(record.get("notes") + "\n")// NOTE THE NEWLINE HERE!!!
          }   // end while (it.hasNext())  (individualList)

          ListGenerator lg = ListGenerator.getListGenerator(dataSource);
          lg.makeListDirty("Individual");
        }
      }else{
        // individual list was null. Something must have gone wrong.
        writer.print("FAIL: An unknown error occurred.");
        return(null);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.