KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > exoplatform > services > portal > impl > Backup


1 /***************************************************************************
2  * Copyright 2001-2003 The eXo Platform SARL All rights reserved. *
3  * Please look at license.txt in info directory for more license detail. *
4  **************************************************************************/

5 package org.exoplatform.services.portal.impl;
6
7 import java.util.List JavaDoc ;
8 import org.exoplatform.services.portal.model.*;
9 /**
10  * Jun 4, 2004
11  * @author: Tuan Nguyen
12  * @email: tuan08@users.sourceforge.net
13  * @version: $ID$
14  **/

15 public class Backup {
16     private PortalConfig portalConfig;
17     private List JavaDoc pages ;
18   private NodeNavigation nodeNavigation ;
19     
20     public Backup(PortalConfig config, List JavaDoc pages, NodeNavigation nv) {
21         portalConfig = config ;
22         this.pages = pages ;
23     nodeNavigation = nv ;
24     }
25     
26     public PortalConfig getPortalConfig() { return portalConfig ; }
27     
28     public List JavaDoc getPages() { return pages ; }
29   
30   public NodeNavigation getNodeNavigation() { return nodeNavigation ; }
31 }
Popular Tags