Uses of Class
com.jalios.jcms.Data

Packages that use Data
com.jalios.jcms Contains the core JCMS classes. 
com.jalios.jcms.ajax   
com.jalios.jcms.caddy Provides classes to manage and process operation on Caddy items in JCMS. 
com.jalios.jcms.calendar Contains the classes used to deal with calendar in JCMS. 
com.jalios.jcms.context Provides context classes available in every request, you can extends them or use them as javabean. 
com.jalios.jcms.db   
com.jalios.jcms.dbmember   
com.jalios.jcms.extradbdata   
com.jalios.jcms.handler Contains the javabean classes uses to process HTTP request (aka form handlers). 
com.jalios.jcms.mail   
com.jalios.jcms.mail.listener   
com.jalios.jcms.mashup   
com.jalios.jcms.media Contains all the classes to provide the Media Browser. 
com.jalios.jcms.policy   
com.jalios.jcms.portlet Contains core Portlets parent of all generated portlets. 
com.jalios.jcms.rest   
com.jalios.jcms.search Provides internal search engines classes of JCMS. 
com.jalios.jcms.servlet Contains JCMS servlet classes. 
com.jalios.jcms.stat Provides classes for statistics management and analysis. 
com.jalios.jcms.stat.beautifier Contains classes that beautify Statistics results. 
com.jalios.jcms.taglib Provides many of the classes used for JCMS jsp tags. 
com.jalios.jcms.test   
com.jalios.jcms.tracking   
com.jalios.jcms.upload   
com.jalios.jcms.webdav.cat Contains classes which provides webdav access to Categorie of JCMS. 
com.jalios.jcms.workspace Contains classes about workspace features. 
 

Uses of Data in com.jalios.jcms
 

Classes in com.jalios.jcms with type parameters of type Data
static class Data.AuthorComparator<T extends Data>
           
static class Data.DataNameComparator<T extends Data>
          This comparator compares two Data using their Data Name.
static class Data.OpAuthorComparator<T extends Data>
           
 

Subclasses of Data in com.jalios.jcms
 class AbstractReview
           
 class Category
          A Category object is a node of the category tree.
 class CategoryRight
          This class represents the rights of a Member on a set of category roots.
 class Content
          Content is a tagging abstract class which a type implements to indicates it is an editorial publication.
 class DataExtension
          This class contains extra fields for a given Data object.
 class DataRight
          This class represents the rights of a member on a Data object.
 class FileDocument
           
 class Form
          Form is the mother class of all form types.
 class Group
          A Group object is referenced by a set of Member instances.
 class Member
          A Member object contains a set of information about a JCMS referenced user.
 class Notification
           
 class NotificationCriteria
           
 class Publication
          This abstract class is the super class of all the Publication classes.
 class UserContent
          UserContent is a tagging abstract class which a type implements to indicates it is a user content.
 class WFNote
          This class represents a small note about a state change in the workflow.
 

Fields in com.jalios.jcms declared as Data
protected  Data DataExtension.extendedData
           
 

Fields in com.jalios.jcms with type parameters of type Data
protected  Map<Class<? extends Data>,Set<Data>> Channel.class2dataSet
           
protected  Map<Class<? extends Data>,Set<Data>> Channel.class2dataSet
           
protected  TreeMap<Data,ControllerStatus> Channel.dataIntegrityReport
           
 

Methods in com.jalios.jcms with type parameters of type Data
protected
<K extends Data,T>
boolean
AbstractIndexManager.addIndexWithSet(Map<K,Set<T>> index, K key, T value)
          Associates the given value to the given key in the given index.
protected
<K extends Data,V>
void
AbstractIndexManager.clearIndex(Map<K,V> index, K key)
          Remove the map at the given key in the given index.
static
<T extends Data>
List<String>
JcmsUtil.dataCollectionToIdList(Collection<T> dataColl)
          Returns the list of ids contained in the given collection of data.
static
<T extends Data>
Set<String>
JcmsUtil.dataCollectionToIdSet(Collection<T> dataColl)
          Returns the set of ids contained in the given collection of data.
static
<T extends Data>
String
JcmsUtil.dataListToString(Collection<T> list, String delim)
          Convert a Collection of Data into a String composed by id, separated by the specified delimiter.
static
<T extends Data>
Comparator<T>
Data.getAuthorComparator(Comparator<Member> memberComparator)
           
static
<T extends Data>
Comparator<T>
Data.getCaddyComparator()
           
static
<T extends Data>
Comparator<T>
Data.getComparator(String str, boolean reverse)
          Retrieves a new Comparator given a name representing it.
<T extends Data>
T
Channel.getData(Class<T> clazz, String id)
          Returns a data from its id.
<T extends Data>
ArrayList<T>
Channel.getDataList(String[] ids, boolean ignoreNull, Class<T> clazz)
          Returns the data corresponding to the given array of data ids.
static
<T extends Data>
Comparator<T>
Data.getDataNameComparator(String language)
           
protected
<K extends Data,X,Y>
Map<X,Y>
AbstractIndexManager.getIndexWithMap(Map<K,Map<X,Y>> index, K key)
          Returns the map associated to the given key in the given index.
protected
<K extends Data,X,Y>
Y
AbstractIndexManager.getIndexWithMap(Map<K,Map<X,Y>> index, K key, X name)
          Returns the value associated to the given name for the given key in the given index.
protected
<K extends Data,T>
Set<T>
AbstractIndexManager.getIndexWithSet(Map<K,Set<T>> index, K key)
          Returns the set associated to the given key in the given index.
static
<T extends Data>
Comparator<T>
Data.getOpAuthorComparator(Comparator<Member> memberComparator)
           
static
<T extends Data>
List<T>
JcmsUtil.idCollectionToDataList(Collection<String> idColl, Class<T> clazz)
          Returns a List of Data from a Collection of data's id.
static
<T extends Data>
Set<T>
JcmsUtil.idCollectionToDataSet(Collection<String> idColl, Class<T> clazz)
          Returns a Set of Data from a Collection of data's id.
protected
<K extends Data,T>
boolean
AbstractIndexManager.isUndefinedIndexWithSet(Map<K,Set<T>> index, K key)
          Returns true is key is null or if no index (even empty) is stored in the given index.
protected
<T extends Data>
T[]
Data.mergeHybridLink(Class<T> clazz, T[] storableArray, String[] dbidArray)
          Returns the merge from the given array of storable with the given array of DBID.
protected
<K extends Data,X,Y>
void
AbstractIndexManager.putIndexWithMap(Map<K,Map<X,Y>> index, K key, X name, Y value)
          Associates the given value to the given name at the given key in the given index.
protected
<K extends Data,X,Y>
Y
AbstractIndexManager.removeIndexWithMap(Map<K,Map<X,Y>> index, K key, X name)
          Remove the given name at the given key in the given index.
protected
<K extends Data,T>
boolean
AbstractIndexManager.removeIndexWithSet(Map<K,Set<T>> index, K key, T value)
          Removes the given value for the given key in the given index.
protected
<K extends Data,T>
void
AbstractIndexManager.setIndexWithSet(Map<K,Set<T>> index, K key, Set<T> set)
          Associates the given set to the given key in the given index.
static
<T extends Data>
T[]
JcmsUtil.stringArrayToDataArray(Class<T> clazz, String[] ids)
          Convert a Data[] to a String[] composed by id
static
<T extends Data>
List<T>
JcmsUtil.stringToDataList(String str, String delim, Class<T> clazz)
          Convert a String of Data ids into a List of Data.
 

Methods in com.jalios.jcms that return Data
 Data Channel.getData(String id)
          Returns a data from its id
 Data DataExtension.getExtendedData()
          Get the value of extendedData.
static Data[] JcmsUtil.getUpdatedData(Data[] old, Map dataMap)
          Convert an old array of Data to a new array of data using a Map
 Data Member.getUpdateInstance()
           
 Data Data.getUpdateInstance()
          Returns an instance of this object to update it.
protected
<T extends Data>
T[]
Data.mergeHybridLink(Class<T> clazz, T[] storableArray, String[] dbidArray)
          Returns the merge from the given array of storable with the given array of DBID.
static
<T extends Data>
T[]
JcmsUtil.stringArrayToDataArray(Class<T> clazz, String[] ids)
          Convert a Data[] to a String[] composed by id
static Data[] JcmsUtil.stringArrayToDataArray(String[] ids)
          Convert a Data[] to a String[] composed by id
 

Methods in com.jalios.jcms that return types with arguments of type Data
 TreeSet<Data> Channel.getAllDataSet()
          Returns all the data of this site in a new TreeSet.
 Map<Data,ControllerStatus> Channel.getDataIntegrityReport(boolean refresh)
          Checks the integrity constraints of all the data in the store.
 ArrayList<Data> Channel.getDataList(String[] ids)
          Returns the instances associated to an array of ids.
 TreeSet<Data> Channel.getFileIndexedDataSet(String filename)
          Returns the set of data bound to the given filename.
 TreeMap<Data,Map<Class<?>,Map<String,TreeSet<Data>>>> LinkIndexManager.getIndex()
           
 TreeMap<Data,Map<Class<?>,Map<String,TreeSet<Data>>>> LinkIndexManager.getIndex()
           
 HashMap<String,TreeSet<Data>> FileIndexManager.getIndex()
           
 TreeSet<Data> FileIndexManager.getIndexedDataSet(String filename)
           
static List<Data> JcmsUtil.stringToDataList(String str, String delim)
          Convert a String of Data ids into a List of Data.
 

Methods in com.jalios.jcms with parameters of type Data
 void AbstractLinkIndexListener.add(Data src, Collection coll, String field)
           
 void AbstractLinkIndexListener.add(Data src, Data[] array, String field)
           
 void AbstractLinkIndexListener.add(Data src, Data[] array, String field)
           
 void AbstractLinkIndexListener.add(Data src, Data tgt, String field)
           
 void AbstractLinkIndexListener.add(Data src, Map mlMap, String field)
           
 void AbstractFileIndexListener.add(String filename, Data data)
           
static void JcmsUtil.addData(TreeSet set, Class clazz, Data data)
          This methods adds the given data to the given set if this data is an instance of the given class.
static void JcmsUtil.addData(TreeSet set, Class clazz, Data[] array)
          This methods adds data from an array to the given set if the data is an instance of the given class.
 void DataController.afterWrite(Data data, int op, Member mbr, Map context)
          This method is called once the write operation has been performed.
 void BasicDataController.afterWrite(Data data, int op, Member mbr, Map context)
          This method is called once the write operation has been performed.
 void DataController.beforeWrite(Data data, int op, Member mbr, Map context)
          This method is called before the write operation is performed.
 void BasicDataController.beforeWrite(Data data, int op, Member mbr, Map context)
          This method is called before the write operation is performed.
 boolean Member.canDeleteOther(Data data)
           
 boolean DataRight.canDeleteOther(Data d)
           
 boolean CategoryRight.canDeleteOther(Data data)
           
 boolean Member.canPublish(Data data)
          Convenient method
 boolean DataRight.canPublish(Data d)
           
 boolean CategoryRight.canPublish(Data data)
           
 boolean Member.canUpdateOther(Data data)
           
 boolean DataRight.canUpdateOther(Data d)
           
 boolean CategoryRight.canUpdateOther(Data data)
           
 ControllerStatus DataController.checkIntegrity(Data data)
          Checks if the given data respects constraints integrity
 ControllerStatus BasicDataController.checkIntegrity(Data data)
          Checks if the given data respects constraints integrity
 ControllerStatus DataController.checkWrite(Data data, int op, Member mbr, boolean checkIntegrity, Map context)
          Checks if the given write operation can be performed
 ControllerStatus BasicDataController.checkWrite(Data data, int op, Member mbr, boolean checkIntegrity, Map context)
          Checks if the given write operation can be performed
protected  String[] Data.computeDBIDArray(Data[] array)
          Extract the DBData from the given array and return an array of identifier of those DBData.
 void Channel.createData(Data data, Member opAuthor)
          Creates a data in the store.
static Set<String> JcmsUtil.dataArrayToIdSet(Data[] datas)
          Convert a Data[] to a Set<String> composed by id
static String[] JcmsUtil.dataArrayToNameArray(Data[] datas, String lang)
          Convert a Data[] to a String[] composed of their name (label, title, name, ...)
static String[] JcmsUtil.dataArrayToStringArray(Data[] datas)
          Convert a Data[] to a String[] composed by id
 void Channel.deleteData(Data data, Member opAuthor)
          Delete a data in the store.
static String JcmsUtil.getAbsDisplayUrlWithUpdatedParams(Data data, Locale locale, javax.servlet.http.HttpServletRequest request, String[] names, String[] newValues, String[] removePatterns, boolean escapeAmpersand)
          Return the absolute URL to access the given data in the front office, while updating/adding or removing a set of parameters.
 boolean TypeFieldEntry.getBoolean(Data data)
          Gets the value of this boolean field for the given Data.
 TreeSet TypeFieldEntry.getCategory(Data data, Member mbr)
          Gets the value of the given Category field name for the given Data.
static String DescriptiveURLs.getDescriptiveURL(Data data, Locale locale)
          Retrieve an descriptive URL for the given Data in the given language.
static String DescriptiveURLs.getDescriptiveURLText(Data data, Locale locale)
          Returns the textual part of a descriptive URL built for the given Data.
static String JcmsUtil.getDisplayUrl(Data data, Locale locale)
          Return the URL to access the given data in the front office.
static String JcmsUtil.getDisplayUrl(Data data, Locale locale, String params, boolean escapeAmpersand)
          Return the URL to access the given data in the front office with the added given param string.
static String JcmsUtil.getDisplayUrlWithAddedParam(Data data, Locale locale, javax.servlet.http.HttpServletRequest request, String name, String value, boolean escapeAmpersand)
          Return the URL to access the given data in the front office, while adding the given parameter.
static String JcmsUtil.getDisplayUrlWithUpdatedParams(Data data, Locale locale, javax.servlet.http.HttpServletRequest request, String[] names, String[] newValues, String[] removePatterns, boolean escapeAmpersand)
          Return the URL to access the given data in the front office, while updating/adding or removing a set of parameters.
 double TypeFieldEntry.getDouble(Data data)
          Gets the value of this double field for the given Data.
 Object DataIndexManager.getExtraInfo(Data data, String key)
          Returns the ExtraInfo which is associated to the given key for the given data.
 Map<String,Object> DataIndexManager.getExtraInfoMap(Data data)
          Returns the ExtraInfo Map which is associated to the given data.
static String JcmsUtil.getFieldLangAttributes(Data data, String fieldName, String userLang)
          Compute the real language used for the given field and retrieve the html language attributes to use for the this language.
 String TypeFieldEntry.getFieldValueAsString(Data data, String lang)
          Gets value of the field as String for field of the following type: int long double boolean String
 String[] TypeFieldEntry.getFieldValueAsStringArray(Data data, String lang)
          Gets value of the field as String[] for field of the following type: int[] long[] double[] boolean[] String[] List Set
static String JcmsUtil.getId(Data data)
          This convenient method return the id of the given data.
<T> TreeSet<T>
LinkIndexManager.getIndexedDataSet(Data data, Class<T> clazz)
          Returns the Set of clazz instances referring this data (whatever the field they used for this reference)
<T> TreeSet<T>
LinkIndexManager.getIndexedDataSet(Data data, Class<T> clazz, String field)
          Returns the Set of clazz instances referring this data with the given field.
 int TypeFieldEntry.getInt(Data data)
          Gets the value of this int field for the given Data.
 int LinkIndexManager.getLinkCount(Data data)
           
 int Channel.getLinkCount(Data data)
          Returns the number of instances of Data referring the given Data
<T> TreeSet<T>
Channel.getLinkIndexedDataSet(Data data, Class<T> clazz)
          Returns the Set of Data of the given Class, referring the given data.
<T> TreeSet<T>
Channel.getLinkIndexedDataSet(Data data, Class<T> clazz, String field)
          Returns the Set of Data of the given Class, referring the given data with the given field.
 long TypeFieldEntry.getLong(Data data)
          Gets the value of this long field for the given Data.
 Object TypeFieldEntry.getObject(Data data)
          Gets the value of this Object field for the given Data.
 Object TypeFieldEntry.getObject(Data data, String lang)
          Gets the value of this Object field for the given Data.
 DataRight Member.getRight(Data data)
           
static String ResourceHelper.getSpecificEdit(Data data)
          Gives the JSP really used when a call to edit.jsp is done.
 String Channel.getTypeFieldLabel(Data data, String fieldName)
          Returns the localized label of the given field of the given data.
 String Channel.getTypeFieldLabel(Data data, String fieldName, String lang)
          Returns the localized label of the given field of the given data.
static Data[] JcmsUtil.getUpdatedData(Data[] old, Map dataMap)
          Convert an old array of Data to a new array of data using a Map
 String Channel.getUsedLanguage(Data data, String fieldName, String lang)
          Retrieve the language code really used if the field of the given publication is requested in the given language.
 List<? extends Storable> Channel.getVersionList(Data data)
          Get all the version of a given Data.
 String Channel.getVirtualID(Data data)
          Returns the virtual ID bound to the given data (or null if it does not exist).
protected  boolean Member.internalCanDeleteOther(Data data)
           
protected  boolean Member.internalCanUpdateOther(Data data)
           
static boolean JcmsUtil.isPersisted(Data data)
          Check if the given data has been persisted (either in JStore or in the database).
 boolean Channel.isRegistered(Data data)
          Checks if the given data is still registered in the Store.
static boolean JcmsUtil.isSameId(Data d1, Data d2)
          Returns true if the 2 data have the same and non null ID.
 boolean ReverseDataSelector.isSelected(Data data)
          Returns the reverse value of the encapsulated DataSelector.
 boolean QueryManager.QueryPublicationSelector.isSelected(Data data)
           
 boolean Publication.AuthorizedSelector.isSelected(Data data)
           
 boolean Publication.CanWorkOnSelector.isSelected(Data data)
           
 boolean Publication.WorkspaceSelector.isSelected(Data data)
           
 boolean Publication.WorkspaceAuthorSelector.isSelected(Data data)
           
 boolean Publication.VisibleStateSelector.isSelected(Data data)
           
 boolean Publication.PstatusSelector.isSelected(Data data)
           
 boolean Publication.PdateSelector.isSelected(Data data)
           
 boolean Publication.SdateSelector.isSelected(Data data)
           
 boolean Publication.EdateSelector.isSelected(Data data)
           
 boolean Publication.AdateSelector.isSelected(Data data)
           
 boolean Publication.UdateSelector.isSelected(Data data)
           
 boolean Publication.TrackedSelector.isSelected(Data data)
           
 boolean Publication.AudienceRightSelector.isSelected(Data data)
           
 boolean Publication.ReadRightSelector.isSelected(Data data)
           
 boolean Publication.UserContentSelector.isSelected(Data data)
           
 boolean OrDataSelector.isSelected(Data data)
          Returns true if one of the DataSelector returns true.
 boolean Member.UsageSelector.isSelected(Data data)
           
 boolean Member.TextSelector.isSelected(Data data)
           
 boolean Member.ValidEmailSelector.isSelected(Data data)
           
 boolean Member.WorkerSelector.isSelected(Data data)
           
 boolean Member.AdministratorSelector.isSelected(Data data)
           
 boolean Member.NotificationPeriodSelector.isSelected(Data data)
           
 boolean Group.WorkspaceSelector.isSelected(Data data)
           
 boolean Group.NameSelector.isSelected(Data data)
           
 boolean Group.ParentSelector.isSelected(Data data)
           
 boolean Group.NotificationPeriodSelector.isSelected(Data data)
           
 boolean Form.SubmitMemberSelector.isSelected(Data data)
           
 boolean FileDocument.ContentTypeSelector.isSelected(Data data)
           
 boolean FileDocument.SizeSelector.isSelected(Data data)
           
 boolean FileDocument.HiddenSelector.isSelected(Data data)
           
 boolean FileDocument.MediaTypeSelector.isSelected(Data data)
           
 boolean FileDocument.StrongLockSelector.isSelected(Data data)
           
 boolean DataSelector.isSelected(Data data)
          Evaluates if a data must be selected or not.
 boolean Data.CdateSelector.isSelected(Data data)
           
 boolean Data.MdateSelector.isSelected(Data data)
           
 boolean Data.ImportSelector.isSelected(Data data)
           
 boolean Data.DeletableSelector.isSelected(Data data)
           
 boolean Data.AuthorSelector.isSelected(Data data)
           
 boolean ClassDataSelector.isSelected(Data data)
           
 boolean Category.AuthorizedSelector.isSelected(Data data)
           
 boolean Category.NameSelector.isSelected(Data data)
           
 boolean Category.NodeSelector.isSelected(Data data)
           
 boolean Category.LeafSelector.isSelected(Data data)
           
 boolean AndDataSelector.isSelected(Data data)
          Returns true if all the DataSelector returns true.
static boolean JcmsUtil.isStored(Data data)
          Check if the given data is not null and stored
protected
<T extends Data>
T[]
Data.mergeHybridLink(Class<T> clazz, T[] storableArray, String[] dbidArray)
          Returns the merge from the given array of storable with the given array of DBID.
 void DataController.processFieldStatusMap(Data data, Member mbr, Map<String,FieldStatus> map)
          This method is called to fill the map of FieldStatus for the given data.
 void BasicDataController.processFieldStatusMap(Data data, Member mbr, Map<String,FieldStatus> map)
          This method is called to fill the map of FieldStatus for the given data.
 Object DataIndexManager.putExtraInfo(Data data, String key, Object value)
          Associates the given ExtraInfo for the given data.
 void AbstractLinkIndexListener.remove(Data src, Collection coll, String field)
           
 void AbstractLinkIndexListener.remove(Data src, Data[] array, String field)
           
 void AbstractLinkIndexListener.remove(Data src, Data[] array, String field)
           
 void AbstractLinkIndexListener.remove(Data src, Data tgt, String field)
           
 void AbstractLinkIndexListener.remove(Data src, Map mlMap, String field)
           
 void AbstractFileIndexListener.remove(Data data, String filename)
           
 Object DataIndexManager.removeExtraInfo(Data data, String key)
          Removes the mapping for this key from this map if it is present.
 void DataExtension.setExtendedData(Data v)
          Set the value of extendedData.
protected  void Channel.updateClass2DataSet(Data data, boolean add)
          This methods is called by a DataListener when a Data is updated or created to update the map which link Class to Set of Data.
 void Channel.updateData(Data updated, Member opAuthor)
          Updates a data in the store.
 

Method parameters in com.jalios.jcms with type arguments of type Data
static void JcmsUtil.exportCSV(Set<? extends Data> dataSet, String lang, Writer writer)
          Export a dataSet to CSV
static void JcmsUtil.exportCSVIntegrityReport(Map<Data,ControllerStatus> report, String lang, Writer writer)
          Export a Data Integrity Report to CSV
 long Channel.getDataCount(Class<? extends Data> clazz)
          Returns the number of data available for the given class.
static TreeMap<String,String> Data.getNewDefaultExtraDataMap(Class<? extends Data> clazz, boolean shortKey)
          Deprecated.  
static TreeMap<String,String> Data.getNewDefaultExtraDataMap(Class<? extends Data> clazz, String suffix, boolean shortKey)
          Returns a TreeMap representing the Extra Data description and default value.
static TreeMap<String,String> Data.getNewDefaultExtraDataMap(Class<? extends Data> clazz, String suffix, boolean shortKey, boolean useSuperClasses)
          Returns a TreeMap representing the Extra Data description and default value.
static TreeMap<String,String> Data.getNewDefaultExtraDBDataMap(Class<? extends Data> clazz, boolean shortKey)
          Deprecated.  
static TreeMap<String,String> Data.getNewDefaultExtraDBDataMap(Class<? extends Data> clazz, String suffix, boolean shortKey)
          Returns a TreeMap representing the Extra Data description and default value.
static TreeMap<String,String> Data.getNewDefaultExtraDBDataMap(Class<? extends Data> clazz, String suffix, boolean shortKey, boolean useSuperClasses)
          Returns a TreeMap representing the Extra Data description and default value.
static TypeTemplateEntry Publication.getTemplateEntry(String usage, boolean devModeChecks, Class<? extends Data> clazz, Workspace ws)
          Returns the TypeTemplateEntry matching the given parameters.
static String JcmsUtil.join(Collection<? extends Data> coll, String sep, String userLang)
          Joins a collection of Object with the given separator into a String.
protected  void Publication.removeDataSet(Member opAuthor, Set<? extends Data> dataSet)
          Remove all the data of the given data set
 

Constructors in com.jalios.jcms with parameters of type Data
Data(Data other)
           
 

Uses of Data in com.jalios.jcms.ajax
 

Methods in com.jalios.jcms.ajax with parameters of type Data
protected  int PortletCtxMenu.addAddMenu(StringBuffer sb, Data data)
           
protected  int PortletCtxMenu.addCacheMenu(StringBuffer sb, Data data)
           
protected  int PortletCtxMenu.addCaddyMenu(StringBuffer sb, Data data)
           
protected  int MemberCtxMenu.addCaddyMenu(StringBuffer sb, Data data)
           
protected  int AbstractCtxMenu.addCaddyMenu(StringBuffer sb, Data data)
           
protected  int PortletCtxMenu.addCustomMenu(StringBuffer sb, Data data)
           
protected  int MemberCtxMenu.addDeleteMenu(StringBuffer sb, Data data)
           
protected  int AbstractCtxMenu.addDeleteMenu(StringBuffer sb, Data data, String workspaceFilter, boolean isEnabled)
           
protected  int PortletCtxMenu.addEditMenu(StringBuffer sb, Data data)
           
protected  int MemberCtxMenu.addEditMenu(StringBuffer sb, Data data)
           
protected  int PublicationCtxMenu.addEditMenu(StringBuffer sb, Data pub, boolean popup)
           
protected  int AbstractCtxMenu.addEditMenu(StringBuffer sb, Data data, boolean isEnabled, boolean popup)
           
protected  int PortletCtxMenu.addRefreshMenu(StringBuffer sb, Data data)
           
protected  int PortletCtxMenu.addRemoveMenu(StringBuffer sb, Data data)
           
protected  int PortletCtxMenu.addShiftMenu(StringBuffer sb, Data data)
           
protected  int PortletCtxMenu.addTemplateMenu(StringBuffer sb, Data data)
           
protected  int CategoryCtxMenu.addViewPortalMenu(StringBuffer sb, Data data)
           
 

Uses of Data in com.jalios.jcms.caddy
 

Classes in com.jalios.jcms.caddy with type parameters of type Data
 class CaddyComparator<T extends Data>
          Compares Data based on their presence in the Caddy.
 

Fields in com.jalios.jcms.caddy with type parameters of type Data
protected  Class<? extends Data> CaddyPopinHandler.dataClass
           
protected  HashSet<Data> CaddyPopinHandler.dataSet
           
 

Methods in com.jalios.jcms.caddy that return types with arguments of type Data
 Class<? extends Data> CaddyPopinHandler.getDataClass()
           
 

Methods in com.jalios.jcms.caddy with parameters of type Data
 boolean Caddy.add(Data data)
          Add given data to this caddy.
 boolean Caddy.contains(Data data)
          Check if the given Data is in the caddy.
protected  boolean AbstractCaddyManagerHandler.deleteDataExtension(Data data, HashMap controllerContext)
          Delete the data extension of the given data, if asked.
protected  boolean AbstractCaddyManagerHandler.processMultipleStatus(Data data, ControllerStatus status)
          Process the ControllerStatus: do nothing if OK, or send on forbidden, or accumulate warning message with the previous ones in the request.
 boolean Caddy.remove(Data data)
          Remove the given data from this caddy.
 

Method parameters in com.jalios.jcms.caddy with type arguments of type Data
 boolean Caddy.addAll(Collection<? extends Data> coll)
          Add given Collection of data to this caddy.
 boolean Caddy.canManage(Class<? extends Data> clazz, Member loggedMember)
          Checks if the specified member is allowed to manage at least one Data in the Caddy.
 ArrayList<? extends Object> Caddy.getList(Class<? extends Data> clazz)
           
 boolean Caddy.removeAll(Collection<? extends Data> coll)
          Remove given Collection of data from this caddy.
 

Uses of Data in com.jalios.jcms.calendar
 

Subclasses of Data in com.jalios.jcms.calendar
 class AbstractCalendarEvent
          This abstract class provides a superclass to every calendar event and base methods for their manipulation
 

Methods in com.jalios.jcms.calendar with parameters of type Data
 boolean AbstractCalendarEvent.CalendarEventDateSelector.isSelected(Data data)
           
 boolean AbstractCalendarEvent.CalendarEventAttendeeSelector.isSelected(Data data)
           
 

Uses of Data in com.jalios.jcms.context
 

Methods in com.jalios.jcms.context with parameters of type Data
 void JcmsContext.sendRedirect(Data data)
          Redirect to the given data (eg a publication, a category, ...)
 

Uses of Data in com.jalios.jcms.db
 

Methods in com.jalios.jcms.db that return Data
 Data DBEventLog.getData()
           
static Data HibernateUtil.getData(String id)
          Retrieves the Data bound to the specified jcms id from the database.
 

Methods in com.jalios.jcms.db with parameters of type Data
protected  void AbstractJcms5DataLoader.processData(Data data, String[] array)
           
static void HibernateUtil.save(Data data)
          Saves or updates the specified Data in the database.
 void DBEventLog.setData(Data data)
           
 

Constructors in com.jalios.jcms.db with parameters of type Data
DBEventLog(String urid, int op, Data data)
           
 

Uses of Data in com.jalios.jcms.dbmember
 

Subclasses of Data in com.jalios.jcms.dbmember
 class DBMember
           
 

Methods in com.jalios.jcms.dbmember that return Data
 Data DBMember.getUpdateInstance()
           
 

Methods in com.jalios.jcms.dbmember with parameters of type Data
 boolean DBMember.canDeleteOther(Data data)
           
 boolean DBMember.canUpdateOther(Data data)
           
protected  boolean DBMember.internalCanDeleteOther(Data data)
           
protected  boolean DBMember.internalCanUpdateOther(Data data)
           
 

Uses of Data in com.jalios.jcms.extradbdata
 

Methods in com.jalios.jcms.extradbdata that return Data
 Data ExtraDBData.getData()
           
 

Methods in com.jalios.jcms.extradbdata with parameters of type Data
static ExtraDBData ExtraDBDataManager.getExtraDBData(Data data, String name)
          Retrieve the ExtraDBData instance for the specified Data and name.
static List<ExtraDBData> ExtraDBDataManager.getExtraDBDataList(Data data)
          Retrieve all ExtraDBData for the specified Data.
static Map<String,String> ExtraDBDataManager.getExtraDBDataMap(Data data)
          Retrieve all the extradbdata values for the specified Data.
static String ExtraDBDataManager.getExtraDBDataValue(Data data, String name)
          Retrieve the extradbdata value for the specified Data and name.
static int ExtraDBDataManager.removeAllExtraDBData(Data data)
          Delete all ExtraDBData for the specified Data.
static String ExtraDBDataManager.saveExtraDBData(Data data, String name, String value)
          Save, update or remove the specified extradbdata value for the specified Data and name.
static void ExtraDBDataManager.saveExtraDBDataMap(Data data, Map<String,String> extraDBDataMap, boolean replace)
          Save, update or remove the specified extradbdatas values for the specified Data.
 void ExtraDBData.setData(Data data)
           
 

Constructors in com.jalios.jcms.extradbdata with parameters of type Data
ExtraDBData(Data data, String name, String value)
           
 

Uses of Data in com.jalios.jcms.handler
 

Fields in com.jalios.jcms.handler declared as Data
protected  Data EditExtraDataHandler.data
           
protected  Data EditExtraDataHandler.workingData
           
 

Methods in com.jalios.jcms.handler with type parameters of type Data
protected
<T extends Data>
List<T>
EditDataHandler.processDataIds(String fieldName, String[] ids, Class<T> clazz)
          Computes link array to retrieve Data of the given Class.
protected
<T extends Data>
List<T>
EditDataHandler.processDataIds(String fieldName, String[] ids, Class<T> clazz, boolean trim)
          Computes link array to retrieve Data of the given Class.
<T extends Data>
Data[]
EditDataHandler.processMLDataArray(String fieldName, Class<T> clazz, String[] values, Map mlMap)
          Process the given ML values (data ids)
 

Methods in com.jalios.jcms.handler that return Data
 Data EditDataHandler.getAvailableData(Data data, Data dataField, Data field, Map mlMap, String lang)
          Generic method to get available ML field for a given data in a given language.
 Data[] EditDataHandler.getAvailableDataArray(Data data, Data[] dataField, Data[] field, Map mlMap, String lang)
          Generic method to get available ML field for a given array of data in a given language.
protected  Data EditDataHandler.processDataId(String fieldName, String dataId, Class<? extends Data> clazz)
          Computes given dataid, trim and retrieve associated data.
 Data EditDataHandler.processMLData(String fieldName, Class clazz, String[] values, Map mlMap)
          Process the given ML values (data ids)
<T extends Data>
Data[]
EditDataHandler.processMLDataArray(String fieldName, Class<T> clazz, String[] values, Map mlMap)
          Process the given ML values (data ids)
 

Methods in com.jalios.jcms.handler that return types with arguments of type Data
 Class<? extends Data> EditPublicationHandler.getDataClass()
           
abstract  Class<? extends Data> EditDataHandler.getDataClass()
           
 

Methods in com.jalios.jcms.handler with parameters of type Data
 Data EditDataHandler.getAvailableData(Data data, Data dataField, Data field, Map mlMap, String lang)
          Generic method to get available ML field for a given data in a given language.
 Data[] EditDataHandler.getAvailableDataArray(Data data, Data[] dataField, Data[] field, Map mlMap, String lang)
          Generic method to get available ML field for a given array of data in a given language.
 Data[] EditDataHandler.getAvailableDataArray(Data data, Data[] dataField, Data[] field, Map mlMap, String lang)
          Generic method to get available ML field for a given array of data in a given language.
 Data[] EditDataHandler.getAvailableDataArray(Data data, Data[] dataField, Data[] field, Map mlMap, String lang)
          Generic method to get available ML field for a given array of data in a given language.
 void EditTypeExtensionHandler.setExtendedData(Data extendedData)
          Called by the Edit[Data]Handler when validating create or update.
 void EditDataHandler.setFields(Data data)
          Set the common (Data) fields.
static void SyncLdapHandler.updateLdapGroupSyncProgressInformation(int action, Data data)
          This methods adds information regarding the current LDAP synchronization progress to the session.
protected  boolean EditDataHandler.validateCreateExtension(Data extendedData)
           
protected  boolean EditDataHandler.validateUpdateExtension(DataExtension extension, Data extendedData)
           
protected  boolean EditDataHandler.validateUploadedFileDocument(Data[] datas, Member author, Workspace ws)
          Performs create on given array of data if it is a FileDocument that have just been uploaded.
protected  boolean EditDataHandler.validateUploadedFileDocument(Data data, Member author, Workspace ws)
          Performs create on given data if it is a FileDocument that have just been uploaded.
 

Method parameters in com.jalios.jcms.handler with type arguments of type Data
protected  Data EditDataHandler.processDataId(String fieldName, String dataId, Class<? extends Data> clazz)
          Computes given dataid, trim and retrieve associated data.
 

Uses of Data in com.jalios.jcms.mail
 

Subclasses of Data in com.jalios.jcms.mail
 class MailMessage
          Class used to build and send a mail message.
 

Uses of Data in com.jalios.jcms.mail.listener
 

Methods in com.jalios.jcms.mail.listener with parameters of type Data
 boolean AttachementsMailListener.FileDocumentSelector.isSelected(Data data)
           
 

Uses of Data in com.jalios.jcms.mashup
 

Methods in com.jalios.jcms.mashup with type parameters of type Data
static
<T extends Data>
List<T>
ImportUtil.parseFieldDataList(org.jdom.Element elt, String name, Class<T> clazz)
          Returns the data list of the given field.
static
<T extends Data>
Set<T>
ImportUtil.parseFieldDataSet(org.jdom.Element elt, String name, Class<T> clazz)
          Returns the data set of the given field.
 

Methods in com.jalios.jcms.mashup that return Data
 Data ImportManager.getImportedData(String source, String importId)
          Returns the imported data from the given source and bound to the given importId (do not return conflict copy).
static Data ImportUtil.parseFieldData(org.jdom.Element elt, String name)
          Returns the data of the given field.
static Data[] ImportUtil.parseFieldDataArray(org.jdom.Element elt, String name, Class clazz)
          Returns the data array of the given field.
 

Methods in com.jalios.jcms.mashup that return types with arguments of type Data
 Set<Data> ImportStatus.getImportedDataSet()
           
 

Methods in com.jalios.jcms.mashup with parameters of type Data
 void ImportStatus.addImportedData(Data data)
           
 boolean ImportManager.checkMdate(Data importedData, Data localData)
          Returns true if importedData.importMdate is newer than the localData.importMdate.
static String ExportUtil.exportField(int indentLevel, String name, Data value)
          Returns a XML representation of a data field.
static String ExportUtil.exportField(int indentLevel, String name, Data[] value)
          Returns a XML representation of a data array field.
 String ExportManager.exportXml(Data data)
          Returns the XML export for the given data.
 void ImportManager.indexImportedData(Data data)
          Index the given imported data (conflict copy are not indexed).
 void ImportManager.unindexImportedData(Data data)
          Unindex the given imported data
 

Method parameters in com.jalios.jcms.mashup with type arguments of type Data
 String ExportManager.exportXml(Set<? extends Data> dataSet)
          Returns the XML export for the given data set.
 

Uses of Data in com.jalios.jcms.media
 

Methods in com.jalios.jcms.media with parameters of type Data
protected static String[] TreeCatMediaProxy.dataCollectionToArrayList(Collection<? extends Data> dataColl, Data removeData, Data addData)
          Convert a collection of Data into an array of String, after adding or removing given Data.
 

Method parameters in com.jalios.jcms.media with type arguments of type Data
protected static String[] TreeCatMediaProxy.dataCollectionToArrayList(Collection<? extends Data> dataColl, Data removeData, Data addData)
          Convert a collection of Data into an array of String, after adding or removing given Data.
 

Uses of Data in com.jalios.jcms.policy
 

Methods in com.jalios.jcms.policy that return Data
 Data PolicyManager.getData(String id)
           
 Data ChannelPolicyFilter.getData(String id)
          Retrieve a Data from its id.
 Data BasicChannelPolicyFilter.getData(String id)
           
protected  Data AbstractDataMailPolicyFilter.isValidAuthKey(Member mbr, String content)
          Parse mail content to find a valid authentication key and associated Data
 

Methods in com.jalios.jcms.policy with parameters of type Data
 boolean RightPolicyFilter.canDeleteOther(boolean isAuthorized, Member mbr, Data data)
          Check if this member can delete-other this instance.
 boolean PolicyManager.canDeleteOther(boolean isAuthorized, Member mbr, Data data)
           
 boolean BasicRightPolicyFilter.canDeleteOther(boolean isAuthorized, Member mbr, Data data)
           
 boolean RightPolicyFilter.canUpdateOther(boolean isAuthorized, Member mbr, Data data)
          Check if this member can update-other this instance.
 boolean PolicyManager.canUpdateOther(boolean isAuthorized, Member mbr, Data data)
           
 boolean BasicRightPolicyFilter.canUpdateOther(boolean isAuthorized, Member mbr, Data data)
           
 String PortalPolicyFilter.checkPermalink(String permalink, Data data)
          Hook called by PortalManager.getPermalink() to update the way to render permalinks
 String PolicyManager.checkPermalink(String permalink, Data data)
           
 String BasicPortalPolicyFilter.checkPermalink(String permalink, Data data)
           
protected  String AbstractDataMailPolicyFilter.generateAuthKey(Member mbr, Data data)
          Returns a Base64( Id + ';' + MD5(Id + Password))
protected  String AbstractDataMailPolicyFilter.getContentFooter(Member toMbr, Data data)
          Returns a default content footer for the given data
protected  String AbstractDataMailPolicyFilter.getContentFooter(Member toMbr, Data data, String topic, String address)
          Returns a default content footer for the given data
 String PortalPolicyFilter.getDescriptiveURLText(String descriptiveURLtext, Data data, Locale locale)
          Returns the textual part of a descriptive URL built for the given Data.
 String PolicyManager.getDescriptiveURLText(String descriptiveURLtext, Data data, Locale locale)
           
 String BasicPortalPolicyFilter.getDescriptiveURLText(String descriptiveURLtext, Data data, Locale locale)
           
 Object PortalPolicyFilter.getFieldValue(JcmsJspContext ctxt, String fieldName, Data data, Object computedValue)
          Returns an alternate value for the given field and given Data.
 Object PolicyManager.getFieldValue(JcmsJspContext ctxt, String fieldName, Data data, Object computedValue)
           
 Object BasicPortalPolicyFilter.getFieldValue(JcmsJspContext ctxt, String fieldName, Data data, Object computedValue)
           
 int PortalPolicyFilter.getIntFieldValue(JcmsJspContext ctxt, String fieldName, Data data, int computedValue)
          Returns an alternate value for the given int field and given Data.
 int PolicyManager.getIntFieldValue(JcmsJspContext ctxt, String fieldName, Data data, int computedValue)
           
 int BasicPortalPolicyFilter.getIntFieldValue(JcmsJspContext ctxt, String fieldName, Data data, int computedValue)
           
 TypeTemplateEntry TemplatePolicyFilter.getTemplateEntry(String usage, Data data, TypeTemplateEntry tte)
          This method is a hook to display a custom template, different from the default selected one.
 TypeTemplateEntry PolicyManager.getTemplateEntry(String usage, Data data, TypeTemplateEntry tte)
           
 TypeTemplateEntry BasicTemplatePolicyFilter.getTemplateEntry(String usage, Data data, TypeTemplateEntry tte)
           
 String TemplatePolicyFilter.getTemplateUsage(Data data, String usage)
          Overrides the usage decided by JCMS and previous plugins
 String PolicyManager.getTemplateUsage(Data data, String usage)
           
 String BasicTemplatePolicyFilter.getTemplateUsage(Data data, String usage)
           
 void PolicyManager.processDataExport(Data data, StringBuffer sb, Map context)
           
 void ExportPolicyFilter.processDataExport(Data data, StringBuffer sb, Map context)
          This method is called for each data to export.
 void BasicExportPolicyFilter.processDataExport(Data data, StringBuffer sb, Map context)
           
 

Method parameters in com.jalios.jcms.policy with type arguments of type Data
 TypeTemplateEntry TemplatePolicyFilter.getTemplateEntry(String usage, Class<? extends Data> dataClass, Workspace ws, TypeTemplateEntry tte)
          This method is a hook to display a custom template, different from the default selected one.
 TypeTemplateEntry PolicyManager.getTemplateEntry(String usage, Class<? extends Data> pubClass, Workspace ws, TypeTemplateEntry tte)
           
 TypeTemplateEntry BasicTemplatePolicyFilter.getTemplateEntry(String usage, Class<? extends Data> dataClass, Workspace ws, TypeTemplateEntry tte)
           
 void PolicyManager.processDataSetExport(Set<? extends Data> dataSet, StringBuffer sb, Map context)
           
 void ExportPolicyFilter.processDataSetExport(Set<? extends Data> dataSet, StringBuffer sb, Map context)
          This method is called for each data set to export.
 void BasicExportPolicyFilter.processDataSetExport(Set<? extends Data> dataSet, StringBuffer sb, Map context)
           
 

Uses of Data in com.jalios.jcms.portlet
 

Subclasses of Data in com.jalios.jcms.portlet
 class Portal
          An abstract Portal representation with fields to implements - String -> CSSFile - String -> Header - String -> Footer - Publication -> Child
 class PortalElement
           
 class PortalRedirect
          An abstract Portal representation with fields to implements.
 class Portlet
          An abstract Portlet représentation with fields to implements
 class PortletCollection
          An abstract PortletCollection représentation with fields to implements - PortalElement[] -> Children
 class PortletParent
          An abstract PortletParent représentation with fields to implements - Publication -> Children
 class PortletSkinable
          An abstract Portlet représentation with fields to implements - String -> DisplayTitle (ML) - String -> SkinTemplate - String -> SkinCSS
 

Methods in com.jalios.jcms.portlet with parameters of type Data
static String PortalManager.getPermalink(Data data)
          Returns an url representing the permanent link for the given data.
 boolean PortalElement.AbilitySelector.isSelected(Data data)
           
 

Uses of Data in com.jalios.jcms.rest
 

Fields in com.jalios.jcms.rest declared as Data
protected  Data DataRestResource.data
           
 

Methods in com.jalios.jcms.rest with parameters of type Data
protected  boolean JcmsRestResource.checkReadRight(Data theData)
          Check if the given Data may be read by the logged Member.
 

Uses of Data in com.jalios.jcms.search
 

Methods in com.jalios.jcms.search that return types with arguments of type Data
protected  com.jalios.jcms.search.LuceneDataSearchEngine.DataIterator<Data> LucenePublicationSearchEngine.getAllDataIterator()
           
protected abstract  com.jalios.jcms.search.LuceneDataSearchEngine.DataIterator<Data> LuceneDataSearchEngine.getAllDataIterator()
          This methods must be implemented by the LuceneSearchEngine.
protected  com.jalios.jcms.search.LuceneDataSearchEngine.DataIterator<Data> LuceneCategorySearchEngine.getAllDataIterator()
           
 

Methods in com.jalios.jcms.search with parameters of type Data
protected  void LuceneDataSearchEngine.addData(Data data)
          Add given Data to this lucene search engine.
protected  void LuceneDataSearchEngine.deleteData(Data data)
          Delete given Data from this lucene search engine.
 Date LuceneDataSearchEngine.getIndexingDate(Data data)
          Retrieve the Date at which the specified Data was indexed in the main language of the site.
 Date LuceneDataSearchEngine.getIndexingDate(Data data, String lang)
          Returns the date at which the specified Data has been indexed for the specified language.
 org.apache.lucene.document.Document LuceneDataSearchEngine.getLuceneDocument(Data data, String lang)
          Returns the lucene Document corresponding to the specified Data in the index of the the specified language.
protected  void LucenePublicationSearchEngine.indexData(org.apache.lucene.index.IndexWriter writer, Data data, String lang)
          This methods index the given publication in the given language, into the given index writer.
protected abstract  void LuceneDataSearchEngine.indexData(org.apache.lucene.index.IndexWriter writer, Data data, String lang)
          This methods must be implemented by the LuceneSearchEngine.
protected  void LuceneCategorySearchEngine.indexData(org.apache.lucene.index.IndexWriter writer, Data data, String lang)
          This methods index the given Category in the given language, into the given index writer.
protected  void LuceneDataSearchEngine.updateData(Data data)
          Update given Data in this lucene search engine.
 

Method parameters in com.jalios.jcms.search with type arguments of type Data
protected  void LuceneDataSearchEngine.addDataCollection(Collection<? extends Data> coll)
          Add given Collection of Data to this lucene search engine.
protected  void LuceneDataSearchEngine.deleteDataCollection(Collection<? extends Data> coll)
          Delete given Collection of Data from this lucene search engine.
protected  void LuceneDataSearchEngine.index(org.apache.lucene.store.Directory directory, Collection<? extends Data> coll, String lang)
          Index a Collection of Data into lucene.
protected  void LuceneDataSearchEngine.index(org.apache.lucene.store.Directory directory, Iterator<? extends Data> iterator, String lang)
          Index all Data returned by the specified Iterator into lucene.
protected  void LuceneDataSearchEngine.remove(org.apache.lucene.store.Directory directory, Collection<? extends Data> coll)
          Remove a Collection of Data from the lucene index.
protected  void LuceneDataSearchEngine.updateDataCollection(Collection<? extends Data> coll)
          Update given Collection of Data in this lucene search engine.
 

Uses of Data in com.jalios.jcms.servlet
 

Methods in com.jalios.jcms.servlet that return Data
static Data FriendlyURLFilter.getDataFromFriendlyURL(String friendlyURL)
          Return the data associated with the given friendly URL.
 

Methods in com.jalios.jcms.servlet with parameters of type Data
static boolean FriendlyURLFilter.addFriendlyURL(Data data, String friendlyURL)
          Add the given friendlyURLSet to the friendly urls of the servlet.
static TreeSet FriendlyURLFilter.getFriendlyURLSet(Data data)
          Return a set of friendly urls associated with the given data
static boolean FriendlyURLFilter.isFriendlyURLAvailable(Data data, String friendlyURL)
          Check if the given friendly URL is available, that is either : the Friendly URL is not in the Friendly URLs of the servlet or else the Friendly URL is already there with the same data
static boolean FriendlyURLFilter.removeDataFriendlyURL(Data data)
          Remove the given data and all its associated friendly url.
 

Uses of Data in com.jalios.jcms.stat
 

Methods in com.jalios.jcms.stat with parameters of type Data
protected static String StatManager.dataToString(Data data)
           
protected static String StatManager.dataToString(Data[] data)
           
 

Uses of Data in com.jalios.jcms.stat.beautifier
 

Methods in com.jalios.jcms.stat.beautifier with parameters of type Data
protected  String BeautifierData.getBeautify(Data data)
           
 

Uses of Data in com.jalios.jcms.taglib
 

Fields in com.jalios.jcms.taglib declared as Data
protected  Data EditTag.data
           
protected  Data DataChooserTag.data
           
 

Methods in com.jalios.jcms.taglib with parameters of type Data
protected  boolean EditTag.canEditData(Data data, Member loggedMember)
           
protected  void EditTag.generateUpdateIcon(JcmsJspContext jcmsContext, String anchorParam, Data data, StringBuffer sb)
           
static void CaddyTag.getDataCaddyIcon(StringBuffer out, Data data, String contextPath, String userLang, String action, String css, boolean displayLinkText, Caddy caddy)
           
static String DeleteTag.getDeleteIcon(Data data, String contextPath, String userLang, String redirect, String title, String workspaceFilter)
           
static String DeleteTag.getDeleteIcon(Data data, String contextPath, String userLang, String redirect, String title, String workspaceFilter, String icon)
           
protected  String DataChooserTag.resolveTitle(Data data)
          Resolve Data Title
 void UrlTag.setData(Data data)
           
 void LockTag.setData(Data data)
           
 void EditTag.setData(Data data)
           
 void DeleteTag.setData(Data data)
           
 void DataChooserTag.setData(Data data)
           
 void CheckIntegrityTag.setData(Data data)
           
 void CaddyTag.setData(Data data)
           
 

Method parameters in com.jalios.jcms.taglib with type arguments of type Data
 void CaddyTag.setCollection(Collection<? extends Data> coll)
           
 

Uses of Data in com.jalios.jcms.test
 

Methods in com.jalios.jcms.test with parameters of type Data
protected  void JcmsTestCase.deleteData(Data... array)
           
 

Uses of Data in com.jalios.jcms.tracking
 

Subclasses of Data in com.jalios.jcms.tracking
 class ReaderTracker
           
 

Uses of Data in com.jalios.jcms.upload
 

Methods in com.jalios.jcms.upload with parameters of type Data
 void UnzipDataController.beforeWrite(Data data, int op, Member mbr, Map context)
           
 

Uses of Data in com.jalios.jcms.webdav.cat
 

Fields in com.jalios.jcms.webdav.cat declared as Data
 Data CatWebdavResource.resourceData
           
protected  Data CatWebdavFileSystem.root
           
 

Fields in com.jalios.jcms.webdav.cat with type parameters of type Data
protected  Map<String,Set<Data>> CatWebdavFileSystem.dataChildrenMap
           
protected  Map<String,Data> CatWebdavFileSystem.dataFromNameMap
           
protected  Map<String,Data> CatWebdavFileSystem.dataFromURIMap
           
protected  Map<Data,String> CatWebdavFileSystem.nameFromDataMap
           
 

Methods in com.jalios.jcms.webdav.cat that return Data
 Data CatWebdavFileSystem.getDataFromName(String name, Data parent, boolean onlyFolders, WebdavContext ctxt)
          Return the Data represented by the given short uri
 Data CatWebdavFileSystem.getDataFromUri(String uri, WebdavContext ctxt)
          Retrieve the Data from the given URI Starting from the given root.
 

Methods in com.jalios.jcms.webdav.cat that return types with arguments of type Data
 Collection<Data> CatWebdavFileSystem.getDataChildrenSet(Data parent, boolean onlyFolders, WebdavContext ctxt)
           
 Collection<Data> CatWebdavFileSystem.getDataChildrenSet(Data parent, WebdavContext ctxt)
           
 

Methods in com.jalios.jcms.webdav.cat with parameters of type Data
 boolean CatWebdavFileSystem.canBeReadBy(Data data, Member loggedMember)
           
 boolean CatWebdavFileSystem.canReadData(Data data, boolean recursive, WebdavContext ctxt)
          Check if the data can be read given the current context
 long CatWebdavFileSystem.getContentLength(Data data, WebdavContext ctxt)
          This method return the length of the ressource
 String CatWebdavFileSystem.getContentType(Data data, WebdavContext ctxt)
          This method return the content type of the ressource
 Collection<Data> CatWebdavFileSystem.getDataChildrenSet(Data parent, boolean onlyFolders, WebdavContext ctxt)
           
 Collection<Data> CatWebdavFileSystem.getDataChildrenSet(Data parent, WebdavContext ctxt)
           
 Data CatWebdavFileSystem.getDataFromName(String name, Data parent, boolean onlyFolders, WebdavContext ctxt)
          Return the Data represented by the given short uri
static String CatWebdavUtil.getDataName(Data data, boolean urlEncode)
          Retrieve the name of the Data as it should be used in WebDav.
 String CatWebdavFileSystem.getNameFromData(Data data, WebdavContext ctxt)
          This method return the short name of the given data (Category or FileDocument) for this implementation
 InputStream CatWebdavFileSystem.getResourceStream(Data data, WebdavContext ctxt)
          This method return the resource input stream
 boolean CatWebdavFileSystem.isExisting(Data data, WebdavContext ctxt)
          This method return true if the Data is existing
 boolean CatWebdavFileSystem.isFile(Data data, WebdavContext ctxt)
          This method return true if the Data is a File
 boolean CatWebdavFileSystem.isFolder(Data data, WebdavContext ctxt)
          This method return true if the Data is a Folder
 boolean CatWebdavFileSystem.setResourceStream(Data data, File tmp, WebdavContext ctxt)
          Update/Override the FileDocument
 

Uses of Data in com.jalios.jcms.workspace
 

Subclasses of Data in com.jalios.jcms.workspace
 class WKRole
           
 class Workspace
          This class represents a Workspace
 class WSTypeEntry
          This class is a wrapper on TypeEntry handling type properties for each workspace.
 

Methods in com.jalios.jcms.workspace that return types with arguments of type Data
 Class<? extends Data> EditWSTypeEntryHandler.getDataClass()
           
 

Methods in com.jalios.jcms.workspace with parameters of type Data
 boolean Workspace.TextSelector.isSelected(Data data)
           
 boolean Workspace.TitleSelector.isSelected(Data data)
           
 boolean Workspace.CollaborativeSpaceSelector.isSelected(Data data)
           
 boolean Workspace.OpenWorkspaceSelector.isSelected(Data data)
           
 void WizardContext.trackCreatedData(Data data)
          Store a new created data in the DataLsit
 



Copyright © 2001-2007 Jalios SA. All Rights Reserved.