Uses of Class
de.xima.fc.entities.FormRecordMessage
Packages that use FormRecordMessage
Package
Description
Package for the API access of the model classes.
Package für Datenbankentitäten
-
Uses of FormRecordMessage in de.xima.fc.api.entity
Subclasses with type arguments of type FormRecordMessage in de.xima.fc.api.entityModifier and TypeClassDescriptionclassAPI class for reading and writingFormRecordMessageentities.Methods in de.xima.fc.api.entity that return FormRecordMessageModifier and TypeMethodDescriptionFormRecordMessageAPI.getByUuid(UserContext uc, UUID uuid) Finds the message for the given UUID.FormRecordMessageAPI.getByUuidAndUser(UserContext uc, UUID uuid, IUser user) Finds the message for the given UUID, which the given user can access.Methods in de.xima.fc.api.entity that return types with arguments of type FormRecordMessageModifier and TypeMethodDescriptionFormRecordMessageAPI.getByChatAndUser(UserContext uc, UUID chatUuid, IUser user, int page, int pageSize) Deprecated.FormRecordMessageAPI.getByUser(UserContext uc, IUser user) Returns all messages the given user has access to.FormRecordMessageAPI.getByUser(UserContext uc, IUser user, int page, int pageSize) Finds all form record messages the user given by the user context has access to.FormRecordMessageAPI.getChatMessages(UserContext uc, UUID chatUuid) FormRecordMessageAPI.getUnreadByUser(UserContext uc, IUser user, int page, int pageSize) Finds all unread form record messages the user given by the user context has access to. -
Uses of FormRecordMessage in de.xima.fc.api.rest.pub.impl.form_record.model.response.record.chat.message.upload
Methods in de.xima.fc.api.rest.pub.impl.form_record.model.response.record.chat.message.upload that return types with arguments of type FormRecordMessage -
Uses of FormRecordMessage in de.xima.fc.common.form_record.message
Methods in de.xima.fc.common.form_record.message with parameters of type FormRecordMessageModifier and TypeMethodDescriptionstatic IPluginMessageDataPluginMessageDataFactory.forPlugin(FormRecordMessage message, String pluginName) -
Uses of FormRecordMessage in de.xima.fc.dao.form_record.dto
Constructors in de.xima.fc.dao.form_record.dto with parameters of type FormRecordMessageModifierConstructorDescriptionBaseFormRecordMessageDTO(FormRecordMessage entity, IUserRef userRef, IFormRecordMessageUploadRequestResolver uploadRequestResolver, Locale locale) ConstructorDetailedFormRecordMessageDTO(FormRecordMessage entity, IUserRef userRef, IFormRecordMessageUploadRequestResolver uploadRequestResolver, Locale locale) Constructor. -
Uses of FormRecordMessage in de.xima.fc.dao.impl
Subclasses with type arguments of type FormRecordMessage in de.xima.fc.dao.implModifier and TypeClassDescriptionclassImplementation of theIFormRecordMessageDaofor reading and writingFormRecordMessageentities.Methods in de.xima.fc.dao.impl that return FormRecordMessageModifier and TypeMethodDescriptionFormRecordMessageDao.getByUuid(IEntityContext ec, UUID uuid) FormRecordMessageDao.getByUuidAndUser(IEntityContext ec, UUID uuid, IUser requestingUser) Methods in de.xima.fc.dao.impl that return types with arguments of type FormRecordMessageModifier and TypeMethodDescriptionFormRecordMessageDao.getAllBySenderUserProfile(IEntityContext ec, UserProfile sender) FormRecordMessageDao.getByChatAndUser(IEntityContext ec, UUID chatUuid, IUser user, int page, int pageSize) FormRecordMessageDao.getByUser(IEntityContext ec, IUser user) FormRecordMessageDao.getByUser(IEntityContext ec, IUser user, int page, int pageSize) Deprecated.FormRecordMessageDao.getChatMessages(IEntityContext ec, UUID chatUuid) protected IFCDaoActionHook<FormRecordMessage> FormRecordMessageDao.getPostActionHook()protected IFCDaoActionHook<FormRecordMessage> FormRecordMessageDao.getPreActionHook()FormRecordMessageDao.getUnreadByUser(IEntityContext ec, IUser user, int page, int pageSize) -
Uses of FormRecordMessage in de.xima.fc.dao.interfaces
Subinterfaces with type arguments of type FormRecordMessage in de.xima.fc.dao.interfacesModifier and TypeInterfaceDescriptioninterfaceDAO for reading and writingFormRecordMessageentities.Methods in de.xima.fc.dao.interfaces that return FormRecordMessageModifier and TypeMethodDescriptionIFormRecordMessageDao.getByUuid(IEntityContext ec, UUID uuid) Finds the message for the given UUID.IFormRecordMessageDao.getByUuidAndUser(IEntityContext ec, UUID uuid, IUser requestingUser) Finds the message for the given UUID, which the givenuser can access.Methods in de.xima.fc.dao.interfaces that return types with arguments of type FormRecordMessageModifier and TypeMethodDescriptionIFormRecordMessageDao.getAllBySenderUserProfile(IEntityContext ec, UserProfile sender) Returns all messages sent by the given user profile.IFormRecordMessageDao.getByChatAndUser(IEntityContext ec, UUID chatUuid, IUser user, int page, int pageSize) Finds the messages for the form record chat given by its UUID if the given usercan access the chat.IFormRecordMessageDao.getByUser(IEntityContext ec, IUser user) Returns all messages the given user has access to.IFormRecordMessageDao.getByUser(IEntityContext ec, IUser user, int page, int pageSize) IFormRecordMessageDao.getChatMessages(IEntityContext ec, UUID chatUuid) Returns all messages for the given chat UUID ordered by their sent instant (desc).IFormRecordMessageDao.getUnreadByUser(IEntityContext ec, IUser user, int page, int pageSize) Finds all unread form record messages the given user has access to. -
Uses of FormRecordMessage in de.xima.fc.dao.utils
Methods in de.xima.fc.dao.utils with parameters of type FormRecordMessageModifier and TypeMethodDescriptionstatic voidFormRecordMessageProtocolUtils.addNewFormRecordMessageProtocolEntry(IEntityContext ec, FormRecordMessage message) Adds a protocol entry for a new form record message.static voidFormRecordMessageProtocolUtils.addReadByUserProtocolEntry(IEntityContext ec, FormRecordMessage message, IUser user) -
Uses of FormRecordMessage in de.xima.fc.entities
Methods in de.xima.fc.entities that return FormRecordMessageModifier and TypeMethodDescriptionFormRecordMessageUploadRequest.getMessage()Each upload request is associated with a message that contains details for the end user regarding the upload, e.g. what is wrong with the existing file.Methods in de.xima.fc.entities that return types with arguments of type FormRecordMessageModifier and TypeMethodDescriptionFormRecordChat.getMessages()FormRecordChat.getSenderMessages(IUser sender) Returns all messages sent by the given user.@NotNull List<FormRecordMessage> FormRecordChat.getUnreadMessages(IUser user) Returns all unread messages in the chat for the given user.@NotNull List<FormRecordMessage> FormRecordChat.getUnreadMessages(IUserRef userRef) Returns all unread messages in the chat for the given user.Methods in de.xima.fc.entities with parameters of type FormRecordMessageModifier and TypeMethodDescriptionvoidFormRecordChat.addMessage(FormRecordMessage message) Adds a message to this chat, and set this chat on the message.voidFormRecordMessageUploadRequest.setMessage(FormRecordMessage message) Each upload request is associated with a message that contains details for the end user regarding the upload, e.g. what is wrong with the existing file.Method parameters in de.xima.fc.entities with type arguments of type FormRecordMessageModifier and TypeMethodDescriptionvoidFormRecordChat.setMessages(List<FormRecordMessage> messages) -
Uses of FormRecordMessage in de.xima.fc.form_record
Methods in de.xima.fc.form_record that return types with arguments of type FormRecordMessageModifier and TypeMethodDescriptionFormRecordMessagesQueryExecutor.getResultList(PageQuery page) Returns a list of form record messages for the given page query and configured messages query. -
Uses of FormRecordMessage in de.xima.fc.handler.entity
Methods in de.xima.fc.handler.entity that return FormRecordMessageModifier and TypeMethodDescriptionFormRecordMessageHandler.getByUuid(UserContext uc, UUID uuid) FormRecordMessageHandler.getByUuidAndUser(UserContext uc, UUID uuid, IUser user) Methods in de.xima.fc.handler.entity that return types with arguments of type FormRecordMessageModifier and TypeMethodDescriptionFormRecordMessageHandler.getByChatAndUser(UserContext uc, UUID chatUuid, IUser user, int page, int pageSize) Deprecated.FormRecordMessageHandler.getByUser(UserContext uc, IUser user) FormRecordMessageHandler.getByUser(UserContext uc, IUser user, int page, int pageSize) FormRecordMessageHandler.getChatMessages(UserContext uc, UUID chatUuid) FormRecordMessageHandler.getUnreadByUser(UserContext uc, IUser user, int page, int pageSize) -
Uses of FormRecordMessage in de.xima.fc.handler.interfaces.entity
Methods in de.xima.fc.handler.interfaces.entity that return FormRecordMessageModifier and TypeMethodDescriptionIFormRecordMessageHandler.getByUuid(UserContext uc, UUID uuid) Finds the message for the given UUID.IFormRecordMessageHandler.getByUuidAndUser(UserContext uc, UUID uuid, IUser user) Finds the message for the given UUID, which the given user can access.Methods in de.xima.fc.handler.interfaces.entity that return types with arguments of type FormRecordMessageModifier and TypeMethodDescriptionIFormRecordMessageHandler.getByChatAndUser(UserContext uc, UUID chatUuid, IUser user, int page, int pageSize) Deprecated.IFormRecordMessageHandler.getByUser(UserContext uc, IUser user) Returns all messages the given user has access to.IFormRecordMessageHandler.getByUser(UserContext uc, IUser user, int page, int pageSize) Finds all form record messages the user given by the user context has access to.IFormRecordMessageHandler.getChatMessages(UserContext uc, UUID chatUuid) Returns all messages for the given chat UUID ordered by their sent instant (desc).IFormRecordMessageHandler.getUnreadByUser(UserContext uc, IUser user, int page, int pageSize) Finds all unread form record messages the user given by the user context has access to. -
Uses of FormRecordMessage in de.xima.fc.inbox.model
Methods in de.xima.fc.inbox.model with parameters of type FormRecordMessageModifier and TypeMethodDescriptionstatic UserViewModel.BuilderUserViewModel.builder(FormRecordMessage message) -
Uses of FormRecordMessage in de.xima.fc.inbox.model.messages
Methods in de.xima.fc.inbox.model.messages with parameters of type FormRecordMessageModifier and TypeMethodDescriptionstatic MessageViewModelMessageViewModel.fromFormRecordMessage(FormRecordMessage message, Set<UserProfile> profilesCache, Map<String, IClientDescriptor> clientDescriptorCache, Locale locale, Set<IPluginMessageService<?>> pluginMessageServices, UserRef currentUserRef) -
Uses of FormRecordMessage in de.xima.fc.interfaces.plugin.param.form_record.message
Methods in de.xima.fc.interfaces.plugin.param.form_record.message that return FormRecordMessageModifier and TypeMethodDescriptionIPluginSendMessageRequest.getFormRecordMessage()Returns the associated form record message entity, which has already been created. -
Uses of FormRecordMessage in de.xima.fc.interfaces.workflow.event
Methods in de.xima.fc.interfaces.workflow.event that return FormRecordMessageModifier and TypeMethodDescriptionIFormRecordMessagePostedEvent.getMessage()Gets the message that was posted.IFormRecordMessageUploadRequestFulfilledEvent.getMessage()Gets the message that was posted. -
Uses of FormRecordMessage in de.xima.fc.testhelper
Methods in de.xima.fc.testhelper that return FormRecordMessageModifier and TypeMethodDescriptionstatic FormRecordMessageEntityDummyFactory.dummyFormRecordMessage(FormRecordChat chat, IUser sender, String senderCtx, String content) static FormRecordMessageEntityDummyFactory.dummyFormRecordMessage(FormRecordChat chat, IUser sender, String senderCtx, String content, Instant sentInstant) Methods in de.xima.fc.testhelper with parameters of type FormRecordMessageModifier and TypeMethodDescriptionEntityDummyFactory.dummyFormRecordMessageUploadRequest(FormRecordMessage message, Attachment attachment, String formFieldName) EntityDummyFactory.dummyFormRecordMessageUploadRequest(FormRecordMessage message, List<Attachment> attachments, String formFieldName) -
Uses of FormRecordMessage in de.xima.fc.workflow.event
Methods in de.xima.fc.workflow.event with parameters of type FormRecordMessageModifier and TypeMethodDescriptionWorkflowEventDataFactory.formRecordMessagePosted(Vorgang formRecord, FormRecordMessage message) Creates a new builder for configuring aform record message posted event.FormRecordMessageUploadRequestFulfilledEventBuilder.message(FormRecordMessage message) Sets the message containing the fulfilled upload request.Constructors in de.xima.fc.workflow.event with parameters of type FormRecordMessageModifierConstructorDescriptionFormRecordMessagePostedEventBuilder(Vorgang formRecord, FormRecordMessage message) -
Uses of FormRecordMessage in de.xima.fc.workflow.processor.value.common
Methods in de.xima.fc.workflow.processor.value.common with parameters of type FormRecordMessageModifier and TypeMethodDescriptionFormRecordMessageDescriptor.valueFormRecordMessage(FormRecordMessage message) Creates a value that conforms to theFormRecordMessageDescriptorvalue descriptor.
FormRecordMessageAPI.getMessagePage(UserContext, PageQuery, FormRecordMessagesQuery, boolean)instead.