KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jahia > services > webdav > stores > PathItem


1 package org.jahia.services.webdav.stores;
2
3 import org.jahia.content.ContentObject;
4 import org.jahia.services.version.EntryLoadRequest;
5 import org.jahia.services.sites.JahiaSite;
6
7 import java.util.List JavaDoc;
8
9 /**
10  * Created by IntelliJ IDEA.
11  * User: toto
12  * Date: 11 mars 2005
13  * Time: 14:58:21
14  * To change this template use File | Settings | File Templates.
15  */

16 public class PathItem {
17     String JavaDoc root;
18     ContentObject object;
19     EntryLoadRequest loadRequest;
20     String JavaDoc language;
21     int type;
22     JahiaSite site;
23     List JavaDoc path;
24
25     public PathItem(String JavaDoc root, ContentObject object, EntryLoadRequest loadRequest, String JavaDoc language, int type, JahiaSite site, List JavaDoc path) {
26         this.root = root;
27         this.object = object;
28         this.loadRequest = loadRequest;
29         this.language = language;
30         this.type = type;
31         this.site = site;
32         this.path = path;
33     }
34
35     public PathItem(String JavaDoc root, EntryLoadRequest loadRequest, int type, JahiaSite site, List JavaDoc path) {
36         this.root = root;
37         this.loadRequest = loadRequest;
38         this.type = type;
39         this.site = site;
40         this.path = path;
41     }
42
43     public PathItem(String JavaDoc root, int type, JahiaSite site, List JavaDoc path) {
44         this.root = root;
45         this.type = type;
46         this.site = site;
47         this.path = path;
48     }
49 }
50
Popular Tags