Package | Description |
---|---|
fr.paris.lutece.plugins.genericattributes.business | |
fr.paris.lutece.plugins.genericattributes.service.entrytype |
Modifier and Type | Method and Description |
---|---|
static Entry |
EntryHome.copy(Entry entry)
Copy of an instance of Entry
|
static Entry |
EntryHome.findByOrderAndIdFieldAndIdResource(int nOrder,
int nIdField,
int nIdResource,
String strResourceType)
Finds the entry (conditional question) with a given order, idDependField, id resource and resource type
|
Entry |
EntryDAO.findByOrderAndIdFieldAndIdResource(fr.paris.lutece.portal.service.plugin.Plugin plugin,
int nOrder,
int nIdField,
int nIdResource,
String strResourceType)
Finds the entry (conditional question) with a given order, idDependField and the id of the resource
|
Entry |
IEntryDAO.findByOrderAndIdFieldAndIdResource(fr.paris.lutece.portal.service.plugin.Plugin plugin,
int nOrder,
int nIdField,
int nIdResource,
String strResourceType)
Finds the entry (conditional question) with a given order, idDependField and the id of the resource
|
static Entry |
EntryHome.findByPrimaryKey(int nKey)
Returns an instance of a Entry whose identifier is specified in parameter
|
Entry |
Response.getEntry() |
Entry |
Entry.getParent() |
Entry |
Field.getParentEntry() |
Entry |
EntryDAO.load(int nId,
fr.paris.lutece.portal.service.plugin.Plugin plugin)
Load the data of the entry from the table
|
Entry |
IEntryDAO.load(int nIdEntry,
fr.paris.lutece.portal.service.plugin.Plugin plugin)
Load the data of the entry from the table
|
Modifier and Type | Method and Description |
---|---|
static List<Entry> |
EntryHome.findByPrimaryKeyList(List<Integer> idList)
Returns a list of a Entry whose identifier is specified in parameter
|
static List<Entry> |
EntryHome.findEntriesWithoutParent(int nIdResource,
String strResourceType)
Finds all the entries without any parent associated with a given resource
|
List<Entry> |
EntryDAO.findEntriesWithoutParent(fr.paris.lutece.portal.service.plugin.Plugin plugin,
int nIdResource,
String strResourceType)
Finds all the entries without any parent associated to a given resource
|
List<Entry> |
IEntryDAO.findEntriesWithoutParent(fr.paris.lutece.portal.service.plugin.Plugin plugin,
int nIdResource,
String strResourceType)
Finds all the entries without any parent associated to a given resource
|
List<Entry> |
Entry.getChildren()
Get the list of children of this entry
|
List<Entry> |
Field.getConditionalQuestions() |
static List<Entry> |
EntryHome.getEntryList(EntryFilter filter)
Load the data of all the entry who verify the filter and returns them in a list
|
List<Entry> |
EntryDAO.loadMultiple(List<Integer> idList,
fr.paris.lutece.portal.service.plugin.Plugin plugin) |
List<Entry> |
IEntryDAO.loadMultiple(List<Integer> idList,
fr.paris.lutece.portal.service.plugin.Plugin plugin)
Load the data of the entry from the table
|
List<Entry> |
EntryDAO.selectEntryListByFilter(EntryFilter filter,
fr.paris.lutece.portal.service.plugin.Plugin plugin)
Load the data of all the entry who verify the filter and returns them in a list
|
List<Entry> |
IEntryDAO.selectEntryListByFilter(EntryFilter filter,
fr.paris.lutece.portal.service.plugin.Plugin plugin)
Load the data of all the entry who verify the filter and returns them in a list
|
Modifier and Type | Method and Description |
---|---|
static Entry |
EntryHome.copy(Entry entry)
Copy of an instance of Entry
|
static int |
EntryHome.create(Entry entry)
Creation of an instance of Entry
|
int |
EntryDAO.insert(Entry entry,
fr.paris.lutece.portal.service.plugin.Plugin plugin)
Insert a new record in the table.
|
int |
IEntryDAO.insert(Entry entry,
fr.paris.lutece.portal.service.plugin.Plugin plugin)
Insert a new record in the table.
|
void |
Response.setEntry(Entry entry)
set the question associate to the response
|
void |
Entry.setParent(Entry parent)
Set parent entry if the entry is insert in a group
|
void |
Field.setParentEntry(Entry entry)
set the entry of the field
|
void |
EntryDAO.store(Entry entry,
fr.paris.lutece.portal.service.plugin.Plugin plugin)
Update the entry in the table
|
void |
IEntryDAO.store(Entry entry,
fr.paris.lutece.portal.service.plugin.Plugin plugin)
Update the entry in the table
|
static void |
EntryHome.update(Entry entry)
Update of the entry which is specified in parameter
|
Modifier and Type | Method and Description |
---|---|
void |
Entry.setChildren(List<Entry> children)
Set the list of entry who are insert in the group
|
void |
Field.setConditionalQuestions(List<Entry> conditionalQuestions)
set a list of Entry which is associate to the field
|
Constructor and Description |
---|
MandatoryError(Entry entry,
Locale locale)
Creates a new mandatory error
|
Modifier and Type | Method and Description |
---|---|
GenericAttributeError |
EntryTypeService.canUploadFiles(Entry entry,
List<org.apache.commons.fileupload.FileItem> listUploadedFileItems,
List<org.apache.commons.fileupload.FileItem> listFileItemsToUpload,
Locale locale)
Check if the file can be uploaded or not.
|
GenericAttributeError |
AbstractEntryTypeUpload.canUploadFiles(Entry entry,
List<org.apache.commons.fileupload.FileItem> listUploadedFileItems,
List<org.apache.commons.fileupload.FileItem> listFileItemsToUpload,
Locale locale)
Check if the file can be uploaded or not.
|
GenericAttributeError |
AbstractEntryTypeImage.canUploadFiles(Entry entry,
List<org.apache.commons.fileupload.FileItem> listUploadedFileItems,
List<org.apache.commons.fileupload.FileItem> listFileItemsToUpload,
Locale locale)
Check if the file can be uploaded or not.
|
GenericAttributeError |
IEntryTypeService.canUploadFiles(Entry entry,
List<org.apache.commons.fileupload.FileItem> listUploadedFileItems,
List<org.apache.commons.fileupload.FileItem> listFileItemsToUpload,
Locale locale)
Check if the file can be uploaded or not.
|
GenericAttributeError |
AbstractEntryTypeUpload.doCheckforImages(org.apache.commons.fileupload.FileItem fileItem,
Entry entry,
Locale locale)
Do check that an uploaded file is an image
|
GenericAttributeError |
AbstractEntryTypeImage.doCheckforImages(org.apache.commons.fileupload.FileItem fileItem,
Entry entry,
Locale locale)
Do check that an uploaded file is an image
|
GenericAttributeError |
AbstractEntryTypeCamera.doCheckforImages(String imageSource,
Entry entry,
Locale locale)
Do check that an uploaded source is an image
|
GenericAttributeError |
AbstractEntryTypeCamera.doCheckSize(BufferedImage image,
Entry entry,
Locale locale)
Do check the size of image
|
static IEntryTypeService |
EntryTypeServiceManager.getEntryTypeService(Entry entry)
Get the entry type service associated with an entry
|
fr.paris.lutece.util.ReferenceList |
EntryTypeService.getReferenceListRegularExpression(Entry entry,
fr.paris.lutece.portal.service.plugin.Plugin plugin)
Get the list of regular expression who is use in the template modify of the entry
|
fr.paris.lutece.util.ReferenceList |
AbstractEntryTypeUpload.getReferenceListRegularExpression(Entry entry,
fr.paris.lutece.portal.service.plugin.Plugin plugin)
Get the list of regular expression who is use in the template modify of the entry
|
fr.paris.lutece.util.ReferenceList |
AbstractEntryTypeImage.getReferenceListRegularExpression(Entry entry,
fr.paris.lutece.portal.service.plugin.Plugin plugin)
Get the list of regular expression who is use in the template modify of the entry
|
fr.paris.lutece.util.ReferenceList |
AbstractEntryTypeText.getReferenceListRegularExpression(Entry entry,
fr.paris.lutece.portal.service.plugin.Plugin plugin)
Get the list of regular expression who is use in the template modify of the entry
|
fr.paris.lutece.util.ReferenceList |
IEntryTypeService.getReferenceListRegularExpression(Entry entry,
fr.paris.lutece.portal.service.plugin.Plugin plugin)
Get the list of regular expression who is use in the template modify of the entry
|
fr.paris.lutece.util.ReferenceList |
AbstractEntryTypeMyLuteceUser.getReferenceListRegularExpression(Entry entry,
fr.paris.lutece.portal.service.plugin.Plugin plugin)
Get the list of regular expression who is use in the template modify of the entry
|
String |
EntryTypeService.getRequestData(Entry entry,
javax.servlet.http.HttpServletRequest request,
Locale locale)
Get the request data
|
String |
AbstractEntryTypeTextArea.getRequestData(Entry entry,
javax.servlet.http.HttpServletRequest request,
Locale locale)
Get the request data
|
String |
AbstractEntryTypeCheckBox.getRequestData(Entry entry,
javax.servlet.http.HttpServletRequest request,
Locale locale)
Get the request data
|
String |
AbstractEntryTypeSession.getRequestData(Entry entry,
javax.servlet.http.HttpServletRequest request,
Locale locale)
Get the request data
|
String |
AbstractEntryTypeUpload.getRequestData(Entry entry,
javax.servlet.http.HttpServletRequest request,
Locale locale)
Get the request data
|
String |
AbstractEntryTypeArray.getRequestData(Entry entry,
javax.servlet.http.HttpServletRequest request,
Locale locale)
Get the request data
|
String |
AbstractEntryTypeDate.getRequestData(Entry entry,
javax.servlet.http.HttpServletRequest request,
Locale locale)
Get the request data
|
String |
AbstractEntryTypeGeolocation.getRequestData(Entry entry,
javax.servlet.http.HttpServletRequest request,
Locale locale)
Get the request data
|
String |
AbstractEntryTypeImage.getRequestData(Entry entry,
javax.servlet.http.HttpServletRequest request,
Locale locale)
Get the request data
|
String |
AbstractEntryTypeCamera.getRequestData(Entry entry,
javax.servlet.http.HttpServletRequest request,
Locale locale)
Get the request data
|
String |
AbstractEntryTypeGroup.getRequestData(Entry entry,
javax.servlet.http.HttpServletRequest request,
Locale locale)
Get the request data
|
String |
AbstractEntryTypeText.getRequestData(Entry entry,
javax.servlet.http.HttpServletRequest request,
Locale locale)
Get the request data
|
String |
AbstractEntryTypeNumbering.getRequestData(Entry entry,
javax.servlet.http.HttpServletRequest request,
Locale locale)
Get the request data
|
String |
AbstractEntryTypeSelectSQL.getRequestData(Entry entry,
javax.servlet.http.HttpServletRequest request,
Locale locale)
Get the request data
|
String |
AbstractEntryTypeRadioButton.getRequestData(Entry entry,
javax.servlet.http.HttpServletRequest request,
Locale locale)
Get the request data
|
String |
AbstractEntryTypeSelect.getRequestData(Entry entry,
javax.servlet.http.HttpServletRequest request,
Locale locale)
Get the request data
|
String |
AbstractEntryTypeComment.getRequestData(Entry entry,
javax.servlet.http.HttpServletRequest request,
Locale locale)
Get the request data
|
String |
IEntryTypeService.getRequestData(Entry entry,
javax.servlet.http.HttpServletRequest request,
Locale locale)
Get the request data
|
String |
AbstractEntryTypeMyLuteceUser.getRequestData(Entry entry,
javax.servlet.http.HttpServletRequest request,
Locale locale)
Get the request data
|
GenericAttributeError |
EntryTypeService.getResponseData(Entry entry,
javax.servlet.http.HttpServletRequest request,
List<Response> listResponse,
Locale locale)
Generate the list of responses associated with the given entry from the request, and saved it into the Entry object.
|
GenericAttributeError |
AbstractEntryTypeTextArea.getResponseData(Entry entry,
javax.servlet.http.HttpServletRequest request,
List<Response> listResponse,
Locale locale)
Generate the list of responses associated with the given entry from the request, and saved it into the Entry object.
|
GenericAttributeError |
AbstractEntryTypeCheckBox.getResponseData(Entry entry,
javax.servlet.http.HttpServletRequest request,
List<Response> listResponse,
Locale locale)
Generate the list of responses associated with the given entry from the request, and saved it into the Entry object.
|
GenericAttributeError |
AbstractEntryTypeSession.getResponseData(Entry entry,
javax.servlet.http.HttpServletRequest request,
List<Response> listResponse,
Locale locale)
Generate the list of responses associated with the given entry from the request, and saved it into the Entry object.
|
GenericAttributeError |
AbstractEntryTypeArray.getResponseData(Entry entry,
javax.servlet.http.HttpServletRequest request,
List<Response> listResponse,
Locale locale)
Generate the list of responses associated with the given entry from the request, and saved it into the Entry object.
|
GenericAttributeError |
AbstractEntryTypeDate.getResponseData(Entry entry,
javax.servlet.http.HttpServletRequest request,
List<Response> listResponse,
Locale locale)
Generate the list of responses associated with the given entry from the request, and saved it into the Entry object.
|
GenericAttributeError |
AbstractEntryTypeGeolocation.getResponseData(Entry entry,
javax.servlet.http.HttpServletRequest request,
List<Response> listResponse,
Locale locale)
Generate the list of responses associated with the given entry from the request, and saved it into the Entry object.
|
GenericAttributeError |
AbstractEntryTypeImage.getResponseData(Entry entry,
javax.servlet.http.HttpServletRequest request,
List<Response> listResponse,
Locale locale)
Get the URL to download a file of a response throw the image servlet.
|
GenericAttributeError |
AbstractEntryTypeCamera.getResponseData(Entry entry,
javax.servlet.http.HttpServletRequest request,
List<Response> listResponse,
Locale locale)
Get the URL to download a file of a response throw the image servlet.
|
GenericAttributeError |
AbstractEntryTypeText.getResponseData(Entry entry,
javax.servlet.http.HttpServletRequest request,
List<Response> listResponse,
Locale locale)
Generate the list of responses associated with the given entry from the request, and saved it into the Entry object.
|
GenericAttributeError |
AbstractEntryTypeNumbering.getResponseData(Entry entry,
javax.servlet.http.HttpServletRequest request,
List<Response> listResponse,
Locale locale)
Generate the list of responses associated with the given entry from the request, and saved it into the Entry object.
|
GenericAttributeError |
AbstractEntryTypeSelectSQL.getResponseData(Entry entry,
javax.servlet.http.HttpServletRequest request,
List<Response> listResponse,
Locale locale)
Generate the list of responses associated with the given entry from the request, and saved it into the Entry object.
|
GenericAttributeError |
AbstractEntryTypeFile.getResponseData(Entry entry,
javax.servlet.http.HttpServletRequest request,
List<Response> listResponse,
Locale locale)
Generate the list of responses associated with the given entry from the request, and saved it into the Entry object.
|
GenericAttributeError |
AbstractEntryTypeRadioButton.getResponseData(Entry entry,
javax.servlet.http.HttpServletRequest request,
List<Response> listResponse,
Locale locale)
Generate the list of responses associated with the given entry from the request, and saved it into the Entry object.
|
GenericAttributeError |
AbstractEntryTypeSelect.getResponseData(Entry entry,
javax.servlet.http.HttpServletRequest request,
List<Response> listResponse,
Locale locale)
Generate the list of responses associated with the given entry from the request, and saved it into the Entry object.
|
GenericAttributeError |
IEntryTypeService.getResponseData(Entry entry,
javax.servlet.http.HttpServletRequest request,
List<Response> listResponse,
Locale locale)
Generate the list of responses associated with the given entry from the request, and saved it into the Entry object.
|
GenericAttributeError |
AbstractEntryTypeMyLuteceUser.getResponseData(Entry entry,
javax.servlet.http.HttpServletRequest request,
List<Response> listResponse,
Locale locale)
Generate the list of responses associated with the given entry from the request, and saved it into the Entry object.
|
String |
EntryTypeService.getResponseValueForExport(Entry entry,
javax.servlet.http.HttpServletRequest request,
Response response,
Locale locale)
Get the response value associate to the entry to export in the file export
|
String |
AbstractEntryTypeTextArea.getResponseValueForExport(Entry entry,
javax.servlet.http.HttpServletRequest request,
Response response,
Locale locale)
Get the response value associate to the entry to export in the file export
|
String |
AbstractEntryTypeCheckBox.getResponseValueForExport(Entry entry,
javax.servlet.http.HttpServletRequest request,
Response response,
Locale locale)
Get the response value associate to the entry to export in the file export
|
String |
AbstractEntryTypeSession.getResponseValueForExport(Entry entry,
javax.servlet.http.HttpServletRequest request,
Response response,
Locale locale)
Get the response value associate to the entry to export in the file export
|
String |
AbstractEntryTypeUpload.getResponseValueForExport(Entry entry,
javax.servlet.http.HttpServletRequest request,
Response response,
Locale locale)
Get the response value associate to the entry to export in the file export
|
String |
AbstractEntryTypeArray.getResponseValueForExport(Entry entry,
javax.servlet.http.HttpServletRequest request,
Response response,
Locale locale)
Get the response value associate to the entry to export in the file export
|
String |
AbstractEntryTypeDate.getResponseValueForExport(Entry entry,
javax.servlet.http.HttpServletRequest request,
Response response,
Locale locale)
Get the response value associate to the entry to export in the file export
|
String |
AbstractEntryTypeGeolocation.getResponseValueForExport(Entry entry,
javax.servlet.http.HttpServletRequest request,
Response response,
Locale locale)
Get the response value associate to the entry to export in the file export
|
String |
AbstractEntryTypeImage.getResponseValueForExport(Entry entry,
javax.servlet.http.HttpServletRequest request,
Response response,
Locale locale)
Get the response value associate to the entry to export in the file export
|
String |
AbstractEntryTypeText.getResponseValueForExport(Entry entry,
javax.servlet.http.HttpServletRequest request,
Response response,
Locale locale)
Get the response value associate to the entry to export in the file export
|
String |
AbstractEntryTypeNumbering.getResponseValueForExport(Entry entry,
javax.servlet.http.HttpServletRequest request,
Response response,
Locale locale)
Get the response value associate to the entry to export in the file export
|
String |
AbstractEntryTypeSelectSQL.getResponseValueForExport(Entry entry,
javax.servlet.http.HttpServletRequest request,
Response response,
Locale locale)
Get the response value associate to the entry to export in the file export
|
String |
AbstractEntryTypeRadioButton.getResponseValueForExport(Entry entry,
javax.servlet.http.HttpServletRequest request,
Response response,
Locale locale)
Get the response value associate to the entry to export in the file export
|
String |
AbstractEntryTypeSelect.getResponseValueForExport(Entry entry,
javax.servlet.http.HttpServletRequest request,
Response response,
Locale locale)
Get the response value associate to the entry to export in the file export
|
String |
IEntryTypeService.getResponseValueForExport(Entry entry,
javax.servlet.http.HttpServletRequest request,
Response response,
Locale locale)
Get the response value associate to the entry to export in the file export
|
String |
AbstractEntryTypeMyLuteceUser.getResponseValueForExport(Entry entry,
javax.servlet.http.HttpServletRequest request,
Response response,
Locale locale)
Get the response value associate to the entry to export in the file export
|
String |
EntryTypeService.getResponseValueForRecap(Entry entry,
javax.servlet.http.HttpServletRequest request,
Response response,
Locale locale)
Get the response value associate to the entry to write in the recap
|
String |
AbstractEntryTypeTextArea.getResponseValueForRecap(Entry entry,
javax.servlet.http.HttpServletRequest request,
Response response,
Locale locale)
Get the response value associate to the entry to write in the recap
|
String |
AbstractEntryTypeCheckBox.getResponseValueForRecap(Entry entry,
javax.servlet.http.HttpServletRequest request,
Response response,
Locale locale)
Get the response value associate to the entry to write in the recap
|
String |
AbstractEntryTypeSession.getResponseValueForRecap(Entry entry,
javax.servlet.http.HttpServletRequest request,
Response response,
Locale locale)
Get the response value associate to the entry to write in the recap
|
String |
AbstractEntryTypeUpload.getResponseValueForRecap(Entry entry,
javax.servlet.http.HttpServletRequest request,
Response response,
Locale locale)
Get the response value associate to the entry to write in the recap
|
String |
AbstractEntryTypeArray.getResponseValueForRecap(Entry entry,
javax.servlet.http.HttpServletRequest request,
Response response,
Locale locale)
Get the response value associate to the entry to write in the recap
|
String |
AbstractEntryTypeDate.getResponseValueForRecap(Entry entry,
javax.servlet.http.HttpServletRequest request,
Response response,
Locale locale)
Get the response value associate to the entry to write in the recap
|
String |
AbstractEntryTypeGeolocation.getResponseValueForRecap(Entry entry,
javax.servlet.http.HttpServletRequest request,
Response response,
Locale locale)
Get the response value associate to the entry to write in the recap
|
String |
AbstractEntryTypeImage.getResponseValueForRecap(Entry entry,
javax.servlet.http.HttpServletRequest request,
Response response,
Locale locale)
Get the response value associate to the entry to write in the recap
|
String |
AbstractEntryTypeCamera.getResponseValueForRecap(Entry entry,
javax.servlet.http.HttpServletRequest request,
Response response,
Locale locale) |
String |
AbstractEntryTypeText.getResponseValueForRecap(Entry entry,
javax.servlet.http.HttpServletRequest request,
Response response,
Locale locale)
Get the response value associate to the entry to write in the recap
|
String |
AbstractEntryTypeNumbering.getResponseValueForRecap(Entry entry,
javax.servlet.http.HttpServletRequest request,
Response response,
Locale locale)
Get the response value associate to the entry to write in the recap
|
String |
AbstractEntryTypeSelectSQL.getResponseValueForRecap(Entry entry,
javax.servlet.http.HttpServletRequest request,
Response response,
Locale locale)
Get the response value associate to the entry to write in the recap
|
String |
AbstractEntryTypeRadioButton.getResponseValueForRecap(Entry entry,
javax.servlet.http.HttpServletRequest request,
Response response,
Locale locale)
Get the response value associate to the entry to write in the recap
|
String |
AbstractEntryTypeSelect.getResponseValueForRecap(Entry entry,
javax.servlet.http.HttpServletRequest request,
Response response,
Locale locale)
Get the response value associate to the entry to write in the recap
|
String |
IEntryTypeService.getResponseValueForRecap(Entry entry,
javax.servlet.http.HttpServletRequest request,
Response response,
Locale locale)
Get the response value associate to the entry to write in the recap
|
String |
AbstractEntryTypeMyLuteceUser.getResponseValueForRecap(Entry entry,
javax.servlet.http.HttpServletRequest request,
Response response,
Locale locale)
Get the response value associate to the entry to write in the recap
|
String |
AbstractEntryTypeGroup.getTemplateCreate(Entry entry,
boolean bDisplayFront)
Get template create URL of the entry
|
String |
IEntryTypeService.getTemplateCreate(Entry entry,
boolean bDisplayFront)
Get template create URL of the entry
|
String |
AbstractEntryTypeMyLuteceUser.getTemplateCreate(Entry entry,
boolean bDisplayFront)
Get template create URL of the entry
|
String |
IEntryTypeService.getTemplateHtmlForm(Entry entry,
boolean bDisplayFront)
Get the template to display the creation or modification form of an entry of this entry type
|
String |
IEntryTypeService.getTemplateModify(Entry entry,
boolean bDisplayFront)
Get the template modify URL of the entry
|
String |
AbstractEntryTypeMyLuteceUser.getTemplateModify(Entry entry,
boolean bDisplayFront)
Get the template modify URL of the entry
|
void |
EntryTypeService.setResponseToStringValue(Entry entry,
Response response,
Locale locale)
Sets the string value of the response
|
void |
AbstractEntryTypeUpload.setResponseToStringValue(Entry entry,
Response response,
Locale locale)
toStringValue should stay
null . |
void |
AbstractEntryTypeDate.setResponseToStringValue(Entry entry,
Response response,
Locale locale)
Sets the string value of the response
|
void |
AbstractEntryTypeImage.setResponseToStringValue(Entry entry,
Response response,
Locale locale)
toStringValue should stay
null . |
void |
IEntryTypeService.setResponseToStringValue(Entry entry,
Response response,
Locale locale)
Sets the string value of the response
|
Copyright © 2022 City of Paris. All rights reserved.