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 ; 8 9 16 public class PathItem { 17 String root; 18 ContentObject object; 19 EntryLoadRequest loadRequest; 20 String language; 21 int type; 22 JahiaSite site; 23 List path; 24 25 public PathItem(String root, ContentObject object, EntryLoadRequest loadRequest, String language, int type, JahiaSite site, List 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 root, EntryLoadRequest loadRequest, int type, JahiaSite site, List 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 root, int type, JahiaSite site, List path) { 44 this.root = root; 45 this.type = type; 46 this.site = site; 47 this.path = path; 48 } 49 } 50 | Popular Tags |