Examples of listSections()


Examples of org.nextime.ion.framework.business.Publication.listSections()

     
      // recup�re une instance sur la Publication
      Publication publication = Publication.getInstance(requestedId);
     
      // recup�re la section de cette publication
      Section section = (Section)publication.listSections().firstElement();
     
      // cr�� le bean de status
      IonStatus status = new IonStatus();
      status.setCurrentSection(section);
      status.setCurrentPublication(publication);
View Full Code Here

Examples of org.nextime.ion.framework.business.Publication.listSections()

   */
  public void objectCreated(WcmEvent event) {
    Object o = event.getSource();
    if( o instanceof Publication ) {
      Publication p = (Publication)o;
      Vector v = p.listSections();
      for( int i=0; i<v.size(); i++ ) {
        Section s = (Section)v.get(i);
        new File(cachePath,"section$"+s.getId()+".html").delete();
      }
      new File(cachePath,"publication$"+p.getId()+".html").delete();
View Full Code Here

Examples of org.nextime.ion.framework.business.Publication.listSections()

   */
  public void objectDeleted(WcmEvent event) {
    Object o = event.getSource();
    if( o instanceof Publication ) {
      Publication p = (Publication)o;
      Vector v = p.listSections();
      for( int i=0; i<v.size(); i++ ) {
        Section s = (Section)v.get(i);
        new File(cachePath,"section$"+s.getId()+".html").delete();
      }
      new File(cachePath,"publication$"+p.getId()+".html").delete();
View Full Code Here

Examples of org.nextime.ion.framework.business.Publication.listSections()

   */
  public void objectModified(WcmEvent event) {
    Object o = event.getSource();
    if( o instanceof Publication ) {
      Publication p = (Publication)o;
      Vector v = p.listSections();
      for( int i=0; i<v.size(); i++ ) {
        Section s = (Section)v.get(i);
        new File(cachePath,"section$"+s.getId()+".html").delete();
      }
      new File(cachePath,"publication$"+p.getId()+".html").delete();
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.