Modifier and Type | Method and Description |
---|---|
void |
ChatManager.addConversation(SessionConfig sessionConfig,
ChatConversationConfig conversationConfig,
ITransaction transaction) |
void |
IChatManager.addConversation(SessionConfig sessionConfig,
ChatConversationConfig conversationConfig,
ITransaction transaction)
Adds a chat conversation.
|
protected void |
ChatControllerXml.addMessage(Node methodNode,
ITransaction portalTransaction) |
void |
ChatManager.addMessage(SessionConfig sessionConfig,
ChatMessageConfig messageConfig,
ITransaction transaction) |
void |
IChatManager.addMessage(SessionConfig sessionConfig,
ChatMessageConfig messageConfig,
ITransaction transaction)
Adds a chat message to a conversation.
|
void |
ChatManager.addUser(SessionConfig sessionConfig,
ChatUserConfig userConfig,
ITransaction transaction) |
void |
IChatManager.addUser(SessionConfig sessionConfig,
ChatUserConfig userConfig,
ITransaction transaction)
Adds a chat user
|
void |
ChatServiceInterfaceResponse.applyStyle(int applyRule,
String styleFile) |
protected void |
ChatControllerXml.approveMessage(Node methodNode,
ITransaction transaction) |
void |
ChatSendMessageControl.buildSubControls() |
void |
ChatManager.closeExpiredConversations(SessionConfig sessionConfig,
ITransaction transaction) |
void |
IChatManager.closeExpiredConversations(SessionConfig sessionConfig,
ITransaction transaction)
closes expired conversations.
|
void |
ChatManager.deleteConversation(SessionConfig sessionConfig,
String conversationId,
ITransaction transaction) |
void |
IChatManager.deleteConversation(SessionConfig sessionConfig,
String conversationId,
ITransaction transaction)
Deletes the given chat conversation.
|
void |
ChatManager.deleteMessage(SessionConfig sessionConfig,
String messageId,
ITransaction transaction) |
void |
IChatManager.deleteMessage(SessionConfig sessionConfig,
String messageId,
ITransaction transaction)
Deletes the given message Id from its conversation.
|
void |
ChatManager.deleteUser(SessionConfig sessionConfig,
String userId,
ITransaction transaction) |
void |
IChatManager.deleteUser(SessionConfig sessionConfig,
String userId,
ITransaction transaction)
Deletes the given user.
|
void |
ChatClock.doTick(SessionConfig sessionConfig,
ClockConfig clockConfig) |
Collection<ChatUserConfig> |
ChatManager.getActiveUsers(SessionConfig sessionConfig,
String conversationId,
ITransaction transaction) |
Collection<ChatUserConfig> |
IChatManager.getActiveUsers(SessionConfig sessionConfig,
String conversationId,
ITransaction transaction)
Returns all the active chat users given the conversation id
|
Collection<ChatUserConfig> |
ChatManager.getActiveUsersWithExpiredLastAccess(SessionConfig sessionConfig,
ITransaction transaction) |
ChatConversationConfig |
ChatManager.getConversation(SessionConfig sessionConfig,
String conversationId,
ITransaction transaction) |
ChatConversationConfig |
IChatManager.getConversation(SessionConfig sessionConfig,
String conversationId,
ITransaction transaction)
Returns a chat conversation config object.
|
protected void |
ChatControllerXml.getLatestMessages(Node methodNode,
ITransaction portalTransaction) |
List<ChatMessageConfig> |
ChatManager.getLatestMessages(SessionConfig sessionConfig,
String conversationId,
String chatUserId,
int maxMessages,
boolean getMessagesToModerate,
Date greaterThanDate,
ITransaction transaction)
Deprecated.
|
List<ChatMessageConfig> |
IChatManager.getLatestMessages(SessionConfig sessionConfig,
String conversationId,
String chatUserId,
int maxMessages,
boolean getMessagesToModerate,
Date greaterThanDate,
ITransaction transaction)
Deprecated.
Since 4.0.11 this method was replaced by
IChatManager.getLatestMessages(SessionConfig, String, String, int, int, boolean, Date, ITransaction) . |
List<ChatMessageConfig> |
ChatManager.getLatestMessages(SessionConfig sessionConfig,
String conversationId,
String chatUserId,
int firstMessageIndex,
int maxMessages,
boolean getMessagesToModerate,
Date greaterThanDate,
ITransaction transaction) |
List<ChatMessageConfig> |
IChatManager.getLatestMessages(SessionConfig sessionConfig,
String conversationId,
String chatUserId,
int firstMessageIndex,
int maxMessages,
boolean getMessagesToModerate,
Date greaterThanDate,
ITransaction transaction)
Returns up to maxMessages messageConfigs for a given conversationId.
|
int |
ChatManager.getLatestMessagesCount(SessionConfig sessionConfig,
String conversationId,
String chatUserId,
boolean getMessagesToModerate,
Date greaterThanDate,
ITransaction transaction) |
int |
IChatManager.getLatestMessagesCount(SessionConfig sessionConfig,
String conversationId,
String chatUserId,
boolean getMessagesToModerate,
Date greaterThanDate,
ITransaction transaction)
Returns the number of messages that exists and would be available
for the
#getLatestMessages(String, String, int, int, boolean, Date, ITransaction)
method. |
ChatMessageConfig |
ChatManager.getMessage(SessionConfig sessionConfig,
String messageId,
ITransaction transaction) |
ChatMessageConfig |
IChatManager.getMessage(SessionConfig sessionConfig,
String messageId,
ITransaction transaction)
Returns a message config object.
|
Collection<ChatMessageConfig> |
ChatManager.getMessages(SessionConfig sessionConfig,
String conversationId,
ITransaction transaction) |
Collection<ChatMessageConfig> |
IChatManager.getMessages(SessionConfig sessionConfig,
String conversationId,
ITransaction transaction)
Returns all the messages for a given conversationId.
|
String |
ChatManager.getMessagesXml(SessionConfig sessionConfig,
Collection<ChatMessageConfig> chatMessageConfigs,
boolean getMessagesToModerate,
List<IResource> resources,
ITransaction transaction) |
String |
IChatManager.getMessagesXml(SessionConfig sessionConfig,
Collection<ChatMessageConfig> chatMessageConfigs,
boolean getMessagesToModerate,
List<IResource> resources,
ITransaction transaction)
Returns the xml for the given messages.
|
IDataControlRequestHelpDefinition |
ChatMessageListControl.getRequestHelpDefinition() |
IDataControlRequestHelpDefinition |
ChatSendMessageControl.getRequestHelpDefinition() |
List<IResource> |
ChatHistoryControl.getResources() |
ChatUserConfig |
ChatManager.getUser(SessionConfig sessionConfig,
String id,
ITransaction transaction) |
ChatUserConfig |
IChatManager.getUser(SessionConfig sessionConfig,
String id,
ITransaction transaction)
Returns a chat user given the chat user id
|
ChatUserConfig |
ChatManager.getUser(SessionConfig sessionConfig,
String userId,
String conversationId,
String userSessionId,
ITransaction transaction) |
ChatUserConfig |
IChatManager.getUser(SessionConfig sessionConfig,
String userId,
String conversationId,
String userSessionId,
ITransaction transaction)
Returns a chat user given the portal user id, conversation id and optionally the user
sessionId
|
Collection<ChatUserConfig> |
ChatManager.getUsers(SessionConfig sessionConfig,
String conversationId,
ITransaction transaction) |
Collection<ChatUserConfig> |
IChatManager.getUsers(SessionConfig sessionConfig,
String conversationId,
ITransaction transaction)
Returns all the chat users given the conversation id
|
void |
ChatSendMessageControl.init(Node controlDefinitionNode,
ControlContainer controlContainer,
IControl parentControl) |
void |
ChatManager.openStartedConversations(SessionConfig sessionConfig,
ITransaction transaction) |
void |
IChatManager.openStartedConversations(SessionConfig sessionConfig,
ITransaction transaction)
Opens the conversations whose startTime has already been reached.
|
boolean |
ChatManager.reachedUserLimit(SessionConfig sessionConfig,
String conversationId,
ITransaction transaction) |
boolean |
IChatManager.reachedUserLimit(SessionConfig sessionConfig,
String conversationId,
ITransaction transaction)
Returns true if the conversation has reached its user limit
|
protected void |
ChatControllerXml.rejectMessage(Node methodNode,
ITransaction transaction) |
void |
ChatHistoryControl.setRenderData() |
void |
ChatMessageListControl.setRenderData() |
void |
ChatSendMessageControl.setRenderData() |
void |
ChatServiceInterfaceResponse.setStyleId(String styleId) |
void |
ChatManager.updateActiveUserState(SessionConfig sessionConfig,
ITransaction transaction) |
void |
IChatManager.updateActiveUserState(SessionConfig sessionConfig,
ITransaction transaction)
Checks if any of the active users have not updated their last acces date.
|
void |
ChatManager.updateLastAccess(SessionConfig sessionConfig,
String chatUserId,
ITransaction transaction) |
void |
IChatManager.updateLastAccess(SessionConfig sessionConfig,
String chatUserId,
ITransaction transaction)
Updates the last access date for the given chat user.
|
protected void |
ChatControllerXml.userLeftConversation(Node methodNode,
ITransaction transaction) |
void |
ChatManager.userLeftConversation(SessionConfig sessionConfig,
ChatUserConfig chatUserConfig,
ITransaction transaction) |
void |
IChatManager.userLeftConversation(SessionConfig sessionConfig,
ChatUserConfig chatUserConfig,
ITransaction transaction)
Method to indicate that a user left the conversation
|
void |
ChatManager.validateActiveConversation(String conversationId,
ITransaction transaction) |
Constructor and Description |
---|
ChatControllerXml(HttpServletRequest request,
HttpServletResponse response,
PageContext pageContext)
Default constructor.
|
Modifier and Type | Class and Description |
---|---|
class |
ContentException
Exception for Content
|
Modifier and Type | Method and Description |
---|---|
static void |
ContentActivityStreamUtil.addViewActivityPriorityRestrictions(SessionConfig sessionConfig,
Collection<Collection<String>> principalsWithAllowViewPermission,
Collection<String> principalsWithDenyViewPermission,
ContentLocale contentLocale,
ITransaction transaction)
Add view activity priority restrictions.
|
Collection<ActivityPriority> |
ContentAdminActivityPrioritizer.generateActivityPriorities(Activity activity) |
Collection<ActivityPriority> |
ContentCreatedToEndUserActivityPrioritizer.generateActivityPriorities(Activity activity) |
static ActivityObjectType |
ContentActivityStreamUtil.getObjectType(String serviceId,
String sourceId)
Get the
ActivityObjectType for the specified service and source |
Modifier and Type | Method and Description |
---|---|
void |
ContentIndexerObserver.onEvent(IPortalEvent event) |
Modifier and Type | Method and Description |
---|---|
void |
ContentClock.doTick(SessionConfig sessionConfig,
ClockConfig clockConfig) |
Modifier and Type | Method and Description |
---|---|
protected void |
AutoLayoutCategorizationAssociationControl.addAssociationSource() |
protected void |
AutoLayoutGenericAssociationInformationControl.addAssociationSource() |
protected void |
AutoLayoutGenericContentAssociationControl.addAssociationSource() |
protected void |
AutoLayoutContentPropertyPageControl.addAutoLayoutFields(StringBuilder subControls) |
protected void |
AutoLayoutContentEmbeddedPropertyPageControl.addPropertyPageControl(StringBuilder subControls) |
protected void |
AutoLayoutContentPropertyPageControl.addPropertyPageSubControls(StringBuilder subControls) |
protected void |
AssociationProcessActionHandler.addRow() |
void |
AutoLayoutAssociationInformationControl.buildSubControls() |
void |
AutoLayoutCategorizationAssociationControl.buildSubControls() |
void |
AutoLayoutGenericAssociationInformationControl.buildSubControls() |
void |
AutoLayoutGenericContentAssociationControl.buildSubControls() |
void |
AutoLayoutLanguageInformationControl.buildSubControls() |
void |
AutoLayoutMetaDataInformationControl.buildSubControls() |
void |
AutoLayoutPublishingInformationControl.buildSubControls() |
void |
AutoLayoutSeoInformationControl.buildSubControls() |
void |
AutoLayoutTagInformationControl.buildSubControls() |
void |
AutoLayoutWorkflowInformationControl.buildSubControls() |
protected void |
AssociationProcessActionHandler.deleteRows(String primaryKeyFieldId,
Collection<String> rowsDeleted) |
protected String |
AutoLayoutContentAdministrationListControl.getAdminListButtonsControl() |
protected String |
AutoLayoutGenericAssociationInformationControl.getAssociationType() |
protected String |
AutoLayoutGenericContentAssociationControl.getAssociationType() |
protected String |
AutoLayoutGenericAssociationInformationControl.getContentPickerInputControl() |
IResource |
AutoLayoutAssociationInformationControl.getControlResource() |
IResource |
AutoLayoutCategorizationAssociationControl.getControlResource() |
IResource |
AutoLayoutLanguageInformationControl.getControlResource() |
IResource |
AutoLayoutMetaDataInformationControl.getControlResource() |
IResource |
AutoLayoutPublishingInformationControl.getControlResource() |
IResource |
AutoLayoutSeoInformationControl.getControlResource() |
IResource |
AutoLayoutTagInformationControl.getControlResource() |
IResource |
AutoLayoutWorkflowInformationControl.getControlResource() |
protected String |
AutoLayoutGenericAssociationInformationControl.getDefaultAssociationType() |
protected String |
AutoLayoutGenericContentAssociationControl.getDefaultAssociationType() |
protected String |
AutoLayoutPublishingInformationControl.getFieldIdByPublishFieldType(MetaDataSourceField.Type metaDataType) |
protected String |
AutoLayoutLanguageInformationControl.getFieldIdByPublishFieldType(String publishType) |
protected String |
AutoLayoutWorkflowInformationControl.getFieldIdByPublishFieldType(String publishType) |
IDataControlRequestHelpDefinition |
AutoLayoutAssociationInformationControl.getRequestHelpDefinition() |
IDataControlRequestHelpDefinition |
AutoLayoutGenericAssociationInformationControl.getRequestHelpDefinition() |
IDataControlRequestHelpDefinition |
AutoLayoutWorkflowInformationControl.getRequestHelpDefinition() |
String |
AutoLayoutGenericContentAssociationControl.getSelectItemsInterfaceId() |
protected String |
AutoLayoutGenericAssociationInformationControl.getSourceId() |
protected String |
AutoLayoutGenericContentAssociationControl.getSourceId() |
boolean |
AutoLayoutSeoInformationControl.hasSeoInformation() |
void |
AutoLayoutAssociationInformationControl.init(Node controlDefinitionNode,
ControlContainer controlContainer,
IControl parentControl) |
void |
AutoLayoutCategorizationAssociationControl.init(Node controlDefinitionNode,
ControlContainer controlContainer,
IControl parentControl) |
void |
AutoLayoutGenericAssociationInformationControl.init(Node controlDefinitionNode,
ControlContainer controlContainer,
IControl parentControl) |
void |
AutoLayoutGenericContentAssociationControl.init(Node controlDefinitionNode,
ControlContainer controlContainer,
IControl parentControl) |
void |
AutoLayoutLanguageInformationControl.init(Node controlDefinitionNode,
ControlContainer controlContainer,
IControl parentControl) |
void |
AutoLayoutPublishingInformationControl.init(Node controlDefinitionNode,
ControlContainer controlContainer,
IControl parentControl) |
void |
AutoLayoutSeoInformationControl.init(Node controlDefinitionNode,
ControlContainer controlContainer,
IControl parentControl) |
void |
AutoLayoutTagInformationControl.init(Node controlDefinitionNode,
ControlContainer controlContainer,
IControl parentControl) |
void |
AutoLayoutWorkflowInformationControl.init(Node controlDefinitionNode,
ControlContainer controlContainer,
IControl parentControl) |
void |
AutoLayoutAssociationInformationControl.loadFromRequest() |
void |
AssociationProcessActionHandler.processAction() |
void |
AutoLayoutCategorizationAssociationControl.CategorizationTermNamePostLoadProcessor.processSource(SessionConfig sessionConfig,
Source source,
Node parametersNode,
ITransaction transaction) |
boolean |
AutoLayoutCategorizationAssociationControl.renderControl() |
boolean |
AutoLayoutGenericAssociationInformationControl.renderControl() |
boolean |
AutoLayoutGenericContentAssociationControl.renderControl() |
protected boolean |
AutoLayoutContentFieldsControl.renderControlsForField(ISourceField field) |
void |
AutoLayoutAssociationInformationControl.setRenderData() |
void |
AutoLayoutCategorizationAssociationControl.setRenderData() |
protected void |
AutoLayoutAssociationInformationControl.setValueFromSource() |
protected void |
AssociationProcessActionHandler.updateRow() |
Modifier and Type | Method and Description |
---|---|
protected String |
AutoContentAdministrationListButtonsControl.appendPreConfigureButtons() |
void |
ContentAnalyticsButtonControl.setRenderData() |
void |
GenerateContentButtonControl.setRenderData() |
void |
PreviewButtonControl.setRenderData() |
void |
SaveAndPreviewButtonControl.setRenderData() |
void |
ServiceInstanceAnalyticsButtonControl.setRenderData() |
void |
VersionsButtonControl.setRenderData() |
Modifier and Type | Method and Description |
---|---|
protected IDouiDataType |
InputCategoryControl.createDataType() |
void |
InputCategoryControl.setRenderData() |
boolean |
InputCategoryControl.valueIsArray() |
Modifier and Type | Method and Description |
---|---|
void |
CommentsControl.buildSubControls() |
protected String |
CommentsAddControl.getComments(String metaDataId) |
IResource |
CommentsControl.getControlResource() |
IDataControlRequestHelpDefinition |
CommentsControl.getRequestHelpDefinition() |
void |
CommentsControl.init(Node controlDefinitionNode,
ControlContainer controlContainer,
IControl parentControl) |
void |
CommentsControl.setProcessActionHandlerParameters(IProcessActionHandler processActionHandler) |
void |
CommentsAddControl.setRenderData() |
void |
CommentsControl.setRenderData() |
protected void |
CommentsControl.setValueFromSource(Source source) |
Modifier and Type | Method and Description |
---|---|
protected void |
ContentPickerControl.autoAddValidators() |
void |
ContentPickerControl.buildSubControls() |
protected String |
ContentPickerControl.getPopupRunTimeInterfaceDefinition() |
protected String |
TermPickerControl.getPopupRunTimeInterfaceDefinition() |
void |
ContentPickerControl.init(Node controlDefinitionNode,
ControlContainer controlContainer,
IControl parentControl) |
void |
ContentPickerControl.setRenderData() |
Modifier and Type | Method and Description |
---|---|
protected String |
TermDynamicListControl.getPopupAddInterfaceServiceInstanceId() |
Modifier and Type | Method and Description |
---|---|
void |
LanguageControl.buildSubControls() |
IResource |
LanguageControl.getControlResource() |
protected Map<String,String> |
LanguageFilterControl.getItems() |
IDataControlRequestHelpDefinition |
LanguageControl.getRequestHelpDefinition() |
IDataControlRequestHelpDefinition |
LanguageFilterControl.getRequestHelpDefinition() |
void |
LanguageControl.init(Node controlDefinitionNode,
ControlContainer controlContainer,
IControl parentControl) |
void |
LanguageControl.loadFromRequest() |
void |
LanguageControl.setRenderData() |
void |
LanguageFilterControl.setRenderData() |
protected void |
LanguageControl.setValueFromSource(ContentTableSource source) |
Modifier and Type | Method and Description |
---|---|
protected boolean |
LockButtonControl.hasLock() |
void |
LockButtonControl.setRenderData() |
void |
LockedMessageControl.setRenderData() |
void |
StealLockButtonControl.setRenderData() |
Modifier and Type | Method and Description |
---|---|
protected String |
SelectContentParentContentControl.getParentContentPrimaryName(String currentParentContentValue,
TableSource source,
String primaryNameFieldName) |
Modifier and Type | Method and Description |
---|---|
void |
PublishToPrincipalsControl.buildSubControls() |
void |
PublishToPrincipalsListControl.buildSubControls() |
IResource |
PublishToPrincipalsControl.getControlResource() |
IDataControlRequestHelpDefinition |
PublishToPrincipalsControl.getRequestHelpDefinition() |
IDataControlRequestHelpDefinition |
PublishToPrincipalsListControl.getRequestHelpDefinition() |
void |
PublishToPrincipalsControl.init(Node controlDefinitionNode,
ControlContainer controlContainer,
IControl parentControl) |
void |
PublishToPrincipalsListControl.init(Node controlDefinitionNode,
ControlContainer controlContainer,
IControl parentControl) |
void |
PublishToPrincipalsControl.setProcessActionHandlerParameters(IProcessActionHandler processActionHandler) |
void |
PublishToPrincipalsListControl.setProcessActionHandlerParameters(IProcessActionHandler processActionHandler) |
void |
PublishToPrincipalsControl.setRenderData() |
void |
PublishToPrincipalsListControl.setRenderData() |
protected void |
PublishToPrincipalsControl.setValueFromSource(ContentTableSource source) |
Modifier and Type | Method and Description |
---|---|
void |
PublishToServiceInstancesControl.buildSubControls() |
void |
PublishToServiceInstancesListControl.buildSubControls() |
IResource |
PublishToServiceInstancesControl.getControlResource() |
IDataControlRequestHelpDefinition |
PublishToServiceInstancesControl.getRequestHelpDefinition() |
IDataControlRequestHelpDefinition |
PublishToServiceInstancesListControl.getRequestHelpDefinition() |
void |
PublishToServiceInstancesControl.init(Node controlDefinitionNode,
ControlContainer controlContainer,
IControl parentControl) |
void |
PublishToServiceInstancesListControl.init(Node controlDefinitionNode,
ControlContainer controlContainer,
IControl parentControl) |
void |
PublishToServiceInstancesControl.setProcessActionHandlerParameters(IProcessActionHandler processActionHandler) |
void |
PublishToServiceInstancesListControl.setProcessActionHandlerParameters(IProcessActionHandler processActionHandler) |
void |
PublishToServiceInstancesControl.setRenderData() |
void |
PublishToServiceInstancesListControl.setRenderData() |
protected void |
PublishToServiceInstancesControl.setValueFromSource(ContentTableSource source) |
Modifier and Type | Method and Description |
---|---|
void |
PublishToSocialNetworkControl.buildSubControls() |
protected String |
PublishToSocialNetworkButtonControl.getAdditionalPostParameters(Node onEventNode) |
protected String |
PublishToSocialNetworkButtonControl.getClientEventHandlerScript(String eventName,
boolean forHref) |
IResource |
PublishToSocialNetworkControl.getControlResource() |
IDataControlRequestHelpDefinition |
PublishToSocialNetworkControl.getRequestHelpDefinition() |
void |
PublishToSocialNetworkControl.init(Node controlDefinitionNode,
ControlContainer controlContainer,
IControl parentControl) |
void |
PublishToSocialNetworkControl.setProcessActionHandlerParameters(IProcessActionHandler processActionHandler) |
void |
PublishToSocialNetworkControl.setRenderData() |
protected void |
PublishToSocialNetworkControl.setValueFromSource(ContentTableSource source) |
Modifier and Type | Method and Description |
---|---|
IResource |
InputTagControl.getControlResource() |
protected Class<?> |
InputTagControl.getValueClass() |
void |
InputTagControl.setRenderData() |
boolean |
InputTagControl.valueIsArray() |
Modifier and Type | Method and Description |
---|---|
void |
VersionControl.buildSubControls() |
void |
VersionControl.init(Node controlDefinitionNode,
ControlContainer controlContainer,
IControl parentControl) |
void |
VersionControl.setRenderData() |
protected void |
VersionControl.setValueFromSource(TableSource source) |
Modifier and Type | Method and Description |
---|---|
void |
SelectWorkflowControl.buildSubControls() |
void |
WorkflowMetaDataControl.buildSubControls() |
protected ContentWorkflowMetaData |
WorkflowMetaDataControl.getContentWorkflowMetaData()
Returns the content workflow metadata.
|
protected ContentWorkflowMetaData |
WorkflowMetaDataControl.getContentWorkflowMetaData(ContentTableSource source) |
IResource |
SelectWorkflowControl.getControlResource() |
IResource |
WorkflowSendToControl.getControlResource() |
protected String |
WorkflowMetaDataControl.getItemId() |
protected Map<String,String> |
WorkflowAssignedToFilterControl.getItems() |
protected Map<String,String> |
WorkflowStateFilterControl.getItems() |
List<IResource> |
WorkflowMetaDataControl.getResources() |
void |
WorkflowMetaDataControl.init(Node controlDefinitionNode,
ControlContainer controlContainer,
IControl parentControl) |
void |
SelectWorkflowControl.loadFromRequest() |
void |
WorkflowAssignedToControl.loadFromRequest() |
void |
WorkflowStateControl.loadFromRequest() |
void |
WorkflowActionControl.setProcessActionHandlerParameters(IProcessActionHandler processActionHandler) |
void |
WorkflowSendToControl.setProcessActionHandlerParameters(IProcessActionHandler processActionHandler) |
void |
SelectWorkflowControl.setRenderData() |
void |
WorkflowActionControl.setRenderData() |
void |
WorkflowAssignedToControl.setRenderData() |
void |
WorkflowAssignedToFilterControl.setRenderData() |
void |
WorkflowSendToControl.setRenderData() |
void |
WorkflowStateControl.setRenderData() |
void |
WorkflowStateFilterControl.setRenderData() |
protected void |
WorkflowAssignedToControl.setValueFromSource(ContentTableSource source) |
protected void |
WorkflowMetaDataControl.setValueFromSource(ContentTableSource source) |
protected void |
WorkflowSendToControl.setValueFromSource(ContentTableSource source) |
protected void |
WorkflowStateControl.setValueFromSource(ContentTableSource source) |
Modifier and Type | Method and Description |
---|---|
void |
ContentManager.addContent(Content content) |
void |
IContentManager.addContent(Content content)
Adds a content to persistence.
|
ContentLocale |
Content.addContentLocale(Locale locale)
Adds a new locale specific content object in this content.
|
boolean |
ContentAdminActivityGenerationTransactionObserver.beforeCommit() |
boolean |
ContentPublicationActivityGenerationTransactionObserver.beforeCommit() |
protected Activity |
ContentPublicationActivityGenerationTransactionObserver.createActivity(ContentLocale contentLocale)
Creates an activity for the content locale being persisted
|
void |
ContentAssociation.delete()
Deletes this content association.
|
void |
ContentLocale.delete()
Deletes this instance from persistence.
|
void |
ContentPublication.delete()
Deletes this publication.
|
void |
ContentVersion.delete()
Deletes this
version . |
void |
ContentManager.deleteContent(Content content) |
void |
IContentManager.deleteContent(Content content)
Deletes a content from persistence.
|
void |
ContentVersionCleanerClock.doTick(SessionConfig sessionConfig,
ClockConfig clockConfig) |
ContentVersion |
ContentManager.getActiveVersionByItemId(String itemId)
Returns the
active version of the ContentLocale that the
ContentVersion with the given item id belongs to. |
String |
ContentManager.getActiveVersionItemIdByItemId(String itemId)
Try to find the
item id of the
active version of the
ContentLocale that the ContentVersion with the given item
id belongs to. |
Content |
ContentManager.getContent(String contentId) |
Content |
IContentManager.getContent(String contentId)
Returns a persistent content instance.
|
Content |
ContentManager.getContentByItemId(String itemId) |
Content |
IContentManager.getContentByItemId(String itemId)
Returns the content related with the specified business data.
|
static String |
ContentUtilInternal.getContentId(String id)
Returns the
content identifier based on the given identifier or null if none could be inferred. |
ContentLocale |
ContentManager.getContentLocale(String contentLocaleId) |
ContentLocale |
IContentManager.getContentLocale(String contentLocaleId)
Returns the a content locale by its identifier.
|
ContentVersion |
ContentManager.getContentVersion(String contentVersionId) |
ContentVersion |
IContentManager.getContentVersion(String contentVersionId)
Returns the a content version by its identifier.
|
ContentVersion |
ContentManager.getContentVersionByItemId(String itemId) |
ContentVersion |
IContentManager.getContentVersionByItemId(String itemId)
Returns the a content version that refers the given itemId.
|
static String |
ContentUtilInternal.getItemId(String id,
String localeId)
Returns the
item identifier based on the given identifier or null if none could be inferred. |
static String |
ContentUtil.getOldItemIdParameter(IServiceInterfaceRequest request)
Gets the itemId parameter for a request, trying to be most backward
compatible with the 4.1 implementation logic.
|
ContentVersion |
ContentManager.getPublishedContentVersion(String contentId,
String serviceInstanceId) |
ContentVersion |
IContentManager.getPublishedContentVersion(String contentId,
String serviceInstanceId)
Returns the published version more appropriated to the current user
for the specified content and service instance.
|
static boolean |
ContentUtilInternal.isContentPublished(String contentId)
Returns whether the content with the given identifier exists and it is published.
|
void |
ContentManager.lock(String contentLocaleId,
LockType lockType) |
void |
IContentManager.lock(String contentLocaleId,
LockType lockType)
Locks contentlocale acording to lockType.
|
void |
ContentLocale.move(Content newContent,
Locale newLocale)
Moves this content locale object to another content or locale value.
|
void |
ContentUrlUpdateObserver.onEvent(IPortalEvent ev) |
void |
ContentManager.releaseLock(String contentLocaleId) |
void |
IContentManager.releaseLock(String contentLocaleId)
Releases the lock for the contentLocale.
|
void |
ContentManager.scheduleReindex(Content content) |
void |
IContentManager.scheduleReindex(Content content)
Schedules the re-indexing of a content after the current
transaction commits.
|
void |
ContentPublication.updateCalculatedFields()
Updates this publication's calculated fields.
|
Constructor and Description |
---|
ContentRenderDataChangedEvent(SessionConfig sessionConfig,
ContentVersion contentVersion,
ContentTableSource source,
ITransaction transaction)
Creates a new render data changed event for a content.
|
ContentRenderDataChangedEvent(SessionConfig sessionConfig,
ContentVersion contentVersion,
ITransaction transaction)
Creates a new render data changed event for a content.
|
Modifier and Type | Method and Description |
---|---|
void |
ContentHyperLinkControllerHtml.hyperLink() |
Constructor and Description |
---|
ContentHyperLinkControllerHtml(HttpServletRequest request,
HttpServletResponse response,
PageContext pageContext) |
Modifier and Type | Method and Description |
---|---|
String |
ContentServiceInterfaceInContextEdit.getInContextEditMenu(SessionConfig sessionConfig,
IURLFactory urlFactory,
ServiceInterfaceInstanceConfig interfaceInstance,
String detailsLumItemId,
ITransaction transaction) |
String |
ContentServiceInterfaceInContextEdit.getInContextEditMenu(SessionConfig sessionConfig,
IURLFactory urlFactory,
String lumItemId,
String sourcePageId,
ITransaction transaction) |
boolean |
ContentServiceInterfaceInContextEdit.isInContextEditEnabled(SessionConfig sessionConfig,
ServiceInterfaceInstanceConfig serviceInterfaceInstanceConfig,
ITransaction transaction)
Returns whether or not in context edit is enabled for the given service
interface instance.
|
String |
ContentServiceInterfaceInContextEdit.processInContextEditContent(ServiceContainerRenderRequest renderRequest,
ServiceInterfaceInstanceConfig serviceInterfaceInstanceConfig,
String outputHTML,
ITransaction transaction) |
boolean |
ContentServiceInterfaceInContextEdit.removeInContextEditInterfaceInstance(SessionConfig sessionConfig,
IPortalMode portalMode,
ServiceInterfaceInstanceConfig serviceInterfaceInstanceConfig,
String html,
org.apache.wicket.util.string.AppendingStringBuffer sb,
String detailsLumItemId,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
void |
ContentLockProcessActionHandler.processAction() |
Constructor and Description |
---|
LockController(HttpServletRequest request,
HttpServletResponse response,
PageContext pageContext) |
Modifier and Type | Method and Description |
---|---|
MetaDataConfig |
IMetaDataManager.get(SessionConfig sessionConfig,
String metaDataId,
ITransaction transaction)
Deprecated.
|
MetaDataConfig |
MetaDataManager.get(SessionConfig sessionConfig,
String metaDataId,
ITransaction transaction)
Deprecated.
|
Collection<MetaDataConfig> |
IMetaDataManager.getByItemId(SessionConfig sessionConfig,
String itemId,
boolean considerInactiveVersion,
ITransaction transaction)
Deprecated.
|
Collection<MetaDataConfig> |
MetaDataManager.getByItemId(SessionConfig sessionConfig,
String itemId,
boolean considerInactiveVersion,
ITransaction transaction)
Deprecated.
|
Collection<MetaDataConfig> |
IMetaDataManager.getByItemId(SessionConfig sessionConfig,
String itemId,
ITransaction transaction)
Deprecated.
|
Collection<MetaDataConfig> |
MetaDataManager.getByItemId(SessionConfig sessionConfig,
String itemId,
ITransaction transaction)
Deprecated.
|
Collection<MetaDataConfig> |
IMetaDataManager.getByItemIdAndServiceId(SessionConfig sessionConfig,
String itemId,
String serviceId,
String sourceId,
boolean considerInactiveVersion,
ITransaction transaction)
Deprecated.
|
Collection<MetaDataConfig> |
MetaDataManager.getByItemIdAndServiceId(SessionConfig sessionConfig,
String itemId,
String serviceId,
String sourceId,
boolean considerInactiveVersion,
ITransaction transaction)
Deprecated.
|
Collection<MetaDataConfig> |
IMetaDataManager.getByItemIdAndServiceId(SessionConfig sessionConfig,
String itemId,
String serviceId,
String sourceId,
ITransaction transaction)
Deprecated.
|
Collection<MetaDataConfig> |
MetaDataManager.getByItemIdAndServiceId(SessionConfig sessionConfig,
String itemId,
String serviceId,
String sourceId,
ITransaction transaction)
Deprecated.
|
MetaDataConfig |
IMetaDataManager.getByItemIdAndServiceInstanceId(SessionConfig sessionConfig,
String itemId,
String serviceInstanceId,
String sourceId,
boolean considerInactiveVersion,
ITransaction transaction)
Deprecated.
|
MetaDataConfig |
MetaDataManager.getByItemIdAndServiceInstanceId(SessionConfig sessionConfig,
String itemId,
String serviceInstanceId,
String sourceId,
boolean considerInactiveVersion,
ITransaction transaction)
Deprecated.
|
MetaDataConfig |
IMetaDataManager.getByItemIdAndServiceInstanceId(SessionConfig sessionConfig,
String itemId,
String serviceInstanceId,
String sourceId,
ITransaction transaction)
Deprecated.
|
MetaDataConfig |
MetaDataManager.getByItemIdAndServiceInstanceId(SessionConfig sessionConfig,
String itemId,
String serviceInstanceId,
String sourceId,
ITransaction transaction)
Deprecated.
|
List<CommentConfig> |
IMetaDataManager.getComments(SessionConfig sessionConfig,
String metaDataId,
ITransaction transaction)
Deprecated.
|
List<CommentConfig> |
MetaDataManager.getComments(SessionConfig sessionConfig,
String metaDataId,
ITransaction transaction)
Deprecated.
|
protected void |
MetaDataInfoController.getContents() |
Collection<String> |
IMetaDataManager.getIdsByServiceInstanceId(SessionConfig sessionConfig,
String serviceInstanceId,
ITransaction transaction)
Deprecated.
|
Collection<String> |
MetaDataManager.getIdsByServiceInstanceId(SessionConfig sessionConfig,
String serviceInstanceId,
ITransaction transaction)
Deprecated.
|
int |
IMetaDataManager.getNumComments(SessionConfig sessionConfig,
String metaDataId,
ITransaction transaction)
Deprecated.
|
int |
MetaDataManager.getNumComments(SessionConfig sessionConfig,
String metaDataId,
ITransaction transaction)
Deprecated.
|
int |
IMetaDataManager.getNumVersions(SessionConfig sessionConfig,
String itemId,
String serviceInstanceId,
String sourceId,
ITransaction transaction)
Deprecated.
|
int |
MetaDataManager.getNumVersions(SessionConfig sessionConfig,
String itemId,
String serviceInstanceId,
String sourceId,
ITransaction transaction)
Deprecated.
|
String |
IMetaDataManager.getParentServiceInstanceId(SessionConfig sessionConfig,
String itemId,
String serviceId,
ITransaction transaction)
Deprecated.
|
String |
MetaDataManager.getParentServiceInstanceId(SessionConfig sessionConfig,
String itemId,
String serviceId,
ITransaction transaction)
Deprecated.
|
protected void |
MetaDataInfoController.getPublishToPrincipals() |
protected void |
MetaDataInfoController.getPublishToServiceInstances() |
protected void |
MetaDataInfoController.getWorkflowStatePrincipals() |
Constructor and Description |
---|
MetaDataController(IProcessActionHandler processActionHandler,
ContentTableSource source,
ITransaction transaction)
Deprecated.
|
MetaDataInfoController(HttpServletRequest request,
HttpServletResponse response) |
Modifier and Type | Method and Description |
---|---|
protected void |
ContentTabularSourceSearchContentFiller.addIdField()
Deprecated.
|
protected void |
ContentTabularSourceSearchContentFiller.addLanguageField()
Deprecated.
|
void |
ContentTabularSourceSearchContentFiller.addPrincipalField()
Deprecated.
|
protected void |
ContentTabularSourceSearchContentFiller.addServiceInstanceField(boolean forAdd)
Deprecated.
|
protected void |
ContentTabularSourceSearchContentFiller.addStatusField()
Deprecated.
|
protected void |
ContentTabularSourceSearchContentFiller.addUrlField()
Deprecated.
|
static List<? extends Document> |
SearchContentConverter.convertSearchContentsToDocuments(List<SearchContent> searchContents)
Converts search contents into documents.
|
List<SearchContent> |
ContentTabularSourceSearchContentFiller.getSearchContentsForAdd()
Deprecated.
|
List<SearchContent> |
ContentTabularSourceSearchContentFiller.getSearchContentsForRemove()
Deprecated.
|
void |
ContentTabularSourceSearchContentFiller.init(ISourceData sourceData,
Source source)
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
protected boolean |
ContentAdministrationAddPropertyPageServiceInterface.addDefaultControls(Node serviceInterfaceDouiDefinitionNode,
Node serviceDouiDefinitionNode,
Node serviceInterfaceXmlNode) |
protected boolean |
ContentAdministrationEditPropertyPageServiceInterface.addDefaultControls(Node serviceInterfaceDouiDefinitionNode,
Node serviceDouiDefinitionNode,
Node serviceInterfaceXmlNode) |
protected boolean |
ContentAdministrationEmbeddedAddPropertyPageServiceInterface.addDefaultControls(Node serviceInterfaceDouiDefinitionNode,
Node serviceDouiDefinitionNode,
Node serviceInterfaceXmlNode) |
protected boolean |
ContentAdministrationListServiceInterface.addDefaultControls(Node serviceInterfaceDouiDefinitionNode,
Node serviceDouiDefinitionNode,
Node serviceInterfaceXmlNode) |
protected boolean |
ContentDetailsServiceInterface.addDefaultControls(Node serviceInterfaceDouiDefinitionNode,
Node serviceDouiDefinitionNode,
Node serviceInterfaceXmlNode) |
protected boolean |
ContentGenericListServiceInterface.addDefaultControls(Node serviceInterfaceDouiDefinitionNode,
Node serviceDouiDefinitionNode,
Node serviceInterfaceXmlNode) |
protected boolean |
ContentQuickListServiceInterface.addDefaultControls(Node serviceInterfaceDouiDefinitionNode,
Node serviceDouiDefinitionNode,
Node serviceInterfaceXmlNode) |
protected boolean |
ContentAdministrationListServiceInterface.addDefaultFields(Node serviceInterfaceSourceNode,
Node serviceDouiDefinitionNode,
Node serviceInterfaceXmlNode) |
protected boolean |
ContentDetailsServiceInterface.addDefaultFields(Node serviceInterfaceSourceNode,
Node serviceDouiDefinitionNode,
Node serviceInterfaceXmlNode) |
protected boolean |
ContentGenericListServiceInterface.addDefaultFields(Node serviceInterfaceSourceNode,
Node serviceDouiDefinitionNode,
Node serviceInterfaceXmlNode) |
protected boolean |
ContentAdministrationEditPropertyPageServiceInterface.addDefaultFilters(Node serviceInterfaceSourceNode,
Node serviceDouiDefinitionNode,
Node serviceInterfaceXmlNode) |
protected boolean |
ContentAdministrationListServiceInterface.addDefaultFilters(Node serviceInterfaceSourceNode,
Node serviceDouiDefinitionNode,
Node serviceInterfaceXmlNode) |
protected boolean |
ContentGenericListServiceInterface.addDefaultHyperLinks(Node serviceInterfaceDouiDefinitionNode,
Node serviceDouiDefinitionNode,
ITransaction transaction) |
protected boolean |
ContentDetailsServiceInterface.addDefaultMaxRows(Node serviceInterfaceSourceNode,
Node serviceDouiDefinitionNode,
Node serviceInterfaceXmlNode) |
protected boolean |
ContentAdministrationListServiceInterface.addDefaultOrderBy(Node serviceInterfaceSourceNode,
Node serviceDouiDefinitionNode,
Node serviceInterfaceXmlNode) |
protected boolean |
ContentServiceInterface.addDefaultOrderBy(Node serviceInterfaceSourceNode,
Node serviceDouiDefinitionNode,
Node serviceInterfaceXmlNode) |
protected void |
ContentAdministrationAddPropertyPageServiceInterface.addDefaultProcessActionResponses(StringBuilder processActionsXml) |
protected void |
ContentAdministrationEditPropertyPageServiceInterface.addDefaultProcessActionResponses(StringBuilder processActionsXml) |
protected void |
ContentAdministrationEmbeddedAddPropertyPageServiceInterface.addDefaultProcessActionResponses(StringBuilder processActionsXml) |
protected boolean |
ContentAdministrationAddPropertyPageServiceInterface.addDefaultProcessActions(Node serviceInterfaceDouiDefinitionNode,
Node serviceDouiDefinitionNode,
Node serviceInterfaceXmlNode) |
protected boolean |
ContentAdministrationEditPropertyPageServiceInterface.addDefaultProcessActions(Node serviceInterfaceDouiDefinitionNode,
Node serviceDouiDefinitionNode,
Node serviceInterfaceXmlNode) |
protected boolean |
ContentAdministrationListServiceInterface.addDefaultProcessActions(Node serviceInterfaceDouiDefinitionNode,
Node serviceDouiDefinitionNode,
Node serviceInterfaceXmlNode) |
protected boolean |
ContentAdministrationAddPropertyPageServiceInterface.addDefaultSources(Node serviceInterfaceDouiDefinitionNode,
Node serviceDouiDefinitionNode,
Node serviceInterfaceXmlNode) |
protected IQueryValue |
ContentVersionIdReaderTableSourceFilter.calculateFilterValue(Node filterNode) |
boolean |
ContentService.checkFileAccess(FileConfig file) |
static void |
ContentServiceMonitorUtil.collectContentView(PageWebResource pageWebResource,
long duration) |
protected IServiceInterfaceUrl |
ContentHyperLinkResolver.createUrl(SessionConfig sessionConfig,
HyperLinkConfig hyperLinkConfig,
String pageId,
ITransaction transaction) |
void |
ContentService.deleteContent(SessionConfig sessionConfig,
ServiceInstanceConfig config,
ITransaction transaction) |
void |
ContentService.deserializeContent(ServiceInstanceDeserializationContext serviceInstanceDeserializationContext) |
Node |
ContentService.getClocks(SessionConfig sessionConfig,
ServiceConfig config,
ITransaction transaction) |
protected String |
ContentAdministrationPropertyPageServiceInterface.getCustomMenu(SessionConfig sessionConfig,
ServiceInterfaceInstanceConfig config,
ITransaction transaction) |
protected String |
ContentDetailsServiceInterface.getCustomMenu(SessionConfig sessionConfig,
ServiceInterfaceInstanceConfig config,
ITransaction transaction) |
protected String |
ContentGenericListServiceInterface.getCustomMenu(SessionConfig sessionConfig,
ServiceInterfaceInstanceConfig config,
ITransaction transaction) |
protected String |
ContentServiceInterface.getCustomMenu(SessionConfig sessionConfig,
ServiceInterfaceInstanceConfig config,
ITransaction transaction) |
Element |
ContentService.getDefaultServiceInstanceMenu(ServiceInstanceConfig serviceInstance) |
String |
ContentServiceInterface.getRepositoryMenus(SessionConfig sessionConfig,
ServiceInterfaceInstanceConfig config,
ITransaction transaction) |
void |
ContentService.instanceAdded(SessionConfig sessionConfig,
ServiceInstanceConfig serviceInstanceConfig,
ITransaction transaction) |
void |
ContentService.instanceDeleted(SessionConfig sessionConfig,
ServiceInstanceConfig config,
ITransaction transaction) |
void |
ContentService.instanceDeserialized(ServiceInstanceDeserializationContext serviceInstanceDeserializationContext) |
void |
ContentService.instanceDeserialized(SessionConfig sessionConfig,
String serviceInstanceId,
DeserializationConfig deserializationConfig,
Node node,
ITransaction transaction) |
void |
ContentService.instanceSerialized(ServiceInstanceSerializationContext serviceInstanceSerializationContext) |
void |
ContentService.instanceSerialized(SessionConfig sessionConfig,
String serviceInstanceId,
OutputStream outputStream,
ITransaction transaction) |
void |
ContentServiceInterface.load(ServiceInterfaceConfig config) |
static void |
ContentServiceMonitorUtil.populateContentObjectValuesProvider(ContentVersion contentVersion,
MonitorHelper monitorHelper)
Populates the given monitor helper with content object fields based on the given content version.
|
void |
ContentService.postRegister(SessionConfig sessionConfig,
ServiceConfig serviceConfig,
ITransaction transaction) |
void |
ContentService.preUnregister(SessionConfig sessionConfig,
ITransaction transaction) |
protected void |
ContentAdministrationEditPropertyPageServiceInterface.processActions(DouiContext douiContext) |
void |
ContentAdministrationEditPropertyPageServiceInterface.register(SessionConfig sessionConfig,
Node serviceInterfaceXmlNode,
ITransaction transaction) |
void |
ContentAdministrationListServiceInterface.register(SessionConfig sessionConfig,
Node serviceInterfaceXmlNode,
ITransaction transaction) |
void |
ContentAdministrationPropertyPageServiceInterface.register(SessionConfig sessionConfig,
Node serviceInterfaceXmlNode,
ITransaction transaction) |
void |
ContentDetailsServiceInterface.register(SessionConfig sessionConfig,
Node serviceInterfaceXmlNode,
ITransaction transaction) |
void |
ContentGenericListServiceInterface.register(SessionConfig sessionConfig,
Node serviceInterfaceXmlNode,
ITransaction transaction) |
void |
ContentListServiceInterface.register(SessionConfig sessionConfig,
Node serviceInterfaceXmlNode,
ITransaction transaction) |
void |
ContentQuickListServiceInterface.register(SessionConfig sessionConfig,
Node serviceInterfaceXmlNode,
ITransaction transaction) |
protected void |
ContentService.registerActivityObjectTypes(ServiceConfig serviceConfig,
Node serviceDefinitionNode)
Registers
object types of the activity stream framework that contents of this service
are considered of. |
void |
ContentServiceInterface.render(IServiceInterfaceRenderRequest request,
IServiceInterfaceRenderResponse response) |
protected void |
ContentAdministrationEditPropertyPageServiceInterface.renderData(IServiceInterfaceRenderResponse response,
DouiContext douiContext) |
protected void |
ContentDetailsServiceInterface.renderData(IServiceInterfaceRenderResponse response,
DouiContext douiContext) |
IServiceInterfaceUrl |
ContentService.resolveHyperLink(SessionConfig sessionConfig,
HyperLinkConfig hyperLinkConfig,
ITransaction transaction) |
static void |
DetailsUtil.setCurrentItemId(DouiContext douiContext)
Deprecated.
Stores the itemId in a special attribute in the request if it is not present in the request as parameter.
|
protected void |
ContentAdministrationPropertyPageServiceInterface.setIsAdministrationProperty(Node serviceInterfaceXmlNode) |
protected void |
ContentGenericListServiceInterface.setIsListProperty(Node serviceInterfaceXmlNode) |
protected void |
ContentAdministrationEmbeddedAddPropertyPageServiceInterface.setIsRuntimeOnlyProperty(Node serviceInterfaceXmlNode) |
protected void |
ContentAdministrationPropertyPageServiceInterface.setIsRuntimeOnlyProperty(Node serviceInterfaceXmlNode) |
protected Node |
ContentService.setMetaDataField(Node source,
String metaDataAtributeName,
String fieldId,
String fieldName,
String fieldDataType,
boolean display) |
protected Node |
ContentService.setMetaDataFieldIfRequested(String propertyName,
Node source,
Node metaDataNode,
String metaDataAttributeName,
String fieldId,
String fieldName,
String fieldDataType) |
protected void |
ContentService.setMetaDataFields(Node douiDefinitionNode)
Detects the meta-data configurations and converts them to the appropriate source fields.
|
protected void |
ContentAdministrationListServiceInterface.setPreviewSupportedProperty(SessionConfig sessionConfig,
Node serviceInterfaceXmlNode,
ITransaction transaction) |
protected void |
ContentDetailsServiceInterface.setPreviewSupportedProperty(SessionConfig sessionConfig,
Node serviceInterfaceXmlNode,
ITransaction transaction) |
protected void |
ContentGenericListServiceInterface.setPreviewSupportedProperty(SessionConfig sessionConfig,
Node serviceInterfaceXmlNode,
ITransaction transaction) |
protected void |
ContentService.setSourceFieldAttributes(SessionConfig sessionConfig,
ServiceConfig serviceConfig,
Node douiDefinitionNode,
ITransaction transaction) |
protected void |
ContentService.unregisterActivityObjectTypes()
Unregister
activity object types . |
Modifier and Type | Method and Description |
---|---|
void |
ContentServiceSerializationManager.deserialize(ServiceInstanceDeserializationContext serviceInstanceDeserializationContext) |
void |
IContentServiceSerializationManager.deserialize(ServiceInstanceDeserializationContext serviceInstanceDeserializationContext)
Deserialize a content service instance (structure only).
|
protected void |
ContentServiceSerializationManager.deserializeAttachedFiles(lumis.content.service.serialization.ContentServiceSerializationManager.FileTableSerializableConfig fileList,
ServiceInstanceDeserializationContext serviceInstanceDeserializationContext,
Set<String> ignoredDataFullPaths)
Detectes the files names that need to be deserialized and creates the files in the data directory.
|
void |
ContentServiceSerializationManager.deserializeContent(ServiceInstanceDeserializationContext serviceInstanceDeserializationContext) |
void |
IContentServiceSerializationManager.deserializeContent(ServiceInstanceDeserializationContext serviceInstanceDeserializationContext)
Deserialize a content service instance (content only).
|
protected void |
ContentServiceSerializationManager.deserializeData(lumis.content.service.serialization.ContentServiceSerializationManager.ContentSerializableConfig contentData,
ServiceInstanceDeserializationContext serviceInstanceDeserializationContext)
Deserializes the given content into the respective tables.
|
protected Set<String> |
ContentServiceSerializationManager.deserializeTableData(ServiceInstanceDeserializationContext serviceInstanceDeserializationContext,
String sourceId,
lumis.content.service.serialization.ContentServiceSerializationManager.TableSerializableConfig tableConfig,
boolean progressEnabled,
ITransaction transaction)
Reads the table name, column names and row data from the given xml node
and deserializes the data into the appropriate table.
|
protected Set<String> |
ContentServiceSerializationManager.deserializeTableDataFile(ServiceInstanceDeserializationContext serviceInstanceDeserializationContext,
String sourceId,
lumis.content.service.serialization.ContentServiceSerializationManager.TableSerializableConfig tableConfig,
int fileNum,
boolean progressEnabled,
ITransaction transaction) |
void |
ContentServiceSerializationManager.serialize(ServiceInstanceSerializationContext serviceInstanceSerializationContext) |
void |
IContentServiceSerializationManager.serialize(ServiceInstanceSerializationContext serviceInstanceSerializationContext)
Serialize a content service instance (content and structure).
|
protected void |
ContentServiceSerializationManager.serializeAllContentMetadata(ServiceInstanceSerializationContext serviceInstanceSerializationContext,
lumis.content.service.serialization.ContentServiceSerializationManager.ContentSerializableConfig contentConfig,
String serviceInstanceId) |
protected void |
ContentServiceSerializationManager.serializeAllFileData(ServiceInstanceSerializationContext serviceInstanceSerializationContext,
lumis.content.service.serialization.ContentServiceSerializationManager.ContentSerializableConfig contentConfig,
String serviceInstanceId) |
protected void |
ContentServiceSerializationManager.serializeAllTransformedFileData(ServiceInstanceSerializationContext serviceInstanceSerializationContext,
lumis.content.service.serialization.ContentServiceSerializationManager.ContentSerializableConfig contentConfig,
String serviceInstanceId)
Serializes physical files that were transformed from a FileConfig.
|
protected void |
ContentServiceSerializationManager.serializeAttachedFiles(ServiceInstanceSerializationContext serializationContext,
lumis.content.service.serialization.ContentServiceSerializationManager.FileTableSerializableConfig fileData)
Serializes all referenced files in the variable filesXmlString into the serialization context.
|
protected void |
ContentServiceSerializationManager.serializeContentMetaData(String query,
String tableName,
ServiceInstanceSerializationContext serviceInstanceSerializationContext,
lumis.content.service.serialization.ContentServiceSerializationManager.ContentSerializableConfig contentConfig,
String serviceInstanceId,
ITransaction transaction) |
protected void |
ContentServiceSerializationManager.serializeData(ServiceInstanceSerializationContext serviceInstanceSerializationContext,
lumis.content.service.serialization.ContentServiceSerializationManager.ContentSerializableConfig contentConfig)
Serializes the content data to a the given StringBuilder.
|
protected void |
ContentServiceSerializationManager.serializeQueryResults(ServiceInstanceSerializationContext serviceInstanceSerializationContext,
String sourceId,
lumis.content.service.serialization.ContentServiceSerializationManager.TableSerializableConfig tableSerializedData,
String query,
String filterFieldValue,
ITransaction transaction)
Executes and serializes the query results into the given StringBuilder
|
Modifier and Type | Method and Description |
---|---|
protected Collection<ServiceConfig> |
ContentServicesDataProvider.getServiceConfigs(SessionConfig sessionConfig,
ITransaction transaction) |
void |
ContentServiceInstancesDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<?> source,
ITransaction transaction) |
void |
ContentServiceSourcesDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<?> source,
ITransaction transaction) |
void |
ContentServicesDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<?> source,
ITransaction transaction) |
void |
ContentSourceFieldsDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<?> source,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
void |
CategorizationSourceField.convertRowToFieldData(ISourceData databaseRow,
ISourceData sourceRow) |
void |
LocaleMetaDataSourceField.convertRowToFieldData(ISourceData databaseRow,
ISourceData sourceRow) |
void |
TagSourceField.convertRowToFieldData(ISourceData databaseRow,
ISourceData sourceRow) |
void |
VersionActiveField.convertRowToFieldData(ISourceData databaseRow,
ISourceData sourceRow) |
protected IConverter |
CategorizationSourceField.createConverter() |
Node |
MetaDataSourceField.getDefaultInputControlDefinition() |
List<QueryAssignment> |
CategorizationSourceField.getQueryAssignments(QueryInsert queryInsert,
IParameters parameters) |
List<QueryAssignment> |
TagSourceField.getQueryAssignments(QueryInsert queryInsert,
IParameters parameters) |
List<QueryAssignment> |
CategorizationSourceField.getQueryAssignments(QueryUpdate queryUpdate,
IParameters parameters) |
List<QueryAssignment> |
TagSourceField.getQueryAssignments(QueryUpdate queryUpdate,
IParameters parameters) |
protected QueryField |
WorkflowAssignedToSourceField.getQueryField(QueryBase queryBase) |
IQueryFilter |
CategorizationSourceField.getQueryFilter(QueryBase queryBase,
TableSourceFilter filter) |
IQueryFilter |
TagSourceField.getQueryFilter(QueryBase queryBase,
TableSourceFilter filter) |
TableSourceFieldMapping |
VersionActiveField.getTableMapping(QueryBase queryBase) |
TableSourceFieldMapping |
WorkflowAssignedToSourceField.getTableMapping(QueryBase queryBase) |
void |
CategorizationSourceField.init(Source source,
Node fieldNode) |
void |
MetaDataSourceField.init(Source source,
Node fieldNode) |
void |
VersionActiveField.init(Source source,
Node fieldNode) |
Constructor and Description |
---|
CategorizationSourceField()
Creates a new instance.
|
LocaleMetaDataSourceField() |
MetaDataSourceField(String tableRelationId,
String columnName,
String dataTypeId,
boolean sortable) |
TagSourceField()
Tag source Field Constructor.
|
VersionActiveField() |
WorkflowAssignedToSourceField() |
Modifier and Type | Method and Description |
---|---|
String |
CategorizationDataType.Data.getDisplayString(IRenderer renderer) |
String |
LocaleMetaDataDataType.Data.getDisplayString(IRenderer renderer) |
String |
TagDataType.Data.getDisplayString(IRenderer renderer) |
String |
WorkflowStateDataType.Data.getDisplayString(IRenderer renderer) |
String |
CategorizationDataType.Data.getRenderData(IRenderer renderer) |
String |
LocaleMetaDataDataType.Data.getRenderData(IRenderer renderer) |
String |
TagDataType.Data.getRenderData(IRenderer renderer) |
String |
WorkflowStateDataType.Data.getRenderData(IRenderer renderer) |
String |
CategorizationDataType.CategorizationGroupData.getXmlData()
Returns the XML data of this group.
|
String |
CategorizationDataType.CategorizationGroupData.TermData.getXmlData()
Returns the XML data of this group.
|
String |
LocaleMetaDataDataType.Data.getXMLFragment(IRenderer renderer) |
String |
CategorizationDataType.Data.getXmlString()
Returns the XML string of this data.
|
Constructor and Description |
---|
CategorizationGroupData(Collection<Content> contents,
Locale locale)
Creates a new categorization group of the given (categorization) contents.
|
CategorizationGroupData(Locale locale,
Content... contents)
Creates a new categorization group of the given (categorization) contents.
|
Data(Collection<String> termIds,
Locale locale)
Creates a new categorization data of the given categorization content identifiers.
|
Data(ContentVersion contentVersion,
Locale locale)
Creates a new categorization data of the categorization related to the given content version.
|
Modifier and Type | Method and Description |
---|---|
protected String |
MetaDataSourceFilter.calculateFilterOperator(Node filterNode)
Deprecated.
Always return the equals operator, just to be
a valid binary operator and the extended
TableSourceFilter
to behave as expected. |
protected IQueryValue |
ContentTableSourceFilter.calculateFilterValue(Node filterNode)
Analyzes this filter and returns the value that should be used with it.
|
IQueryFilter |
MetaDataSourceFilter.getQueryFilter(QueryField queryField,
IQueryValue queryValue)
Deprecated.
Generate a query filter that filters the queryField by the metadata related to the given value (itemId request parameter).
|
Modifier and Type | Method and Description |
---|---|
void |
ContentNamePostLoadProcessor.processSource(SessionConfig sessionConfig,
Source source,
Node parametersNode,
ITransaction transaction) |
Modifier and Type | Class and Description |
---|---|
class |
ContentLockedException
Exception thrown when an operation could not be executed due to the lock state on a content.
|
class |
NoActiveVersionPossibleMappingException
PortalException implementation that represents a scenario where there
is no possible mapping to a content's
active version . |
Modifier and Type | Method and Description |
---|---|
IContentTableSourceAddDataResult |
ContentTableSource.addData(Object data)
Adds a data in the persistence this source represents.
|
protected void |
ContentQueryBuilder.addQueryTables(QueryBase queryBase)
Adds the appropriate meta data tables based on the meta data that the
given content supports.
|
protected QueryBase |
ContentTableDeleteDataProcessActionHandler.buildQuery()
Deprecated.
Builds query using ContentQueryBuilder created.
|
protected QueryBase |
ContentTableUpdateDataProcessActionHandler.buildQuery()
Deprecated.
Builds query using ContentQueryBuilder created.
|
QuerySelect |
ContentTableDataProvider.buildQuerySelect(TableSource source,
ITransaction transaction) |
void |
ContentMetaDataController.contentDeleted(Collection<String> itemIds)
Delete meta data associated to the deleted contents.
|
ContentMetaDataController.MetaDataPersistenceResult |
ContentMetaDataController.contentInserted(String primaryKey)
Handles meta data manipulating necessary after inserting a content.
|
ContentMetaDataController.MetaDataPersistenceResult |
ContentMetaDataController.contentUpdated(String originalItemId,
String newVersionItemId)
Do the necessary changes in a content's metadata due to its update.
|
protected QueryBuilder |
ContentTableAddDataProcessActionHandler.createQueryBuilder()
Deprecated.
creates a content query builder.
|
protected QueryBuilder |
ContentTableDeleteDataProcessActionHandler.createQueryBuilder()
Deprecated.
Creates
ContentQueryBuilder object for building delete query. |
protected QueryBuilder |
ContentTableUpdateDataProcessActionHandler.createQueryBuilder()
Deprecated.
Creates
ContentQueryBuilder object for building update (or
insert) query. |
protected QueryBuilder |
ContentTableSource.createQueryBuilder(IParameters parameters) |
QueryBuilder |
ContentTableDataProvider.createQueryBuilder(IParameters parameters,
TableSource source,
ITransaction transaction) |
protected Collection<IPortalEvent> |
ContentTableSource.createRenderDataChangedEvent(PortalEventOperationType operationType,
Collection<String> itemIds) |
protected ITableSourceField |
ContentTableSource.createSourceField(Node fieldNode) |
void |
ContentTableSource.deleteDataByItemIds(Collection<String> itemIds)
Calls
ContentTableSource.deleteDataByItemIds(Collection, LockStrategy) using same lock strategy of current operation if
this delete is cascaded from another content, or with lock strategy of
ContentTableSource.LockStrategy.CHECK_AND_RELEASE_AUTOMATIC_ON_COMMIT otherwise. |
void |
ContentTableSource.deleteDataByItemIds(Collection<String> itemIds,
ContentTableSource.LockStrategy lockStrategy)
Deletes data from the persistence this source represents.
|
protected void |
ContentTableDeleteDataProcessActionHandler.deleteRelatedData(Collection<String> itemIds,
Node currentSourceDefinitionNode,
String foreignPrimaryKeyFieldId,
ITransaction transaction)
Deprecated.
|
protected void |
ContentTableSource.deleteVersionDataByItemIds(Collection<String> itemIds)
Deletes the data related to the versions of the given item identifiers.
|
protected void |
ContentTableSourceAddDataProcessActionHandler.doAction() |
protected void |
ContentTableSourceUpdateDataProcessActionHandler.doAction() |
protected IContentTableSourceAddDataResult |
ContentTableSource.doAddData(IParameters data)
Adds the data to the persistence.
|
protected void |
ContentTableSource.doDeleteDataByItemIds(Collection<String> itemIds)
Deletes the data in the persistence.
|
protected IContentTableSourceUpdateDataResult |
ContentTableSource.doUpdateData(IParameters data)
Updates the data in the persistence.
|
protected void |
ContentTableUpdateDataProcessActionHandler.execute(QueryBase queryBase)
Deprecated.
Executes the query given.
|
protected ContentVersion |
ContentMetaDataController.getActiveVersionEquivalentOfItemId(String itemId)
Returns
active version based on given item id . |
protected String |
ContentTableSource.getDefaultProviderClass() |
protected Locale |
ContentMetaDataController.getNewDataLocale(Locale defaultLocale)
Returns the new
Locale value to use for new data. |
protected Locale |
LegacyContentMetaDataController.getNewDataLocale(Locale defaultLocale)
Deprecated.
|
protected String[] |
ValidateContentReferencesProcessActionHandler.getPrimaryKeyValues() |
WorkflowConfig |
ContentTableSource.getWorkflowConfig()
Returns the workflow associated with this source.
|
protected void |
ContentTableAddDataProcessActionHandler.indexData()
Deprecated.
|
protected void |
ContentTableDeleteDataProcessActionHandler.indexData()
Deprecated.
|
protected void |
ContentTableUpdateDataProcessActionHandler.indexData()
Deprecated.
|
void |
CommitAndPreviewProcessActionHandler.init(Node processActionNode,
ProcessActionContainer processActionContainer) |
void |
ContentTableUpdateDataProcessActionHandler.init(Node processActionNode,
ProcessActionContainer processActionContainer)
Deprecated.
Initiates the process action handler object.
|
protected ContentVersion |
ContentMetaDataController.insertMetaData(String primaryKey)
Creates the meta data information for a new content.
|
protected ContentVersion |
LegacyContentMetaDataController.insertMetaData(String primaryKey)
Deprecated.
|
boolean |
ContentTableSource.isWorkflowSupported()
Verifies if the current source supports a workflow.
|
protected void |
ContentTableDeleteDataProcessActionHandler.postDelete()
Deprecated.
Executes all post delete necessary to manage meta data after removing the
data from main table.
|
protected void |
ContentTableSource.postDeleteDataByItemIds(Collection<String> itemIds)
Called after delete operation.
|
protected void |
ContentTableAddDataProcessActionHandler.postInsert(String primaryKey)
Deprecated.
|
protected void |
ContentTableUpdateDataProcessActionHandler.postUpdate()
Deprecated.
Executes all post update (or post insert, if using versioning) necessary
to manage meta data after editing the content, including calling
MetaDataController . |
protected void |
ContentTableDeleteDataProcessActionHandler.preDelete(QueryBase queryBase)
Deprecated.
|
protected void |
ContentTableSource.preDeleteDataByItemIds(Collection<String> itemIds)
Called before delete operation.
|
void |
CommitAndPreviewProcessActionHandler.processAction() |
void |
ContentAssociationProcessActionHandler.processAction() |
void |
ValidateContentReferencesProcessActionHandler.processAction() |
protected void |
ContentTableAddFileMultiRowDataProcessActionHandler.processActionWithoutResponse()
Deprecated.
Performs the process action.
|
protected void |
ContentTableSource.scheduleContentAddedEvent(ContentVersion contentVersion)
Schedules a content added event for the given content to be executed once the transaction is commited.
|
void |
ContentTableSource.scheduleIndexData(Collection<String> itemIds)
Schedules the indexing of the data that corresponds to the specified item identifiers.
|
void |
ContentMetaDataController.selectMetaData(QuerySelect querySelect)
Modifies querySelect so it will include all necessary meta data
information and restrictions filtering, such as service instance
isolation, publishing to principals filtering, active version filtering
and special treatment when on preview or details interface.
|
protected void |
ContentTableUpdateDataProcessActionHandler.sendPreNotifications()
Deprecated.
Sends pre-execution notifications to
PortalEventManager . |
protected void |
ContentTableUpdateDataProcessActionHandler.sendRenderDataChangedNotification()
Deprecated.
|
protected void |
ContentTableAddDataProcessActionHandler.sendRenderDataChangedNotification(Object primaryKey)
Deprecated.
Notifies observers of interfaces that may have changed.
|
protected void |
ContentTableDeleteDataProcessActionHandler.sendRenderDataChangedNotification(Object pks)
Deprecated.
|
protected void |
ContentTableAddFileMultiRowDataProcessActionHandler.setPrimaryKeyAttribute(String primaryKey)
Deprecated.
There exists multiple primary keys.
|
protected void |
ContentTableAddFileMultiRowDataProcessActionHandler.setPrimaryKeyRenderParameter(String primaryKey)
Deprecated.
|
IContentTableSourceUpdateDataResult |
ContentTableSource.updateData(Object data)
Calls
updateData(data, LockStrategy.CHECK_AND_RELEASE_AUTOMATIC_ON_COMMIT) . |
IContentTableSourceUpdateDataResult |
ContentTableSource.updateData(Object data,
ContentTableSource.LockStrategy lockStrategy)
Updates a data in the persistence this source represents.
|
protected ContentVersion |
ContentMetaDataController.updateMetaData(String originalItemId,
String newVersionItemId)
Updates the content's metadata.
|
protected ContentVersion |
LegacyContentMetaDataController.updateMetaData(String originalItemId,
String newVersionItemId)
Deprecated.
|
protected void |
ValidateContentReferencesProcessActionHandler.ValidateContentReference(String itemId,
String table,
String contentIdColumn) |
Constructor and Description |
---|
ContentMetaDataController(IParameters parameters,
ContentTableSource source,
ITransaction transaction)
Creates a new controller for the specified source and parameters.
|
ContentQueryBuilder(IParameters parameters,
TableSource source,
ITransaction transaction)
Creates the object.
|
ContentTableDataProvider() |
ContentTableSource(Node sourceDefinitionNode,
ISourceContext sourceContext)
Creates a content table source.
|
LegacyContentMetaDataController(IProcessActionHandler processActionHandler,
ContentTableSource source,
ITransaction transaction)
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
protected URL |
ContentPageWebResourceDataProvider.getCanonicalUrl() |
protected String |
ContentPageWebResourceDataProvider.getDescription() |
protected List<String> |
ContentPageWebResourceDataProvider.getKeywords() |
protected Map<String,String> |
ContentPageWebResourceDataProvider.getMetaTags() |
protected String |
ContentPageWebResourceDataProvider.getSimpleTitle() |
protected String |
ContentPageWebResourceDataProvider.getTitlePattern() |
protected String |
ContentPageWebResourceDataProvider.getUrlTitle() |
protected VariableResolver |
ContentPageWebResourceDataProvider.getVariableResolver() |
void |
ContentPageWebResourceDataProvider.init(PageWebResource instance) |
Modifier and Type | Class and Description |
---|---|
class |
ContentWizardException |
Modifier and Type | Method and Description |
---|---|
boolean |
ContentWizardManager.checkCanEditSourceFields(SessionConfig sessionConfig,
String serviceId,
ITransaction transaction) |
boolean |
IContentWizardManager.checkCanEditSourceFields(SessionConfig sessionConfig,
String serviceId,
ITransaction transaction)
Verifies if is possible to edit the first source fields of service.
|
void |
ContentWizardManager.create(SessionConfig sessionConfig,
ICreateParams createParams,
ITransaction transaction) |
void |
IContentWizardManager.create(SessionConfig sessionConfig,
ICreateParams createParams,
ITransaction transaction) |
boolean |
ContentWizardManager.delete(SessionConfig sessionConfig,
String id,
ITransaction transaction) |
boolean |
IContentWizardManager.delete(SessionConfig sessionConfig,
String id,
ITransaction transaction)
Deletes a service created through the Content Wizard.
|
void |
ContentWizardManager.editFields(SessionConfig sessionConfig,
IEditFieldParams editFieldParams,
ITransaction transaction) |
void |
IContentWizardManager.editFields(SessionConfig sessionConfig,
IEditFieldParams editFieldParams,
ITransaction transaction)
Edit field of first service source
|
ContentWizardServiceConfig |
ContentWizardManager.findByServiceId(SessionConfig sessionConfig,
String serviceId,
ITransaction transaction) |
ContentWizardServiceConfig |
IContentWizardManager.findByServiceId(SessionConfig sessionConfig,
String serviceId,
ITransaction transaction)
Returns a content wizard service information, given its service id.
|
ContentWizardServiceConfig |
ContentWizardManager.get(SessionConfig sessionConfig,
String id,
ITransaction transaction) |
ContentWizardServiceConfig |
IContentWizardManager.get(SessionConfig sessionConfig,
String id,
ITransaction transaction) |
Modifier and Type | Class and Description |
---|---|
class |
WorkflowException
Workflow related exception.
|
Modifier and Type | Method and Description |
---|---|
boolean |
WorkflowController.autoArchivePublishedContent(ContentLocale contentLocale) |
boolean |
IWorkflowManager.autoArchivePublishedContent(ContentLocale contentLocale,
ITransaction transaction)
Used for the automatic content archiving process.
|
boolean |
WorkflowManager.autoArchivePublishedContent(ContentLocale contentLocale,
ITransaction transaction) |
void |
WorkflowController.contentDeleted(Collection<ContentLocale> contentLocales) |
void |
WorkflowController.contentInserted(ContentVersion contentVersion) |
boolean |
IWorkflowManager.contentMayBePublished(SessionConfig sessionConfig,
ContentLocale contentLocale,
ITransaction transaction)
Indicates if a content version may be published according to its
workflow state.
|
boolean |
WorkflowManager.contentMayBePublished(SessionConfig sessionConfig,
ContentLocale contentLocale,
ITransaction transaction) |
boolean |
IWorkflowManager.contentMayBePublished(SessionConfig sessionConfig,
String itemId,
String serviceInstanceId,
String sourceId,
ITransaction transaction)
Deprecated.
Since 4.2.0, replaced by
IWorkflowManager.contentMayBePublished(SessionConfig, ContentLocale, ITransaction) . |
boolean |
WorkflowManager.contentMayBePublished(SessionConfig sessionConfig,
String itemId,
String serviceInstanceId,
String sourceId,
ITransaction transaction)
Deprecated.
|
void |
WorkflowController.contentUpdated(ContentVersion contentVersion) |
void |
IWorkflowManager.createNewContentWorkflowMetaData(SessionConfig sessionConfig,
ContentLocale contentLocale,
String assignedTo,
ITransaction transaction)
Creates a new content workflow metadata for a content locale.
|
void |
WorkflowManager.createNewContentWorkflowMetaData(SessionConfig sessionConfig,
ContentLocale contentLocale,
String assignedTo,
ITransaction transaction) |
void |
IWorkflowManager.createNewContentWorkflowMetaData(SessionConfig sessionConfig,
String itemId,
String serviceInstanceId,
String sourceId,
String assignedTo,
ITransaction transaction)
Deprecated.
Since 4.2.0, replaced by
IWorkflowManager.createNewContentWorkflowMetaData(SessionConfig, ContentLocale, String, ITransaction) . |
void |
WorkflowManager.createNewContentWorkflowMetaData(SessionConfig sessionConfig,
String itemId,
String serviceInstanceId,
String sourceId,
String assignedTo,
ITransaction transaction)
Deprecated.
|
void |
IWorkflowManager.deleteAllContentWorkflowMetaData(SessionConfig sessionConfig,
String serviceInstanceId,
ITransaction transaction)
Deletes all the workflow metadata that is assocated to a specified
service instance.
|
void |
WorkflowManager.deleteAllContentWorkflowMetaData(SessionConfig sessionConfig,
String serviceInstanceId,
ITransaction transaction) |
void |
IWorkflowManager.deleteContentWorkflowMetaData(SessionConfig sessionConfig,
ContentLocale contentLocale,
ITransaction transaction)
Deletes the content workflow metadata of the given content locale.
|
void |
WorkflowManager.deleteContentWorkflowMetaData(SessionConfig sessionConfig,
ContentLocale contentLocale,
ITransaction transaction) |
void |
IWorkflowManager.deleteContentWorkflowMetaData(SessionConfig sessionConfig,
String itemId,
String serviceInstanceId,
String sourceId,
ITransaction transaction)
Deprecated.
Since 4.2.0 replaced by
IWorkflowManager.deleteContentWorkflowMetaData(SessionConfig, ContentLocale, ITransaction) . |
void |
WorkflowManager.deleteContentWorkflowMetaData(SessionConfig sessionConfig,
String itemId,
String serviceInstanceId,
String sourceId,
ITransaction transaction)
Deprecated.
|
void |
WorkflowPermission.deserialize(Node workflowPermissionNode)
Deserializes this permission's attributes from the given node.
|
void |
IWorkflowManager.destroyServiceInstanceWorkflow(SessionConfig sessionConfig,
String serviceInstanceId,
ITransaction transaction)
Destroys the service instance workflow, so that the service instance can be correctly removed.
|
void |
WorkflowManager.destroyServiceInstanceWorkflow(SessionConfig sessionConfig,
String serviceInstanceId,
ITransaction transaction) |
void |
IWorkflowManager.executeAction(SessionConfig sessionConfig,
ContentLocale contentLocale,
String performedTransitionId,
String newAssignedTo,
ITransaction transaction)
Executes an action on a content's workflow.
|
void |
WorkflowManager.executeAction(SessionConfig sessionConfig,
ContentLocale contentLocale,
String performedTransitionId,
String newAssignedTo,
ITransaction transaction) |
void |
IWorkflowManager.executeAction(SessionConfig sessionConfig,
String itemId,
String serviceInstanceId,
String sourceId,
String performedTransitionId,
String newAssignedTo,
ITransaction transaction)
Deprecated.
Since 4.2.0, replaced by
IWorkflowManager.executeAction(SessionConfig, ContentLocale, String, String, ITransaction) . |
void |
WorkflowManager.executeAction(SessionConfig sessionConfig,
String itemId,
String serviceInstanceId,
String sourceId,
String performedTransitionId,
String newAssignedTo,
ITransaction transaction)
Deprecated.
|
Collection<WorkflowStateConfig> |
IWorkflowManager.getAccessibleStates(SessionConfig sessionConfig,
String serviceInstanceId,
boolean includeScopeAll,
boolean includeScopeAssignedTo,
ITransaction transaction)
Deprecated.
Since 6.0.2, replaced by
IWorkflowManager.getAccessibleStates(SessionConfig, String, EnumSet, ITransaction) |
Collection<WorkflowStateConfig> |
WorkflowManager.getAccessibleStates(SessionConfig sessionConfig,
String serviceInstanceId,
boolean includeScopeAll,
boolean includeScopeAssignedTo,
ITransaction transaction)
Deprecated.
|
Collection<WorkflowStateConfig> |
IWorkflowManager.getAccessibleStates(SessionConfig sessionConfig,
String serviceInstanceId,
EnumSet<StateScope> scopes,
ITransaction transaction)
Returns a collection of workflow's accessible states.
|
Collection<WorkflowStateConfig> |
WorkflowManager.getAccessibleStates(SessionConfig sessionConfig,
String serviceInstanceId,
EnumSet<StateScope> scopes,
ITransaction transaction) |
Collection<WorkflowTransitionConfig> |
IWorkflowManager.getAccessibleTransitions(SessionConfig sessionConfig,
ContentLocale contentLocale,
ITransaction transaction)
Returns the transitions that are accessible by the
sessionConfig 's user for a specified contentLocale. |
Collection<WorkflowTransitionConfig> |
WorkflowManager.getAccessibleTransitions(SessionConfig sessionConfig,
ContentLocale contentLocale,
ITransaction transaction) |
Collection<WorkflowTransitionConfig> |
IWorkflowManager.getAccessibleTransitions(SessionConfig sessionConfig,
String itemId,
String serviceInstanceId,
String sourceId,
ITransaction transaction)
|
Collection<WorkflowTransitionConfig> |
WorkflowManager.getAccessibleTransitions(SessionConfig sessionConfig,
String itemId,
String serviceInstanceId,
String sourceId,
ITransaction transaction)
Deprecated.
|
Collection<WorkflowTransitionConfig> |
IWorkflowManager.getAccessibleTransitions(SessionConfig sessionConfig,
WorkflowStateConfig state,
String serviceInstanceId,
boolean includeScopeAssignedTo,
ITransaction transaction)
Deprecated.
|
Collection<WorkflowTransitionConfig> |
WorkflowManager.getAccessibleTransitions(SessionConfig sessionConfig,
WorkflowStateConfig state,
String serviceInstanceId,
boolean includeScopeAssignedTo,
ITransaction transaction)
Deprecated.
|
Collection<WorkflowTransitionConfig> |
IWorkflowManager.getAccessibleTransitions(SessionConfig sessionConfig,
WorkflowStateConfig state,
String serviceInstanceId,
EnumSet<TransitionScope> scopes,
ITransaction transaction)
Returns the transitions that are accessible by the
sessionConfig 's user, originating from a specific workflow
state in the specified service instance. |
Collection<WorkflowTransitionConfig> |
WorkflowManager.getAccessibleTransitions(SessionConfig sessionConfig,
WorkflowStateConfig state,
String serviceInstanceId,
EnumSet<TransitionScope> scopes,
ITransaction transaction) |
Collection<WorkflowConfig> |
IWorkflowManager.getAllWorkflows(SessionConfig sessionConfig,
ITransaction transaction)
Returns all registered workflows.
|
Collection<WorkflowConfig> |
WorkflowManager.getAllWorkflows(SessionConfig sessionConfig,
ITransaction transaction) |
ContentWorkflowMetaData |
IWorkflowManager.getContentWorkflowMetaData(SessionConfig sessionConfig,
ContentLocale contentLocale,
ITransaction transaction)
Returns the content workflow metadata for a content locale.
|
ContentWorkflowMetaData |
WorkflowManager.getContentWorkflowMetaData(SessionConfig sessionConfig,
ContentLocale contentLocale,
ITransaction transaction) |
ContentWorkflowMetaData |
IWorkflowManager.getContentWorkflowMetaData(SessionConfig sessionConfig,
String itemId,
String serviceInstanceId,
String sourceId,
ITransaction transaction)
Deprecated.
Since 4.2.0, replaced by
IWorkflowManager.getContentWorkflowMetaData(SessionConfig, ContentLocale, ITransaction) . |
ContentWorkflowMetaData |
WorkflowManager.getContentWorkflowMetaData(SessionConfig sessionConfig,
String itemId,
String serviceInstanceId,
String sourceId,
ITransaction transaction)
Deprecated.
|
String |
WorkflowConfig.getDefinition()
Returns the definition for this workflow, as a string.
|
Map<String,String> |
WorkflowManager.getMetadataPrincipals(SessionConfig sessionConfig,
String serviceInstanceId,
ITransaction transaction)
Returns a map of distinct principals that is assigned to content metadata in the given service instance.
|
Collection<String> |
IWorkflowManager.getPossibleAssignedTo(SessionConfig sessionConfig,
String serviceInstanceId,
WorkflowStateConfig workflowState,
ITransaction transaction)
Returns the possible assignedTo values for a workflow state.
|
Collection<String> |
WorkflowManager.getPossibleAssignedTo(SessionConfig sessionConfig,
String serviceInstanceId,
WorkflowStateConfig workflowState,
ITransaction transaction) |
Collection<String> |
IWorkflowManager.getPossibleAssignedToForAction(SessionConfig sessionConfig,
String itemId,
String serviceInstanceId,
String sourceId,
String transitionId,
ITransaction transaction)
Deprecated.
Since 4.2.0, replaced by
IWorkflowManager.getPossibleAssignedTo(SessionConfig, String, WorkflowStateConfig, ITransaction) . |
Collection<String> |
WorkflowManager.getPossibleAssignedToForAction(SessionConfig sessionConfig,
String itemId,
String serviceInstanceId,
String sourceId,
String transitionId,
ITransaction transaction)
Deprecated.
|
protected Collection<String> |
WorkflowManager.getPrincipalRoles(SessionConfig sessionConfig,
String serviceInstanceId,
String principalId,
ITransaction transaction) |
IResource |
WorkflowConfig.getResource()
Returns the localization resource for this workflow.
|
WorkflowConfig |
IWorkflowManager.getServiceInstanceWorkflow(SessionConfig sessionConfig,
String serviceInstanceId,
ITransaction transaction)
Returns the workflow of a service instance.
|
WorkflowConfig |
WorkflowManager.getServiceInstanceWorkflow(SessionConfig sessionConfig,
String serviceInstanceId,
ITransaction transaction) |
WorkflowStateConfig |
IWorkflowManager.getState(SessionConfig sessionConfig,
String workflowId,
String stateId,
ITransaction transaction)
Returns a workflow state.
|
WorkflowStateConfig |
WorkflowManager.getState(SessionConfig sessionConfig,
String workflowId,
String stateId,
ITransaction transaction) |
WorkflowTransitionConfig |
IWorkflowManager.getTransition(SessionConfig sessionConfig,
String workflowId,
String transitionId,
ITransaction transaction)
Returns a workflow transition.
|
WorkflowTransitionConfig |
WorkflowManager.getTransition(SessionConfig sessionConfig,
String workflowId,
String transitionId,
ITransaction transaction) |
List<WorkflowTransitionConfig> |
IWorkflowManager.getTransitionsByStateId(SessionConfig sessionConfig,
String workflowId,
String stateId,
ITransaction transaction)
Returns the transitions for a workflow state.
|
List<WorkflowTransitionConfig> |
WorkflowManager.getTransitionsByStateId(SessionConfig sessionConfig,
String workflowId,
String stateId,
ITransaction transaction) |
WorkflowConfig |
IWorkflowManager.getWorkflow(SessionConfig sessionConfig,
String workflowId,
ITransaction transaction)
Returns a workflow.
|
WorkflowConfig |
WorkflowManager.getWorkflow(SessionConfig sessionConfig,
String workflowId,
ITransaction transaction) |
Collection<WorkflowPermission> |
IWorkflowManager.getWorkflowPermissions(SessionConfig sessionConfig,
String serviceInstanceId,
ITransaction transaction)
Returns the permissions set for a workflow in a service instance.
|
Collection<WorkflowPermission> |
WorkflowManager.getWorkflowPermissions(SessionConfig sessionConfig,
String serviceInstanceId,
ITransaction transaction) |
protected WorkflowConfig |
WorkflowManager.getWorkflowToRegister(SessionConfig sessionConfig,
String workflowConfigPath,
ITransaction transaction)
Returns the
WorkflowConfig instance to save in the register. |
boolean |
IWorkflowManager.hasEditPermission(SessionConfig sessionConfig,
ContentLocale contentLocale,
ITransaction transaction)
Returns true if the sessionConfig's user has edit permission to the
specified content, according to the workflow's definition, state and
assigned to.
|
boolean |
WorkflowManager.hasEditPermission(SessionConfig sessionConfig,
ContentLocale contentLocale,
ITransaction transaction) |
boolean |
IWorkflowManager.hasEditPermission(SessionConfig sessionConfig,
String itemId,
String serviceInstanceId,
String sourceId,
ITransaction transaction)
Deprecated.
Since 4.2.0, replaced by
IWorkflowManager.hasEditPermission(SessionConfig, ContentLocale, ITransaction) . |
boolean |
WorkflowManager.hasEditPermission(SessionConfig sessionConfig,
String itemId,
String serviceInstanceId,
String sourceId,
ITransaction transaction)
Deprecated.
|
protected boolean |
WorkflowManager.hasStatePermission(SessionConfig sessionConfig,
Collection<String> roles,
WorkflowStateConfig state,
EnumSet<StateScope> scopes,
ITransaction transaction)
Checks if any of the roles have permission to the specified workflow state.
|
protected boolean |
WorkflowManager.hasTransitionPermission(SessionConfig sessionConfig,
Collection<String> roles,
WorkflowTransitionConfig transition,
EnumSet<TransitionScope> transitionScopes,
ITransaction transaction)
Checks if any of the roles have permission to the specified workflow transition.
|
protected boolean |
WorkflowManager.hasTransitionPermission(SessionConfig sessionConfig,
String principalId,
WorkflowTransitionConfig transition,
ContentLocale contentLocale,
String serviceInstanceId,
ITransaction transaction)
Checks if any of the principal have permission to the specified workflow transition.
|
void |
IWorkflowActionHandler.preProcessAction(SessionConfig sessionConfig,
ContentLocale contentLocale,
WorkflowTransitionConfig transition,
ContentWorkflowMetaData newWorkflowMetaData,
ITransaction transaction)
Method called when a workflow action is performed, before its changes
are applied to the persistence layer.
|
protected void |
WorkflowControllerXml.register(Node methodNode,
ITransaction transaction)
Deprecated.
|
void |
IWorkflowManager.register(SessionConfig sessionConfig,
String workflowConfigPath,
ITransaction transaction)
Register a workflow.
|
void |
WorkflowManager.register(SessionConfig sessionConfig,
String workflowConfigPath,
ITransaction transaction)
Register a workflow.
|
void |
WorkflowManager.removeWorkflowPermissionsWithoutAcl()
Removes all workflow permissions entries where there does not exist
an ACL entry for the same principal in the same service instance.
|
void |
WorkflowConfig.setDefinition(Node workflowNode)
Sets the definition for this workflow.
|
void |
WorkflowConfig.setDefinition(String definition)
Sets the definition for this workflow.
|
void |
IWorkflowManager.setServiceInstanceWorkflow(SessionConfig sessionConfig,
String serviceInstanceId,
String workflowId,
ITransaction transaction)
Sets the workflow to be used in a service instance.
|
void |
WorkflowManager.setServiceInstanceWorkflow(SessionConfig sessionConfig,
String serviceInstanceId,
String workflowId,
ITransaction transaction) |
void |
IWorkflowManager.setWorkflowPermissions(SessionConfig sessionConfig,
String serviceInstanceId,
Collection<WorkflowPermission> permissions,
ITransaction transaction)
Updates the workflow permissions in a service instance.
|
void |
WorkflowManager.setWorkflowPermissions(SessionConfig sessionConfig,
String serviceInstanceId,
Collection<WorkflowPermission> permissions,
ITransaction transaction) |
protected void |
WorkflowControllerXml.unregister(Node methodNode,
ITransaction transaction)
Deprecated.
|
void |
IWorkflowManager.unregister(SessionConfig sessionConfig,
String workflowId,
ITransaction transaction)
Removes a workflow from the register.
|
void |
WorkflowManager.unregister(SessionConfig sessionConfig,
String workflowId,
ITransaction transaction) |
void |
IWorkflowManager.updateRegister(SessionConfig sessionConfig,
String workflowId,
ITransaction transaction)
Updates the register of a workflow.
|
void |
WorkflowManager.updateRegister(SessionConfig sessionConfig,
String workflowId,
ITransaction transaction)
Updates the register of a workflow.
|
Constructor and Description |
---|
WorkflowController(IParameters parameters,
ContentTableSource source,
ITransaction transaction) |
WorkflowControllerXml(HttpServletRequest request,
HttpServletResponse response,
PageContext pageContext)
Deprecated.
|
WorkflowRoleConfig(Node roleElement)
Creates a new role instance based on the given node.
|
WorkflowStateConfig(Node stateElement)
Constructs a WorkflowStateConfig, parsing its data from a state XML Element.
|
WorkflowTransitionConfig(WorkflowStateConfig initialState,
Node transitionElement) |
Modifier and Type | Method and Description |
---|---|
protected String |
WorkflowSendMailActionHandler.getWebsiteUrl(SessionConfig sessionConfig,
ContentLocale contentLocale,
ITransaction transaction)
Method created so that classes that extend this object may customize the
website url referenced in the link to the content.
|
void |
WorkflowSendMailActionHandler.preProcessAction(SessionConfig sessionConfig,
ContentLocale contentLocale,
WorkflowTransitionConfig transition,
ContentWorkflowMetaData newWorkflowMetaData,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
void |
IWorkflowSerializationManager.deserialize(ServiceInstanceDeserializationContext serviceInstanceDeserializationContext,
WorkflowSerializableConfig workflowSerializableConfig)
Deserialize a content service instance's workflow and its permissions.
|
void |
WorkflowSerializationManager.deserialize(ServiceInstanceDeserializationContext serviceInstanceDeserializationContext,
WorkflowSerializableConfig workflowSerializableConfig) |
protected SerializationMessageConfigNode |
WorkflowSerializationManager.getServiceInstanceWorkflowSerializationMessageConfigNode(BaseSerializationContext baseSerializationContext,
ServiceInstanceConfig serviceInstanceConfig,
WorkflowPermission workflowPermission) |
protected SerializationMessageConfigNode |
WorkflowSerializationManager.getServiceInstanceWorkflowSerializationMessageConfigNode(BaseSerializationContext baseSerializationContext,
ServiceInstanceConfig serviceInstanceConfig,
WorkflowPermission workflowPermission,
EnumSet<SerializationMessageConfigNode.RecursionStopPoints> recursionStopPoints) |
boolean |
WorkflowSerializationManager.persistConfig(DeserializationContext deserializationContext,
Object config,
boolean firstPersistence) |
WorkflowSerializableConfig |
IWorkflowSerializationManager.serialize(ServiceInstanceSerializationContext serviceInstanceSerializationContext)
Serialize a content service instance's workflow and its permissions.
|
WorkflowSerializableConfig |
WorkflowSerializationManager.serialize(ServiceInstanceSerializationContext serviceInstanceSerializationContext) |
Modifier and Type | Class and Description |
---|---|
class |
DouiException
DOUI related exception
|
Modifier and Type | Method and Description |
---|---|
void |
DouiManager.clearDouiServiceDefinitionCache(String serviceId) |
void |
IDouiManager.clearDouiServiceDefinitionCache(String serviceId) |
static Object |
DouiStandardValue.convertStandardValue(DouiContext douiContext,
Object value)
Converts lumis standard default values.
|
static Object |
DouiStandardValue.convertStandardValue(ISourceContext sourceContext,
Object value)
Converts lumis standard default values.
|
void |
DouiLogicTagProcessor.doProcessTags(LumisExpressionEvaluatorImpl evaluator,
VariableResolver variableResolver)
Processes the doui logic tags present in the service definition node.
|
static IControlManager |
DouiManagerFactory.getControlManager() |
String |
DouiConfig.getDefinition() |
Node |
DouiConfig.getDefinitionNode() |
static IDouiContentTreeManager |
DouiManagerFactory.getDouiContentTreeManager() |
IDouiDefinitionProcessor |
DouiContext.getDouiDefinitionProcessor()
Returns a doui definition processor that evaluates the ELs present,
according to this doui context.
|
static IDouiManager |
DouiManagerFactory.getDouiManager() |
Node |
DouiManager.getDouiServiceDefinitionNode(String serviceId,
ITransaction transaction) |
Node |
IDouiManager.getDouiServiceDefinitionNode(String serviceId,
ITransaction transaction) |
DouiServiceInterfaceInstanceDefinition |
DouiManager.getDouiServiceInterfaceInstanceDefinition(SessionConfig sessionConfig,
String serviceInterfaceInstanceId,
IDouiDefinitionProcessor processor,
boolean addPublisherFiltersToSource,
ITransaction transaction) |
DouiServiceInterfaceInstanceDefinition |
DouiManager.getDouiServiceInterfaceInstanceDefinition(SessionConfig sessionConfig,
String serviceInterfaceInstanceId,
IDouiDefinitionProcessor processor,
ITransaction transaction) |
DouiServiceInterfaceInstanceDefinition |
IDouiManager.getDouiServiceInterfaceInstanceDefinition(SessionConfig sessionConfig,
String serviceInterfaceInstanceId,
IDouiDefinitionProcessor processor,
ITransaction transaction)
Return the doui definition for a service interface instance.
|
static IProcessActionManager |
DouiManagerFactory.getProcessActionManager() |
static ISourceManager |
DouiManagerFactory.getSourceManager() |
void |
DouiManager.register(SessionConfig sessionConfig,
String douiConfigPath,
ITransaction transaction) |
void |
IDouiManager.register(SessionConfig sessionConfig,
String douiConfigPath,
ITransaction transaction) |
void |
DouiConfig.setDefinition(String definition) |
void |
DouiConfig.setDefinitionNode(Node definitionNode) |
void |
DouiManager.unregister(SessionConfig sessionConfig,
String serviceId,
ITransaction transaction) |
void |
IDouiManager.unregister(SessionConfig sessionConfig,
String serviceId,
ITransaction transaction) |
protected void |
DouiManager.validateControls(Document douiConfigDoc) |
protected boolean |
DouiManager.validateDouiDefinition(Document douiConfigDoc) |
protected void |
DouiManager.validateFields(Document douiConfigDoc) |
protected void |
DouiManager.validateInterfaceControls(Node currentNode,
Set<String> controlIds,
String interfaceFullId) |
protected boolean |
DouiManager.validateUniqueSourceIds(Document douiConfigDoc) |
Constructor and Description |
---|
DouiContext(IServiceInterfaceRequest request,
IServiceInterfaceResponse response,
ITransaction transaction) |
DouiLogicTagProcessor(Node serviceInterfaceDefinitionNode)
Only constructor that receives the service interface definition as a node.
|
Modifier and Type | Method and Description |
---|---|
void |
DouiBigDataUtil.DouiBigDataInitObserver.onEvent(IPortalEvent event) |
static void |
DouiBigDataUtil.recreateServicesBigDataStructure()
Recreates the big data structure for all services.
|
static void |
DouiBigDataUtil.reindexService(ServiceConfig service)
Re-index a service to big data, re-creating all source big data structure corresponding to the service.
|
static void |
DouiBigDataUtil.reindexServiceInstance(ServiceInstanceConfig serviceInstanceConfig)
Re-index a service instance to big data, deleting current documents and adding the corresponding generated
documents.
|
Modifier and Type | Method and Description |
---|---|
String |
DouiContentTreeDaoJdbc.getBasicContentTreeData(String currentContentId,
String tableName,
String primaryKeyFieldName,
String primaryNameFieldName,
String parentIdFieldName,
boolean hasServiceInstanceFilter,
String serviceInstanceId,
boolean useContentKeyAsId,
String metadataLocale,
ITransaction transaction) |
String |
IDouiContentTreeDao.getBasicContentTreeData(String currentContentId,
String tableName,
String primaryKeyFieldName,
String primaryNameFieldName,
String parentIdFieldName,
boolean hasServiceInstanceFilter,
String serviceInstanceId,
boolean useContentKeyAsId,
String metadataLocale,
ITransaction transaction) |
protected void |
DouiContentTreeControllerXml.getBasicData(Node methodNode,
ITransaction portalTransaction) |
String |
DouiContentTreeManager.getBasicData(SessionConfig sessionConfig,
String interfaceInstanceId,
String sourceId,
String currentContentId,
boolean useContentKeyAsId,
String metadataLocale,
ITransaction transaction) |
String |
IDouiContentTreeManager.getBasicData(SessionConfig sessionConfig,
String interfaceInstanceId,
String sourceId,
String currentContentId,
boolean useContentKeyAsId,
String metadataLocale,
ITransaction transaction)
Returns the basic tree data of a content.
|
String |
DouiContentTreeManager.getBasicData(SessionConfig sessionConfig,
String interfaceInstanceId,
String sourceId,
String currentContentId,
String metadataLocale,
ITransaction transaction) |
String |
IDouiContentTreeManager.getBasicData(SessionConfig sessionConfig,
String interfaceInstanceId,
String sourceId,
String currentContentId,
String metadataLocale,
ITransaction transaction)
Get the basic tree data of the content.
|
protected void |
DouiContentTreeControllerXml.getChildrenData(Node methodNode,
ITransaction portalTransaction) |
String |
DouiContentTreeManager.getChildrenData(SessionConfig sessionConfig,
String interfaceInstanceId,
String sourceId,
String currentContentId,
boolean useContentKeyAsId,
String metadataLocale,
ITransaction transaction) |
String |
IDouiContentTreeManager.getChildrenData(SessionConfig sessionConfig,
String interfaceInstanceId,
String sourceId,
String currentContentId,
boolean useContentKeyAsId,
String metadataLocale,
ITransaction transaction)
Returns the children's tree data of a content.
|
String |
DouiContentTreeManager.getChildrenData(SessionConfig sessionConfig,
String interfaceInstanceId,
String sourceId,
String currentContentId,
String metadataLocale,
ITransaction transaction) |
String |
IDouiContentTreeManager.getChildrenData(SessionConfig sessionConfig,
String interfaceInstanceId,
String sourceId,
String currentContentId,
String metadataLocale,
ITransaction transaction)
Get the children's tree data of the content.
|
String |
DouiContentTreeDaoJdbc.getContentTreeChildrenData(String currentContentId,
String tableName,
String primaryKeyFieldName,
String primaryNameFieldName,
String parentIdFieldName,
boolean hasServiceInstanceFilter,
String serviceInstanceId,
boolean useContentKeyAsId,
String metadataLocale,
ITransaction transaction) |
String |
IDouiContentTreeDao.getContentTreeChildrenData(String currentContentId,
String tableName,
String primaryKeyFieldName,
String primaryNameFieldName,
String parentIdFieldName,
boolean hasServiceInstanceFilter,
String serviceInstanceId,
boolean useContentKeyAsId,
String metadataLocale,
ITransaction transaction) |
Constructor and Description |
---|
DouiContentTreeControllerXml(HttpServletRequest request,
HttpServletResponse response,
PageContext pageContext) |
Modifier and Type | Class and Description |
---|---|
class |
ControlException
Generic exception thrown by controls
|
Modifier and Type | Method and Description |
---|---|
void |
ErrorSummaryControl.addErrorMessage(String errorMessage) |
void |
IErrorSummaryControl.addErrorMessage(String errorMessage)
Add an error message on the server side.
|
void |
ControlDaoJdbc.addOrUpdate(ControlConfig definition,
ITransaction daoTransaction) |
void |
IControlDao.addOrUpdate(ControlConfig definition,
ITransaction daoTransaction) |
protected void |
ControlContainer.appendDefaultErrorSummaryControl() |
protected void |
ControlContainer.appendDefaultStyle() |
protected void |
Control.appendSubControl(Node subControlNode) |
protected void |
Control.appendSubControls(String subControlsXmlString) |
protected void |
Control.applyOnEventScripts() |
protected void |
DataBoundControl.autoAddDateTimeValueValidator()
Deprecated.
may be removed in the future
|
protected void |
DataBoundControl.autoAddDoubleValueValidator()
Deprecated.
may be removed in the future.
|
protected void |
DataBoundControl.autoAddFileSizeValidator()
Deprecated.
may be removed in the future
|
protected void |
DataBoundControl.autoAddIntegerValueValidator()
Deprecated.
may be removed in the future.
|
protected void |
DataBoundControl.autoAddLengthValidator()
Deprecated.
may be removed in the future
|
protected void |
DataBoundControl.autoAddLongValueValidator()
Deprecated.
may be removed in the future.
|
protected void |
DataBoundControl.autoAddRequiredValueValidator()
Deprecated.
may be removed in the future
|
protected void |
DataBoundControl.autoAddValidators() |
void |
Control.buildSubControls() |
void |
DataBoundControl.buildSubControls() |
void |
IControl.buildSubControls() |
boolean |
ControlContainer.checkControlPermission(Node controlNode) |
protected String |
Control.convertToStandardValue(String value)
Deprecated.
Since 8.0.0. Consider using
DouiStandardValue.convertStandardValue(DouiContext, Object) instead. |
protected Object |
DataControl.convertValueToControlValue(Object value,
Locale locale,
String pattern)
Method to centralize the implementation of conversion of a value to
this control's value.
|
void |
Control.createContainer(String containerId) |
void |
IControl.createContainer(String containerId)
Creates a container for the control.
|
protected void |
ControlContainer.createContainersForClientSideUpdatableControls() |
static IControl |
ControlFactory.createControl(Node controlDefinitionNode,
ControlContainer controlContainer,
IControl parentControl) |
protected IConverter |
DataBoundControl.createConverter() |
protected IConverter |
DataControl.createConverter()
Creates the converter instance for this control.
|
protected IDouiDataType |
DataBoundControl.createDataType()
Creates the data type to be used for this control.
|
protected IDouiDataType |
DataControl.createDataType()
Creates the data type to be used for this control.
|
void |
ControlDaoJdbc.delete(String controlId,
ITransaction daoTransaction) |
void |
IControlDao.delete(String controlId,
ITransaction daoTransaction) |
void |
Control.disconnect() |
void |
IControl.disconnect() |
protected boolean |
ValidatorControl.doServerValidation()
Performs the server validation of the controls for this validator.
|
ControlConfig |
ControlDaoJdbc.get(String controlId,
ITransaction daoTransaction) |
ControlConfig |
ControlManager.get(String controlType,
ITransaction transaction) |
ControlConfig |
IControlDao.get(String controlId,
ITransaction daoTransaction) |
ControlConfig |
IControlManager.get(String controlType,
ITransaction transaction) |
Set<IValidatorControl> |
ControlContainer.getActionValidatorControls(Node[] actionNodes) |
protected String |
Control.getAdditionalParameters(Node onEventNode) |
protected String |
Control.getAdditionalParameters(Node onEventNode,
boolean otherParametersExist) |
Set<IValidatorControl> |
ControlContainer.getAllValidatorControls() |
List<IControl> |
Control.getChildControls() |
List<IControl> |
IControl.getChildControls() |
protected String |
Control.getClientEventHandlerScript(String eventName,
boolean forHref) |
String |
ControlContainer.getClientSideUpdatableControlContainerId(String controlId) |
IResource |
Control.getControlResource() |
IResource |
IControl.getControlResource() |
IResource |
ValidatorControl.getControlResource() |
protected IControl |
ValidatorControl.getControlToValidate() |
Collection<String> |
IValidatorControl.getControlToValidateIds()
Returns a collection with the ids of the controls to be validated by this validator control.
|
Collection<String> |
ValidatorControl.getControlToValidateIds() |
protected String |
ValidatorControl.getControlToValidateSourceFieldName()
Returns the source field name associated with the control to be validated.
|
IConverter |
DataControl.getConverter() |
IConverter |
IDataControl.getConverter()
Returns the converter that is able to convert this control's value.
|
String |
DataBoundControl.getDataId() |
String |
IDataBoundControl.getDataId()
Returns the fieldId of the source that the data bound control is associated to
|
String |
SourceFieldBoundControl.getDataId()
Returns the data identifier for this control.
|
protected String[] |
ValidatorControl.getDefaultMessageParameters() |
protected ValidationMessages |
ValidatorControl.getDefaultMessages(String errorType) |
protected Object |
DataControl.getDefaultValue() |
String |
IFormControl.getEncodingType() |
String |
DataBoundControl.getFieldName()
Returns the field name that the data control is associated to.
|
String |
IDataBoundControl.getFieldName()
Returns the field name that the data control is associated to.
|
String |
SourceFieldBoundControl.getFieldName()
Returns the name of the field this control is bound to.
|
String |
IValidatorControl.getLocalizedErrorMessage()
Returns the error message generated for the control.
|
String |
ValidatorControl.getLocalizedErrorMessage() |
protected ValidationMessages |
ValidatorControl.getMessages() |
protected ValidationMessages |
ValidatorControl.getMessages(String errorType) |
protected Object |
DataControl.getParameterValue(String parameterName)
Returns the value for this control, reading from request the parameters
based on the specified name.
|
String |
Control.getPrepareForReadScript() |
String |
IControl.getPrepareForReadScript() |
protected String |
DataBoundControl.getProcessActionHandlerParameterName()
Define the name of the process action parameter to be set.
|
protected String |
DataControl.getProcessActionHandlerParameterName()
Define the name of the process action parameter to be set.
|
Set<String> |
DataControl.getProcessActionIds() |
Set<String> |
IDataControl.getProcessActionIds()
Returns the process action identifiers for which this control sets parameters to.
|
String |
Control.getRenderData() |
String |
ControlContainer.getRenderData() |
String |
IControl.getRenderData()
Returns an xml string representation of the control for rendering via xsl.
|
IDataControlRequestHelpDefinition |
DataBoundControl.getRequestHelpDefinition() |
IDataControlRequestHelpDefinition |
ErrorSummaryControl.getRequestHelpDefinition() |
IDataControlRequestHelpDefinition |
IDataControl.getRequestHelpDefinition()
Returns the request parameters help definition.
|
protected String |
DataControl.getRequestParameterName() |
List<IResource> |
Control.getResources() |
List<IResource> |
IControl.getResources() |
protected String |
Control.getScriptActionValidation(Node[] actionNodes,
String formName,
ITransaction portalTransaction) |
String |
ErrorSummaryControl.getScriptAddErrorMessage(String errorMessage) |
String |
IErrorSummaryControl.getScriptAddErrorMessage(String errorMessage)
Returns the script that will add the given message to the error message
list on the client side.
|
String |
ErrorSummaryControl.getScriptClear() |
String |
IErrorSummaryControl.getScriptClear()
Returns the script that will clear the error summary
|
String |
IValidatorControl.getScriptClear()
Clears the message displayed by this validator.
|
String |
ValidatorControl.getScriptClear() |
protected String |
ValidatorControl.getScriptSetMessages(ITransaction portalTransaction) |
protected String |
ValidatorControl.getScriptSetMessages(String errorType,
ITransaction portalTransaction) |
protected String |
ValidatorControl.getScriptSetMessages(ValidationMessages validationMessages,
ITransaction portalTransaction) |
String |
ErrorSummaryControl.getScriptShow() |
String |
IErrorSummaryControl.getScriptShow()
Returns a client side script that shows the error summary
|
String |
IValidatorControl.getScriptValidate()
Returns the code that needs to be executed on the client side for this validation.
|
String |
ValidatorControl.getScriptValidate() |
String |
IValidatorControl.getScriptValidateRegistration()
Returns a script that must be placed on the page.
|
String |
ValidatorControl.getScriptValidateRegistration() |
String |
IValidatorControl.getScriptValidationFunctionImplementation()
Returns the client side code that must be placed in a client side function to perform the
validation
|
String |
IValidatorControl.getScriptValidationFunctionName()
Returns the name of the client side validation function.
|
String |
ValidatorControl.getScriptValidationFunctionName() |
S |
DataBoundControl.getSource()
Returns the source related to this data bound control.
|
Source |
IDataBoundControl.getSource()
Returns the source object that the current control is associated to
|
S |
SourceBoundControl.getSource()
Returns the source bound to to this source bound control.
|
protected S |
DataBoundControl.getSourceById(String sourceId) |
protected IConverter |
DataBoundControl.getUnboundedConverter()
Deprecated.
Since 4.0.10, this method is not used anymore. For
best backward compatibility, this implementation delegates
to
dataType 's IDouiDataType.getConverter() . |
protected String |
Control.getValidationScript(Node onEventNode) |
Object |
DataControl.getValue() |
Object |
IDataControl.getValue() |
<T> T |
DataControl.getValue(Class<T> expectedClass) |
<T> T |
IDataControl.getValue(Class<T> expectedClass) |
protected Class<?> |
DataControl.getValueClass()
Returns the class the possible values of this control are assignable to.
|
protected String |
Control.getWindowProperties(String interfaceId)
Returns the window properties used when a "popupRunTimeInterface" is used as an event handler.
|
protected String |
Control.getWindowProperties(String interfaceId,
String popupSize) |
protected void |
ValidatorControl.includeScripts() |
void |
ControlContainer.indexControl(IControl control) |
void |
ControlContainer.init() |
void |
Control.init(Node controlDefinitionNode,
ControlContainer controlContainer,
IControl parentControl) |
void |
DataBoundControl.init(Node controlDefinitionNode,
ControlContainer controlContainer,
IControl parentControl) |
void |
DataControl.init(Node controlDefinitionNode,
ControlContainer controlContainer,
IControl parentControl) |
void |
ErrorSummaryControl.init(Node controlDefinitionNode,
ControlContainer controlContainer,
IControl parentControl) |
void |
IControl.init(Node controlDefinitionNode,
ControlContainer controlContainer,
IControl parentControl) |
void |
SourceFieldBoundControl.init(Node controlDefinitionNode,
ControlContainer controlContainer,
IControl parentControl) |
void |
ValidatorControl.init(Node controlDefinitionNode,
ControlContainer controlContainer,
IControl parentControl) |
protected void |
DataControl.initProcessActionIds()
Initializes the attribute
DataControl.processActionIds . |
protected boolean |
Control.isRequired()
Returns whether this control is required.
The default implementation checks whether there is a RequiredValueValidatorControl bound to this control. |
boolean |
Control.isValid() |
boolean |
IControl.isValid() |
void |
ControlContainer.loadControlsFromRequest() |
void |
DataBoundControl.loadFromRequest() |
void |
DataControl.loadFromRequest() |
void |
ErrorSummaryControl.loadFromRequest() |
void |
IDataControl.loadFromRequest() |
protected void |
DataControl.loadSubControlFromRequest(IControl control) |
protected void |
DataControl.loadSubControlsFromRequest() |
protected String |
Control.localize(String text) |
protected void |
Control.localizeStrings() |
protected String |
Control.processCustomTags(String scriptNodeText) |
void |
ControlManager.registerControls(SessionConfig sessionConfig,
String controlTypesDefinitionPath,
ITransaction transaction) |
void |
IControlManager.registerControls(SessionConfig sessionConfig,
String controlTypesDefinitionPath,
ITransaction transaction) |
void |
Control.registerOnEventScript(String onEvent,
String script) |
void |
IControl.registerOnEventScript(String onEvent,
String script) |
void |
Control.removeChild(IControl childControl) |
void |
IControl.removeChild(IControl childControl) |
void |
Control.removeChildren() |
void |
IControl.removeChildren() |
boolean |
IValidatorControl.serverValidate()
Validates all dependent control values on the server side
|
boolean |
ValidatorControl.serverValidate()
Validates all dependent control values on the server side
|
protected void |
ControlContainer.setControlRenderData(IControl control) |
protected void |
DataBoundControl.setDefaultValue() |
protected void |
DataControl.setDefaultValue() |
void |
IFormControl.setEncodingType(String encodingType) |
protected void |
DataControl.setProcessActionHandlerParameter(IProcessActionHandler processActionHandler,
String parameterName)
Set the process action parameter with the control current value.
|
protected void |
DataControl.setProcessActionHandlerParameter(IProcessActionHandler processActionHandler,
String parameterName,
Object value)
Set the process action parameter name and value.
|
void |
ControlContainer.setProcessActionHandlerParameters(IProcessActionHandler processActionHandler) |
void |
DataControl.setProcessActionHandlerParameters(IProcessActionHandler processActionHandler)
Sets the control value as a process action handler parameter.
|
void |
IDataControl.setProcessActionHandlerParameters(IProcessActionHandler processActionHandler)
Sets the control parameters for the process action handler.
|
protected void |
DataBoundControl.setRawValue(Object value)
Sets directly the value in this control.
|
protected void |
DataControl.setRawValue(Object value)
Sets directly the value in this control.
|
void |
DataBoundControl.setReload(boolean reload) |
void |
IDataBoundControl.setReload(boolean reload)
Sets the reload flag in the control.
|
void |
Control.setRenderData() |
void |
DataBoundControl.setRenderData() |
void |
ErrorSummaryControl.setRenderData() |
void |
IControl.setRenderData() |
void |
ValidatorControl.setRenderData() |
protected void |
DataControl.setSourceParameter(Source source,
String parameterName)
Sets the parameter with the given name in the given source.
|
protected void |
DataBoundControl.setSourceParameter(String parameterName,
String sourceId) |
protected void |
DataControl.setSourceParameter(String parameterName,
String sourceId)
Set the parameter with the given name in source with the given identifier.
|
protected void |
DataControl.setSourceParameters()
Sets the appropriate source parameters.
|
void |
Control.setValid(boolean isValid) |
void |
DataBoundControl.setValid(boolean isValid) |
void |
IControl.setValid(boolean isValid) |
void |
DataControl.setValue(Object value)
Sets the value for this control.
|
void |
IDataControl.setValue(Object value) |
protected void |
DataBoundControl.setValueFromSource() |
protected void |
DataBoundControl.setValueFromSource(S source)
Reads the value corresponding to the current control from the control
source.
|
void |
ControlManager.unregisterControl(SessionConfig sessionConfig,
String controlType,
ITransaction transaction) |
void |
IControlManager.unregisterControl(SessionConfig sessionConfig,
String controlType,
ITransaction transaction) |
boolean |
ControlContainer.validateControls() |
boolean |
DataControl.valueIsArray()
Returns true if the value in the control is expected to be an array.
|
Constructor and Description |
---|
ErrorSummaryControl() |
Modifier and Type | Method and Description |
---|---|
void |
AsyncProgressControl.setRenderData() |
Modifier and Type | Method and Description |
---|---|
protected void |
AutoLayoutPropertyPageControl.addAutoLayoutFields(StringBuilder subControls) |
protected void |
AutoLayoutListControl.addListControl(StringBuilder subControls)
Includes the list control.
|
protected void |
AutoLayoutQuickListControl.addListControl(StringBuilder subControls) |
protected void |
AutoLayoutListControl.addPostListControls(StringBuilder subControls) |
protected void |
AutoLayoutQuickListControl.addPostListControls(StringBuilder subControls) |
protected void |
AutoLayoutListControl.addPreListControls(StringBuilder subControls) |
protected void |
AutoLayoutEmbeddedPropertyPageControl.addPropertyPageControl(StringBuilder subControls) |
protected void |
AutoLayoutPropertyPageControl.addPropertyPageControl(StringBuilder subControls) |
protected void |
AutoLayoutPropertyPageControl.addPropertyPageSubControls(StringBuilder subControls) |
void |
AutoLayoutAdministrationListControl.buildSubControls() |
void |
AutoLayoutDetailsControl.buildSubControls() |
void |
AutoLayoutFieldControl.buildSubControls() |
void |
AutoLayoutFieldsControl.buildSubControls() |
void |
AutoLayoutListControl.buildSubControls() |
void |
AutoLayoutPropertyPageControl.buildSubControls() |
protected String |
AutoLayoutAdministrationListControl.getAdminListButtonsControl() |
protected String |
AutoLayoutAdministrationListControl.getAdminListControl() |
Object |
AutoLayoutFieldControl.getFieldControlValue()
Returns the value of the field control that it created.
|
protected boolean |
AutoLayoutFieldsControl.renderControlsForField(ISourceField field) |
void |
AutoLayoutFieldControl.setFieldControlValue(Object value)
Set value on a field control calls setValue on the field control that
it renders.
|
Modifier and Type | Method and Description |
---|---|
IResource |
AutoRefreshControl.getControlResource() |
IDataControlRequestHelpDefinition |
AutoRefreshControl.getRequestHelpDefinition() |
void |
AutoRefreshControl.loadFromRequest() |
protected void |
AutoRefreshControl.setDefaultValue() |
void |
AutoRefreshControl.setRenderData() |
Modifier and Type | Method and Description |
---|---|
protected String |
AutoAdministrationListButtonsControl.appendPostConfigureButtons() |
protected String |
AutoAdministrationListButtonsControl.appendPreConfigureButtons() |
void |
AutoAdministrationListButtonsControl.buildSubControls() |
void |
AutoEmbeddedInterfaceStandardButtonsControl.buildSubControls() |
void |
AutoInterfaceStandardButtonsControl.buildSubControls() |
void |
AutoPopupInterfaceStandardButtonsControl.buildSubControls() |
protected TabularDataControl |
ButtonControl.getAssociatedTabularDataControl()
Returns the tabular data control referenced (either explicitly or automatically detected) by this button for row
actions or parameter value.
|
IResource |
AccessControlButton.getControlResource() |
IResource |
ButtonControl.getControlResource() |
IResource |
DeleteButtonControl.getControlResource() |
IResource |
PositionFieldOrderButtonControl.getControlResource() |
protected String |
ButtonControl.getDefaultPopupPageId(String interfaceId) |
void |
AccessControlButton.setRenderData() |
void |
AddButton2Control.setRenderData() |
void |
AddButtonControl.setRenderData() |
void |
ButtonControl.setRenderData() |
void |
CancelButtonControl.setRenderData() |
void |
ConfigureButtonControl.setRenderData() |
void |
DeleteButtonControl.setRenderData() |
void |
EditButton2Control.setRenderData() |
void |
EditButtonControl.setRenderData() |
void |
OkButtonControl.setRenderData() |
void |
PositionFieldOrderButtonControl.setRenderData() |
void |
PrintButtonControl.setRenderData() |
void |
RefreshButtonControl.setRenderData() |
void |
VersionEditButtonControl.setRenderData() |
Modifier and Type | Method and Description |
---|---|
void |
CheckBoxListControl.buildSubControls() |
Object |
CheckBoxControl.getValue()
A check box control with a null value returns a false boolean as its value.
|
void |
CheckBoxListControl.init(Node controlDefinitionNode,
ControlContainer controlContainer,
IControl parentControl) |
void |
CheckBoxListControl.loadFromRequest() |
void |
CheckBoxControl.setRenderData() |
void |
CheckBoxListControl.setRenderData() |
void |
CheckBoxControl.setValue(Object value)
The check box control treats the String "1" value as
a true boolean.
|
protected void |
CheckBoxListControl.setValueFromSource() |
Modifier and Type | Method and Description |
---|---|
void |
ConditionalRenderControl.setRenderData() |
Modifier and Type | Method and Description |
---|---|
void |
ControlGroupControl.setRenderData() |
Modifier and Type | Method and Description |
---|---|
protected void |
DataGridControl.addGridControls() |
void |
DataGridControl.buildSubControls()
For each field specified create a autoLayoutField control.
|
boolean |
DataGridControlField.display() |
boolean |
DataGridControlFieldTabularSourceFieldWrapper.display() |
boolean |
IDataGridControlField.display()
Returns the value of the display attribute.
|
static List<IDataGridControlField> |
DataGridControlFieldTabularSourceFieldWrapper.getFields(List<ITabularSourceField> tabularSourceFields)
Returns the datagrid fields list.
|
static List<IDataGridControlField> |
DataGridControlField.getFields(Node dataGridControlDefinitionNode)
Returns the fields list
|
String |
DataGridControlField.getId() |
String |
DataGridControlFieldTabularSourceFieldWrapper.getId() |
String |
IDataGridControlField.getId()
Returns the value of the id attribute.
|
String |
DataGridControlField.getName() |
String |
DataGridControlFieldTabularSourceFieldWrapper.getName() |
String |
IDataGridControlField.getName()
Returns the value of the name attribute.
|
IDataControlRequestHelpDefinition |
DataGridControl.getRequestHelpDefinition() |
void |
DataGridControl.init(Node controlDefinitionNode,
ControlContainer controlContainer,
IControl parentControl) |
boolean |
DataGridControlField.isPrimaryKey() |
boolean |
DataGridControlFieldTabularSourceFieldWrapper.isPrimaryKey() |
boolean |
IDataGridControlField.isPrimaryKey()
Returns the value of the isPrimaryKey attribute.
|
void |
DataGridControl.loadFromRequest()
Loads the number of rows and index of row to delete if exists.
|
protected void |
DataGridControl.reloadSubControlsRecursively(IControl currentControl) |
boolean |
DataGridControlField.required() |
boolean |
DataGridControlFieldTabularSourceFieldWrapper.required() |
boolean |
IDataGridControlField.required()
Returns the value of the required attribute.
|
void |
DataGridControl.setProcessActionHandlerParameters(IProcessActionHandler processActionHandler) |
void |
DataGridControl.setRenderData()
Sets information for rendering.
|
protected void |
DataGridControl.setSourceParameter(Source source,
String parameterName)
This control must not set source parameters.
|
protected void |
DataGridControl.setValueFromSource(Source source)
Retrieves the number of rows in the source tabular data.
|
Modifier and Type | Method and Description |
---|---|
protected void |
TimePickerControl.autoAddDateTimeValueValidator() |
void |
CalendarControl.buildSubControls() |
void |
DateTimePickerControl.buildSubControls() |
void |
MonthPickerControl.buildSubControls() |
void |
TimePickerControl.buildSubControls() |
IResource |
CalendarControl.getControlResource() |
IResource |
DateTimePickerControl.getControlResource() |
IResource |
MonthPickerControl.getControlResource() |
protected Object |
DateTimePickerControl.getParameterValue(String parameterName) |
IDataControlRequestHelpDefinition |
CalendarControl.getRequestHelpDefinition() |
IDataControlRequestHelpDefinition |
DateTimePickerControl.getRequestHelpDefinition() |
IDataControlRequestHelpDefinition |
TimePickerControl.getRequestHelpDefinition() |
protected Class<? extends Date> |
DateTimePickerControl.getValueClass() |
void |
CalendarControl.init(Node controlDefinitionNode,
ControlContainer controlContainer,
IControl parentControl) |
void |
DateTimePickerControl.init(Node controlDefinitionNode,
ControlContainer controlContainer,
IControl parentControl) |
void |
MonthPickerControl.init(Node controlDefinitionNode,
ControlContainer controlContainer,
IControl parentControl) |
void |
TimePickerControl.init(Node controlDefinitionNode,
ControlContainer controlContainer,
IControl parentControl) |
void |
CalendarControl.loadFromRequest() |
void |
MonthPickerControl.loadFromRequest() |
void |
TimePickerControl.loadFromRequest() |
void |
CalendarControl.setRenderData() |
void |
DateTimePickerControl.setRenderData() |
void |
MonthPickerControl.setRenderData() |
void |
TimePickerControl.setRenderData() |
protected void |
MonthPickerControl.setValueFromSource() |
Modifier and Type | Method and Description |
---|---|
void |
DetailsControl.buildSubControls() |
Modifier and Type | Method and Description |
---|---|
protected void |
DropDownListControl.appendDefinitionOptions(StringBuilder results,
int optionType) |
protected void |
DropDownListControl.autoAddValidators() |
void |
DropDownListControl.buildSubControls() |
void |
DropDownListControl.init(Node controlDefinitionNode,
ControlContainer controlContainer,
IControl parentControl) |
void |
DropDownListControl.loadFromRequest() |
void |
DropDownListControl.setRenderData() |
Modifier and Type | Method and Description |
---|---|
void |
DynamicListControl.buildSubControls() |
protected String |
DynamicListControl.getPopupAddInterfaceServiceInstanceId() |
IDataControlRequestHelpDefinition |
DynamicListControl.getRequestHelpDefinition() |
void |
DynamicListControl.init(Node controlDefinitionNode,
ControlContainer controlContainer,
IControl parentControl) |
void |
DynamicListControl.loadFromRequest() |
void |
DynamicListControl.setProcessActionHandlerParameters(IProcessActionHandler processActionHandler) |
void |
DynamicListControl.setRenderData() |
protected void |
DynamicListControl.setValueFromSource() |
Modifier and Type | Method and Description |
---|---|
void |
EmailControl.setRenderData() |
Modifier and Type | Method and Description |
---|---|
protected void |
FileUploadControl.addImageEditorControls()
Add controls for the image edition functionality.
|
void |
FileUploadControl.buildSubControls() |
protected void |
FileListEditProcessActionHandler.execute(QueryBase queryBase) |
protected void |
FileListAddProcessActionHandler.execute(QueryInsert queryInsert) |
IResource |
FilesPickerControl.getControlResource() |
IDataControlRequestHelpDefinition |
FileUploadControl.getRequestHelpDefinition() |
IDataControlRequestHelpDefinition |
FilesPickerControl.getRequestHelpDefinition() |
protected Class |
FileUploadControl.getValueClass() |
protected Class |
FilesPickerControl.getValueClass() |
protected void |
FileListAddProcessActionHandler.indexData() |
protected void |
FileListEditProcessActionHandler.indexData() |
void |
FileUploadControl.init(Node controlDefinitionNode,
ControlContainer controlContainer,
IControl parentControl) |
void |
FilesPickerControl.init(Node controlDefinitionNode,
ControlContainer controlContainer,
IControl parentControl) |
void |
FileUploadControl.loadFromRequest() |
protected void |
FileListAddProcessActionHandler.preInsert(QueryInsert queryInsert) |
void |
FileListAddProcessActionHandler.processAction() |
void |
FileListEditProcessActionHandler.processAction() |
void |
FileListControl.setRenderData() |
void |
FileUploadControl.setRenderData() |
void |
FilesPickerControl.setRenderData() |
Modifier and Type | Method and Description |
---|---|
protected String |
FilterControl.buildHiddenSubControls() |
void |
FilterControl.buildSubControls() |
void |
FiltersControl.buildSubControls() |
protected String |
FilterControl.buildVisibleSubControls()
Builds all visible children controls of the filter.
|
protected String |
ParentFilterControl.buildVisibleSubControls() |
IResource |
FiltersControl.getControlResource() |
protected String |
FilterControl.getFilterName() |
protected ParentFilterControl.IFolder |
ParentFilterControl.getFolder(String folderId)
Returns the information about the folder represented by the
content with the given folderId as its primary key value.
|
protected Node |
ParentFilterControl.ParentFilterHyperlink.getHyperlinkNode(String sourceId,
String fieldId) |
String |
ParentFilterControl.ParentFilterHyperlink.getNavigateToParentOnClick(String sourceId,
String parentId) |
String |
ParentFilterControl.IFolder.getPath() |
String |
ParentFilterControl.IFolder.getPathIds() |
void |
FilterControl.init(Node controlDefinitionNode,
ControlContainer controlContainer,
IControl parentControl) |
void |
ParentFilterControl.init(Node controlDefinitionNode,
ControlContainer controlContainer,
IControl parentControl) |
void |
FilterControl.setRenderData() |
void |
ParentFilterControl.setRenderData() |
Modifier and Type | Method and Description |
---|---|
boolean |
FormControl.hasRequiredFields() |
void |
FormControl.init(Node controlDefinitionNode,
ControlContainer controlContainer,
IControl parentControl) |
void |
FormControl.setHasRequiredFields(boolean requiredFields) |
void |
FormControl.setRenderData() |
protected void |
FormControl.setStoredContextValues(Node dataNode) |
Modifier and Type | Method and Description |
---|---|
void |
FCKEditorPopUpFixerControl.buildSubControls() |
void |
HtmlEditorControl.buildSubControls() |
static String |
HtmlEditorControl.encodeHtmlForEditor(String html,
IWebsite currentWebsite,
boolean baseSecure) |
String |
HtmlEditorControl.getPrepareForReadScript() |
protected Class<?> |
HtmlEditorControl.getValueClass() |
void |
FCKSelectContentControllerHtml.handleRequest() |
void |
FCKEditorPopUpFixerControl.init(Node controlDefinitionNode,
ControlContainer controlContainer,
IControl parentControl) |
void |
HtmlEditorControl.init(Node controlDefinitionNode,
ControlContainer controlContainer,
IControl parentControl) |
void |
HtmlEditorControl.loadFromRequest() |
void |
HtmlEditorControl.setProcessActionHandlerParameters(IProcessActionHandler processActionHandler) |
void |
FCKEditorPopUpFixerControl.setRenderData() |
void |
HtmlEditorControl.setRenderData() |
Constructor and Description |
---|
FCKSelectContentControllerHtml(HttpServletRequest request,
HttpServletResponse response,
PageContext pageContext) |
Modifier and Type | Method and Description |
---|---|
void |
IncludeControl.setRenderData() |
Modifier and Type | Method and Description |
---|---|
protected void |
InputEmailControl.autoAddValidators() |
Modifier and Type | Method and Description |
---|---|
protected void |
InputHiddenControl.autoAddValidators()
A hidden control by default must not have validators since the end user
cannot do anything about it.
|
protected void |
InputTextControl.autoAddValidators() |
void |
InputTextControl.buildSubControls() |
void |
InputTextControl.init(Node controlDefinitionNode,
ControlContainer controlContainer,
IControl parentControl) |
void |
InputTextControl.setRenderData() |
Modifier and Type | Method and Description |
---|---|
void |
InterfaceHeaderControl.setRenderData() |
Modifier and Type | Method and Description |
---|---|
IResource |
InterfaceHeaderButtonsControl.getControlResource() |
void |
InterfaceHeaderButtonsControl.setRenderData() |
Modifier and Type | Method and Description |
---|---|
protected void |
ItemPickerControl.autoAddValidators() |
void |
ItemPickerControl.buildSubControls() |
protected IConverter |
MultiItemPickerControl.createConverter() |
IResource |
ItemPickerControl.getControlResource() |
protected IServiceInterfaceUrl |
ItemPickerControl.getPopupUrl() |
protected IServiceInterfaceUrl |
MultiItemPickerControl.getPopupUrl() |
IDataControlRequestHelpDefinition |
MultiItemPickerControl.getRequestHelpDefinition() |
IDataControlRequestHelpDefinition |
OrderedMultiItemPickerControl.getRequestHelpDefinition() |
protected String |
SelectItemTabularDataControl.getRowHyperlink(TabularSource source,
ISourceData row,
String compositePrimaryKey,
int rowIndex) |
protected Class<?> |
MultiItemPickerControl.getValueClass() |
protected Class<?> |
OrderedMultiItemPickerControl.getValueClass() |
void |
ItemPickerControl.init(Node controlDefinitionNode,
ControlContainer controlContainer,
IControl parentControl) |
void |
MultiItemPickerControl.init(Node controlDefinitionNode,
ControlContainer controlContainer,
IControl parentControl) |
void |
OrderedMultiItemPickerControl.init(Node controlDefinitionNode,
ControlContainer controlContainer,
IControl parentControl) |
void |
SelectItemTabularDataControl.init(Node controlDefinitionNode,
ControlContainer controlContainer,
IControl parentControl) |
void |
ItemPickerControl.loadFromRequest() |
void |
MultiItemPickerControl.loadFromRequest()
Loads the number of rows and index of row to delete if exists.
|
void |
OrderedMultiItemPickerControl.loadFromRequest() |
void |
SelectItemTabularDataControl.loadFromRequest() |
void |
MultiItemPickerControl.setProcessActionHandlerParameters(IProcessActionHandler processActionHandler) |
void |
OrderedMultiItemPickerControl.setProcessActionHandlerParameters(IProcessActionHandler processActionHandler) |
void |
ItemPickerControl.setRenderData() |
void |
MultiItemPickerControl.setRenderData() |
void |
OrderedMultiItemPickerControl.setRenderData() |
void |
SelectItemTabularDataControl.setRenderData() |
protected void |
ItemPickerControl.setValueFromSource() |
protected void |
MultiItemPickerControl.setValueFromSource(TabularSource<?> source) |
protected void |
OrderedMultiItemPickerControl.setValueFromSource(TabularSource<?> source) |
Modifier and Type | Method and Description |
---|---|
IResource |
LabelControl.getControlResource() |
void |
LabelControl.setRenderData() |
Modifier and Type | Method and Description |
---|---|
void |
LinkControl.setRenderData() |
Modifier and Type | Method and Description |
---|---|
void |
AdministrationListControl.buildSubControls() |
void |
ListControl.buildSubControls() |
String |
AdministrationListControl.getDataId() |
void |
ListControl.init(Node controlDefinitionNode,
ControlContainer controlContainer,
IControl parentControl) |
Modifier and Type | Method and Description |
---|---|
void |
MultiFileUploadControl.buildSubControls() |
protected void |
MultiFileUploadControllerHtml.checkForFileUpload(ITransaction transaction)
Checks for upload.
|
protected boolean |
MultiFileUploadExtensionCheckControl.doServerValidation() |
IResource |
MultiFileUploadControl.getControlResource() |
IResource |
MultiFileUploadExtensionCheckControl.getControlResource() |
IResource |
MultiFileUploadRequiredValueValidatorControl.getControlResource() |
protected IControl |
MultiFileUploadExtensionCheckControl.getControlToValidate() |
protected ValidationMessages |
MultiFileUploadRequiredValueValidatorControl.getDefaultMessages(String errorType) |
protected String |
MultiFileUploadControl.getFileDescription(String allowedFileExtensions)
Returns the files description used on open file system window.
|
IDataControlRequestHelpDefinition |
MultiFileUploadControl.getRequestHelpDefinition() |
String |
MultiFileUploadExtensionCheckControl.getScriptValidationFunctionImplementation() |
String |
MultiFileUploadRequiredValueValidatorControl.getScriptValidationFunctionImplementation()
Validates if has an upload running during process action.
|
void |
MultiFileUploadCheckControllerHtml.handleRequest()
A handle for request.
|
void |
MultiFileUploadControllerHtml.handleRequest()
Handles the request
|
void |
MultiFileUploadControl.init(Node controlDefinitionNode,
ControlContainer controlContainer,
IControl parentControl) |
void |
MultiFileUploadExtensionCheckControl.init(Node controlDefinitionNode,
ControlContainer controlContainer,
IControl parentControl) |
void |
MultiFileUploadControl.setProcessActionHandlerParameters(IProcessActionHandler processActionHandler) |
void |
MultiFileUploadControl.setRenderData() |
Constructor and Description |
---|
MultiFileUploadCheckControllerHtml(HttpServletRequest request,
HttpServletResponse response) |
MultiFileUploadControllerHtml(HttpServletRequest request,
HttpServletResponse response) |
Modifier and Type | Method and Description |
---|---|
protected Class<?> |
OptionListControl.getValueClass() |
void |
OptionListControl.init(Node controlDefinitionNode,
ControlContainer controlContainer,
IControl parentControl) |
void |
OptionListControl.loadFromRequest() |
void |
OptionListControl.setRenderData() |
boolean |
OptionListControl.valueIsArray() |
Modifier and Type | Method and Description |
---|---|
IResource |
PaginationControl.getControlResource() |
void |
PaginationControl.init(Node controlDefinitionNode,
ControlContainer controlContainer,
IControl parentControl) |
void |
PaginationControl.loadFromRequest() |
void |
PaginationControl.setRenderData() |
protected void |
PaginationControl.setValueFromSource() |
Modifier and Type | Method and Description |
---|---|
void |
PaneControl.buildSubControls()
This method identifies one of the panes to render and deletes all the
other panes from its definition
|
protected String |
PaneControl.getRequestParameterName() |
void |
PaneControl.setRenderData() |
Modifier and Type | Method and Description |
---|---|
protected String |
SelectParentContentControl.getParentContentPrimaryName(String currentParentContentValue,
TableSource source,
String primaryNameFieldName)
Returns the primary name for the given value.
|
void |
SelectParentContentControl.setRenderData() |
void |
SelectParentContentTreeControl.setRenderData() |
Modifier and Type | Method and Description |
---|---|
protected void |
PasswordControl.autoAddValidators() |
void |
PasswordControl.buildSubControls() |
void |
PasswordControl.setRenderData() |
Modifier and Type | Method and Description |
---|---|
protected void |
PrimaryKeyControl.setDefaultValue()
Sets the default value for the primary key.
|
void |
PrimaryKeyControl.setRenderData()
Sets the render data for the control.
|
Modifier and Type | Method and Description |
---|---|
protected void |
ServiceInstancePrincipalsByPermissionDataProvider.addPrincipal(SessionConfig sessionConfig,
String principalId,
List<PrincipalConfig> principalsPreviouslyIncluded,
String serviceInstanceId,
IPermission p,
ITransaction transaction) |
void |
PrincipalPickerControl.buildSubControls() |
protected IDouiDataType |
PrincipalPickerControl.createDataType() |
IResource |
PrincipalPickerControl.getControlResource() |
protected IServiceInterfaceUrl |
PrincipalPickerControl.getPopupUrl() |
protected IServiceInterfaceUrl |
ServiceInstancePrincipalPickerControl.getPopupUrl() |
protected Class<? extends PrincipalDataType.Data> |
PrincipalPickerControl.getValueClass() |
void |
PrincipalPickerControl.init(Node controlDefinitionNode,
ControlContainer controlContainer,
IControl parentControl) |
void |
ServiceInstancePrincipalPickerControl.init(Node controlDefinitionNode,
ControlContainer controlContainer,
IControl parentControl) |
void |
ServiceInstancePrincipalsByPermissionDataProvider.loadData(SessionConfig sessionConfig,
Source source,
ITransaction transaction) |
void |
PrincipalPickerControl.setRenderData() |
void |
ServiceInstancePrincipalPickerControl.setRenderData() |
Constructor and Description |
---|
PrincipalControllerHtml(HttpServletRequest request,
HttpServletResponse response)
Constructor class.
|
Modifier and Type | Method and Description |
---|---|
IDataControlRequestHelpDefinition |
InputProfileImageControl.getRequestHelpDefinition() |
protected Class<InputProfileImageControl.ProfileImageData> |
InputProfileImageControl.getValueClass() |
void |
InputProfileImageControl.init(Node controlDefinitionNode,
ControlContainer controlContainer,
IControl parentControl) |
void |
InputProfileImageControl.loadFromRequest() |
void |
InputProfileImageControl.setRenderData() |
protected void |
InputProfileImageControl.setValueFromSource(Source source) |
Modifier and Type | Method and Description |
---|---|
IDataControlRequestHelpDefinition |
ProgressControl.getRequestHelpDefinition() |
IDataControlRequestHelpDefinition |
ProgressPanelControl.getRequestHelpDefinition() |
void |
ProgressPanelControl.loadFromRequest() |
void |
ProgressControl.setRenderData() |
void |
ProgressPanelControl.setRenderData() |
Modifier and Type | Method and Description |
---|---|
void |
PropertyPageControl.buildSubControls() |
Modifier and Type | Method and Description |
---|---|
void |
RadioButtonListControl.buildSubControls() |
IDataControlRequestHelpDefinition |
RadioButtonControl.getRequestHelpDefinition() |
void |
RadioButtonControl.init(Node controlDefinitionNode,
ControlContainer controlContainer,
IControl parentControl) |
void |
RadioButtonListControl.init(Node controlDefinitionNode,
ControlContainer controlContainer,
IControl parentControl) |
void |
RadioButtonControl.loadFromRequest() |
void |
RadioButtonControl.setProcessActionHandlerParameters(IProcessActionHandler processActionHandler) |
void |
RadioButtonControl.setRenderData() |
void |
RadioButtonListControl.setRenderData() |
protected void |
RadioButtonControl.setValueFromSource(Source source) |
Modifier and Type | Method and Description |
---|---|
void |
ScriptControl.setRenderData() |
Modifier and Type | Method and Description |
---|---|
protected void |
SelectChannelOrChannelTemplateControl.autoAddValidators() |
void |
SelectChannelOrChannelTemplateControl.buildSubControls() |
protected String |
SelectChannelOrChannelTemplateControl.getDisplayValue()
Returns the name to be displayed for the user.
|
protected String |
SelectChannelOrChannelTemplateControl.getSelectedChannelId()
Returns the selected channel identifier.
|
void |
SelectChannelOrChannelTemplateControl.setRenderData() |
void |
SelectChannelPageTreeControl.setRenderData() |
Modifier and Type | Method and Description |
---|---|
protected void |
SelectChannelChildControl.autoAddValidators() |
void |
SelectChannelChildControl.buildSubControls() |
abstract IChannelChildProvider |
SelectChannelChildControl.createChannelChildProvider() |
IChannelChildProvider |
SelectPageOrPageTemplateControl.createChannelChildProvider() |
protected String |
SelectChannelChildControl.getDefaultChannelId()
Returns the default channel id to be used when the tree select structure
is opened.
|
protected Object |
SelectPageTemplateControl.getDefaultValue() |
IDataControlRequestHelpDefinition |
SelectChannelChildControl.getRequestHelpDefinition() |
void |
SelectChannelChildControl.init(Node controlDefinitionNode,
ControlContainer controlContainer,
IControl parentControl) |
void |
SelectChannelChildControl.setRenderData() |
protected void |
SelectPageTemplateControl.setValueFromSource(Source source) |
Modifier and Type | Method and Description |
---|---|
IChannelChildProvider |
SelectServiceInstanceControl.createChannelChildProvider() |
IChannelChild |
ServiceInstanceProvider.getChannelChild(SessionConfig sessionConfig,
String childId,
ITransaction transaction) |
List<IChannelChild> |
ServiceInstanceProvider.getChannelsChildren(SessionConfig sessionConfig,
String parentChannelIds,
boolean hidePages,
boolean hidePageTemplates,
IResource resource,
Locale locale,
ITransaction transaction) |
List<IChannelChild> |
ServiceInstanceProvider.getChildrenData(SessionConfig sessionConfig,
String channelId,
int hideItems,
int hideItemTemplates,
IResource resource,
Locale locale,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
void |
StringsControl.init(Node controlDefinitionNode,
ControlContainer controlContainer,
IControl parentControl) |
Modifier and Type | Method and Description |
---|---|
IDataControlRequestHelpDefinition |
TabbedControl.getRequestHelpDefinition() |
protected String |
TabbedControl.getRequestParameterName() |
void |
TabbedControl.setRenderData() |
Modifier and Type | Method and Description |
---|---|
void |
AdvancedTabularDataControl.buildSubControls() |
IResource |
TabularDataControl.getControlResource() |
IConverter |
TabularDataControl.getConverter()
Tabular data control uses no converter.
|
protected String |
TabularDataControl.getFieldHyperlink(TabularSource source,
ISourceData row,
String fieldId,
String compositePrimaryKey,
int rowIndex) |
IDataControlRequestHelpDefinition |
AdvancedTabularDataControl.getRequestHelpDefinition() |
IDataControlRequestHelpDefinition |
TabularDataControl.getRequestHelpDefinition() |
protected String |
TabularDataControl.getRowHyperlink(TabularSource source,
ISourceData row,
String compositePrimaryKey,
int rowIndex) |
protected String |
TabularDataControl.getRowOnClick(TabularSource<?> source,
ISourceData row,
String compositePrimaryKey,
int rowIndex) |
void |
AdvancedTabularDataControl.init(Node controlDefinitionNode,
ControlContainer controlContainer,
IControl parentControl) |
void |
AdvancedTabularDataControl.loadFromRequest() |
void |
TabularDataControl.loadFromRequest() |
protected void |
AdvancedTabularDataControl.setFieldData() |
protected void |
AdvancedTabularDataControl.setOrderByRenderData() |
void |
AdvancedTabularDataControl.setRenderData() |
void |
TabularDataControl.setRenderData() |
protected void |
AdvancedTabularDataControl.setSelectedElementsRenderData() |
protected void |
AdvancedTabularDataControl.setValueFromSource() |
Modifier and Type | Method and Description |
---|---|
IDataControlRequestHelpDefinition |
TextControl.getRequestHelpDefinition() |
void |
TextControl.loadFromRequest() |
void |
TextControl.setRenderData() |
Modifier and Type | Method and Description |
---|---|
boolean |
DateCompareValidatorControl.doServerValidation() |
boolean |
DateDataTypeValidatorControl.doServerValidation() |
boolean |
FileSizeValidatorControl.doServerValidation() |
boolean |
HtmlEditorValidatorControl.doServerValidation() |
boolean |
IntegerDataTypeValidatorControl.doServerValidation() |
boolean |
LengthValidatorControl.doServerValidation() |
boolean |
NumberDataTypeValidatorControl.doServerValidation() |
boolean |
RegularExpressionValidatorControl.doServerValidation() |
boolean |
RequiredValueValidatorControl.doServerValidation() |
boolean |
RequiredValueWhenVisibleValidatorControl.doServerValidation()
Does not perform validation on the server side.
|
IResource |
DateCompareValidatorControl.getControlResource() |
IResource |
DateDataTypeValidatorControl.getControlResource() |
IResource |
EmailValidatorControl.getControlResource() |
IResource |
FileNameValidatorControl.getControlResource() |
IResource |
FileSizeValidatorControl.getControlResource() |
IResource |
IntegerDataTypeValidatorControl.getControlResource() |
IResource |
LengthValidatorControl.getControlResource() |
IResource |
NumberDataTypeValidatorControl.getControlResource() |
IResource |
RegularExpressionValidatorControl.getControlResource() |
IResource |
RequiredValueValidatorControl.getControlResource() |
IResource |
RequiredValuesDescriptorControl.getControlResource() |
protected String[] |
DateCompareValidatorControl.getDefaultMessageParameters() |
protected String[] |
DateDataTypeValidatorControl.getDefaultMessageParameters() |
protected String[] |
FileSizeValidatorControl.getDefaultMessageParameters() |
protected String[] |
IntegerDataTypeValidatorControl.getDefaultMessageParameters() |
protected String[] |
LengthValidatorControl.getDefaultMessageParameters() |
protected String[] |
NumberDataTypeValidatorControl.getDefaultMessageParameters() |
protected ValidationMessages |
DateCompareValidatorControl.getDefaultMessages(String errorType) |
protected ValidationMessages |
DateDataTypeValidatorControl.getDefaultMessages(String errorType) |
protected ValidationMessages |
EmailValidatorControl.getDefaultMessages(String errorType) |
protected ValidationMessages |
FileNameValidatorControl.getDefaultMessages(String errorType) |
protected ValidationMessages |
FileSizeValidatorControl.getDefaultMessages(String errorType) |
protected ValidationMessages |
IntegerDataTypeValidatorControl.getDefaultMessages(String errorType) |
protected ValidationMessages |
LengthValidatorControl.getDefaultMessages(String errorType) |
protected ValidationMessages |
NumberDataTypeValidatorControl.getDefaultMessages(String errorType) |
protected ValidationMessages |
RegularExpressionValidatorControl.getDefaultMessages(String errorType) |
protected ValidationMessages |
RequiredValueValidatorControl.getDefaultMessages(String errorType) |
String |
DateCompareValidatorControl.getScriptValidationFunctionImplementation() |
String |
DateDataTypeValidatorControl.getScriptValidationFunctionImplementation() |
String |
FileSizeValidatorControl.getScriptValidationFunctionImplementation() |
String |
HtmlEditorValidatorControl.getScriptValidationFunctionImplementation() |
String |
IntegerDataTypeValidatorControl.getScriptValidationFunctionImplementation() |
String |
LengthValidatorControl.getScriptValidationFunctionImplementation() |
String |
NumberDataTypeValidatorControl.getScriptValidationFunctionImplementation() |
String |
RegularExpressionValidatorControl.getScriptValidationFunctionImplementation() |
String |
RequiredValueValidatorControl.getScriptValidationFunctionImplementation() |
String |
RequiredValueWhenVisibleValidatorControl.getScriptValidationFunctionImplementation()
The script validation client side function calls the method
LumisIsControlVisible passing the id of the control that is being
validated.
|
protected void |
DateCompareValidatorControl.includeScripts() |
protected void |
DateDataTypeValidatorControl.includeScripts() |
protected void |
IntegerDataTypeValidatorControl.includeScripts() |
protected void |
LengthValidatorControl.includeScripts() |
protected void |
NumberDataTypeValidatorControl.includeScripts() |
protected void |
RequiredValueWhenVisibleValidatorControl.includeScripts()
Includes LumisDouiRequiredValueWhenVisibleValidator.js script which
implements the LumisIsControlVisible(controlElement) client side function
that returns true or false depending on the visibility of the given
validated control.
|
void |
DateCompareValidatorControl.init(Node controlDefinitionNode,
ControlContainer controlContainer,
IControl parentControl) |
void |
DateDataTypeValidatorControl.init(Node controlDefinitionNode,
ControlContainer controlContainer,
IControl parentControl) |
void |
EmailValidatorControl.init(Node controlDefinitionNode,
ControlContainer controlContainer,
IControl parentControl) |
void |
FileNameValidatorControl.init(Node controlDefinitionNode,
ControlContainer controlContainer,
IControl parentControl) |
void |
FileSizeValidatorControl.init(Node controlDefinitionNode,
ControlContainer controlContainer,
IControl parentControl) |
void |
IntegerDataTypeValidatorControl.init(Node controlDefinitionNode,
ControlContainer controlContainer,
IControl parentControl) |
void |
LengthValidatorControl.init(Node controlDefinitionNode,
ControlContainer controlContainer,
IControl parentControl) |
void |
NumberDataTypeValidatorControl.init(Node controlDefinitionNode,
ControlContainer controlContainer,
IControl parentControl) |
void |
RegularExpressionValidatorControl.init(Node controlDefinitionNode,
ControlContainer controlContainer,
IControl parentControl) |
void |
RequiredValuesDescriptorControl.setRenderData() |
Modifier and Type | Method and Description |
---|---|
protected void |
DouiControlControllerXml.register(Node methodNode,
ITransaction portalTransaction) |
protected void |
DouiControllerXml.register(Node methodNode,
ITransaction portalTransaction) |
protected void |
DouiSourceControllerXml.register(Node methodNode,
ITransaction portalTransaction) |
Constructor and Description |
---|
DouiControlControllerXml(HttpServletRequest request,
HttpServletResponse response,
PageContext pageContext) |
DouiControllerXml(HttpServletRequest request,
HttpServletResponse response,
PageContext pageContext) |
DouiSourceControllerXml(HttpServletRequest request,
HttpServletResponse response,
PageContext pageContext) |
Modifier and Type | Method and Description |
---|---|
void |
DouiDaoHib.addOrUpdate(DouiConfig douiConfig,
ITransaction transaction) |
void |
DouiDaoJdbc.addOrUpdate(DouiConfig douiConfig,
ITransaction daoTransaction) |
void |
IDouiDao.addOrUpdate(DouiConfig definition,
ITransaction daoTransaction) |
boolean |
DouiDaoHib.delete(String serviceId,
ITransaction transaction) |
boolean |
DouiDaoJdbc.delete(String serviceId,
ITransaction transaction) |
boolean |
IDouiDao.delete(String serviceId,
ITransaction daoTransaction) |
DouiConfig |
DouiDaoHib.get(String serviceId,
ITransaction transaction) |
DouiConfig |
DouiDaoJdbc.get(String serviceId,
ITransaction daoTransaction) |
DouiConfig |
IDouiDao.get(String serviceId,
ITransaction daoTransaction) |
static IControlDao |
DouiDaoFactory.getControlDao() |
static IDouiDao |
DouiDaoFactory.getDouiConfigDao() |
static IDouiContentTreeDao |
DouiDaoFactory.getDouiContentTreeDao() |
static IProcessActionDao |
DouiDaoFactory.getProcessActionDao() |
static ISourceDao |
DouiDaoFactory.getSourceDao() |
static ITableDao |
DouiDaoFactory.getTableDao() |
Modifier and Type | Method and Description |
---|---|
static IDouiDataType |
DouiDataTypeFactory.getInstance(String id)
Creates and returns a doui data type instance.
|
Modifier and Type | Method and Description |
---|---|
HyperLinkConfig |
DouiHyperlink.getHyperLinkConfig(Node hyperLinkNode) |
protected Node |
DouiHyperlink.getHyperlinkNode(String sourceId,
String fieldId) |
String |
DouiHyperlink.getOnClick(String sourceId,
String fieldId,
ISourceData data,
String identifier) |
String |
DouiHyperlink.getTarget(String sourceId,
String fieldId,
ISourceData data,
String identifier) |
PreparedUrl |
DouiHyperlink.getUrl(String sourceId,
String fieldId) |
Modifier and Type | Method and Description |
---|---|
protected void |
ProcessActionHandler.addDefaultResponse()
Sets the default response parameters based on the node specifications.
|
void |
IProcessActionDao.addOrUpdate(ProcessActionConfig definition,
ITransaction daoTransaction) |
void |
ProcessActionDaoJdbc.addOrUpdate(ProcessActionConfig definition,
ITransaction daoTransaction) |
void |
ProcessActionHandler.addResponseParameter(String name,
String value)
Adds the given name and value to the response parameters.
|
protected boolean |
ProcessActionHandler.checkServiceInstancePermission(String permissionId)
Returns true if the current user has the given permission.
|
protected boolean |
ProcessActionHandler.checkServiceInstancePermission(String userId,
String permissionId)
Returns true if the given user has the given permission.
|
static IProcessActionHandler |
ProcessActionHandlerFactory.createProcessAction(Node processActionDefinitionNode,
ProcessActionContainer processActionContainer) |
void |
IProcessActionDao.delete(String processActionId,
ITransaction daoTransaction) |
void |
ProcessActionDaoJdbc.delete(String processActionId,
ITransaction daoTransaction) |
ProcessActionConfig |
IProcessActionDao.get(String processActionId,
ITransaction daoTransaction) |
ProcessActionConfig |
IProcessActionManager.get(String processActionType,
ITransaction transaction) |
ProcessActionConfig |
ProcessActionDaoJdbc.get(String processActionId,
ITransaction daoTransaction) |
ProcessActionConfig |
ProcessActionManager.get(String processActionType,
ITransaction transaction) |
String |
IProcessActionHandler.getId()
Returns the identifier for the process action handler.
|
String |
ProcessActionHandler.getId() |
List<Node> |
ProcessActionContainer.getProcessActionHandlerDefinitionNodesByActionId(String processActionId) |
Set<String> |
ProcessActionContainer.getProcessActionIds() |
protected IResource |
ProcessActionHandler.getResource()
Returns the interface resource.
|
protected IServiceInterfaceUrl |
ProcessActionHandler.getServiceInterfaceHyperLink(String destInterfaceId) |
protected IServiceInterfaceUrl |
ProcessActionHandler.getUrl(Node actionResponseNode,
String destInterfaceId) |
void |
IProcessActionHandler.init(Node processActionNode,
ProcessActionContainer processActionContainer)
Called by the process action container to initialize the process action.
|
void |
ProcessActionHandler.init(Node processActionNode,
ProcessActionContainer processActionContainer) |
protected String |
ProcessActionHandler.localize(String stringToLocalize)
Localizes the string based on the interface resource.
|
void |
GenericProcessActionHandler.processAction() |
void |
IProcessActionHandler.processAction()
Executes the process action.
|
void |
SelectRepositoryProcessActionHandler.processAction() |
protected void |
ProcessActionContainer.processAction(Node processActionNode) |
void |
ProcessActionContainer.processActions() |
void |
ProcessActionContainer.processActions(String processActionId) |
protected void |
ProcessActionHandler.processHyperLinkResponse(Node actionResponseNode,
String destInterfaceId) |
protected void |
ProcessActionHandler.processPopupInterfaceResponse(Node actionResponseNode,
String destInterfaceId) |
void |
IProcessActionManager.registerProcessActions(SessionConfig sessionConfig,
String processActionTypesDefinitionPath,
ITransaction transaction) |
void |
ProcessActionManager.registerProcessActions(SessionConfig sessionConfig,
String processActionTypesDefinitionPath,
ITransaction transaction) |
protected Object |
ProcessActionHandler.resolveFieldValueNode(Node fieldValueNode)
Resolves the value for a
fieldValue node. |
void |
IProcessActionManager.unregisterProcessAction(SessionConfig sessionConfig,
String processActionType,
ITransaction transaction) |
void |
ProcessActionManager.unregisterProcessAction(SessionConfig sessionConfig,
String processActionType,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
IConverter |
IRenderer.getConverter()
Returns the default converter to be used with the renderable data.
|
String |
CharSequenceRenderableWrapper.getDisplayString(IRenderer renderer) |
String |
IRenderable.getDisplayString(IRenderer renderer)
Returns the string to be displayed for representing this instance, when
a short display is required.
|
String |
RenderDataValue.getDisplayString(IRenderer renderer) |
String |
CharSequenceRenderableWrapper.getRenderData(IRenderer renderer) |
String |
IRenderable.getRenderData(IRenderer renderer)
Returns the data of this object in a standard xml format.
|
String |
RenderDataValue.getRenderData(IRenderer renderer) |
List<IResource> |
IRenderer.getResources()
Returns the localization resources to be used in the value render.
|
ISourceContext |
IRenderer.getSourceContext()
Returns the source context where this renderer belongs to.
|
Modifier and Type | Method and Description |
---|---|
protected void |
DouiTabularSourceSearchContentFiller.addAttachmentGroup(Collection<SearchContentAttachment> attachments)
Deprecated.
Add attachments in
searchContents . |
protected void |
DouiTabularSourceSearchContentFiller.addField(SearchContentField field)
Deprecated.
|
protected void |
DouiTabularSourceSearchContentFiller.addFieldGroup(List<SearchContentField> fields)
Deprecated.
|
protected void |
DouiTabularSourceSearchContentFiller.addFieldGroups(List<List<SearchContentField>> fields)
Deprecated.
|
protected void |
DouiTabularSourceSearchContentFiller.addIdField()
Deprecated.
|
protected void |
DouiTabularSourceSearchContentFiller.addLanguageField()
Deprecated.
|
protected void |
DouiTabularSourceSearchContentFiller.addPortalConfigPathField()
Deprecated.
|
protected void |
DouiTabularSourceSearchContentFiller.addPrincipalField()
Deprecated.
Adds the
IDouiIndexer.FIELDNAME_PRINCIPAL field to the
SearchContent being indexed. |
protected void |
DouiTabularSourceSearchContentFiller.addPublishStartDateField()
Deprecated.
Adds a publish start date field, if the
DouiTabularSourceSearchContentFiller.tabularSource contains a
field that contains an attribute isPublishStartDate with the
value true |
protected void |
DouiTabularSourceSearchContentFiller.addSearchableFields()
Deprecated.
|
protected void |
DouiTabularSourceSearchContentFiller.addServiceInstanceField(boolean forAdd)
Deprecated.
|
protected void |
DouiTabularSourceSearchContentFiller.addStatusField()
Deprecated.
|
protected void |
DouiTabularSourceSearchContentFiller.addSubtitleField()
Deprecated.
|
protected void |
DouiTabularSourceSearchContentFiller.addTitleField()
Deprecated.
|
protected void |
DouiTabularSourceSearchContentFiller.addUrlField()
Deprecated.
|
protected TabularData |
SearchSource.convertDataToDefinedDataTypes(TabularData originalData) |
static ISourceSearchContentFiller |
SourceSearchContentFillerFactory.create(String className)
Deprecated.
|
boolean |
SearchQueryValidatorControl.doServerValidation() |
protected String |
SearchAggregationControl.getAggregatedValuesXML(DocumentTypeField field,
Set<Object> aggregatedValues)
Returns a XML string containing the aggregated values (user's applied filters).
The expected XML string format is as follows: |
protected String |
SearchAggregationControl.getAggregationResultXML(DocumentTypeField field,
IAggregationResult result)
Returns a XML string of the given aggregation results for the given field.
The expected XML string format is as follows: |
protected List<IAggregation> |
SearchAggregationControl.getAggregations()
Returns the aggregations that will be performed in search.
|
protected String |
DouiTabularSourceSearchContentFiller.getContentUrl(String serviceInstanceId)
Deprecated.
|
protected String[] |
SearchQueryValidatorControl.getDefaultMessageParameters() |
protected ValidationMessages |
SearchQueryValidatorControl.getDefaultMessages(String errorType) |
protected String |
SearchSource.getDefaultProviderClass() |
protected Map<DocumentTypeField,Float> |
SearchDataProvider.getFieldsBoost(SessionConfig sessionConfig,
SearchSource searchSource,
ServiceInstanceConfig searchServiceInstanceConfig,
ITransaction transaction)
Returns the fields boosts configuration.
|
static Map<DocumentTypeField,Float> |
SearchQueryUtil.getFieldsBoost(SessionConfig sessionConfig,
String serviceInstanceId,
ITransaction transaction)
Returns the fields boosts of the given service instance or
null if the user is using the default configuration. |
protected Collection<DocumentTypeField> |
SearchAggregationControl.getFieldsToBeAggregated()
Returns a collection of fields that will be aggregated in search.
|
protected String |
DouiTabularSourceSearchContentFiller.getHyperlinkItemId()
Deprecated.
|
protected String |
SearchDataProvider.getMainPublishedContextUrlValue(ISearchHit hit)
Returns the main context URL value that user has access permission.
|
protected Object |
SearchDataProvider.getPublications(ISearchHit hit,
ISourceData row,
SearchSource searchSource)
Returns the publications of the given search hit.
|
protected Collection<String> |
SearchDataProvider.getPublishedContextIdsIncludedInSearch(SearchSource searchSource,
ServiceInstanceConfig searchServiceInstanceConfig)
Returns the identifiers of the published contexts that should be included in search.
|
String |
SearchQueryValidatorControl.getScriptValidationFunctionImplementation() |
protected Collection<String> |
DouiTabularSourceSearchContentFiller.getSearchContentIds()
Deprecated.
|
List<SearchContent> |
ISourceSearchContentFiller.getSearchContentsForAdd()
Deprecated.
|
List<SearchContent> |
DouiTabularSourceSearchContentFiller.getSearchContentsForAdd()
Deprecated.
|
List<SearchContent> |
ISourceSearchContentFiller.getSearchContentsForRemove()
Deprecated.
|
List<SearchContent> |
DouiTabularSourceSearchContentFiller.getSearchContentsForRemove()
Deprecated.
|
String |
SearchSource.getSearcherEngineId() |
SearchSource.SearchScope |
SearchSource.getSearcherScope() |
static IMonitor |
SearchMonitorUtil.getSearchMonitor(String searchQuery,
ITransaction transaction)
Returns a monitor for the "lumis.portal.monitor.ev.search" event.
|
protected IMonitor |
SearchDataProvider.getSearchMonitor(String userQuery,
String unparsedUserQuery,
SearchSource searchSource,
ITransaction transaction)
Returns the
monitor object to be used in monitoring or null if the search will not be monitored. |
static SearchQuery |
SearchQueryUtil.getSearchQuery(String userQuery,
Map<DocumentTypeField,Float> fieldsBoost,
ServiceInstanceConfig searchServiceInstanceConfig,
Collection<String> publishedContextIds,
Collection<SearchQuerySort> sorts,
int startAt,
int maxRows)
Returns the search query using the given parameters.
|
static SearchQuery |
SearchQueryUtil.getSearchQuery(String userQuery,
Map<DocumentTypeField,Float> fieldsBoost,
ServiceInstanceConfig searchServiceInstanceConfig,
Collection<String> publishedContextIds,
Collection<SearchQuerySort> sorts,
int startAt,
int maxRows,
boolean forceIncludePublishedContexts)
Returns the search query using the given parameters.
|
static SearchQuery |
SearchQueryUtil.getSearchQuery(String userQuery,
ServiceInstanceConfig searchServiceInstanceConfig,
Collection<String> publishedContextIds,
Collection<SearchQuerySort> sorts,
int startAt,
int maxRows)
Returns the search query using the given parameters.
|
static SearchQuery |
SearchQueryUtil.getSearchQuery(String userQuery,
ServiceInstanceConfig searchServiceInstanceConfig,
Collection<String> publishedContextIds,
Collection<SearchQuerySort> sorts,
int startAt,
int maxRows,
boolean forceIncludePublishedContexts)
Returns the search query using the given parameters.
|
protected ServiceInstanceConfig |
SearchDataProvider.getSearchServiceInstance(SessionConfig sessionConfig,
SearchSource searchSource,
ITransaction transaction)
Returns the search service instance.
|
void |
ISourceSearchContentFiller.init(ISourceData sourceData,
Source source)
Deprecated.
|
void |
DouiTabularSourceSearchContentFiller.init(ISourceData sourceData,
Source source)
Deprecated.
|
void |
SearchQueryValidatorControl.init(Node controlDefinitionNode,
ControlContainer controlContainer,
IControl parentControl) |
void |
SearchDataProvider.loadData(SessionConfig sessionConfig,
SearchSource searchSource,
ITransaction transaction) |
void |
SearchAggregationControl.loadFromRequest() |
protected void |
SearchDataProvider.populateRow(SessionConfig sessionConfig,
ISourceData row,
ISearchHit hit,
Set<String> fieldIds,
SearchSource searchSource,
ITransaction transaction)
Populate the given row with the given search hit.
|
protected void |
SearchDataProvider.populateRowField(SessionConfig sessionConfig,
ISourceData row,
ISearchHit hit,
String fieldId,
SearchSource searchSource,
ITransaction transaction)
Populates the given field within the row with the given hit.
|
protected void |
SearchProcessActionHandler.processHyperLinkResponse(Node actionResponseNode,
String destInterfaceId) |
static void |
SearchQueryUtil.setFieldsBoost(SessionConfig sessionConfig,
Map<DocumentTypeField,Float> boosts,
String serviceInstanceId,
ITransaction transaction)
Sets the given fields boosts in the given service instance.
|
void |
SearchAggregationControl.setRenderData() |
protected void |
SearchAggregationControl.setSourceParameter(Source source,
String parameterName) |
protected void |
SearchAggregationControl.setValueFromSource() |
Constructor and Description |
---|
SearchSource(Node sourceDefinitionNode,
ISourceContext sourceContext) |
Modifier and Type | Method and Description |
---|---|
protected boolean |
DouiAdministrationAddPropertyPageServiceInterface.addDefaultControls(Node serviceInterfaceDouiDefinitionNode,
Node serviceDouiDefinitionNode,
Node serviceInterfaceXmlNode) |
protected boolean |
DouiAdministrationEditPropertyPageServiceInterface.addDefaultControls(Node serviceInterfaceDouiDefinitionNode,
Node serviceDouiDefinitionNode,
Node serviceInterfaceXmlNode) |
protected boolean |
DouiAdministrationEmbeddedAddPropertyPageServiceInterface.addDefaultControls(Node serviceInterfaceDouiDefinitionNode,
Node serviceDouiDefinitionNode,
Node serviceInterfaceXmlNode) |
protected boolean |
DouiAdministrationListServiceInterface.addDefaultControls(Node serviceInterfaceDouiDefinitionNode,
Node serviceDouiDefinitionNode,
Node serviceInterfaceXmlNode) |
protected boolean |
DouiDetailsServiceInterface.addDefaultControls(Node serviceInterfaceDouiDefinitionNode,
Node serviceDouiDefinitionNode,
Node serviceInterfaceXmlNode) |
protected boolean |
DouiGenericListServiceInterface.addDefaultControls(Node serviceInterfaceDouiDefinitionNode,
Node serviceDouiDefinitionNode,
Node serviceInterfaceXmlNode) |
protected boolean |
DouiQuickListServiceInterface.addDefaultControls(Node serviceInterfaceDouiDefinitionNode,
Node serviceDouiDefinitionNode,
Node serviceInterfaceXmlNode) |
protected boolean |
DouiServiceInterface.addDefaultControls(Node serviceInterfaceDouiDefinitionNode,
Node serviceDouiDefinitionNode,
Node serviceInterfaceXmlNode) |
void |
DouiService.addDefaultDouiDefinitionValues(SessionConfig sessionConfig,
ServiceConfig serviceConfig,
Node douiDefinitionNode,
ITransaction transaction) |
void |
IDouiService.addDefaultDouiDefinitionValues(SessionConfig sessionConfig,
ServiceConfig serviceConfig,
Node douiDefinitionNode,
ITransaction transaction) |
void |
DouiServiceInterface.addDefaultDouiDefinitionValues(SessionConfig sessionConfig,
ServiceInterfaceConfig serviceInterfaceConfig,
Node douiDefinitionNode,
ITransaction transaction) |
void |
IDouiServiceInterface.addDefaultDouiDefinitionValues(SessionConfig sessionConfig,
ServiceInterfaceConfig serviceInterfaceConfig,
Node douiDefinitionNode,
ITransaction transaction) |
protected boolean |
DouiAdministrationListServiceInterface.addDefaultFields(Node serviceInterfaceSourceNode,
Node serviceDouiDefinitionNode,
Node serviceInterfaceXmlNode) |
protected boolean |
DouiDetailsServiceInterface.addDefaultFields(Node serviceInterfaceSourceNode,
Node serviceDouiDefinitionNode,
Node serviceInterfaceXmlNode) |
protected boolean |
DouiGenericListServiceInterface.addDefaultFields(Node serviceInterfaceSourceNode,
Node serviceDouiDefinitionNode,
Node serviceInterfaceXmlNode) |
protected boolean |
DouiServiceInterface.addDefaultFields(Node serviceInterfaceSourceNode,
Node serviceDouiDefinitionNode,
Node serviceInterfaceXmlNode) |
protected boolean |
DouiAdministrationEditPropertyPageServiceInterface.addDefaultFilters(Node serviceInterfaceSourceNode,
Node serviceDouiDefinitionNode,
Node serviceInterfaceXmlNode) |
protected boolean |
DouiAdministrationListServiceInterface.addDefaultFilters(Node serviceInterfaceSourceNode,
Node serviceDouiDefinitionNode,
Node serviceInterfaceXmlNode) |
protected boolean |
DouiDetailsServiceInterface.addDefaultFilters(Node serviceInterfaceSourceNode,
Node serviceDouiDefinitionNode,
Node serviceInterfaceXmlNode) |
protected boolean |
DouiServiceInterface.addDefaultFilters(Node serviceInterfaceSourceNode,
Node serviceDouiDefinitionNode,
Node serviceInterfaceXmlNode) |
protected boolean |
DouiGenericListServiceInterface.addDefaultHyperLinks(Node serviceInterfaceDouiDefinitionNode,
Node serviceDouiDefinitionNode,
ITransaction transaction) |
protected boolean |
DouiServiceInterface.addDefaultHyperLinks(Node serviceInterfaceDouiDefinitionNode,
Node serviceDouiDefinitionNode,
ITransaction transaction) |
protected Node |
DouiServiceInterface.addDefaultInterfaceDouiDefinitionNode(String serviceInterfaceId,
Node serviceDouiDefinitionNode) |
protected boolean |
DouiDetailsServiceInterface.addDefaultMaxRows(Node serviceInterfaceSourceNode,
Node serviceDouiDefinitionNode,
Node serviceInterfaceXmlNode) |
protected boolean |
DouiServiceInterface.addDefaultMaxRows(Node serviceInterfaceSourceNode,
Node serviceDouiDefinitionNode,
Node serviceInterfaceXmlNode) |
protected boolean |
DouiGenericListServiceInterface.addDefaultOrderBy(Node serviceInterfaceSourceNode,
Node serviceDouiDefinitionNode,
Node serviceInterfaceXmlNode) |
protected boolean |
DouiServiceInterface.addDefaultOrderBy(Node serviceInterfaceSourceNode,
Node serviceDouiDefinitionNode,
Node serviceInterfaceXmlNode) |
protected boolean |
DouiServiceInterface.addDefaultPostLoadProcessors(Node serviceInterfaceSourceNode,
Node serviceDouiDefinitionNode,
Node serviceInterfaceXmlNode)
Adds the default post load processors to the given source node.
|
protected void |
DouiAdministrationAddPropertyPageServiceInterface.addDefaultProcessActionResponses(StringBuilder processActionsXml) |
protected void |
DouiAdministrationEditPropertyPageServiceInterface.addDefaultProcessActionResponses(StringBuilder processActionsXml) |
protected void |
DouiAdministrationEmbeddedAddPropertyPageServiceInterface.addDefaultProcessActionResponses(StringBuilder processActionsXml) |
protected boolean |
DouiAdministrationAddPropertyPageServiceInterface.addDefaultProcessActions(Node serviceInterfaceDouiDefinitionNode,
Node serviceDouiDefinitionNode,
Node serviceInterfaceXmlNode) |
protected boolean |
DouiAdministrationEditPropertyPageServiceInterface.addDefaultProcessActions(Node serviceInterfaceDouiDefinitionNode,
Node serviceDouiDefinitionNode,
Node serviceInterfaceXmlNode) |
protected boolean |
DouiAdministrationListServiceInterface.addDefaultProcessActions(Node serviceInterfaceDouiDefinitionNode,
Node serviceDouiDefinitionNode,
Node serviceInterfaceXmlNode) |
protected boolean |
DouiServiceInterface.addDefaultProcessActions(Node serviceInterfaceDouiDefinitionNode,
Node serviceDouiDefinitionNode,
Node serviceInterfaceXmlNode) |
protected boolean |
DouiAdministrationAddPropertyPageServiceInterface.addDefaultSources(Node serviceInterfaceDouiDefinitionNode,
Node serviceDouiDefinitionNode,
Node serviceInterfaceXmlNode) |
protected boolean |
DouiServiceInterface.addDefaultSources(Node serviceInterfaceDouiDefinitionNode,
Node serviceDouiDefinitionNode,
Node serviceInterfaceXmlNode) |
protected boolean |
DouiServiceInterface.addDetailsHyperLink(Node serviceInterfaceDouiDefinitionNode,
Node serviceDouiDefinitionNode,
ITransaction transaction) |
protected boolean |
DouiServiceInterface.addPrimaryKeyFilter(Node serviceInterfaceSourceNode,
Node serviceDouiDefinitionNode,
Node serviceInterfaceXmlNode) |
void |
DouiService.autoAddDependencies(SessionConfig sessionConfig,
ServiceInstanceConfig config,
ITransaction transaction) |
protected DouiContext |
DouiServiceInterface.getContext(IServiceInterfaceRequest request,
IServiceInterfaceResponse response,
ITransaction transaction)
Instantiate DouiContext with the current request and response.
|
Node |
DouiServiceInterfaceInstanceDefinition.getControlsDefinitionNode() |
protected String |
DouiAdministrationPropertyPageServiceInterface.getCustomMenu(SessionConfig sessionConfig,
ServiceInterfaceInstanceConfig config,
ITransaction transaction) |
protected String |
DouiDetailsServiceInterface.getCustomMenu(SessionConfig sessionConfig,
ServiceInterfaceInstanceConfig config,
ITransaction transaction) |
protected String |
DouiGenericListServiceInterface.getCustomMenu(SessionConfig sessionConfig,
ServiceInterfaceInstanceConfig config,
ITransaction transaction) |
protected String |
DouiServiceInterface.getCustomMenu(SessionConfig sessionConfig,
ServiceInterfaceInstanceConfig config,
ITransaction transaction) |
Element |
DouiService.getDefaultServiceInstanceMenu(ServiceInstanceConfig serviceInstance) |
protected void |
DouiInterfaceDefinition.getFilterNodes(Node node,
HashSet<String> usedFields)
Search whithin the filters XML structure of a source for the field Ids being referenced.
|
Node[] |
DouiServiceInterfaceInstanceDefinition.getHyperlinkDefinitionNodes() |
Node |
DouiServiceInterfaceInstanceDefinition.getHyperlinksDefinitionNode() |
protected Node |
DouiServiceInterface.getInterfaceSourceFieldsNode(Node serviceDouiDefinitionNode,
Node serviceInterfaceSourceNode)
Utility method that merges the fields in the given nodes and returns the merged resultant node.
|
Node |
DouiServiceInterface.getMenu(SessionConfig sessionConfig,
ServiceInterfaceInstanceConfig config,
ITransaction transaction) |
Node[] |
DouiServiceInterfaceInstanceDefinition.getProcessActionDefinitionNodes(String processActionId) |
Node |
DouiServiceInterfaceInstanceDefinition.getProcessActionsDefinitionNode() |
Node[] |
DouiServiceInterfaceInstanceDefinition.getRenderActionDefinitionNodes(String renderActionId) |
String |
DouiServiceInterface.getRepositoryMenus(SessionConfig sessionConfig,
ServiceInterfaceInstanceConfig config,
ITransaction transaction) |
protected void |
DouiServiceInterface.initDouiContext(DouiContext douiContext)
Initialize the Doui context, source container and control container.
|
protected void |
DouiInterfaceDefinition.insertCustomFilters(Node newSourceNode,
Node interfaceSourceNode) |
protected void |
DouiServiceInterfaceInstanceDefinition.insertCustomFilters(Node newSourceNode,
Node interfaceSourceNode) |
protected void |
DouiInterfaceDefinition.insertCustomMaxRows(Node newSourceNode,
Node interfaceSourceNode) |
protected void |
DouiRestInterfaceDefinition.insertCustomMaxRows(Node newSourceNode,
Node interfaceSourceNode) |
protected void |
DouiServiceInterfaceInstanceDefinition.insertCustomMaxRows(Node newSourceNode,
Node interfaceSourceNode) |
protected void |
DouiInterfaceDefinition.insertCustomOrderBy(Node newSourceNode,
Node interfaceSourceNode) |
protected void |
DouiServiceInterfaceInstanceDefinition.insertCustomOrderBy(Node newSourceNode,
Node interfaceSourceNode) |
protected void |
DouiInterfaceDefinition.insertDependantFields(Node newSourceNode,
Node originalDouiServiceInterfaceDefinitionNode)
Includes the fields used by filters and order by customizations.
|
void |
DouiService.instanceAdded(SessionConfig sessionConfig,
ServiceInstanceConfig config,
ITransaction transaction) |
void |
DouiService.instanceDeleted(SessionConfig sessionConfig,
ServiceInstanceConfig config,
ITransaction transaction) |
void |
DouiService.instanceDeserialized(ServiceInstanceDeserializationContext serviceInstanceDeserializationContext) |
protected void |
DouiServiceInterface.loadFromRequest(DouiContext douiContext)
Load controls from request.
|
protected void |
DouiServiceInterface.loadSources(DouiContext douiContext)
Load sources.
|
protected void |
DouiInterfaceDefinition.mergeFieldNodes(Node mergeFromFieldNode,
Node mergeToFieldNode,
boolean replace) |
protected void |
DouiInterfaceDefinition.mergeFields(Node mergeFromSourceNode,
Node mergeToSourceNode) |
protected void |
DouiServiceInterfaceInstanceDefinition.mergeFields(Node mergeFromSourceNode,
Node mergeToSourceNode) |
protected void |
DouiInterfaceDefinition.mergePostLoadProcessors(Node newSourceNode,
Node interfaceSourceNode) |
protected void |
DouiInterfaceDefinition.mergeSearch(Node newSourceNode,
Node interfaceSourceNode) |
protected void |
DouiInterfaceDefinition.mergeSourceDefinition(Node interfaceSourceNode,
Node interfaceSourcesNode,
Node originalDouiServiceInterfaceDefinitionNode) |
protected void |
DouiInterfaceDefinition.mergeSourceDefinitions(Node douiServiceInterfaceDefinitionNode,
Node originalDouiServiceInterfaceDefinitionNode) |
static void |
DouiServiceInterfaceInstanceDefinition.mergeSourceFields(Node mergeFromSourceNode,
Node mergeToSourceNode)
Merges the fields in the mergeFromSourceNode to the mergeToSourceNode.
|
void |
DouiService.postRegister(SessionConfig sessionConfig,
ServiceConfig serviceConfig,
ITransaction transaction) |
void |
DouiService.preUnregister(SessionConfig sessionConfig,
ITransaction transaction) |
void |
IDouiDefinitionProcessor.process(DouiServiceInterfaceInstanceDefinition definition,
Node node)
Process the definition node.
|
void |
DouiServiceInterface.processAction(IServiceInterfaceActionRequest request,
IServiceInterfaceActionResponse response)
Called by the service interface container to allow the service interface to process an action
request.
|
protected void |
DouiServiceInterface.processActions(DouiContext douiContext)
Process actions.
|
void |
DouiRestInterfaceDefinition.processNodes(IDouiDefinitionProcessor processor,
Node douiInterfaceDefinitionNode)
Allows the processing of the doui definition stored in this instance.
|
void |
DouiServiceInterfaceInstanceDefinition.processNodes(IDouiDefinitionProcessor processor,
Node douiInterfaceDefinitionNode)
Allows the processing of the doui definition stored in this instance.
|
void |
DouiAdministrationListServiceInterface.register(SessionConfig sessionConfig,
Node serviceInterfaceXmlNode,
ITransaction transaction) |
void |
DouiAdministrationPropertyPageServiceInterface.register(SessionConfig sessionConfig,
Node serviceInterfaceXmlNode,
ITransaction transaction) |
void |
DouiDetailsServiceInterface.register(SessionConfig sessionConfig,
Node serviceInterfaceXmlNode,
ITransaction transaction) |
void |
DouiGenericListServiceInterface.register(SessionConfig sessionConfig,
Node serviceInterfaceXmlNode,
ITransaction transaction) |
void |
DouiListServiceInterface.register(SessionConfig sessionConfig,
Node serviceInterfaceXmlNode,
ITransaction transaction) |
void |
DouiQuickListServiceInterface.register(SessionConfig sessionConfig,
Node serviceInterfaceXmlNode,
ITransaction transaction) |
void |
DouiServiceInterface.register(SessionConfig sessionConfig,
Node serviceInterfaceXmlNode,
ITransaction transaction) |
void |
DouiServiceInterface.render(IServiceInterfaceRenderRequest request,
IServiceInterfaceRenderResponse response)
Called by the service interface container to allow the service interface to generate the
content of the response based on its current state.
|
void |
DouiServiceInterface.renderBefore(IServiceInterfaceRenderRequest request,
IServiceInterfaceRenderResponse response)
Called by the service interface container before rendering the interface client side.
|
protected void |
DouiServiceInterface.renderData(IServiceInterfaceRenderResponse response,
DouiContext douiContext)
Render data.
|
protected String |
DouiHyperLinkResolver.resolveDestinationInterfaceId(SessionConfig sessionConfig,
HyperLinkConfig hyperLinkConfig,
ITransaction transaction) |
IServiceInterfaceUrl |
DouiService.resolveHyperLink(SessionConfig sessionConfig,
HyperLinkConfig hyperLinkConfig,
ITransaction transaction)
Resolves an hyperlink to the corresponding URL.
|
protected void |
DouiService.setDataTypeAttributes(Node douiDefinitionNode,
ITransaction transaction)
Replace number data type for integer data type, for backward compatibility.
|
protected void |
DouiService.setDisplayAttributes(Node douiDefinitionNode,
ITransaction transaction) |
protected void |
DouiService.setIncludeAlwaysAttributes(Node douiDefinitionNode,
ITransaction transaction) |
protected void |
DouiAdministrationEmbeddedAddPropertyPageServiceInterface.setIsAdministrationProperty(Node serviceInterfaceXmlNode) |
protected void |
DouiAdministrationPropertyPageServiceInterface.setIsAdministrationProperty(Node serviceInterfaceXmlNode) |
protected void |
DouiGenericListServiceInterface.setIsListProperty(Node serviceInterfaceXmlNode) |
protected void |
DouiAdministrationEmbeddedAddPropertyPageServiceInterface.setIsRuntimeOnlyProperty(Node serviceInterfaceXmlNode) |
protected void |
DouiAdministrationPropertyPageServiceInterface.setIsRuntimeOnlyProperty(Node serviceInterfaceXmlNode) |
protected void |
DouiService.setLookupAttributes(Node douiDefinitionNode,
ITransaction transaction) |
protected void |
DouiService.setPositionAttributes(Node douiDefinitionNode,
ITransaction transaction)
Sets default attribute values for position field.
|
protected void |
DouiService.setPriorityOptions(Node douiDefinitionNode,
ITransaction transaction) |
protected void |
DouiService.setSourceFieldAttributes(SessionConfig sessionConfig,
ServiceConfig serviceConfig,
Node douiDefinitionNode,
ITransaction transaction) |
protected void |
DouiHyperLinkResolver.setUrlParameters(SessionConfig sessionConfig,
IServiceInterfaceUrl url,
Map<String,String[]> parameters,
ITransaction transaction) |
protected void |
DouiService.setValidationAttributes(Node douiDefinitionNode,
ITransaction transaction) |
boolean |
DouiService.usesDocumentService(ITransaction transaction) |
boolean |
IDouiService.usesDocumentService(ITransaction transaction)
Indicates if this service uses a document service (as repository, for example).
|
boolean |
DouiService.usesFileManager(ITransaction transaction) |
boolean |
IDouiService.usesFileManager(ITransaction transaction)
Indicates if this service uses the
FileManager file storage API. |
boolean |
DouiService.usesImageService(ITransaction transaction)
Deprecated.
|
boolean |
IDouiService.usesImageService(ITransaction transaction)
Deprecated.
Since 7.0.0, replaced by
IDouiService.usesMediaRepository(ITransaction) . |
boolean |
DouiService.usesMediaRepository(ITransaction transaction) |
boolean |
IDouiService.usesMediaRepository(ITransaction transaction)
Indicates if this service may use a media repository.
|
boolean |
DouiService.usesWidgetRepository(ITransaction transaction) |
boolean |
IDouiService.usesWidgetRepository(ITransaction transaction)
Indicates if this service uses a widget repository.
|
protected boolean |
DouiServiceInterface.validate(DouiContext douiContext)
Executes the controls validation.
|
Constructor and Description |
---|
DouiRestInterfaceDefinition(IDouiDefinitionProcessor processor,
Node douiServiceInterfaceDefinitionNode) |
DouiRestInterfaceDefinition(Node douiServiceInterfaceDefinitionNode) |
DouiServiceInterfaceInstanceDefinition(SessionConfig sessionConfig,
Node douiServiceInterfaceDefinitionNode,
String serviceInterfaceInstanceId,
IDouiDefinitionProcessor processor,
boolean addPublisherFiltersToSource,
ITransaction transaction) |
DouiServiceInterfaceInstanceDefinition(SessionConfig sessionConfig,
Node douiServiceInterfaceDefinitionNode,
String serviceInterfaceInstanceId,
IDouiDefinitionProcessor processor,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
static void |
DouiRestInterfaceCacheManager.clearCache(ServiceInstanceConfig serviceInstance)
Clears the REST interface related caches of the given service instance.
|
static RestInterfaceCacheConfig |
DouiRestInterfaceCacheManager.getCacheConfig(String serviceInstanceId,
String restInterfaceId,
String serviceId)
Returns the REST interface cache configuration.
|
String |
DefaultRestInterfaceCacheKeyProvider.getCacheKey(IDouiRestInterfaceRequest request,
RestInterfaceCacheConfig cacheConfig) |
String |
IDouiRestInterfaceRequestCacheKeyProvider.getCacheKey(IDouiRestInterfaceRequest request,
RestInterfaceCacheConfig cacheConfig)
Returns the cache key for the given request using the given cache configuration.
|
void |
ClearDouiRestCacheEventObserver.onEvent(IPortalEvent event) |
static void |
DouiRestInterfaceCacheManager.saveCacheConfigs(String serviceInstanceId,
Map<String,RestInterfaceCacheConfig> cacheConfigs)
Saves the given REST interfaces cache configurations.
|
Modifier and Type | Method and Description |
---|---|
ISocialProfile |
DouiSourceSocialProfileProvider.getSocialProfileInformationById(String userId)
Returns the
social profile information associated
to the given user in the given social network . |
List<ISocialProfile> |
DouiSourceSocialProfileProvider.getSocialProfileInformationsByKeyword(String keyword)
Returns a list of
social profile information
associated with the given keyword. |
Modifier and Type | Method and Description |
---|---|
ISourceAddDataResult |
Source.addData(Object data)
Adds a data in the persistence this source represents.
|
void |
ISourceDao.addOrUpdate(SourceConfig definition,
ITransaction daoTransaction) |
void |
SourceDaoJdbc.addOrUpdate(SourceConfig definition,
ITransaction daoTransaction) |
void |
SourceContainer.addSource(Source source) |
void |
Source.applyPostLoadFilters()
Apply the filters specified in this source to its data.
|
void |
TabularSource.applyPostLoadFilters()
Apply the filters specified in this source to its data.
|
QuerySelect |
ITableDataProvider.buildQuerySelect(TableSource source,
ITransaction transaction) |
protected abstract void |
Source.convertDataToDefinedDataTypes()
Converts the data in this source to the values that should be used according to
its fields definitions.
|
protected void |
TabularSource.convertDataToDefinedDataTypes() |
protected TabularData |
TabularSource.convertDataToDefinedDataTypes(TabularData originalData)
Converts the given data to another data with the values that should be
used according to this source's fields definitions.
|
protected F |
Source.createCustomSourceField(Node fieldNode)
Factory method for creating a custom source field.
|
static <S extends Source> |
DataProviderFactory.createDataProvider(Source source) |
QueryBuilder |
ITableDataProvider.createQueryBuilder(IParameters parameters,
TableSource source,
ITransaction transaction) |
protected Collection<IPortalEvent> |
Source.createRenderDataChangedEvent(PortalEventOperationType operationType,
Collection<String> itemIds)
Returns the render data changed event to be sent by
Source.sendRenderDataChangedNotification(PortalEventOperationType, Collection) . |
static Source |
SourceFactory.createSource(Node sourceDefinitionNode,
ISourceContext sourceContext) |
static Source |
SourceFactory.createSource(String sourceId,
ISourceContext sourceContext)
Create a source instance and return it.
|
static Source<?> |
SourceFactory.createSource(String sourceId,
String serviceInstanceId)
Creates a source.
|
protected F |
Source.createSourceField(Node fieldNode)
Factory method for creating a source field instance that corresponds
to the field node given.
|
protected F |
TabularSource.createSourceField(Node fieldNode) |
ISourceFilter |
Source.createSourceFilter(Node filterNode)
Creates a source filter for the given filter definition node.
|
void |
ISourceDao.delete(String sourceId,
ITransaction daoTransaction) |
void |
SourceDaoJdbc.delete(String sourceId,
ITransaction daoTransaction) |
void |
Source.deleteDataByItemIds(Collection<String> itemIds)
Deletes data from the persistence this source represents.
|
void |
Source.deleteDataByItemIds(String... itemIds)
Deletes the data with the given item identifiers.
|
protected ISourceAddDataResult |
Source.doAddData(IParameters data)
Adds the data to the persistence.
|
protected void |
Source.doDeleteDataByItemIds(Collection<String> itemIds)
Deletes the data in the persistence.
|
protected ISourceUpdateDataResult |
Source.doUpdateData(IParameters data)
Updates the data in the persistence.
|
SourceConfig |
ISourceDao.get(String sourceId,
ITransaction daoTransaction) |
SourceConfig |
ISourceManager.get(String sourceType,
ITransaction transaction) |
SourceConfig |
SourceDaoJdbc.get(String sourceId,
ITransaction daoTransaction) |
SourceConfig |
SourceManager.get(String sourceType,
ITransaction transaction) |
ISourceData |
Source.getData()
Returns this source's data.
|
TabularData |
TabularSource.getData() |
<S extends Source> |
Source.getDataProvider()
Returns the data provider for this source.
|
static Class<? extends IDataProvider> |
DataProviderFactory.getDataProviderClass(Node sourceDefinition,
ITransaction transaction) |
protected abstract String |
Source.getDefaultProviderClass()
Abstract method that returns the default data provider class name.
|
protected String |
TabularSource.getDefaultProviderClass()
Returns data provider class for the source.
|
boolean |
Source.getDistinct()
Returns the distinct property of the source.
|
Class |
TabularSource.getFieldClass(String fieldId)
Returns the class object of the field.
|
String |
TabularSource.getFieldId(String fieldCriteria)
Deprecated.
This method may be removed in the future, because it is
public and references field xml definition.
|
Set<String> |
TabularSource.getFieldIds(String fieldCriteria)
Deprecated.
This method may be removed in the future, because it is
public and references field xml definition.
|
String |
TabularSource.getFieldName(String fieldId)
Returns the field name given a field id.
|
Node |
TabularSource.getFieldsDefinitionNode()
Returs the fields node of the source.
|
Node |
Source.getFiltersNode()
Returns the "filters" node of the source.
|
String |
TabularSource.getIndexerEngineId()
Deprecated.
Since 8.1.0, lumis.search is deprecated and this method is no longer used.
|
String |
TabularSource.getIndexerId()
Deprecated.
Since 8.1.0, lumis.search is deprecated and this method is no longer used.
|
String |
TabularSource.getSearcherEngineId()
Deprecated.
Since 8.1.0, lumis.search is deprecated and this method is no longer used.
|
String |
TabularSource.getSearcherId()
Deprecated.
Since 8.1.0, lumis.search is deprecated and this method is no longer used.
|
SortedSet<String> |
TabularSource.getSortedFieldIds(String fieldCriteria)
Deprecated.
This method may be removed in the future, because it is
public and references field xml definition.
|
static Class<? extends Source> |
SourceFactory.getSourceClass(Node sourceDefinitionNode,
ITransaction transaction) |
protected int |
AbstractObjectDataProvider.getTotalRows(SessionConfig sessionConfig,
S source,
ITransaction transaction)
Returns the total rows to be set on the generated tabular data.
|
ITransaction |
Source.getTransaction()
Returns the transaction for this source.
|
boolean |
TabularSource.hasField(String fieldCriteria)
Deprecated.
This method may be removed in the future, because it is
public and references field xml definition.
|
void |
SourceContainer.init() |
void |
AbstractSourceConverter.init(ISourceContext sourceContext) |
void |
ISourceConverter.init(ISourceContext sourceContext)
This method is called to initialize the converter to be
used in the given source context.
|
void |
Source.load()
This is where the actual loading of the source data takes place.
|
void |
AbstractObjectDataProvider.loadData(SessionConfig sessionConfig,
S source,
ITransaction transaction) |
void |
IDataProvider.loadData(SessionConfig sessionConfig,
S source,
ITransaction transaction) |
void |
EmptyDataProvider.loadData(SessionConfig sessionConfig,
Source source,
ITransaction transaction) |
protected abstract List<T> |
AbstractObjectDataProvider.loadObjects(SessionConfig sessionConfig,
S source,
ITransaction transaction)
Loads the objects.
|
void |
SourceContainer.loadSources() |
protected void |
SourceContainer.loadSourcesRecursively() |
protected void |
Source.postAddFieldData(SourcePostAddDataEvent event)
Called after data is added in the persistence.
|
protected void |
Source.postDeleteFieldData(SourcePostDeleteDataEvent event)
Called after fields data are deleted from the persistence.
|
protected void |
Source.postProcessSource()
Executes the post load processors associated with the current source.
|
protected void |
Source.postUpdateFieldData(SourcePostUpdateDataEvent event)
Called after data is updated in the persistence.
|
protected void |
Source.preAddFieldData(SourcePreAddDataEvent event)
Called before data is added in the persistence.
|
protected void |
Source.preDeleteFieldData(SourcePreDeleteDataEvent event)
Called before fields data are deleted from the persistence.
|
protected void |
Source.preUpdateFieldData(SourcePreUpdateDataEvent event)
Called before data is updated in the persistence.
|
List<ISourceData> |
Source.readData(Collection<String> itemIds)
Returns the data corresponding to the given
itemIds . |
List<ISourceData> |
Source.readData(String... itemIds)
Returns the data corresponding to the given
itemIds . |
protected void |
Source.readFieldsIntoFieldsMap()
Reads this source's fields into the
Source.fieldsMap . |
protected void |
TabularSource.readFieldsIntoFieldsMap() |
void |
ISourceManager.registerSources(SessionConfig sessionConfig,
String sourceTypesDefinitionPath,
ITransaction transaction) |
void |
SourceManager.registerSources(SessionConfig sessionConfig,
String sourceTypesDefinitionPath,
ITransaction transaction) |
void |
Source.scheduleIndexData(Collection<String> itemIds)
Schedules the indexing of the data that corresponds to the specified item identifiers.
|
void |
Source.scheduleIndexData(String... itemIds)
This method is a convenience overload that calls
Source.scheduleIndexData(Collection) . |
protected void |
Source.sendPostAddDataNotification(SourcePostAddDataEvent event)
Called after data is added in the persistence.
|
protected void |
Source.sendPostDeleteDataNotification(SourcePostDeleteDataEvent event)
Called after data is deleted from the persistence.
|
protected void |
Source.sendPostUpdateDataNotification(SourcePostUpdateDataEvent event)
Called after data is updated in the persistence.
|
protected void |
Source.sendPreAddDataNotification(SourcePreAddDataEvent event)
Called before data is added in the persistence.
|
protected void |
Source.sendPreDeleteDataNotification(SourcePreDeleteDataEvent event)
Called before data is deleted from the persistence.
|
protected void |
Source.sendPreUpdateDataNotification(SourcePreUpdateDataEvent event)
Called before data is updated in the persistence.
|
protected void |
Source.sendRenderDataChangedNotification(PortalEventOperationType operationType,
Collection<String> itemIds)
Sends a render data changed notification for the specified item identifiers.
|
protected void |
Source.sendRenderDataChangedNotification(PortalEventOperationType operationType,
String... itemIds)
This method is a convenience overload that calls
Source.sendRenderDataChangedNotification(PortalEventOperationType, Collection) . |
void |
TabularSource.setData(TabularData tabularData)
Sets the data in this source.
|
void |
ISourceManager.unregisterSource(SessionConfig sessionConfig,
String sourceType,
ITransaction transaction) |
void |
SourceManager.unregisterSource(SessionConfig sessionConfig,
String sourceType,
ITransaction transaction) |
ISourceUpdateDataResult |
Source.updateData(Object data)
Updates a data in the persistence this source represents.
|
Constructor and Description |
---|
Source(Node sourceDefinitionNode,
ISourceContext sourceContext) |
TabularSource(Node sourceDefinitionNode,
ISourceContext sourceContext)
Creates a tabular source.
|
Modifier and Type | Method and Description |
---|---|
void |
BaseTabularSourceField.convertRowToFieldData(ISourceData databaseRow,
ISourceData sourceRow)
Converts a row read from the data provider to this source field type.
|
void |
ITabularSourceField.convertRowToFieldData(ISourceData originalRow,
ISourceData sourceRow)
Converts a row read from the data provider to this source field type.
|
protected Object |
BaseSourceField.convertToFieldValueClass(Object value,
Locale locale,
String pattern)
Converts the given object to the this field's value class.
|
protected IConverter |
BaseSourceField.createConverter()
Factory method that creates a converter instance for this field.
|
protected ISourceFieldDataType |
BaseSourceField.createDataType()
Factory method that creates a data type instance for this field.
|
Node |
BaseSourceField.getDefaultControlDefinition() |
Node |
ISourceField.getDefaultControlDefinition()
Returns the default control definition to be used for this field.
|
Node |
BaseSourceField.getDefaultInputControlDefinition() |
Node |
ISourceField.getDefaultInputControlDefinition()
Returns the default input control definition to be used for editing this field's value.
|
Node |
BaseSourceField.getDefaultViewControlDefinition() |
Node |
ISourceField.getDefaultViewControlDefinition()
Returns the default control definition to be used for viewing this field's value.
|
String |
LocalizableCharSequenceValue.getDisplayString(IRenderer renderer) |
String |
LocalizableCharSequenceValue.getRenderData(IRenderer renderer) |
String |
OptionLookupValue.getRenderData(IRenderer renderer) |
void |
BaseSourceField.init(Source<?> source,
Node fieldNode) |
void |
BaseTabularSourceField.init(Source<?> source,
Node fieldNode) |
void |
ISourceField.init(Source<?> source,
Node fieldNode)
Initializes this source field.
|
default void |
ISourceField.postAdd(SourcePostAddDataEvent event)
Method called for each source field after data is added.
|
default void |
ISourceField.postDelete(SourcePostDeleteDataEvent event)
Method called for each source field after data is deleted.
|
default void |
ISourceField.postUpdate(SourcePostUpdateDataEvent event)
Method called for each source field after data is updated.
|
default void |
ISourceField.preAdd(SourcePreAddDataEvent event)
Method called for each source field before data is added.
|
default void |
ISourceField.preDelete(SourcePreDeleteDataEvent event)
Method called for each source field before data is deleted.
|
default void |
ISourceField.preUpdate(SourcePreUpdateDataEvent event)
Method called for each source field before data is updated.
|
Modifier and Type | Method and Description |
---|---|
protected void |
FileDataType.deleteRelatedFile(ISourceField field,
SourcePreDeleteDataEvent event)
Deletes related files from persistence.
|
protected void |
FilesDataType.deleteRelatedFiles(ISourceField field,
SourcePreDeleteDataEvent event)
Deletes related files from persistence.
|
String |
ChannelDataType.Data.getDisplayString(IRenderer renderer)
Returns the localized name of the channel.
|
String |
DateDataType.Data.getDisplayString(IRenderer renderer) |
String |
DateTimeDataType.Data.getDisplayString(IRenderer renderer) |
String |
FileDataType.Data.getDisplayString(IRenderer renderer) |
String |
FilesDataType.Data.getDisplayString(IRenderer renderer)
Returns the display string, as defined in
FileDataType.Data.getDisplayString(IRenderer) ,
of each file in this files data, separated by comma. |
String |
HtmlDataType.Data.getDisplayString(IRenderer renderer) |
String |
PageDataType.Data.getDisplayString(IRenderer renderer) |
String |
PrincipalDataType.Data.getDisplayString(IRenderer renderer) |
String |
TimeDataType.Data.getDisplayString(IRenderer renderer) |
static ISourceFieldDataType |
SourceFieldTypes.getInstance(String id) |
protected Map<String,Object> |
FileDataType.Data.getJSONData() |
String |
ChannelDataType.Data.getRenderData(IRenderer renderer)
Returns a xml block that contains the id, name and path of the given channel.
|
String |
DateDataType.Data.getRenderData(IRenderer renderer) |
String |
DateTimeDataType.Data.getRenderData(IRenderer renderer) |
String |
EmailDataType.Data.getRenderData(IRenderer renderer) |
String |
FileDataType.Data.getRenderData(IRenderer renderer) |
String |
FilesDataType.Data.getRenderData(IRenderer renderer) |
String |
HtmlDataType.Data.getRenderData(IRenderer renderer) |
String |
PageDataType.Data.getRenderData(IRenderer renderer) |
String |
PrincipalDataType.Data.getRenderData(IRenderer renderer) |
String |
TimeDataType.Data.getRenderData(IRenderer renderer) |
protected String |
FileDataType.Data.getXMLFragmentData(IRenderer renderer)
Generates the XML with the file informations.
|
void |
AbstractSourceFieldDataType.init(ISourceContext sourceContext)
Initializes this source field data type.
|
void |
ISourceFieldDataType.init(ISourceContext sourceContext)
Initializes this data type to be used in the given source context.
|
void |
HtmlDataType.postAdd(ISourceField field,
SourcePostAddDataEvent event) |
default void |
ISourceFieldDataType.postAdd(ISourceField field,
SourcePostAddDataEvent event)
Method called by default for each source field after data is added.
|
default void |
ISourceFieldDataType.postDelete(ISourceField field,
SourcePostDeleteDataEvent event)
Method called by default for each source field after data is deleted.
|
default void |
ISourceFieldDataType.postUpdate(ISourceField field,
SourcePostUpdateDataEvent event)
Method called by default for each source field after data is updated.
|
void |
HtmlDataType.preAdd(ISourceField field,
SourcePreAddDataEvent event) |
default void |
ISourceFieldDataType.preAdd(ISourceField field,
SourcePreAddDataEvent event)
Method called by default for each source field before data is added.
|
void |
FileDataType.preDelete(ISourceField field,
SourcePreDeleteDataEvent event) |
void |
FilesDataType.preDelete(ISourceField field,
SourcePreDeleteDataEvent event) |
void |
HtmlDataType.preDelete(ISourceField field,
SourcePreDeleteDataEvent event) |
default void |
ISourceFieldDataType.preDelete(ISourceField field,
SourcePreDeleteDataEvent event)
Method called by default for each source field before data is deleted.
|
void |
HtmlDataType.preUpdate(ISourceField field,
SourcePreUpdateDataEvent event) |
default void |
ISourceFieldDataType.preUpdate(ISourceField field,
SourcePreUpdateDataEvent event)
Method called by default for each source field before data is updated.
|
Modifier and Type | Method and Description |
---|---|
ISourceFilter<? extends S> |
ISourceFilter.getFilter(String filterId)
Returns the filter with the given id.
|
String |
ISourceFilter.getInputControlType()
Returns the input control type for this filter doui frontend.
|
void |
ISourceFilter.init(S source,
Node filterNode)
Initialization method, called before any other method on the filter instance.
|
default boolean |
ISourceFilter.isEnabled()
Returns if this filter is enabled.
|
Modifier and Type | Method and Description |
---|---|
boolean |
RowLinkPostLoadProcessor.checkPermissions(Node parametersNode,
Source source) |
protected boolean |
RowProcessActionPostLoadProcessor.checkPreCondition(SessionConfig sessionConfig,
ISourceData row,
Source<? extends ISourceData> source,
Node precondition,
ITransaction transaction)
Checks the pre-condition for a row in a source.
|
protected String |
ChannelNamePathConverterPostLoadProcessor.getChannelId(SessionConfig sessionConfig,
String id,
ITransaction transaction) |
protected abstract String |
NamePathConverterPostLoadProcessor.getChannelId(SessionConfig sessionConfig,
String id,
ITransaction transaction) |
protected String |
PageNamePathConverterPostLoadProcessor.getChannelId(SessionConfig sessionConfig,
String id,
ITransaction transaction) |
protected String |
ServiceInstanceNamePathConverterPostLoadProcessor.getChannelId(SessionConfig sessionConfig,
String id,
ITransaction transaction) |
protected String |
ChannelNamePathConverterPostLoadProcessor.getOriginalName(SessionConfig sessionConfig,
String id,
ITransaction transaction) |
protected abstract String |
NamePathConverterPostLoadProcessor.getOriginalName(SessionConfig sessionConfig,
String id,
ITransaction transaction) |
protected String |
PageNamePathConverterPostLoadProcessor.getOriginalName(SessionConfig sessionConfig,
String id,
ITransaction transaction) |
protected String |
ServiceInstanceNamePathConverterPostLoadProcessor.getOriginalName(SessionConfig sessionConfig,
String id,
ITransaction transaction) |
void |
IPostLoadProcessor.processSource(SessionConfig sessionConfig,
Source source,
Node parametersNode,
ITransaction transaction) |
void |
NamePathConverterPostLoadProcessor.processSource(SessionConfig sessionConfig,
Source source,
Node parametersNode,
ITransaction transaction) |
void |
RowLinkPostLoadProcessor.processSource(SessionConfig sessionConfig,
Source source,
Node parametersNode,
ITransaction transaction) |
void |
RowProcessActionPostLoadProcessor.processSource(SessionConfig sessionConfig,
Source source,
Node parametersNode,
ITransaction transaction) |
void |
SortPostLoadProcessor.processSource(SessionConfig sessionConfig,
Source source,
Node parametersNode,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
protected void |
SourceAddFileMultiRowDataProcessActionHandler.addRow()
Called by
SourceAddFileMultiRowDataProcessActionHandler.doAction() for each row to be added. |
protected void |
SourceUpdateMultiRowDataProcessActionHandler.addRow() |
protected void |
SourceUpdateMultiRowDataProcessActionHandler.deleteRows(Collection<String> rowsDeleted) |
protected abstract void |
BaseSourceProcessActionHandler.doAction()
Performs the source operation.
|
protected void |
SourceAddDataProcessActionHandler.doAction()
Executes
Source.addData(Object) and calls SourceAddDataProcessActionHandler.setItemIdAttribute(String) . |
protected void |
SourceAddFileMultiRowDataProcessActionHandler.doAction()
This method simply calls
ContentTableSourceAddDataProcessActionHandler#doAction() for each row. |
protected void |
SourceAddMultiRowDataProcessActionHandler.doAction()
This method calls the
Source.addData(Object) for each row. |
protected void |
SourceDeleteDataProcessActionHandler.doAction()
Deletes the items with identifiers returned by
SourceDeleteDataProcessActionHandler.getItemIdsToDelete() . |
protected void |
SourceUpdateDataProcessActionHandler.doAction() |
void |
SourceUpdateMultiRowDataProcessActionHandler.doAction() |
void |
SourceAddMultiRowDataProcessActionHandler.init(Node processActionNode,
ProcessActionContainer processActionContainer) |
void |
SourceUpdateMultiRowDataProcessActionHandler.init(Node processActionNode,
ProcessActionContainer processActionContainer) |
protected boolean |
BaseSourceProcessActionHandler.isSendRenderDataChangedNotificationEnabled()
Indicates if this process action is to send render data changed notification.
|
void |
BaseSourceProcessActionHandler.processAction() |
protected void |
SourceAddDataProcessActionHandler.setItemIdAttribute(String itemId)
Stores the item identifier in the request as an attribute with name
PortalRequestParameters.PAGE_PARAMETER_ITEMID . |
protected void |
SourceUpdateMultiRowDataProcessActionHandler.updateRow() |
Modifier and Type | Method and Description |
---|---|
protected void |
QueryBuilder.addQueryTables(QueryBase queryBase) |
protected void |
TableUpdateMultiRowDataProcessActionHandler.addRow()
Deprecated.
|
protected QueryBase |
TableDeleteDataProcessActionHandler.buildQuery()
Deprecated.
Builds a delete statement.
|
protected QueryBase |
TableUpdateDataProcessActionHandler.buildQuery()
Deprecated.
Calls the query build to build an update statement.
|
QueryDelete |
QueryBuilder.buildQueryDelete() |
QueryDelete |
QueryBuilder.buildQueryDelete(boolean primaryKeysProvided) |
QueryInsert |
QueryBuilder.buildQueryInsert() |
QuerySelect |
QueryBuilder.buildQuerySelect() |
QuerySelect |
TableDataProvider.buildQuerySelect(TableSource source,
ITransaction transaction) |
QueryUpdate |
QueryBuilder.buildQueryUpdate() |
protected QueryBuilder |
BaseTableDataProcessActionHandler.createQueryBuilder()
Deprecated.
|
protected QueryBuilder |
TableSource.createQueryBuilder(IParameters parameters)
Creates the query builder used by this source.
|
QueryBuilder |
TableDataProvider.createQueryBuilder(IParameters parameters,
TableSource source,
ITransaction transaction) |
protected IPortalEvent |
BaseTableDataProcessActionHandler.createRenderDataChangedEvent(Object itemId)
Deprecated.
Creates a render data changed event.
|
protected IPortalEvent |
TableDeleteDataProcessActionHandler.createRenderDataChangedEvent(Object itemId)
Deprecated.
|
protected ITableSourceField |
TableSource.createSourceField(Node fieldNode) |
ITableSourceFilter |
TableSource.createSourceFilter(Node filterNode) |
protected TableSource |
TableDeleteDataProcessActionHandler.createTableSource(Node sourceDefinitionNode,
ISourceContext sourceContext)
Deprecated.
Creates a table source object.
|
protected void |
TableSource.deleteRelatedData(Collection<String> itemIds)
Deletes all data related to the given itemIds.
|
protected void |
TableDeleteDataProcessActionHandler.deleteRelatedData(Collection<String> itemIdsTemp,
Node currentSourceDefinitionNode,
String foreignPrimaryKeyFieldId,
ITransaction transaction)
Deprecated.
Deletes all data related to the given primary key ids.
|
protected void |
TableDeleteDataProcessActionHandler.deleteRelatedFiles(Collection<String> itemIdsTemp,
Node currentSourceDefinitionNode,
String primaryKeyFieldId,
ITransaction transaction)
Deprecated.
Deletes all the files that are related to the current item.
|
protected void |
TableUpdateMultiRowDataProcessActionHandler.deleteRows(String primaryKeyFieldId,
Collection<String> rowsDeleted)
Deprecated.
|
protected ISourceAddDataResult |
TableSource.doAddData(IParameters data) |
protected void |
TableSource.doDeleteDataByItemIds(Collection<String> itemIds) |
protected void |
TableAddDataProcessActionHandler.doInsert()
Deprecated.
The process of insertion in the database is done in this method.
|
protected void |
TableUpdateDataProcessActionHandler.doUpdate()
Deprecated.
Sends pre-notifications, performs the updated followed by post-notifications.
|
protected ISourceUpdateDataResult |
TableSource.doUpdateData(IParameters data) |
protected void |
TableDeleteDataProcessActionHandler.execute(QueryBase queryBase)
Deprecated.
Executes the delete statement.
|
protected void |
TableUpdateDataProcessActionHandler.execute(QueryBase queryBase)
Deprecated.
Actually performs the update statement.
|
protected void |
TableAddDataProcessActionHandler.execute(QueryInsert queryInsert)
Deprecated.
This method actually executes the insert statement.
|
void |
ITableDao.executeDelete(QueryDelete queryDelete,
ITransaction transaction) |
void |
TableDaoJdbc.executeDelete(QueryDelete queryDelete,
ITransaction transaction) |
void |
ITableDao.executeInsert(QueryInsert queryInsert,
ITransaction transaction) |
void |
TableDaoJdbc.executeInsert(QueryInsert queryInsert,
ITransaction transaction) |
void |
ITableDao.executeUpdate(QueryUpdate queryUpdate,
ITransaction transaction) |
void |
TableDaoJdbc.executeUpdate(QueryUpdate queryUpdate,
ITransaction transaction) |
protected String |
TableSource.getDefaultProviderClass() |
protected IQueryFilter |
QueryBuilder.getFilter(QueryBase queryBase) |
protected DouiIndexConfig |
BaseTableDataProcessActionHandler.getIndexConfig()
Deprecated.
Since 8.1.0, lumis.search is deprecated and this method is no longer used.
|
protected QueryFilterGroup |
QueryBuilder.getPrimaryKeyFilterGroup(QueryBase queryBase) |
protected Vector<QuerySortOrder> |
QueryBuilder.getSortOrders(QueryBase queryBase) |
protected int |
QueryBuilder.getStartAtValue() |
QueryTable |
QueryBuilder.getTable(TableSource tableSource) |
Node |
ITableDao.getTotalInfo(QuerySelect querySelect,
ITransaction transaction) |
Node |
TableDaoJdbc.getTotalInfo(QuerySelect querySelect,
ITransaction transaction) |
protected void |
BaseTableDataProcessActionHandler.indexData()
Deprecated.
|
void |
TableDataProvider.loadData(SessionConfig sessionConfig,
TableSource source,
ITransaction transaction) |
protected void |
TableDeleteDataProcessActionHandler.postDelete()
Deprecated.
Hook for inheriting classes to be able to perform actions after deletion.
|
protected void |
TableAddDataProcessActionHandler.postInsert(String primaryKey)
Deprecated.
Sets the primary key render parameter.
|
protected void |
TableUpdateDataProcessActionHandler.postUpdate()
Deprecated.
Hook placed for inheriting classes to perform post-update actions.
|
protected void |
TableDeleteDataProcessActionHandler.preDelete(QueryBase queryBase)
Deprecated.
Hook placed in that does not perform any action.
|
protected void |
TableAddDataProcessActionHandler.preInsert(QueryInsert queryInsert)
Deprecated.
Called before the insert action is taken.
|
protected void |
TableUpdateDataProcessActionHandler.preUpdate(QueryBase queryBase)
Deprecated.
Hook placed for inheriting classes to perform pre-update actions.
|
void |
TableAddDataProcessActionHandler.processAction()
Deprecated.
Processes the required action calling
TableAddDataProcessActionHandler.processActionWithoutResponse() and subsequently calls the ProcessActionHandler.addDefaultResponse() method. |
void |
TableDeleteDataProcessActionHandler.processAction()
Deprecated.
|
void |
TableUpdateDataProcessActionHandler.processAction()
Deprecated.
|
void |
TableUpdateMultiRowDataProcessActionHandler.processAction()
Deprecated.
|
protected void |
TableAddDataProcessActionHandler.processActionWithoutResponse()
Deprecated.
Processes the insert action.
|
protected void |
TableAddFileMultiRowDataProcessActionHandler.processActionWithoutResponse()
Deprecated.
Performs the process action.
|
protected void |
TableAddMultiRowDataProcessActionHandler.processActionWithoutResponse()
Deprecated.
Performs the process action.
|
protected void |
TableDeleteDataProcessActionHandler.processActionWithoutResponse()
Deprecated.
Sends pre-notifications, executes the process action followed by post-notifications.
|
protected void |
TableUpdateDataProcessActionHandler.processActionWithoutResponse()
Deprecated.
Simply calls the
TableUpdateDataProcessActionHandler.doUpdate() method. |
List<ISourceData> |
TableSource.readData(Collection<String> itemIds) |
TabularData |
ITableDao.readData(QuerySelect querySelect,
ITransaction transaction)
Reads the data as specified in the given querySelect, and returns the result in a
TabularData . |
TabularData |
TableDaoJdbc.readData(QuerySelect querySelect,
ITransaction transaction) |
TabularData |
TableSource.readData(String[] primaryKeyValues,
ITransaction transaction)
Deprecated.
Since 10.4.0 replaced by
Source.readData(String...) and #readData(Iterable)
for Source persistence API standardization. This method is no longer called and kept only for backwards
compatibility. |
ISourceData |
TableSource.readData(String primaryKeyValue,
ITransaction transaction)
Deprecated.
Since 10.4.0 replaced by
Source.readData(String...) and #readData(Iterable)
for Source persistence API standardization. This method is no longer called and kept only for backwards
compatibility. |
ISourceData |
ITableDao.IRowProcessor.readRow(Object[] values) |
protected TabularData |
BaseTableDataProcessActionHandler.readSelectedData()
Deprecated.
Reads the data selected by the user from the persistence and returns it.
|
protected void |
TableDeleteDataProcessActionHandler.sendPostNotifications()
Deprecated.
Sends post notifications to registered observers.
|
protected void |
TableUpdateDataProcessActionHandler.sendPostNotifications()
Deprecated.
Sends Update and interface changed notifications.
|
protected void |
TableAddDataProcessActionHandler.sendPostNotifications(String primaryKey)
Deprecated.
Sends process action execution and interface changed notifications.
|
protected void |
TableDeleteDataProcessActionHandler.sendPreNotifications()
Deprecated.
Sends notifications before the delete operation execution.
|
protected void |
TableUpdateDataProcessActionHandler.sendPreNotifications()
Deprecated.
Hook placed for inheriting classes to send pre-notifications.
|
protected void |
TableAddDataProcessActionHandler.sendPreNotifications(String primaryKey)
Deprecated.
Called before the insert action is taken.
|
protected void |
TableDeleteDataProcessActionHandler.sendRenderDataChangedNotification()
Deprecated.
Identifies all the interfaces that may need to be updated and sends a notification.
|
protected void |
TableUpdateDataProcessActionHandler.sendRenderDataChangedNotification()
Deprecated.
Notifies observers that the render data may have changed.
|
protected void |
BaseTableDataProcessActionHandler.sendRenderDataChangedNotification(Object itemId)
Deprecated.
Notifies observers that the render data may have changed.
|
protected void |
TableAddDataProcessActionHandler.setPrimaryKeyAttribute(String primaryKey)
Deprecated.
Sets the primary key value in the request attribute.
|
protected void |
TableAddFileMultiRowDataProcessActionHandler.setPrimaryKeyAttribute(String primaryKey)
Deprecated.
There exists multiple primary keys.
|
protected void |
TableAddMultiRowDataProcessActionHandler.setPrimaryKeyAttribute(String primaryKey)
Deprecated.
There exists multiple primary keys.
|
protected void |
TableAddDataProcessActionHandler.setPrimaryKeyParameter(Object primaryKeyValue)
Deprecated.
The primary key value of the inserted data is placed in the process action parameters.
|
protected void |
TableAddDataProcessActionHandler.setPrimaryKeyRenderParameter(String primaryKey)
Deprecated.
Since 4.0.10 the primary key is no longer
stored as a render parameter. This method was replaced by
TableAddDataProcessActionHandler.setPrimaryKeyAttribute(String) . For
backward compatibility, this method calls TableAddDataProcessActionHandler.setPrimaryKeyAttribute(String) . |
protected void |
TableAddFileMultiRowDataProcessActionHandler.setPrimaryKeyRenderParameter(String primaryKey)
Deprecated.
|
protected void |
TableAddMultiRowDataProcessActionHandler.setPrimaryKeyRenderParameter(String primaryKey)
Deprecated.
|
protected boolean |
BaseTableDataProcessActionHandler.shouldSendRenderDataChangedNotification()
Deprecated.
Indicates if this process action should send render data changed notification.
|
protected void |
TableUpdateMultiRowDataProcessActionHandler.updateRow()
Deprecated.
|
Constructor and Description |
---|
QueryBuilder(IParameters parameters,
TableSource source,
ITransaction transaction) |
TableDataProvider() |
TableSource(Node sourceDefinitionNode,
ISourceContext sourceContext)
Creates a tabular source.
|
Modifier and Type | Method and Description |
---|---|
void |
GenericTableSourceField.convertRowToFieldData(ISourceData databaseRow,
ISourceData sourceRow) |
protected ISourceFieldDataType |
SingleColumnTableSourceField.createDataType() |
abstract Object |
BaseTableSourceField.getAssignedValue(QueryBase queryBase) |
Object |
GenericTableSourceField.getAssignedValue(QueryBase queryBase) |
Object |
ITableSourceField.getAssignedValue(QueryBase queryBase)
Returns the value assigned as this field's value in the given query.
|
QueryField |
GenericTableSourceField.getDisplayQueryField(QueryBase queryBase) |
QueryField |
ITableSourceField.getDisplayQueryField(QueryBase queryBase)
Returns the query field to be used for display purposes for this field.
|
abstract List<QueryAssignment> |
BaseTableSourceField.getQueryAssignments(QueryInsert queryInsert,
IParameters parameters) |
List<QueryAssignment> |
FileTableSourceField.getQueryAssignments(QueryInsert queryInsert,
IParameters parameters) |
List<QueryAssignment> |
GenericTableSourceField.getQueryAssignments(QueryInsert queryInsert,
IParameters parameters) |
List<QueryAssignment> |
ITableSourceField.getQueryAssignments(QueryInsert queryInsert,
IParameters parameters)
Returns a list of query assignments to be used in the given query insert.
|
abstract List<QueryAssignment> |
BaseTableSourceField.getQueryAssignments(QueryUpdate queryUpdate,
IParameters parameters) |
List<QueryAssignment> |
FileTableSourceField.getQueryAssignments(QueryUpdate queryUpdate,
IParameters parameters) |
List<QueryAssignment> |
GenericTableSourceField.getQueryAssignments(QueryUpdate queryUpdate,
IParameters parameters) |
List<QueryAssignment> |
ITableSourceField.getQueryAssignments(QueryUpdate queryUpdate,
IParameters parameters)
Returns a list of query assignments to be used in the given query update.
|
protected QueryField |
ExperimentalGenericTableSourceField.getQueryField(QueryBase queryBase) |
protected QueryField |
GenericTableSourceField.getQueryField(QueryBase queryBase)
Returns the main query field for this source field.
|
protected QueryField |
SingleColumnTableSourceField.getQueryField(QueryBase queryBase) |
protected QueryField |
GenericTableSourceField.getQueryField(QueryBase queryBase,
boolean useLookupField)
Returns the query field for this field.
|
abstract IQueryFilter |
BaseTableSourceField.getQueryFilter(QueryBase queryBase,
TableSourceFilter filter) |
IQueryFilter |
GenericTableSourceField.getQueryFilter(QueryBase queryBase,
TableSourceFilter filter) |
IQueryFilter |
ITableSourceField.getQueryFilter(QueryBase queryBase,
TableSourceFilter filter)
Returns a query filter for this field.
|
abstract List<QuerySortOrder> |
BaseTableSourceField.getQuerySortOrders(QueryBase queryBase,
String direction) |
List<QuerySortOrder> |
GenericTableSourceField.getQuerySortOrders(QueryBase queryBase,
String direction) |
List<QuerySortOrder> |
ITableSourceField.getQuerySortOrders(QueryBase queryBase,
String direction)
Returns a list of sort orders to be applied when it is to be ordered by this field.
|
abstract TableSourceFieldMapping |
BaseTableSourceField.getTableMapping(QueryBase queryBase) |
TableSourceFieldMapping |
ChannelTableSourceField.getTableMapping(QueryBase queryBase) |
TableSourceFieldMapping |
ExperimentalGenericTableSourceField.getTableMapping(QueryBase queryBase) |
TableSourceFieldMapping |
FileTableSourceField.getTableMapping(QueryBase queryBase) |
TableSourceFieldMapping |
GenericTableSourceField.getTableMapping(QueryBase queryBase) |
TableSourceFieldMapping |
ITableSourceField.getTableMapping(QueryBase queryBase)
Returns the table mapping for this field.
|
TableSourceFieldMapping |
PageTableSourceField.getTableMapping(QueryBase queryBase) |
TableSourceFieldMapping |
ParentContentSourceField.getTableMapping(QueryBase queryBase) |
TableSourceFieldMapping |
SingleColumnTableSourceField.getTableMapping(QueryBase queryBase) |
void |
ExperimentalGenericTableSourceField.init(Source source,
Node fieldNode) |
void |
GenericTableSourceField.init(Source source,
Node fieldNode) |
void |
SingleColumnTableSourceField.init(Source source,
Node fieldNode) |
void |
FileTableSourceField.preUpdate(SourcePreUpdateDataEvent event) |
Constructor and Description |
---|
SingleColumnTableSourceField(String tableRelationId,
String columnName,
String dataTypeId) |
Modifier and Type | Method and Description |
---|---|
protected String |
MonthTableSourceFilter.calculateFilterOperator(Node filterNode)
Always return the equals operator, just to be
a valid binary operator and the extended
TableSourceFilter
to behave as expected. |
protected String |
TableSourceFilter.calculateFilterOperator(Node filterNode)
Analyzes this filter and returns the operator that should be used with it.
|
protected IQueryValue |
TableSourceFilter.calculateFilterValue(Node filterNode)
Analyzes this filter and returns the value that should be used with it.
|
protected Object |
TableSourceFilter.convertFilterStandardValue(String value,
Node filterNode)
Checks and converts the filter "standard" value to real value.
|
ITableSourceFilter |
AbstractTableSourceFilter.getFilter(String filterId) |
ITableSourceFilter |
CompositeTableSourceFilter.getFilter(String filterId) |
ITableSourceFilter |
ITableSourceFilter.getFilter(String filterId) |
String |
AbstractTableSourceFilter.getInputControlType() |
String |
CompositeTableSourceFilter.getInputControlType() |
String |
MonthTableSourceFilter.getInputControlType() |
String |
TableSourceFilter.getInputControlType() |
IQueryFilter |
CompositeTableSourceFilter.getQueryFilter(QueryBase queryBase,
IParameters parameters) |
IQueryFilter |
ITableSourceFilter.getQueryFilter(QueryBase queryBase,
IParameters parameters)
Returns the query filter to be used with the given query.
|
IQueryFilter |
TableSourceFilter.getQueryFilter(QueryBase queryBase,
IParameters params)
Returns a query filter corresponding to this source filter definition.
|
IQueryFilter |
TableSourceFilter.getQueryFilter(QueryField queryField,
IQueryValue queryValue)
Creates a query filter, filtering the query field by the value, according
to this filter definitions.
|
void |
AbstractTableSourceFilter.init(TableSource source,
Node filterNode) |
void |
CompositeTableSourceFilter.init(TableSource source,
Node filtersNode)
Creates and initializes the filters inside this composite filter.
|
void |
TableSourceFilter.init(TableSource source,
Node filterNode) |
void |
TableSourceFilter.init(TableSource source,
String fieldId,
String operator,
IQueryValue filterValue) |
boolean |
TableSourceFilter.isEnabled() |
void |
TableSourceFilter.setDefinition(Node filterDefinitionNode) |
Modifier and Type | Method and Description |
---|---|
Node |
UnregisterControlTypeStepHandler.executeStep(SessionConfig sessionConfig,
Node stepNode,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
void |
IDouiRequestCycle.executeUntilDouiContextCreation()
Executes the Doui request cycle until the step where
DouiContext
is created. |
void |
IDouiRequestCycle.executeUntilInitDouiContext()
Executes the Doui request cycle until the
DouiContext
initialization. |
void |
IDouiActionRequestCycle.executeUntilLoadFromRequest()
Executes the Doui request cycle until load requisition information from
request.
|
void |
IDouiRenderRequestCycle.executeUntilLoadFromRequest()
Executes the Doui request cycle until load requisition information from
request.
|
void |
IDouiRenderRequestCycle.executeUntilLoadSources()
Executes the Doui request cycle until load sources step.
|
void |
IDouiActionRequestCycle.executeUntilProcessActions()
Executes the Doui request cycle until the process actions step.
|
void |
IDouiRenderRequestCycle.executeUntilRenderData()
Executes the Doui request cycle until render data step.
|
boolean |
IDouiActionRequestCycle.executeUntilValidate()
Executes the Doui request cycle until validation.
|
boolean |
IDouiRenderRequestCycle.executeUntilValidate()
Executes the Doui request cycle until validation.
|
Modifier and Type | Method and Description |
---|---|
void |
MockServiceInterfaceRenderResponse.applyStyle(int applyRule,
String styleFile) |
void |
ActionRequestCycle.processAction() |
void |
IActionRequestCycle.processAction()
Call the
processAction
method of a service interface using this cycle's request and response objects. |
void |
IRenderRequestCycle.render()
Call the
render
method of a service interface using this cycle's request and response objects. |
void |
RenderRequestCycle.render() |
void |
MockServiceInterfaceRenderResponse.setStyleId(String styleId) |
void |
ServiceInterfaceTestCase.setUp()
Provides the structure needed to test a service interface:
Creates the service interface instance Creates the render and
action invocation contexts
(needed to perform tests on render and processAction methods) Starts an user session Starts a transaction |
void |
ServiceInterfaceTestCase.tearDown()
This method performs the cleanup for the test: Disposes the
transaction Ends session Delete the service interface
instance created
|
Modifier and Type | Method and Description |
---|---|
ChannelConfig |
StructureHelper.createChannel()
Creates a channel.
|
ChannelConfig |
StructureHelper.createChannel(ChannelConfig parent)
Creates a channel within the given parent channel.
|
ChannelConfig |
StructureHelper.createChannelTemplate()
Creates a channel template.
|
ChannelConfig |
StructureHelper.createChannelTemplate(ChannelConfig parent)
Creates a channel template within the given parent channel.
|
PageConfig |
StructureHelper.createPage()
Creates a page.
|
PageConfig |
StructureHelper.createPage(ChannelConfig channelConfig)
Creates a page.
|
PageConfig |
StructureHelper.createPageTemplate()
Creates a page template.
|
PageConfig |
StructureHelper.createPageTemplate(ChannelConfig channelConfig)
Creates a page template.
|
ServiceInstanceConfig |
StructureHelper.createServiceInstance(ChannelConfig channelConfig,
String serviceId)
Creates a service instance.
|
ServiceInstanceConfig |
StructureHelper.createServiceInstance(ChannelConfig channelConfig,
String serviceId,
String serviceInstanceName)
Creates a service instance.
|
ServiceInstanceConfig |
StructureHelper.createServiceInstance(String serviceId)
Creates a service instance.
|
ServiceInterfaceInstanceConfig |
StructureHelper.createServiceInterfaceInstance(PageConfig pageConfig,
ServiceInstanceConfig serviceInstanceConfig,
String serviceInterfaceId)
Creates a service interface instance.
|
ServiceInterfaceInstanceConfig |
StructureHelper.createServiceInterfaceInstance(ServiceInstanceConfig serviceInstanceConfig,
String serviceInterfaceId)
Creates a service interface instance.
|
ServiceInterfaceInstanceConfig |
StructureHelper.createServiceInterfaceInstance(String serviceId,
String serviceInterfaceId)
Creates a service interface instance.
|
ServiceInstanceDependencyConfig |
StructureHelper.makeDependency(ServiceInstanceConfig serviceInstance,
ServiceInstanceConfig dependentServiceInstance,
String dependencyType)
Creates a dependency between the given service instances and returns the dependency configuration.
Uses the given dependencyType parameter to set the dependency type. |
Modifier and Type | Class and Description |
---|---|
class |
AccessDeniedException |
class |
FileUploadDeniedException |
class |
IndexOutOfBoundsException |
class |
InvalidSessionException |
class |
PageNotFoundException |
class |
PortalObjectAlreadyExistsException
Exception thrown when adding a object with an identifier already in use
|
class |
PortalObjectNotFoundException |
class |
UnexpectedException |
class |
UnsupportedOperationException |
Modifier and Type | Method and Description |
---|---|
PortalRequestParameters.PreviousParameters |
PortalRequestParameters.generatePreviousParameters(HttpServletRequest request)
Generate the previous parameters for this portal request parameters
instance, storing it for automatic later retrieval.
|
static BuildConfig |
PortalContext.getBuildConfig() |
static IEncryptor |
PortalEncryptorFactory.getEncryptor()
Deprecated.
|
static int |
PortalContext.getMajorVersion()
Returns the major version of the portal.
|
static int |
PortalContext.getMinorVersion()
Returns the minor version of the portal.
|
String |
PortalRequestParameters.getPageParameterValue(String name) |
Enumeration<String> |
PortalRequestParameters.getServiceInterfaceInstanceParameterNames(String serviceInterfaceInstanceId) |
Map<String,String[]> |
PortalRequestParameters.getServiceInterfaceInstanceParameters(String serviceInterfaceInstanceId) |
String |
PortalRequestParameters.getServiceInterfaceInstanceParameterValue(String name,
String serviceInterfaceInstanceId) |
String[] |
PortalRequestParameters.getServiceInterfaceInstanceParameterValues(String name,
String serviceInterfaceInstanceId) |
static String |
PortalContext.getSimpleVersion()
Returns a simplified version of product's version (in the form <major>.<minor>.<release>).
|
void |
PortalRequestParametersControllerHtml.handleRequest() |
void |
PortalRequestParameters.setPageParameter(String parameterName,
String[] parameterValues) |
void |
PortalRequestParameters.setPageParameters(Map<String,String[]> parameters) |
HashMap<String,String[]> |
PortalRequestParameters.setParameters(Document parametersDoc) |
void |
PortalRequestParameters.setParameters(String parametersXmlString) |
void |
PortalRequestParameters.setServiceInstanceParameters(String serviceInstanceId,
Map<String,String[]> parameters) |
void |
PortalRequestParameters.setServiceInterfaceInstanceFileParameters(String serviceInterfaceInstanceId,
Map<String,FileParameter> parameters) |
void |
PortalRequestParameters.setServiceInterfaceInstanceParameters(String serviceInterfaceInstanceId,
Map<String,String[]> parameters) |
void |
PortalRequestParameters.setServiceInterfaceParameters(String serviceInterfaceId,
Map<String,String[]> parameters) |
void |
PortalRequestParameters.setServiceParameters(String serviceId,
Map<String,String[]> parameters) |
Constructor and Description |
---|
PortalRequestParameters(SessionConfig sessionConfig,
HttpServletRequest httpServletRequest) |
PortalRequestParameters(SessionConfig sessionConfig,
String parametersXmlString) |
PortalRequestParametersControllerHtml(HttpServletRequest request,
HttpServletResponse response) |
Modifier and Type | Method and Description |
---|---|
boolean |
IPortalAclManager.checkPermission(SessionConfig sessionConfig,
IPermission permission,
ITransaction transaction)
This method verifies if the permission is valid.
|
boolean |
PortalAclManager.checkPermission(SessionConfig sessionConfig,
IPermission permission,
ITransaction transaction) |
AccessControlList |
IPortalAclManager.get(SessionConfig sessionConfig,
ITransaction transaction)
Get the Portal's Access Control List.
|
AccessControlList |
PortalAclManager.get(SessionConfig sessionConfig,
ITransaction transaction) |
AccessControlList |
PortalAclManager.get(SessionConfig sessionConfig,
String id,
ITransaction transaction) |
protected AccessControlList |
PortalAclManager.getAclInternal(SessionConfig sessionConfig,
ITransaction transaction) |
protected AccessControlList |
PortalAclManager.getAclInternal(SessionConfig sessionConfig,
String ignoreItemId,
ITransaction transaction) |
static int[] |
PortalPermissions.getImplies() |
protected int |
PortalAclManager.getRequiredPermissions() |
static int |
PortalPermissions.getRequiredPermissions() |
void |
IPortalAclManager.update(SessionConfig sessionConfig,
AccessControlList acl,
ITransaction transaction)
Update the Portal's ACL.
|
void |
PortalAclManager.update(SessionConfig sessionConfig,
AccessControlList acl,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
void |
ActivityStreamManager.addAction(ActivityAction action) |
void |
IActivityStreamManager.addAction(ActivityAction action)
Adds a new action that may be used by
activities . |
void |
ActivityStreamManager.addActivity(Activity activity) |
void |
IActivityStreamManager.addActivity(Activity activity)
Adds an activity.
|
void |
IActivityStreamManager.addObjectType(ActivityObjectType objectType)
Adds an object type to the global registry.
|
ISearchQueryFilter |
ActivityStreamManager.createActivityStructureSearchQueryFilter(String rootChannelId,
Collection<String> areaTags) |
ISearchQueryFilter |
IActivityStreamManager.createActivityStructureSearchQueryFilter(String rootChannelId,
Collection<String> areaTags)
Creates a
ISearchQueryFilter that filters the activities that belongs to a part of the structure of the
portal. |
ISearchQueryFilter |
ActivityStreamManager.createPriorityAndUserSearchQueryFilter(double minimumPriority,
String userId) |
ISearchQueryFilter |
IActivityStreamManager.createPriorityAndUserSearchQueryFilter(double minimumPriority,
String userId)
Returns a big data search query filter that filters the activities according to the ones the specified user is
allowed to access and has a priority of at least the value specified.
|
void |
ActivityStreamManager.deleteAction(ActivityAction action) |
void |
IActivityStreamManager.deleteAction(ActivityAction action)
Deletes an action.
|
void |
ActivityStreamManager.deleteActivity(String activityId) |
void |
IActivityStreamManager.deleteActivity(String activityId)
Deletes an activity given its identifier.
|
void |
ActivityStreamManager.deleteObjectType(ActivityObjectType objectType) |
void |
IActivityStreamManager.deleteObjectType(ActivityObjectType objectType)
Deletes an object type from the global registry.
|
void |
ActivityStreamManager.deleteOldActivities() |
void |
IActivityStreamManagerSPI.deleteOldActivities()
Removes all
activities that have reached their age deadline. |
void |
ActivityStreamManager.disableActivityProcessor(ChannelConfig channel) |
void |
IActivityStreamManagerSPI.disableActivityProcessor(ChannelConfig channel)
Set the activity processor of the given channel to disabled
|
void |
ActivityStreamManager.disableActivityProcessor(ServiceInstanceConfig serviceInstance) |
void |
IActivityStreamManagerSPI.disableActivityProcessor(ServiceInstanceConfig serviceInstance)
Set the activity processor of the given service instance to disabled
|
default List<ActivityObjectType> |
IActivityStreamManagerSPI.findObjectTypes(String query)
Find the first ten activity stream object types by id, given a search query.
|
List<ActivityObjectType> |
ActivityStreamManager.findObjectTypes(String query,
int maxResults) |
List<ActivityObjectType> |
IActivityStreamManagerSPI.findObjectTypes(String query,
int maxResults)
Find activity stream object types by id, given a search query.
|
Collection<ActivityPriority> |
IActivityPrioritizer.generateActivityPriorities(Activity activity)
|
Collection<ActivityPriority> |
PortalManagementActivityPrioritizer.generateActivityPriorities(Activity activity) |
ActivityAction |
ActivityStreamManager.getAction(String actionId) |
ActivityAction |
IActivityStreamManager.getAction(String actionId)
Returns the action of given identifier.
|
Integer |
ActivityStreamManager.getActivitiesMaxAgeInDays() |
Integer |
IActivityStreamManagerSPI.getActivitiesMaxAgeInDays()
Get the number of days an
Activity can exist before being removed. |
IActivityProcessorConfig |
ActivityStreamManager.getActivityProcessorConfig(String activityProcessorConfigId)
Returns the activity processor configuration with the given identifier.
|
IActivityProcessorConfig |
IActivityStreamManagerSPI.getActivityProcessorConfig(String activityProcessorId)
Returns the activity processor of the given identifier.
|
String |
ActivityStreamManager.getActivityProcessorId(ChannelConfig channel) |
String |
IActivityStreamManagerSPI.getActivityProcessorId(ChannelConfig channel)
Get the activity processor identifier of the given channel.
|
String |
ActivityStreamManager.getActivityProcessorId(ServiceInstanceConfig serviceInstance) |
String |
IActivityStreamManagerSPI.getActivityProcessorId(ServiceInstanceConfig serviceInstance)
Get the activity processor identifier of the given service instance.
|
String |
ActivityStreamManager.getLocalActivityProcessorId(ChannelConfig channel) |
String |
IActivityStreamManagerSPI.getLocalActivityProcessorId(ChannelConfig channel)
Get the local activity processor identifier of the given channel.
|
String |
ActivityStreamManager.getLocalActivityProcessorId(ServiceInstanceConfig serviceInstance) |
String |
IActivityStreamManagerSPI.getLocalActivityProcessorId(ServiceInstanceConfig serviceInstance)
Get the local activity processor identifier of the given service instance.
|
String |
ActivityAction.getLocalizedDisplayName(Locale locale)
Returns the localized display name of this action.
|
String |
ActivityObjectType.getLocalizedDisplayName(Locale locale)
Returns the localized display name of this object type.
|
ActivityObjectType |
ActivityStreamManager.getObjectType(String objectTypeId) |
ActivityObjectType |
IActivityStreamManager.getObjectType(String objectTypeId)
Returns the object type of given identifier.
|
List<ActivityObjectType> |
ActivityStreamManager.getObjectTypes() |
List<ActivityObjectType> |
IActivityStreamManagerSPI.getObjectTypes()
Returns list of persisted activity object types.
|
boolean |
ActivityStreamManager.isActivityRead(String activityId) |
boolean |
IActivityStreamManager.isActivityRead(String activityId)
Verifies if an activity was already read by the current user.
|
void |
ActivityStreamManager.markActivityAsRead(String activityId) |
void |
IActivityStreamManager.markActivityAsRead(String activityId)
Marks an activity as read by the current user.
|
void |
ActivityStreamManager.markActivityAsUnread(String activityId) |
void |
IActivityStreamManager.markActivityAsUnread(String activityId)
Marks an activity as unread by the current user.
|
void |
IActivityUserNotifier.notify(ActivityDocument activityDocument,
Collection<UserConfig> users)
Sends a notification to
users about the activity that has occurred. |
void |
ActivityStreamBigDataInitObserver.onEvent(IPortalEvent event) |
void |
ActivityStreamManager.registerActivityProcessor(String activityProcessorConfigPath) |
void |
IActivityStreamManagerSPI.registerActivityProcessor(String activityProcessorConfigPath)
Registers an activity processor configuration.
|
void |
ActivityStreamManager.registerDefaultActions() |
void |
IActivityStreamManagerSPI.registerDefaultActions()
Registers built-in default activity stream actions.
|
void |
ActivityStreamManager.registerDefaultActivityProcessors() |
void |
IActivityStreamManagerSPI.registerDefaultActivityProcessors()
Registers built-in default activity processors.
|
void |
ActivityStreamManager.setActivitiesMaxAgeInDays(Integer days) |
void |
IActivityStreamManagerSPI.setActivitiesMaxAgeInDays(Integer days)
Set the number of days an
Activity can exist before being removed. |
void |
ActivityStreamManager.setActivityProcessorConfig(String activityProcessorId,
ChannelConfig channel) |
void |
IActivityStreamManagerSPI.setActivityProcessorConfig(String activityProcessorId,
ChannelConfig channel)
Set the Activity Processor for the given channel.
|
void |
ActivityStreamManager.setActivityProcessorConfig(String activityProcessorId,
ServiceInstanceConfig serviceInstance) |
void |
IActivityStreamManagerSPI.setActivityProcessorConfig(String activityProcessorId,
ServiceInstanceConfig serviceInstance)
Set the Activity Processor for the given service instance.
|
void |
ActivityStreamManager.setActivityProcessorInherited(ChannelConfig channel) |
void |
IActivityStreamManagerSPI.setActivityProcessorInherited(ChannelConfig channel)
Set the activity processor of the given channel to be inherited from the parent channel
|
void |
ActivityStreamManager.setActivityProcessorInherited(ServiceInstanceConfig serviceInstance) |
void |
IActivityStreamManagerSPI.setActivityProcessorInherited(ServiceInstanceConfig serviceInstance)
Set the activity processor of the given service instance to be inherited from the parent channel
|
void |
ActivityStreamManager.unregisterActivityProcessor(String activityProcessorConfigId) |
void |
IActivityStreamManagerSPI.unregisterActivityProcessor(String activityProcessorConfigId)
Unregisters an activity processor configuration.
|
void |
ActivityStreamManager.updateActivityObject(ActivityObject activityObject,
String scope) |
void |
IActivityStreamManagerSPI.updateActivityObject(ActivityObject activityObject,
String scope)
Updates the given activity object for the activity in the specified scopes.
|
Modifier and Type | Method and Description |
---|---|
protected IMultipleMail |
EmailNotifier.createMail(ActivityDocument.IActivity activity,
Collection<UserConfig> users,
Locale emailLocale)
Creates an
IMultipleMail from the ActivityDocument.IActivity . |
protected String |
EmailNotifier.getEmailBody(ActivityDocument.IActivity activity,
Locale locale)
Generate an e-mail body for the activity.
The default implementation gets the localized STR_EMAIL_HTML_BODY, and runs the EL evaluator to return the complete body HTML. |
protected Collection<IMailDestination> |
EmailNotifier.getEmailDestinations(ActivityDocument.IActivity activity,
Collection<UserConfig> users)
Generate a list of email destinations to be added to an email of the activity.
the default implementation adds all users that have an email to the list. |
protected String |
EmailNotifier.getEmailSubject(ActivityDocument.IActivity activity,
Locale locale)
Generate an e-mail subject for the activity.
The default implementation gets the localized STR_EMAIL_SUBJECT, and runs the EL evaluator to return the complete subject. |
protected Locale |
EmailNotifier.getLocaleForEmail(ActivityDocument.IActivity activity)
Returns the locale to localize the email
|
String |
EmailNotifierVariableResolver.ActionDecorator.getLocalizedDisplayName() |
String |
EmailNotifierVariableResolver.ObjectTypeDecorator.getLocalizedDisplayName()
Returns the localized display name of this object type using the resolver locale.
|
String |
EmailNotifierVariableResolver.ActionDecorator.getLocalizedDisplayName(Locale locale) |
String |
EmailNotifierVariableResolver.ObjectTypeDecorator.getLocalizedDisplayName(Locale locale) |
void |
EmailNotifier.notify(ActivityDocument activityDocument,
Collection<UserConfig> users) |
Modifier and Type | Method and Description |
---|---|
static void |
FlowManager.deleteFlowsById(Collection<String> ids,
String serviceInstanceId)
Delete flows by identifiers.
|
static void |
FlowManager.deleteFlowsById(String serviceInstanceId,
String... ids)
Delete flows by identifiers.
|
static void |
FlowManager.deleteFlowsByServiceInstanceId(String serviceInstanceId)
Delete all flows entry by service instance identifier.
|
void |
ResumeFlowClock.doTick(SessionConfig sessionConfig,
ClockConfig clockConfig) |
abstract FlowNode.FlowNodeExecutionResult |
FlowNode.execute(FlowContext flowContext)
Executes this node and returns the next node to be executed.
|
static Collection<FlowEntry> |
FlowManager.getAllFlows()
Returns all flows.
|
protected MonitorUser |
FlowNode.getAndValidateNotAnonymousUser(FlowContext flowContext)
Returns the user from flow context.
|
static FlowEntry |
FlowManager.getByNameAndServiceInstance(String name,
String serviceInstanceId)
Returns flow entry by name and service instance identifiers.
|
Date |
FlowContext.getDate()
Returns the event date.
|
MonitorUser |
FlowContext.getUser()
Returns the user.
|
static void |
FlowManager.onEvent(IMonitorEvent event,
Deque<IMonitorValuesProvider> monitoringValues,
Document document)
Receives an event from monitor framework
|
static void |
ResumeFlowClock.resumeAllSuspended()
Resumes all suspended flows that has a resume date before now.
|
static void |
ResumeFlowClock.resumeAllTimeoutWaitingForEvent()
Resumes the timed out flows that were waiting for an event to happen.
|
static FlowEntry |
FlowManager.saveAs(String name,
Flow flow,
String serviceInstanceId)
Save the given flow.
|
static void |
FlowManager.scheduleClearCache()
Schedule clear cache flows.
|
void |
SuspendedFlow.setEventAttributes(Object eventAttributes)
Sets the eventAttributes.
|
void |
Flow.validate()
Validates this flow.
|
Constructor and Description |
---|
FlowContext(IMonitorEvent event,
Deque<IMonitorValuesProvider> monitoringValues,
Document document)
Creates a new instance.
|
Modifier and Type | Method and Description |
---|---|
FlowNode.FlowNodeExecutionResult |
AbstractJourneyTransitionActionNode.execute(FlowContext flowContext) |
FlowNode.FlowNodeExecutionResult |
AddUserAttributeActionNode.execute(FlowContext flowContext) |
FlowNode.FlowNodeExecutionResult |
CustomActionActionNode.execute(FlowContext flowContext) |
FlowNode.FlowNodeExecutionResult |
RecalculateUserSegmentationsMembershipActionNode.execute(FlowContext flowContext) |
FlowNode.FlowNodeExecutionResult |
RemoveUserAttributeActionNode.execute(FlowContext flowContext) |
FlowNode.FlowNodeExecutionResult |
RemoveUserFromJourneyActionNode.execute(FlowContext flowContext) |
FlowNode.FlowNodeExecutionResult |
SendEmailActionNode.execute(FlowContext flowContext) |
FlowNode.FlowNodeExecutionResult |
WaitActionNode.execute(FlowContext flowContext) |
FlowNode.FlowNodeExecutionResult |
WaitForEventActionNode.execute(FlowContext flowContext) |
boolean |
ICustomAction.execute(IExperienceAutomationFlowContext flowContext)
Returns
true if the flow must continue or false if it must be interrupted. |
Map<String,Object> |
IExperienceAutomationFlowContext.getEventData()
Returns an unmodifiable map with the attributes of the event that triggered the experience automation flow.
The Java type of the attribute depends on the data type of the attribute as follows: String, Text, Keyword: String Double: Double Boolean: Boolean Long: Long Date time: Date URL: URL Geopoint: ExtendedGeoPoint The attributes may be wrapped within a list. The maps keys are the monitor field's identifier. |
IExperienceAutomationFlowContext.IExperienceAutomationFlow |
IExperienceAutomationFlowContext.getFlow()
Returns information about the experience automation flow being executed.
|
UserConfig |
IExperienceAutomationFlowContext.getFlowUser()
Returns the user that generated the event that triggered the flow.
|
String |
WaitForEventActionNode.getWaitingEventId()
Returns the waiting event identifier of self node.
|
Modifier and Type | Method and Description |
---|---|
boolean |
AbstractUserInJourneyChoiceNode.evaluate(FlowContext flowContext) |
boolean |
FilterByEventAttributeNode.evaluate(FlowContext flowContext) |
boolean |
FilterBySegmentationNode.evaluate(FlowContext flowContext) |
abstract boolean |
TrueFalseNode.evaluate(FlowContext flowContext)
Evaluates the given flow context.
|
FlowNode.FlowNodeExecutionResult |
FilterByEventAttributeNode.execute(FlowContext flowContext) |
FlowNode.FlowNodeExecutionResult |
FilterBySegmentationNode.execute(FlowContext flowContext) |
FlowNode.FlowNodeExecutionResult |
TrueFalseNode.execute(FlowContext flowContext) |
Constructor and Description |
---|
FilterByEventAttributeNode(org.json.JSONObject object,
FlowEntry flowEntry)
Creates a new instance from the given JSON object.
|
FilterBySegmentationNode(org.json.JSONObject object,
FlowEntry flowEntry)
Creates a new instance from the given JSON object.
|
Modifier and Type | Method and Description |
---|---|
static Journey |
JourneyManager.addJourney(String name,
String serviceInstanceId,
TimeUnit timeoutUnit,
int timeoutAmount)
Adds a new journey.
|
JourneyStage |
Journey.addStage(String name,
int position,
boolean isJourneyStart,
boolean journeyEnd,
boolean createUserSegmentation,
TimeUnit timeoutUnit,
int timeoutAmount)
Adds a stage in this journey.
|
static JourneyInstance |
JourneyManager.addUserToJourney(String userId,
String stageId)
Adds the user with the given identifier to the journey through the stage with the given identifier.
Returns null if the user is already in the journey or the created JourneyInstance otherwise.This method uses its own transaction. |
static void |
JourneyManager.clearAbandonedInstances()
Removes the abandoned instances.
|
static void |
JourneyManager.deleteJourneys(Collection<String> journeyIds)
Removes the given journey.
|
static void |
JourneyManager.deleteJourneys(String... journeyIds)
Removes the journey with the given identifier.
|
static void |
JourneyManager.deleteJourneysByServiceInstance(String serviceInstanceId)
Removes all journeys of the service with the given identifier.
|
static void |
JourneyManager.deleteStages(Collection<String> stageIds)
Deletes the given stages.
|
static void |
JourneyManager.deleteStages(String... stageIds)
Deletes the given stages.
|
void |
JourneyClearAbandonedInstancesClock.doTick(SessionConfig sessionConfig,
ClockConfig clockConfig) |
static JourneyInstance |
JourneyManager.getInstance(String instanceId)
Returns the instance with the given identifier.
|
static JourneyInstance |
JourneyManager.getInstanceByUserAndJourney(String userId,
String journeyId)
Returns the journey instance for the user in the journey.
|
static JourneyInstance |
JourneyManager.getInstanceByUserAndStage(String userId,
String stageId)
Returns the journey instance for the user in the stage.
|
static Collection<JourneyInstance> |
JourneyManager.getInstancesByUser(String userId)
Finds the instances of the given user.
|
Journey |
JourneyStage.getJourney()
Returns the journey.
|
static Journey |
JourneyManager.getJourney(String journeyId)
Returns the journey with the given identifier.
|
static Collection<String> |
JourneyManager.getJourneyIdsByServiceInstance(String serviceInstanceId)
Returns all journeys of the service instance with the given identifier.
|
JourneyStage |
JourneyInstance.getStage()
Returns the stage.
|
static JourneyStage |
JourneyManager.getStage(String stageId)
Returns the journey stage with the given identifier.
|
Collection<JourneyStage> |
Journey.getStages()
Returns the stages.
|
static boolean |
JourneyManager.isUserInJourney(String userId,
String journeyId)
Returns whether the user with the given identifier is in journey with the given identifier.
|
static boolean |
JourneyManager.isUserInJourneyStage(String userId,
String stageId)
Returns whether the user with the given identifier is in the stage with the given identifier.
|
static String |
JourneyManager.localize(String idString)
Returns the localized string with journey resources.
|
static boolean |
JourneyManager.moveUserToStage(String userId,
String stageId)
Moves the user with the given identifier to the stage with the given identifier.
Returns false if the user is already in the given stage or true otherwise.The user must already be in the journey that contains the given stage. This method uses its own transaction. |
static void |
JourneyManager.removeAllUsersFromJourney(String journeyId)
Removes all users from the journey with the given identifier.
|
static void |
JourneyManager.removeUserFromAllJourneys(MonitorUser monitorUser)
Remove the monitor user from all journeys.
|
static void |
JourneyManager.removeUsersFromJourney(Collection<String> userIds,
String journeyId)
Removes the users with the given identifiers from the journey with the given identifier.
|
static void |
JourneyManager.updateJourney(Journey journey)
Updates the given journey.
|
static void |
JourneyManager.updateStage(JourneyStage stage,
boolean createUserSegmentation)
Updates the given stage.
The createUserSegmentation parameter value will make either:A new segmentation to be created if the parameter is true and the stage still doesn't have a segmentation created.
The existent segmentation to be deleted if the parameter is false and there's already a created segmentation.
Nothing otherwise.
|
Modifier and Type | Method and Description |
---|---|
void |
IUserSegmentationManagerSPI.deleteSegmentations(Collection<String> ids,
String serviceInstanceId)
Delete the given segmentations.
|
void |
IUserSegmentationManagerSPI.deleteSegmentationsByServiceInstanceId(String serviceInstanceId)
Deletes all segmentations of the given service instance.
|
List<IUserSegmentation> |
IUserSegmentationManagerSPI.findByServiceInstanceAndLikeName(String name,
String serviceInstanceId)
Returns the segmentations of the given service instance that matches the given
name parameter. |
IUserSegmentation |
IUserSegmentationManagerSPI.getById(String id)
Returns the segmentation with the given identifier or
null if no segmentation exists with the given identifier. |
IUserSegmentation |
IUserSegmentationManager.getByNameAndServiceInstance(String name,
String serviceInstanceId)
Returns the segmentation of the given name and service instance.
|
List<IUserSegmentation> |
IUserSegmentationManagerSPI.getByServiceInstance(String serviceInstanceId)
Returns the segmentations of the given service instance.
|
Collection<String> |
IUserSegmentationManagerSPI.getMemberSegmentations(String monitorUserId)
Returns a collection of segmentations of the given user.
|
Collection<String> |
IUserSegmentationManagerSPI.getMemberSegmentations(String monitorUserId,
boolean useSessionCache)
Returns a collection of segmentations of the given user.
|
Collection<String> |
IUserSegmentationManagerSPI.getPortalMembers(String segmentationId)
Returns the segmentation members.
|
default Collection<String> |
IUserSegmentationManagerSPI.getPortalMemberSegmentations(String portalUserId)
Returns a collection of segmentations of the given (portal) user.
|
Collection<String> |
IUserSegmentationManagerSPI.getPortalMemberSegmentations(String portalUserId,
boolean useSessionCache)
Returns a collection of segmentations of the given (portal) user.
|
Collection<IUserSegmentation> |
IUserSegmentationManagerSPI.getSegmentationsThatNeedToHaveMembershipUpdated()
Returns a collection of user segmentations that must have the memberships updated.
|
boolean |
IUserSegmentationManagerSPI.isMember(Collection<String> segmentationIds,
String monitorUserId)
Verifies if a user is a member of one of the specified segmentations.
The given user identifier refers to monitor user, not to the portal user. |
String |
IUserSegmentationManagerSPI.saveSegmentation(String name,
String serviceInstanceId,
org.json.JSONObject segmentationFilter)
Save the given segmentation and returns the identifier of the segmentation added or updated.
|
IUserSegmentation |
IUserSegmentationManagerSPI.updateSegmentation(String id,
String serviceInstanceId,
org.json.JSONObject filter)
Updates the given segmentation with the given filters.
|
void |
IUserSegmentationManager.updateSegmentationMembership(IUserSegmentation segmentation)
Updates the given segmentation memberships cache.
|
void |
IUserSegmentationManager.updateSegmentationMembership(IUserSegmentation segmentation,
String monitorUserId)
Updates the given segmentation membership cache for the given user.
|
Modifier and Type | Method and Description |
---|---|
void |
GenericApplicationServerManager.deployWar(ZipFile warFile,
String contextPath) |
void |
IAppServerDeployer.deployWar(ZipFile warFile,
String contextPath)
Deploys the given war file to the specified context path.
|
IAppServerDeployer |
GenericApplicationServerManager.getDeployer() |
IAppServerDeployer |
IApplicationServerManager.getDeployer()
Returns the deployer for this application server.
|
void |
GenericApplicationServerManager.redeployWar(ZipFile warFile,
String contextPath) |
void |
IAppServerDeployer.redeployWar(ZipFile warFile,
String contextPath)
Redeploy the given war file to the specified context path.
|
void |
GenericApplicationServerManager.undeployWar(String contextPath) |
void |
IAppServerDeployer.undeployWar(String contextPath)
Undeploys the war at the specified context path.
|
Modifier and Type | Method and Description |
---|---|
void |
AuditManager.audit(String title,
String description,
String typeKey)
Register an audit entry.
|
void |
IAuditManager.audit(String title,
String description,
String typeKey)
Register an audit entry.
|
lumis.portal.audit.AuditEntry |
AuditManager.audit(String title,
String description,
String typeKey,
boolean registerChilds,
ITransaction t)
Starts an operation for audit and add register an observer to the
transaction in order to end the operation.
|
lumis.portal.audit.AuditEntry |
AuditManager.beginAudit(String title,
String description,
String typeKey,
boolean registerChilds)
Starts an operation for audit.
|
void |
AuditManager.disableType(String auditEntryTypeId)
Disable the
AuditEntryType by it's id. |
void |
AuditManager.enableType(String auditEntryTypeId)
Enable the
AuditEntryType by it's id. |
void |
AuditManager.endAudit(lumis.portal.audit.AuditEntry auditEntry)
Ends the AuditEntry operation.
|
protected AuditCategory |
AuditManager.findCategoryById(String categoryId)
Find the category by it's id.
|
protected AuditCategory |
AuditManager.findCategoryByKey(String categoryKey)
Find the AuditCategory by it's key.
|
protected AuditEntryType |
AuditManager.findEntryTypeByKey(String entryTypeKey)
Find the AuditEntryType by it's key.
|
AuditConfig |
AuditManager.obtainConfiguration()
Obtain the audit configuration.
|
protected void |
AuditManager.registerEntry(lumis.portal.audit.AuditEntry auditEntry,
AuditEntryState state)
Register the audit entry in database.
|
void |
AuditManager.removeOldEntries()
Remove audit entries older than the number of days specified by the
cleanInterval field in configuration.
|
void |
AuditManager.updateCleanInterval(int cleanInterval)
Updates the time interval to clean audit entries.
|
Modifier and Type | Class and Description |
---|---|
class |
LoginFailedInvalidUserException |
class |
LoginFailedUserDisabledException |
Modifier and Type | Method and Description |
---|---|
void |
AuthenticationDaoJdbc.addUserSessionId(String userSessionId,
String userId) |
void |
IAuthenticationDao.addUserSessionId(String userSessionId,
String userId)
Add the User Session Id.
|
Collection<SessionConfig> |
AuthenticationDaoJdbc.clearInactiveSessions(int minutes,
ITransaction transaction) |
Collection<SessionConfig> |
IAuthenticationDao.clearInactiveSessions(int minutes,
ITransaction transaction)
Remove sessions inactive for the specified amount of minutes.
|
void |
AuthenticationManager.clearInactiveSessions(SessionConfig sessionConfig,
int minutes,
ITransaction transaction) |
void |
IAuthenticationManager.clearInactiveSessions(SessionConfig sessionConfig,
int minutes,
ITransaction transaction)
Deprecated.
since 12.1.0 removed from stable API without replacement.
|
void |
AuthenticationDaoJdbc.deleteUserSessionByUserId(String userId) |
void |
IAuthenticationDao.deleteUserSessionByUserId(String userId)
Delete the User Session Id from the user id.
|
void |
AuthenticationDaoJdbc.deleteUserSessionId(String userSessionId) |
void |
IAuthenticationDao.deleteUserSessionId(String userSessionId)
Delete the User Session Id.
|
void |
AuthenticationManager.endImpersonation(SessionConfig sessionConfig) |
void |
IAuthenticationManager.endImpersonation(SessionConfig sessionConfig)
Ends an impersonation in the
current thread, that has been started by
IAuthenticationManager.impersonate(String) . |
static Collection<String> |
AuthenticationUtil.getGroupsAliasesInUserSession(SessionConfig session)
Returns the groups of the user of the given session.
|
static Collection<String> |
AuthenticationUtil.getGroupsIdsInUserSession(SessionConfig session)
Returns the groups of the user of the given session.
|
static Collection<String> |
AuthenticationUtil.getGroupsNamesInUserSession(SessionConfig session)
Returns the groups of the user of the given session.
|
Collection<SessionConfig> |
AuthenticationManager.getSessionsByUserId(SessionConfig sessionConfig,
String userId,
ITransaction transaction) |
Collection<SessionConfig> |
IAuthenticationManager.getSessionsByUserId(SessionConfig sessionConfig,
String userId,
ITransaction transaction)
Returns a collection of active session objects for the given user.
|
Collection<SessionConfig> |
AuthenticationDaoJdbc.getSessionsByUserId(String userId,
ITransaction transaction) |
Collection<SessionConfig> |
IAuthenticationDao.getSessionsByUserId(String userId,
ITransaction transaction)
Returns a collection of active session objects for the given user.
|
UserConfig |
SessionConfig.getUserConfig()
Returns the
UserConfig associated with this session, cached inside this instance. |
String |
SessionConfig.getUserId()
Gets the user id associated with this session.
|
String |
AuthenticationDaoJdbc.getUserId(String userSessionId,
ITransaction transaction) |
String |
IAuthenticationDao.getUserId(String userSessionId,
ITransaction transaction)
Get the user id.
|
String |
AuthenticationManager.getUserIdBySessionId(SessionConfig sessionConfig,
ITransaction transaction)
Deprecated.
|
String |
IAuthenticationManager.getUserIdBySessionId(SessionConfig sessionConfig,
ITransaction transaction)
Deprecated.
Since 4.0.8, this method was replaced by
SessionConfig.getUserId() . |
static Collection<String> |
AuthenticationUtil.getUserPrincipalsInUserSession(SessionConfig session)
Returns the groups of the user of the given session.
|
static Collection<String> |
AuthenticationUtil.getUserSegmentations(SessionConfig session)
Returns the groups of the user of the given session.
|
void |
LoginControllerHtml.handleLogin(ITransaction transaction) |
void |
LoginControllerHtml.handleLogout(ITransaction transaction) |
SessionConfig |
AuthenticationManager.impersonate(String userId) |
SessionConfig |
IAuthenticationManager.impersonate(String userId)
The authenticated user in the current thread impersonates another user.
|
void |
SessionKeepAliveControllerXml.keepAlive() |
void |
AuthenticationManager.keepSessionAlive(SessionConfig sessionConfig) |
void |
IAuthenticationManager.keepSessionAlive(SessionConfig sessionConfig)
Keeps the specified session alive by updating the last time the session was used.
|
void |
AuthenticationDaoJdbc.keepSessionAlive(String sessionId) |
void |
IAuthenticationDao.keepSessionAlive(String sessionId)
Update the last access date for the given session.
|
SessionConfig |
AuthenticationManager.login(String login,
String password,
ITransaction transaction) |
SessionConfig |
IAuthenticationManager.login(String login,
String password,
ITransaction transaction)
Logins a user using the specified password as his credentials, and returns
the new SessionConfig for the logged in user.
|
SessionConfig |
AuthenticationManager.login(String securityAlias,
String login,
String password,
ITransaction transaction) |
SessionConfig |
IAuthenticationManager.login(String securityAlias,
String login,
String password,
ITransaction transaction)
Logins a user using the specified JAAS security alias, password as his credentials, and returns
the new SessionConfig for the logged in user.
|
String |
AuthenticationManager.loginFramworkClockUser(ITransaction transaction)
Deprecated.
|
String |
IAuthenticationManager.loginFramworkClockUser(ITransaction transaction)
Deprecated.
Since 4.0.8, instead of calling this method
generate a impersonated SessionConfig by calling
IAuthenticationManager.impersonate(String)
using UserConfig.USER_FRAMEWORKCLOCK_ID as parameter. |
SessionConfig |
AuthenticationManager.loginUser(String userId,
ITransaction transaction) |
SessionConfig |
IAuthenticationManager.loginUser(String userId,
ITransaction transaction)
Logins a user without performing any authentication.
|
String |
AuthenticationManager.loginUser(String login,
String password,
ITransaction transaction)
Deprecated.
|
String |
IAuthenticationManager.loginUser(String login,
String password,
ITransaction transaction)
Deprecated.
Since 4.0.8, this method has been replaced by
IAuthenticationManager.login(String, String, ITransaction) . |
String |
AuthenticationManager.loginUserGuest()
Deprecated.
|
String |
IAuthenticationManager.loginUserGuest()
Deprecated.
Since 4.0.8, instead of calling this method
generate a impersonated SessionConfig by calling
IAuthenticationManager.impersonate(String)
using UserConfig.USER_GUEST_ID as parameter. |
void |
AuthenticationManager.logoutUser(SessionConfig sessionConfig,
ITransaction transaction) |
void |
IAuthenticationManager.logoutUser(SessionConfig sessionConfig,
ITransaction transaction)
Close the user's session given the userSession and the transaction.
|
static void |
AuthenticationUtil.updateGroupMembershipLastUpdated()
Updates the group membership last updated date time over the cluster.
|
boolean |
ILoginValidator.validateLogin(String login,
String password)
Deprecated.
|
boolean |
LoginValidator.validateLogin(String login,
String password) |
boolean |
AuthenticationManager.validateSessionId(SessionConfig sessionConfig,
ITransaction transaction) |
boolean |
IAuthenticationManager.validateSessionId(SessionConfig sessionConfig,
ITransaction transaction)
Validate the session of the User given the userSession and transaction.
|
boolean |
AuthenticationDaoJdbc.validateUserLogin(String login,
String password,
ITransaction transaction) |
boolean |
IAuthenticationDao.validateUserLogin(String login,
String password,
ITransaction transaction)
Validade the user login.
|
String |
AuthenticationDaoJdbc.validateUserSession(String userSessionId,
ITransaction transaction) |
String |
IAuthenticationDao.validateUserSession(String userSessionId,
ITransaction transaction)
Validate the session of the user.
|
Constructor and Description |
---|
LoginControllerHtml(HttpServletRequest request,
HttpServletResponse response,
PageContext pageContext) |
SessionKeepAliveControllerXml(HttpServletRequest request,
HttpServletResponse response,
PageContext pageContext) |
Modifier and Type | Method and Description |
---|---|
void |
SessionClock.doTick(SessionConfig sessionConfig,
ClockConfig clockConfig) |
Modifier and Type | Method and Description |
---|---|
String |
HttpHandshakeAuthenticator.authenticate(HttpServletRequest request,
HttpServletResponse response)
Tries to authenticate the request, calling
HttpHandshakeAuthenticator.doAuthentication(HttpServletRequest, HttpServletResponse)
or HttpHandshakeAuthenticator.requestAuthentication(HttpServletRequest, HttpServletResponse)
according to the current state. |
String |
IHttpAuthenticator.authenticate(HttpServletRequest request,
HttpServletResponse response)
Performs the authentication for a given request.
|
protected abstract String |
HttpHandshakeAuthenticator.doAuthentication(HttpServletRequest request,
HttpServletResponse response)
Perform the user authentication for the given request.
|
protected String |
SpnegoAuthenticator.doAuthentication(HttpServletRequest request,
HttpServletResponse response) |
protected abstract void |
HttpHandshakeAuthenticator.requestAuthentication(HttpServletRequest request,
HttpServletResponse response)
Request authentication from the browser.
|
protected void |
SpnegoAuthenticator.requestAuthentication(HttpServletRequest request,
HttpServletResponse response) |
Modifier and Type | Method and Description |
---|---|
void |
BigDataManager.addSynonym(ISynonym synonym) |
void |
IBigDataManager.addSynonym(ISynonym synonym)
Adds the given synonyms to be used during
document creation . |
Map<IDocumentPopularityProvider.DocumentPopularityKey,Double> |
DummyDocumentPopularityProvider.calculateDocumentPopularities() |
Map<IDocumentPopularityProvider.DocumentPopularityKey,Double> |
IDocumentPopularityProvider.calculateDocumentPopularities()
Returns a list of documents popularities.
|
Map<IDocumentPopularityProvider.DocumentPopularityKey,Double> |
StandardDocumentPopularityProvider.calculateDocumentPopularities() |
double |
DummyDocumentPopularityProvider.calculateDocumentPopularity(StandardDocument document) |
double |
IDocumentPopularityProvider.calculateDocumentPopularity(StandardDocument document)
Returns the popularity for the given document.
|
double |
StandardDocumentPopularityProvider.calculateDocumentPopularity(StandardDocument document) |
void |
BigDataManager.deleteSynonyms(String... synonymIds) |
void |
IBigDataManager.deleteSynonyms(String... synonymIds)
Removes the synonyms with the given identifiers.
|
void |
BigDataManager.publishSynonyms(boolean forcePublish) |
void |
IBigDataManagerSPI.publishSynonyms(boolean forcePublish)
Writes the synonyms files and reloaded them into the repository .If status is SynonymsStatus.UPDATED , nothing will be performed, unless forcePublish parameter is true . |
void |
BigDataManager.updateSynonym(ISynonym synonym) |
void |
IBigDataManager.updateSynonym(ISynonym synonym)
Updates the given synonyms to be used during
document creation . |
void |
IBigDataSearcher.validate(SearchQuery searchQuery)
Checks is the given
search query is syntactically correct. |
Modifier and Type | Method and Description |
---|---|
void |
ElasticsearchRepository.reloadSynonyms() |
void |
ElasticsearchRepository.validate(SearchQuery searchQuery) |
Modifier and Type | Method and Description |
---|---|
void |
IBigDataRepositorySPI.reloadSynonyms()
Reloads the synonyms in this repository.
|
Modifier and Type | Class and Description |
---|---|
class |
BusinessContextNotEnabledForCurrentChannelException
This exception indicates that the BusinessContext is not enabled nor inherited in the current channel.
|
class |
BusinessContextPropertyNotFoundException
This exception indicates that the property that was being looked for in the BusinessContext was not found.
|
Modifier and Type | Method and Description |
---|---|
void |
BusinessContextManager.clearCache()
Clears the business context cache.
|
BusinessContextUsage |
BusinessContextManager.getLocalContexts(ChannelConfig channel)
Returns the
business context usage for the
given channel. |
BusinessContextUsage |
BusinessContextManager.getLocalContexts(PageConfig page)
Returns the
business context usage for the
given page. |
void |
BusinessContextManager.register(String id,
String name,
String xml) |
void |
IBusinessContextManagerSPI.register(String id,
String name,
String xml)
Registers a new context
|
void |
BusinessContextManager.unregister(String id) |
void |
IBusinessContextManagerSPI.unregister(String id)
Deletes a selected context.
|
void |
BusinessContextManager.updateLocalBusinessContextUsage(ChannelConfig channel,
BusinessContextUsage usage)
Updates the
business context usage for the
given channel. |
void |
BusinessContextManager.updateLocalBusinessContextUsage(PageConfig page,
BusinessContextUsage usage)
Updates the
business context usage for the
given page. |
void |
BusinessContextManager.updateLocalBusinessContextUsage(String propertyBagId,
BusinessContextUsage usage)
Updates the
business context usage for the
property bag with the given identifier. |
void |
BusinessContextManager.updateRegistration(String id,
String name,
String xml) |
void |
IBusinessContextManagerSPI.updateRegistration(String id,
String name,
String xml)
Updates a selected context.
|
Constructor and Description |
---|
BusinessContext(HttpServletRequest request,
String id,
Document xml)
Creates a new business context with the params.
|
BusinessContextProperty(Node property) |
Modifier and Type | Method and Description |
---|---|
void |
CacheManager.addCacheConfig(SessionConfig sessionConfig,
ICacheConfig cacheConfig,
ITransaction transaction) |
void |
ICacheManager.addCacheConfig(SessionConfig sessionConfig,
ICacheConfig cacheConfig,
ITransaction transaction)
Adds a cacheConfig to persistence.
|
void |
PortalCache.clear(ITransaction transaction)
Clears the cache and disables it until the given transaction
ends.
|
ICacheConfig |
CacheManager.createCacheConfig(String id) |
ICacheConfig |
ICacheManager.createCacheConfig(String id)
Creates an
ICacheConfig transient instance. |
void |
CacheManager.deleteCacheConfig(SessionConfig sessionConfig,
ICacheConfig cacheConfig,
ITransaction transaction) |
void |
ICacheManager.deleteCacheConfig(SessionConfig sessionConfig,
ICacheConfig cacheConfig,
ITransaction transaction)
Deletes a cacheConfig from persistence.
|
protected abstract Collection<CacheItem<T>> |
SingleOrBulkLoadCacheDataProvider.doBulkLoad(ICacheMultiDataProvider.IRequest request)
Performs a bulk load.
|
protected abstract CacheItem<T> |
SingleOrBulkLoadCacheDataProvider.doSingleLoad(ICacheMultiDataProvider.IRequest request)
Performs a single load.
|
T |
PortalCache.fetch(String key)
Obtain the value associated with the specified key.
|
T |
PortalCache.fetch(String key,
ICacheDataProvider<T> cacheDataProvider)
Obtain the value associated with the specified key.
|
T |
PortalCache.fetch(String key,
ICacheDataProvider<T> cacheDataProvider,
String... groups)
Obtain the value associated with the specified key and groups.
|
T |
PortalCache.fetch(String key,
String... groups)
Obtain the value associated with the specified key and groups.
|
ICacheConfig |
CacheManager.getCacheConfig(SessionConfig sessionConfig,
String cacheConfigId,
ITransaction transaction) |
ICacheConfig |
ICacheManager.getCacheConfig(SessionConfig sessionConfig,
String cacheConfigId,
ITransaction transaction)
Returns a persistent cacheConfig instance.
|
Collection<CacheItem<T>> |
ICacheMultiDataProvider.loadData(ICacheMultiDataProvider.IRequest request)
Returns the data to be loaded into the cache.
|
Collection<CacheItem<T>> |
SingleOrBulkLoadCacheDataProvider.loadData(ICacheMultiDataProvider.IRequest request) |
T |
ICacheDataProvider.loadData(String key)
Returns the data that is to be cached under the specified key.
|
void |
ClusterMembershipObserver.onEvent(IPortalEvent event) |
void |
PortalCache.remove(String key,
ITransaction transaction)
Removes an entry from the cache now and after the given transaction
ends.
|
Modifier and Type | Class and Description |
---|---|
class |
ChannelPrefixInUseException
Exceptions that is raised when adding/updating a channel using a local group prefix already in use by another channel
|
Modifier and Type | Method and Description |
---|---|
void |
ChannelDaoJdbc.add(ChannelConfig channelConfig,
ITransaction transaction) |
void |
IChannelDao.add(ChannelConfig channelConfig,
ITransaction transaction)
Add the channel.
|
String |
ChannelManager.add(SessionConfig sessionConfig,
ChannelConfig channelConfig,
ITransaction transaction) |
String |
IChannelManager.add(SessionConfig sessionConfig,
ChannelConfig channelConfig,
ITransaction transaction)
Add a Channel.
|
protected void |
ChannelControllerXml.addChannel(ITransaction portalTransaction) |
void |
ChannelDaoJdbc.addCss(String channelId,
String cssId,
int position,
ITransaction transaction) |
void |
IChannelDao.addCss(String channelId,
String cssId,
int position,
ITransaction transaction)
Add the CSS of the channel.
|
void |
ChannelManager.addCssLink(SessionConfig sessionConfig,
String channelId,
String cssId,
int position,
ITransaction transaction) |
void |
IChannelManager.addCssLink(SessionConfig sessionConfig,
String channelId,
String cssId,
int position,
ITransaction transaction)
Add the hyperlink to the channel's CSS file.
|
void |
ChannelManager.addOrUpdate(SessionConfig sessionConfig,
ChannelConfig channelConfig,
ITransaction transaction) |
void |
IChannelManager.addOrUpdate(SessionConfig sessionConfig,
ChannelConfig channelConfig,
ITransaction transaction)
Add or Update a Channel, depending on its previous existence.
|
protected void |
ChannelConfig.applyPropertyBagChanges() |
boolean |
ChannelDaoJdbc.checkForChannelPrefix(ChannelConfig channelConfig,
ITransaction transaction) |
boolean |
IChannelDao.checkForChannelPrefix(ChannelConfig channelConfig,
ITransaction transaction)
Returns if the channel prefix for local groups is already in use.
|
void |
ChannelManager.clearCache(SessionConfig sessionConfig,
String channelId,
ITransaction transaction) |
void |
IChannelManager.clearCache(SessionConfig sessionConfig,
String channelId,
ITransaction transaction)
Clear the Channel cache.
|
protected void |
ChannelControllerXml.clearChannelCache(ITransaction portalTransaction) |
String |
ChannelManager.copy(SessionConfig sessionConfig,
String sourceChannelId,
String destinationParentChannelId,
ITransaction transaction) |
String |
IChannelManager.copy(SessionConfig sessionConfig,
String sourceChannelId,
String destinationParentChannelId,
ITransaction transaction)
Creates a new channel by copying source channel's properties and
structure into destination's parent channel.
|
WebResource |
ChannelManager.createWebResourceByDynamicPath(String dynamicPath) |
void |
ChannelManager.delete(SessionConfig sessionConfig,
String channelId,
ITransaction transaction) |
void |
IChannelManager.delete(SessionConfig sessionConfig,
String channelId,
ITransaction transaction)
Delete the Channel.
|
void |
ChannelDaoJdbc.delete(String channelId,
ITransaction transaction) |
void |
IChannelDao.delete(String channelId,
ITransaction transaction)
Delete the channel.
|
protected void |
ChannelControllerXml.deleteChannel(ITransaction portalTransaction) |
void |
ChannelDaoJdbc.deleteCss(String channelId,
String cssId,
ITransaction transaction) |
void |
IChannelDao.deleteCss(String channelId,
String cssId,
ITransaction transaction)
Delete the CSS of the channel.
|
void |
ChannelManager.deleteCssLink(SessionConfig sessionConfig,
String channelId,
String cssId,
ITransaction transaction) |
void |
IChannelManager.deleteCssLink(SessionConfig sessionConfig,
String channelId,
String cssId,
ITransaction transaction)
Delete the hyperlink to the channel's CSS file.
|
protected void |
ChannelManager.deleteRecursively(SessionConfig sessionConfig,
String channelId,
ITransaction transaction) |
void |
ChannelConfig.deserialize(Node channelNode) |
String |
ChannelManager.deserialize(SessionConfig sessionConfig,
DeserializationConfig deserializationConfig,
Node channelNode,
ITransaction transaction) |
String |
IChannelManager.deserialize(SessionConfig sessionConfig,
DeserializationConfig deserializationConfig,
Node channelNode,
ITransaction transaction) |
void |
ChannelManager.deserializeCss(SessionConfig sessionConfig,
DeserializationConfig deserializationConfig,
Node cssLinksNodes,
ITransaction transaction) |
void |
IChannelManager.deserializeCss(SessionConfig sessionConfig,
DeserializationConfig deserializationConfig,
Node cssLinksNodes,
ITransaction transaction) |
protected void |
ChannelConfig.deserializePropertyBag(Node propertyBagNode) |
void |
ChannelManager.deserializeSecondPass(SessionConfig sessionConfig,
DeserializationConfig deserializationConfig,
Node channelNode,
ITransaction transaction) |
void |
IChannelManager.deserializeSecondPass(SessionConfig sessionConfig,
DeserializationConfig deserializationConfig,
Node channelNode,
ITransaction transaction)
Perfoms the second pass of the channels deserialization
|
protected void |
ChannelManager.disconnectChannelsFromTemplatesRecursively(SessionConfig sessionConfig,
String channelId,
ITransaction transaction) |
String |
ChannelDaoJdbc.generateRandomChannelPrefix(ITransaction transaction) |
String |
IChannelDao.generateRandomChannelPrefix(ITransaction transaction)
Generates a new random channel prefix, that is not already in use.
|
ChannelConfig |
ChannelManager.get(SessionConfig sessionConfig,
String channelId,
ITransaction transaction) |
ChannelConfig |
IChannelManager.get(SessionConfig sessionConfig,
String channelId,
ITransaction transaction)
Get the Channel's configuration.
|
ChannelConfig |
ChannelDaoJdbc.get(String channelId,
ITransaction transaction) |
ChannelConfig |
IChannelDao.get(String channelId,
ITransaction transaction)
Returns the channel with the specified channelId.
|
Collection<Locale> |
ChannelConfig.getAcceptableLocales()
Returns this channel's acceptable locales.
If this channel does not define this property, it will be searched in parents recursively until a parent that defines it could be found or the root channel is reached. |
Collection<Locale> |
ChannelConfig.getAcceptableLocalesLocal()
Returns this channel's acceptable locales.
If this channel does not define this property, null will be returned.If the inheritance should be used, consider using ChannelConfig.getAcceptableLocales() instead.Only the locales that exists in LumisPortal global locales are returned. |
int |
ChannelManager.getCachePages(SessionConfig sessionConfig,
ChannelConfig channelConfig,
ITransaction transaction) |
int |
IChannelManager.getCachePages(SessionConfig sessionConfig,
ChannelConfig channelConfig,
ITransaction transaction) |
boolean |
ChannelManager.getCenterPages(SessionConfig sessionConfig,
ChannelConfig channelConfig,
ITransaction transaction) |
boolean |
IChannelManager.getCenterPages(SessionConfig sessionConfig,
ChannelConfig channelConfig,
ITransaction transaction)
Get a boolean indicating wheter the page must be centralized.
|
int |
ChannelDaoJdbc.getChannelTreeCount(String rootChannelId,
ITransaction transaction) |
int |
ChannelManager.getChannelTreeCount(String rootChannelId,
ITransaction transaction) |
int |
IChannelDao.getChannelTreeCount(String rootChannelId,
ITransaction transaction) |
int |
IChannelManager.getChannelTreeCount(String rootChannelId,
ITransaction transaction)
Returns the number of channels in the tree for which the root is the given channelId.
|
List<String> |
ChannelDaoJdbc.getChannelTreeIds(String rootChannelId,
boolean includeIgnoredOnImportExportChannels,
ITransaction transaction) |
List<String> |
ChannelManager.getChannelTreeIds(String rootChannelId,
boolean includeIgnoredOnImportExportChannels,
ITransaction transaction) |
List<String> |
IChannelDao.getChannelTreeIds(String rootChannelId,
boolean includeIgnoredOnImportExportChannels,
ITransaction transaction)
Returns the tree identifiers of the root channel identified by the given identifier.
|
List<String> |
IChannelManagerSPI.getChannelTreeIds(String rootChannelId,
boolean includeIgnoredOnImportExportChannels,
ITransaction transaction)
Returns all the ids of channels in the tree for which the root is the given channelId.
|
List<String> |
ChannelDaoJdbc.getChannelTreeIds(String rootChannelId,
ITransaction transaction) |
List<String> |
ChannelManager.getChannelTreeIds(String rootChannelId,
ITransaction transaction) |
List<String> |
IChannelDao.getChannelTreeIds(String rootChannelId,
ITransaction transaction) |
List<String> |
IChannelManager.getChannelTreeIds(String rootChannelId,
ITransaction transaction)
Returns all the ids of channels in the tree for which the root is the given channelId.
|
List<String> |
ChannelManager.getCssIds(SessionConfig sessionConfig,
String channelId,
ITransaction transaction) |
List<String> |
IChannelManager.getCssIds(SessionConfig sessionConfig,
String channelId,
ITransaction transaction)
Get a list of CSS Ids of the Channel.
|
List<String> |
ChannelDaoJdbc.getCssIds(String channelId,
ITransaction transaction) |
List<String> |
IChannelDao.getCssIds(String channelId,
ITransaction transaction)
Get the ids of the channel's CSS.
|
List<String> |
ChannelManager.getCssIdsRecursively(SessionConfig sessionConfig,
String channelId,
ITransaction transaction) |
List<String> |
IChannelManager.getCssIdsRecursively(SessionConfig sessionConfig,
String channelId,
ITransaction transaction)
Get a list of Css Ids of the Channel including inherited Css.
|
Locale |
ChannelConfig.getDefaultLocale()
Returns the default locale of this channel.
If this channel does not define a default locale, it will be inherited from parent channel recursively. |
Locale |
ChannelConfig.getDefaultLocaleLocal()
Returns the default locale of this channel.
If this channel does not define a default locale, null will be returned. |
String |
ChannelManager.getFriendlyPath(SessionConfig sessionConfig,
String channelId,
ITransaction transaction) |
String |
IChannelManager.getFriendlyPath(SessionConfig sessionConfig,
String channelId,
ITransaction transaction)
Get the friendly path of a channel.
|
String |
ChannelDaoJdbc.getIdByChannelPrefix(ChannelConfig channelConfig,
ITransaction transaction) |
String |
IChannelDao.getIdByChannelPrefix(ChannelConfig channelConfig,
ITransaction transaction) |
Collection<String> |
ChannelManager.getIdsByPageTemplateId(SessionConfig sessionConfig,
String pageTemplateId,
ITransaction transaction) |
Collection<String> |
IChannelManager.getIdsByPageTemplateId(SessionConfig sessionConfig,
String pageTemplateId,
ITransaction transaction)
Retrieves the Ids of all channel that uses the specified page template as default page template
|
Collection<String> |
ChannelDaoJdbc.getIdsByPageTemplateId(String pageTemplateId,
ITransaction transaction) |
Collection<String> |
IChannelDao.getIdsByPageTemplateId(String pageTemplateId,
ITransaction transaction)
Get the Ids of all channels that have the specified page template as the default page template
|
List<String> |
ChannelManager.getIdsByParentChannelId(SessionConfig sessionConfig,
String channelId,
ITransaction transaction) |
List<String> |
IChannelManager.getIdsByParentChannelId(SessionConfig sessionConfig,
String channelId,
ITransaction transaction)
Get a list of sub channel's id given the parent Channel's id.
|
List<String> |
ChannelManager.getIdsByParentTemplateId(SessionConfig sessionConfig,
String parentTemplateId,
ITransaction transaction) |
List<String> |
IChannelManager.getIdsByParentTemplateId(SessionConfig sessionConfig,
String parentTemplateId,
ITransaction transaction)
Retrieves the Ids of all channel that uses the specified channel template.
|
List<String> |
ChannelDaoJdbc.getIdsByParentTemplateId(String parentTemplateId,
ITransaction transaction) |
List<String> |
IChannelDao.getIdsByParentTemplateId(String parentTemplateId,
ITransaction transaction)
Get the Ids of all channels associated with the specified template id.
|
int |
ChannelManager.getLayoutPagesType(SessionConfig sessionConfig,
ChannelConfig channelConfig,
ITransaction transaction) |
int |
IChannelManager.getLayoutPagesType(SessionConfig sessionConfig,
ChannelConfig channelConfig,
ITransaction transaction)
Get a the page layout format.
|
List<String> |
ChannelManager.getMetaTagIdsRecursively(SessionConfig sessionConfig,
String channelId,
ITransaction transaction) |
List<String> |
IChannelManager.getMetaTagIdsRecursively(SessionConfig sessionConfig,
String channelId,
ITransaction transaction)
Get a list of meta-tags ids of the Channel including inherit Meta-tag.
|
String |
ChannelManager.getPageTemplateIdRecursively(SessionConfig sessionConfig,
String channelId,
ITransaction transaction) |
String |
IChannelManager.getPageTemplateIdRecursively(SessionConfig sessionConfig,
String channelId,
ITransaction transaction)
Returns the PageTemplateId for the specified channel (local or inherited from a parent channel)
|
String |
ChannelManager.getPageWebResourceDataProviderClassName(SessionConfig sessionConfig,
ChannelConfig channelConfig,
ITransaction transaction) |
String |
IChannelManager.getPageWebResourceDataProviderClassName(SessionConfig sessionConfig,
ChannelConfig channelConfig,
ITransaction transaction)
Returns the default
IPageWebResourceDataProvider
class name for the child pages of a channel. |
String |
ChannelManager.getPath(SessionConfig sessionConfig,
String channelId,
boolean localizable,
ITransaction transaction) |
String |
IChannelManager.getPath(SessionConfig sessionConfig,
String channelId,
boolean localizable,
ITransaction transaction)
Get the full path of the Channel.
|
String |
ChannelManager.getPath(SessionConfig sessionConfig,
String channelId,
ITransaction transaction) |
String |
IChannelManager.getPath(SessionConfig sessionConfig,
String channelId,
ITransaction transaction)
Get the full path of the Channel.
|
List<String> |
ChannelManager.getPathIds(SessionConfig sessionConfig,
String channelId,
ITransaction transaction) |
List<String> |
IChannelManager.getPathIds(SessionConfig sessionConfig,
String channelId,
ITransaction transaction)
Get Ids of channel and its parents.
|
List<String> |
ChannelManager.getPathNames(SessionConfig sessionConfig,
String channelId,
boolean localizable,
ITransaction transaction) |
List<String> |
IChannelManager.getPathNames(SessionConfig sessionConfig,
String channelId,
boolean localizable,
ITransaction transaction)
Returns a list of strings each representing the name of the channel between the root portal
channel and the channel solicited.
|
int |
ChannelManager.getProtocolType(SessionConfig sessionConfig,
ChannelConfig channelConfig,
ITransaction transaction) |
int |
IChannelManager.getProtocolType(SessionConfig sessionConfig,
ChannelConfig channelConfig,
ITransaction transaction)
Returns the protocolType of the given channel.
|
String |
ChannelManager.getRuntimeDataProviderClassName(SessionConfig sessionConfig,
ChannelConfig channelConfig,
ITransaction transaction)
Deprecated.
|
String |
IChannelManager.getRuntimeDataProviderClassName(SessionConfig sessionConfig,
ChannelConfig channelConfig,
ITransaction transaction)
Deprecated.
Since 5.0.0 replaced by
IChannelManager.getPageWebResourceDataProviderClassName(SessionConfig, ChannelConfig, ITransaction) . |
protected String |
ChannelWebResource.getSeoRuleUrlPattern() |
List<String> |
ChannelDaoJdbc.getSubChannelIds(String channelId,
ITransaction transaction) |
List<String> |
IChannelDao.getSubChannelIds(String channelId,
ITransaction transaction)
Get a list with ids of the sub channels.
|
boolean |
ChannelManager.isCacheEnabled(WebResource webResource) |
boolean |
ChannelManager.isGoogleAnalyticsEnabled(ChannelConfig channelConfig) |
boolean |
IChannelManagerSPI.isGoogleAnalyticsEnabled(ChannelConfig channelConfig)
Returns whether the Google Analytics is enable in the given channel.
|
Boolean |
ChannelManager.isGoogleAnalyticsEnabledLocal(ChannelConfig channelConfig) |
Boolean |
IChannelManagerSPI.isGoogleAnalyticsEnabledLocal(ChannelConfig channelConfig)
Returns whether the Google Analytics is enable in the given channel or
null if this property is inherited. |
IChannelManagerSPI.IgnoreOnExportImportResult |
ChannelManager.isIgnoreOnExportImport(SessionConfig sessionConfig,
String channelId,
ITransaction transaction) |
IChannelManagerSPI.IgnoreOnExportImportResult |
IChannelManagerSPI.isIgnoreOnExportImport(SessionConfig sessionConfig,
String channelId,
ITransaction transaction)
Returns the result of a given channel ignoring.
|
boolean |
ChannelManager.isInsideChannelTemplate(SessionConfig sessionConfig,
String channelId,
ITransaction transaction) |
boolean |
IChannelManager.isInsideChannelTemplate(SessionConfig sessionConfig,
String channelId,
ITransaction transaction)
Returns whether a channel is inside a channel template or if it is the channel template root itself.
|
protected void |
ChannelConfig.loadPropertyBagValues() |
protected boolean |
ChannelConfig.mayUseFriendlyId(String friendlyId) |
void |
ChannelConfig.serialize(ChannelConfig channelConfig,
OutputStream outputStream) |
void |
ChannelManager.serialize(SessionConfig sessionConfig,
String channelId,
OutputStream outputStream,
ITransaction transaction) |
void |
IChannelManager.serialize(SessionConfig sessionConfig,
String channelId,
OutputStream outputStream,
ITransaction transaction) |
void |
ChannelManager.serializeCss(SessionConfig sessionConfig,
String channelId,
OutputStream outputStream,
ITransaction transaction) |
void |
IChannelManager.serializeCss(SessionConfig sessionConfig,
String channelId,
OutputStream outputStream,
ITransaction transaction) |
void |
ChannelConfig.setAcceptableLocales(Collection<Locale> acceptableLocales)
Sets the acceptable locales of this channel.
Only accepts locales existent in LumisPortal global locales. |
void |
ChannelConfig.setDefaultLocale(Locale defaultLocale)
Sets the default locale of this channel.
|
void |
ChannelManager.setGoogleAnalyticsEnable(Boolean enabled,
ChannelConfig channelConfig) |
void |
IChannelManagerSPI.setGoogleAnalyticsEnable(Boolean enabled,
ChannelConfig channelConfig)
Sets whether the Google Analytics is enable in the given channel.
|
void |
ChannelManager.setPageCacheFilePath(PageCacheConfig pageCacheConfig) |
void |
ChannelManager.setWebResourcesMissingData(String resourceId,
boolean processChildren) |
void |
ChannelDaoJdbc.update(ChannelConfig channelConfig,
ITransaction transaction) |
void |
IChannelDao.update(ChannelConfig channelConfig,
ITransaction transaction)
Update the channel.
|
void |
ChannelManager.update(SessionConfig sessionConfig,
ChannelConfig channelConfig,
ITransaction transaction) |
void |
IChannelManager.update(SessionConfig sessionConfig,
ChannelConfig channelConfig,
ITransaction transaction)
Update the Channel.
|
void |
ChannelManager.updateLocalGroupPrefixFromFriendlyId(SessionConfig sessionConfig,
ChannelConfig channelConfig,
ITransaction transaction) |
void |
IChannelManagerSPI.updateLocalGroupPrefixFromFriendlyId(SessionConfig sessionConfig,
ChannelConfig channelConfig,
ITransaction transaction)
Updates the local group prefix of the given channel with its friendly identifier.
|
void |
ChannelManager.validateFriendlyId(SessionConfig sessionConfig,
ChannelConfig channelConfig,
ITransaction transaction) |
void |
IChannelManagerSPI.validateFriendlyId(SessionConfig sessionConfig,
ChannelConfig channelConfig,
ITransaction transaction)
Validates the channel's friendly identifier.
|
Constructor and Description |
---|
ChannelControllerXml(HttpServletRequest request,
HttpServletResponse response,
PageContext pageContext) |
ChannelPrefixInUseException(String channelUsingPrefixId,
String prefix) |
ChannelPrefixInUseException(String channelUsingPrefixId,
String prefix,
Exception innerException) |
ChannelPrefixInUseException(String channelUsingPrefixId,
String prefix,
IResource resource) |
ChannelPrefixInUseException(String channelUsingPrefixId,
String prefix,
IResource resource,
Exception innerException) |
ChannelPrefixInUseException(String channelUsingPrefixId,
String prefix,
List<IResource> resources) |
ChannelPrefixInUseException(String channelUsingPrefixId,
String prefix,
List<IResource> resources,
Exception innerException) |
ChannelRenderDataChangedEvent(SessionConfig sessionConfig,
Collection<ChannelConfig> channelsChanged,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
String |
ChannelAclManager.add(SessionConfig sessionConfig,
ChannelConfig channelConfig,
ITransaction transaction) |
String |
IChannelAclManager.add(SessionConfig sessionConfig,
ChannelConfig channelConfig,
ITransaction transaction)
Add an Access Control List to the Channel.
|
void |
ChannelAclManager.checkRequiredPermissions(AccessControlList acl) |
void |
IChannelAclManager.checkRequiredPermissions(AccessControlList acl)
Checks if the required permissions were given for someone.
|
AccessControlList |
ChannelAclManager.get(SessionConfig sessionConfig,
String channelId,
ITransaction transaction) |
AccessControlList |
IChannelAclManager.get(SessionConfig sessionConfig,
String channelId,
ITransaction transaction)
Get the Channel's Access Control List Channel.
|
protected AccessControlList |
ChannelAclManager.getAclInternal(SessionConfig sessionConfig,
String channelId,
ITransaction transaction) |
static int[] |
ChannelPermissions.getImplies() |
protected int |
ChannelAclManager.getRequiredPermissions() |
static int |
ChannelPermissions.getRequiredPermissions() |
void |
ChannelAclManager.update(SessionConfig sessionConfig,
String channelId,
AccessControlList acl,
ITransaction transaction) |
void |
IChannelAclManager.update(SessionConfig sessionConfig,
String channelId,
AccessControlList acl,
ITransaction transaction)
Update the Channel's ACL.
|
Modifier and Type | Method and Description |
---|---|
void |
ChannelSerializationManager.deleteConfig(DeserializationContext deserializationContext,
String configId) |
String |
ChannelSerializationManager.deserialize(DeserializationContext deserializationContext,
ChannelSerializableConfig channelSerializableConfig,
ChannelSerializableConfig parentChannelSerializableConfig) |
String |
IChannelSerializationManager.deserialize(DeserializationContext deserializationContext,
ChannelSerializableConfig channelSerializableConfig,
ChannelSerializableConfig parentChannelSerializableConfig)
Deserialize a channel.
|
ChannelConfig |
ChannelSerializationManager.deserializeConfig(DeserializationContext deserializationContext,
String channelId) |
ChannelConfig |
IChannelSerializationManager.deserializeConfig(DeserializationContext deserializationContext,
String channelId)
Deserialize a
ChannelConfig object. |
void |
ChannelSerializationManager.deserializeContent(DeserializationContext deserializationContext,
ChannelSerializableConfig channelSerializableConfig,
ChannelSerializableConfig parentChannelSerializableConfig) |
void |
IChannelSerializationManager.deserializeContent(DeserializationContext deserializationContext,
ChannelSerializableConfig channelSerializableConfig,
ChannelSerializableConfig parentChannelSerializableConfig)
Deserialize channel content.
|
SerializationMessageConfigNode |
ChannelSerializationManager.getSerializationMessageConfigNode(BaseSerializationContext baseSerializationContext,
ChannelConfig channelConfig) |
SerializationMessageConfigNode |
IChannelSerializationManager.getSerializationMessageConfigNode(BaseSerializationContext serializationContext,
ChannelConfig channelConfig)
Get a
SerializationMessageConfigNode object containing fully recursive information about a channel. |
boolean |
ChannelSerializationManager.persistConfig(DeserializationContext deserializationContext,
Object config,
boolean firstPersistence) |
ChannelSerializableConfig |
ChannelSerializationManager.serialize(SerializationContext serializationContext,
String channelId) |
ChannelSerializableConfig |
IChannelSerializationManager.serialize(SerializationContext serializationContext,
String channelId)
Serialize a channel.
|
Modifier and Type | Method and Description |
---|---|
String |
ChannelTemplateManager.addChannelLink(SessionConfig sessionConfig,
ChannelTemplateLinkConfig channelTemplateLinkConfig,
ITransaction transaction) |
String |
IChannelTemplateManager.addChannelLink(SessionConfig sessionConfig,
ChannelTemplateLinkConfig channelTemplateLinkConfig,
ITransaction transaction)
Deprecated.
since 6.0.0,
ChannelTemplateLinkConfig
is for internal use only. |
void |
ChannelTemplateManager.deleteChannelLink(SessionConfig sessionConfig,
String channelLinkId,
ITransaction transaction) |
void |
IChannelTemplateManager.deleteChannelLink(SessionConfig sessionConfig,
String channelLinkId,
ITransaction transaction)
Deprecated.
since 6.0.0,
ChannelTemplateLinkConfig
is for internal use only. |
void |
ChannelTemplateManager.deleteChannelLinks(SessionConfig sessionConfig,
String channelId,
ITransaction transaction) |
void |
IChannelTemplateManager.deleteChannelLinks(SessionConfig sessionConfig,
String channelId,
ITransaction transaction)
Deprecated.
since 6.0.0,
ChannelTemplateLinkConfig
is for internal use only. |
void |
ChannelTemplateLinkConfig.deserialize(Node channelNode) |
String |
ChannelTemplateManager.deserializeChannelTemplateLink(SessionConfig sessionConfig,
DeserializationConfig deserializationConfig,
Node linkNode,
ITransaction transaction) |
String |
IChannelTemplateManager.deserializeChannelTemplateLink(SessionConfig sessionConfig,
DeserializationConfig deserializationConfig,
Node linkNode,
ITransaction transaction)
Deserializes the channel template link in the given node.
|
void |
ChannelTemplateManager.disconnectFromTemplate(SessionConfig sessionConfig,
String channelId,
ITransaction transaction) |
void |
IChannelTemplateManager.disconnectFromTemplate(SessionConfig sessionConfig,
String channelId,
ITransaction transaction)
This method disconnects the specific channel from the channel's template.
|
ChannelTemplateLinkConfig |
ChannelTemplateManager.getChannelLinkBySourceId(SessionConfig sessionConfig,
String channelId,
String sourceId,
boolean getLinkedElementsOnly,
ITransaction transaction) |
ChannelTemplateLinkConfig |
IChannelTemplateManager.getChannelLinkBySourceId(SessionConfig sessionConfig,
String channelId,
String sourceId,
boolean getLinkedElementsOnly,
ITransaction transaction)
Deprecated.
since 6.0.0,
ChannelTemplateLinkConfig
is for internal use only. |
List<ChannelTemplateLinkConfig> |
ChannelTemplateManager.getChannelLinks(SessionConfig sessionConfig,
String channelId,
boolean getLinkedElementsOnly,
ITransaction transaction) |
List<ChannelTemplateLinkConfig> |
IChannelTemplateManager.getChannelLinks(SessionConfig sessionConfig,
String channelId,
boolean getLinkedElementsOnly,
ITransaction transaction)
Deprecated.
since 6.0.0,
ChannelTemplateLinkConfig
is for internal use only. |
void |
ChannelTemplateLinkConfig.serialize(OutputStream outputStream) |
void |
ChannelTemplateManager.serializeChannelTemplateLinks(SessionConfig sessionConfig,
String channelId,
OutputStream outputStream,
ITransaction transaction) |
void |
IChannelTemplateManager.serializeChannelTemplateLinks(SessionConfig sessionConfig,
String channelId,
OutputStream outputStream,
ITransaction transaction)
Serializes the channel template links of a single channel.
|
protected void |
ChannelTemplateControllerXml.updateChannelStructureFromTemplate(ITransaction portalTransaction) |
void |
ChannelTemplateManager.updateChannelStructureFromTemplate(SessionConfig sessionConfig,
String channelId,
ITransaction transaction) |
void |
IChannelTemplateManager.updateChannelStructureFromTemplate(SessionConfig sessionConfig,
String channelId,
ITransaction transaction)
This method updates the channel's structure from the channel template.
|
protected void |
ChannelTemplateManager.updateChannelStructureFromTemplate(SessionConfig sessionConfig,
String channelId,
String channelTemplateId,
Document templateDocument,
ITransaction transaction)
Updates a channel structure using the given template document.
|
Constructor and Description |
---|
ChannelTemplateControllerXml(HttpServletRequest request,
HttpServletResponse response,
PageContext pageContext) |
ChannelTemplateUpdateChannelsRunner(SessionConfig sessionConfig,
String processId,
List<String> channelIds)
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
void |
ChannelTemplateSerializationManager.deserializeLink(DeserializationContext deserializationContext,
ChannelTemplateLinkSerializableConfig channelTemplateLinkSerializableConfig) |
void |
IChannelTemplateSerializationManager.deserializeLink(DeserializationContext deserializationContext,
ChannelTemplateLinkSerializableConfig channelTemplateLinkSerializableConfig)
Deserialize a channel template link.
|
boolean |
ChannelTemplateSerializationManager.persistConfig(DeserializationContext deserializationContext,
Object config,
boolean firstPersistence) |
List<ChannelTemplateLinkSerializableConfig> |
ChannelTemplateSerializationManager.serializeLink(SerializationContext serializationContext,
String channelId) |
List<ChannelTemplateLinkSerializableConfig> |
IChannelTemplateSerializationManager.serializeLink(SerializationContext serializationContext,
String channelId)
Serialize a channel template link.
|
Modifier and Type | Method and Description |
---|---|
protected void |
ChannelTreeManager.addChannels(StringBuilder result,
StringBuilder parentChannelIds,
Map<String,List<lumis.portal.channel.tree.Channel>> channelChildren,
ILocalizationManager localizationManager,
IResource resource,
SessionConfig sessionConfig,
String primaryServiceInstanceId,
ITransaction transaction) |
protected void |
ChannelTreeManager.addPages(StringBuilder result,
List<IChannelChild> children,
SessionConfig sessionConfig,
ITransaction transaction) |
protected void |
ChannelTreeControllerXml.getBasicData(Node methodNode,
ITransaction portalTransaction) |
String |
ChannelTreeManager.getBasicData(SessionConfig sessionConfig,
IChannelChildProvider channelChildProvider,
String channelId,
boolean hidePages,
boolean hidePageTemplates,
boolean hideChannelTemplates,
ITransaction transaction) |
String |
IChannelTreeManager.getBasicData(SessionConfig sessionConfig,
IChannelChildProvider channelChildProvider,
String channelId,
boolean hidePages,
boolean hidePageTemplates,
boolean hideChannelTemplates,
ITransaction transaction)
Get the basic tree data of the channel.
|
String |
ChannelTreeManager.getBasicData(SessionConfig sessionConfig,
IChannelChildProvider channelChildProvider,
String channelId,
boolean hidePages,
boolean hidePageTemplates,
boolean hideChannelTemplates,
String primaryServiceInstance,
ITransaction transaction) |
String |
IChannelTreeManager.getBasicData(SessionConfig sessionConfig,
IChannelChildProvider channelChildProvider,
String channelId,
boolean hidePages,
boolean hidePageTemplates,
boolean hideChannelTemplates,
String serviceInstancePrimary,
ITransaction transaction)
Get the basic tree data of the channel.
|
String |
ChannelTreeManager.getBasicData(SessionConfig sessionConfig,
IChannelChildProvider channelChildProvider,
String channelId,
String rootChannelId,
boolean hidePages,
boolean hidePageTemplates,
boolean hideChannelTemplates,
ITransaction portalTransaction) |
String |
IChannelTreeManager.getBasicData(SessionConfig sessionConfig,
IChannelChildProvider channelChildProvider,
String channelId,
String rootChannelId,
boolean hidePages,
boolean hidePageTemplates,
boolean hideChannelTemplates,
ITransaction portalTransaction)
Get the basic tree data of the channel.
|
String |
ChannelTreeManager.getBasicData(SessionConfig sessionConfig,
IChannelChildProvider channelChildProvider,
String channelId,
String rootChannelId,
boolean hidePages,
boolean hidePageTemplates,
boolean hideChannelTemplates,
String primaryServiceInstance,
ITransaction transaction) |
String |
IChannelTreeManager.getBasicData(SessionConfig sessionConfig,
IChannelChildProvider channelChildProvider,
String channelId,
String rootChannelId,
boolean hidePages,
boolean hidePageTemplates,
boolean hideChannelTemplates,
String primaryServiceInstanceId,
ITransaction portalTransaction)
Get the basic tree data of the channel.
|
Map<String,List<lumis.portal.channel.tree.Channel>> |
ChannelTreeDaoJdbc.getBasicData(String channelId,
boolean hideChannelTemplates,
ITransaction transaction) |
Map<String,List<lumis.portal.channel.tree.Channel>> |
IChannelTreeDao.getBasicData(String channelId,
boolean hideChannelTemplates,
ITransaction transaction)
Get the basic tree data of the channel.
|
Map<String,List<lumis.portal.channel.tree.Channel>> |
ChannelTreeDaoJdbc.getBasicData(String channelId,
boolean hideChannelTemplates,
String primaryServiceInstanceId,
ITransaction transaction) |
Map<String,List<lumis.portal.channel.tree.Channel>> |
IChannelTreeDao.getBasicData(String channelId,
boolean hideChannelTemplates,
String primaryServiceInstanceId,
ITransaction transaction)
Get the basic tree data of the channel considering area tags from each channel.
|
Map<String,List<lumis.portal.channel.tree.Channel>> |
ChannelTreeDaoJdbc.getBasicDataWithAreaTags(String channelId,
String rootChannelId,
boolean hideChannelTemplates,
Collection<String> areaTags,
ITransaction transaction) |
Map<String,List<lumis.portal.channel.tree.Channel>> |
IChannelTreeDao.getBasicDataWithAreaTags(String channelId,
String rootChannelId,
boolean hideChannelTemplates,
Collection<String> areaTags,
ITransaction transaction)
Get the basic tree data of the channel (with a given root channel) considering area tags from each child channels.
|
Map<String,List<lumis.portal.channel.tree.Channel>> |
ChannelTreeDaoJdbc.getBasicDataWithRootChannel(String channelId,
String rootChannelId,
boolean hideChannelTemplates,
ITransaction transaction) |
Map<String,List<lumis.portal.channel.tree.Channel>> |
IChannelTreeDao.getBasicDataWithRootChannel(String channelId,
String rootChannelId,
boolean hideChannelTemplates,
ITransaction transaction)
Get the basic tree data of the channel (with a given root channel).
|
IChannelChild |
IChannelChildProvider.getChannelChild(SessionConfig sessionConfig,
String childId,
ITransaction transaction)
Given a child Id, this method returns a IChannelChild object that represents the child.
|
IChannelChild |
PageProvider.getChannelChild(SessionConfig sessionConfig,
String childId,
ITransaction transaction) |
org.json.simple.JSONArray |
ChannelTreeDaoJdbc.getChannelChildren(String channelId,
ITransaction transaction) |
org.json.simple.JSONArray |
IChannelTreeDao.getChannelChildren(String channelId,
ITransaction transaction) |
List<IChannelChild> |
IChannelChildProvider.getChannelsChildren(SessionConfig sessionConfig,
String parentChannelIds,
boolean hidePages,
boolean hidePageTemplates,
IResource resource,
Locale locale,
ITransaction transaction)
Given a set of parentChannelIds, this method is responsible for returning
a List of the children.
|
List<IChannelChild> |
PageProvider.getChannelsChildren(SessionConfig sessionConfig,
String parentChannelIds,
boolean hidePages,
boolean hidePageTemplates,
IResource resource,
Locale locale,
ITransaction transaction) |
org.json.simple.JSONObject |
ChannelTreeDaoJdbc.getChannelTree(String channelId,
boolean includeParents,
boolean localizeNames,
ITransaction transaction) |
org.json.simple.JSONObject |
IChannelTreeDao.getChannelTree(String channelId,
boolean includeParents,
boolean localizeNames,
ITransaction transaction) |
protected void |
ChannelTreeControllerXml.getChildrenData(Node methodNode,
ITransaction portalTransaction) |
String |
ChannelTreeManager.getChildrenData(SessionConfig sessionConfig,
IChannelChildProvider channelChildProvider,
String channelId,
int hideChannels,
int hidePages,
int hidePageTemplates,
int hideChannelTemplates,
ITransaction transaction) |
String |
IChannelTreeManager.getChildrenData(SessionConfig sessionConfig,
IChannelChildProvider channelChildProvider,
String channelId,
int hideChannels,
int hidePages,
int hidePageTemplates,
int hideChannelTemplates,
ITransaction transaction)
Get the children's tree data of the channel.
|
String |
ChannelTreeManager.getChildrenData(SessionConfig sessionConfig,
IChannelChildProvider channelChildProvider,
String channelId,
int hideChannels,
int hidePages,
int hidePageTemplates,
int hideChannelTemplates,
String primaryServiceInstanceId,
ITransaction transaction) |
String |
IChannelTreeManager.getChildrenData(SessionConfig sessionConfig,
IChannelChildProvider channelChildProvider,
String channelId,
int hideChannels,
int hidePages,
int hidePageTemplates,
int hideChannelTemplates,
String serviceInstanceId,
ITransaction transaction)
Get the children's tree data of the channel.
|
List<IChannelChild> |
IChannelChildProvider.getChildrenData(SessionConfig sessionConfig,
String channelId,
int hideItems,
int hideItemTemplates,
IResource resource,
Locale locale,
ITransaction transaction)
Given a parentChannelId, this method is responsible for returning
a List of the children.
|
List<IChannelChild> |
PageProvider.getChildrenData(SessionConfig sessionConfig,
String channelId,
int hideItems,
int hideItemTemplates,
IResource resource,
Locale locale,
ITransaction transaction) |
Map<String,List<lumis.portal.channel.tree.Channel>> |
ChannelTreeDaoJdbc.getChildrenData(String channelId,
int hideChannels,
int hidePages,
int hidePageTemplates,
int hideChannelTemplates,
ITransaction transaction) |
Map<String,List<lumis.portal.channel.tree.Channel>> |
IChannelTreeDao.getChildrenData(String channelId,
int hideChannels,
int hidePages,
int hidePageTemplates,
int hideChannelTemplates,
ITransaction transaction)
Get the tree childen's data of the channel.
|
Constructor and Description |
---|
ChannelTreeControllerXml(HttpServletRequest request,
HttpServletResponse response,
PageContext pageContext) |
Modifier and Type | Method and Description |
---|---|
void |
ClockDaoJdbc.add(ClockConfig clockConfig,
ITransaction transaction) |
void |
IClockDao.add(ClockConfig clockConfig,
ITransaction transaction)
Add the clock.
|
String |
ClockManager.add(SessionConfig sessionConfig,
ClockConfig clockConfig,
ITransaction transaction) |
String |
IClockManager.add(SessionConfig sessionConfig,
ClockConfig clockConfig,
ITransaction transaction)
Add a clock.
|
void |
ClockDaoJdbc.addOrUpdate(ClockConfig clockConfig,
ITransaction transaction) |
void |
IClockDao.addOrUpdate(ClockConfig clockConfig,
ITransaction transaction)
Add or update the clock.
|
void |
ClockManager.addOrUpdate(SessionConfig sessionConfig,
ClockConfig clockConfig,
ITransaction transaction) |
void |
IClockManager.addOrUpdate(SessionConfig sessionConfig,
ClockConfig clockConfig,
ITransaction transaction)
Update the configuration of a clock.
|
void |
ClockManager.checkSchedule(SessionConfig sessionConfig,
ITransaction transaction)
This method is called at regular intervals by the framework.
|
void |
IClockManager.checkSchedule(SessionConfig sessionConfig,
ITransaction transaction)
This method is called at regular intervals by the
PortalClock . |
void |
ClockManager.delete(SessionConfig sessionConfig,
String clockId,
ITransaction transaction) |
void |
IClockManager.delete(SessionConfig sessionConfig,
String clockId,
ITransaction transaction)
Delete a clock.
|
void |
ClockDaoJdbc.delete(String clockId,
ITransaction transaction) |
void |
IClockDao.delete(String clockId,
ITransaction transaction)
Delete the clock.
|
void |
ClockManager.disable(SessionConfig sessionConfig,
String clockId,
ITransaction transaction) |
void |
IClockManager.disable(SessionConfig sessionConfig,
String clockId,
ITransaction transaction)
Set the "False" value to the enable property of a clock.
|
void |
IServiceClock.doTick(SessionConfig sessionConfig,
ClockConfig clockConfig)
Executes a clock tick.
|
void |
ClockManager.enable(SessionConfig sessionConfig,
String clockId,
ITransaction transaction) |
void |
IClockManager.enable(SessionConfig sessionConfig,
String clockId,
ITransaction transaction)
Set the "True" value to the enable property of a clock.
|
void |
ClockManager.executeSchedule(ClockConfig clockConfig) |
void |
IClockManager.executeSchedule(ClockConfig clockConfig)
Executes a clock implementation.
|
void |
ClockManager.executeSchedule(SessionConfig sessionConfig,
ClockConfig clockConfig,
ITransaction transaction)
Deprecated.
|
void |
IClockManager.executeSchedule(SessionConfig sessionConfig,
ClockConfig clockConfig,
ITransaction transaction)
Deprecated.
Since 5.6.0, replaced by
#executeSchedule(SessionConfig,ClockConfig) . |
List<ClockConfig> |
ClockDaoJdbc.findRunningClocks(ITransaction transaction) |
List<ClockConfig> |
IClockDao.findRunningClocks(ITransaction transaction)
Get the running clocks.
|
ClockConfig |
ClockManager.get(SessionConfig sessionConfig,
String clockId,
ITransaction transaction) |
ClockConfig |
IClockManager.get(SessionConfig sessionConfig,
String clockId,
ITransaction transaction)
Get the configuration of the clock.
|
ClockConfig |
ClockDaoJdbc.get(String clockId,
ITransaction transaction) |
ClockConfig |
IClockDao.get(String clockId,
ITransaction transaction)
Get the configuration of the clock.
|
List<String> |
ClockDaoJdbc.getClockIds(ITransaction transaction) |
List<String> |
IClockDao.getClockIds(ITransaction transaction)
Get a list of ids of the clock.
|
Collection<String> |
ClockManager.getClockIdsByServiceId(SessionConfig sessionConfig,
String serviceId,
ITransaction transaction) |
Collection<String> |
IClockManager.getClockIdsByServiceId(SessionConfig sessionConfig,
String serviceId,
ITransaction transaction)
Return the Ids of all clocks registered for the specified service.
|
Collection<String> |
ClockDaoJdbc.getClockIdsByServiceId(String serviceId,
ITransaction transaction) |
Collection<String> |
IClockDao.getClockIdsByServiceId(String serviceId,
ITransaction transaction)
Get a list of ids by passing the id of the service.
|
Collection<ClockConfig> |
ClockDaoJdbc.getDisabledClocks(ITransaction transaction) |
Collection<ClockConfig> |
ClockManager.getDisabledClocks(ITransaction transaction) |
Collection<ClockConfig> |
IClockDao.getDisabledClocks(ITransaction transaction)
Get disabled clocks
|
Collection<ClockConfig> |
IClockManagerSPI.getDisabledClocks(ITransaction transaction)
Get disabled clocks.
|
List<String> |
ClockDaoJdbc.getNextSchedules(ITransaction transaction) |
List<String> |
IClockDao.getNextSchedules(ITransaction transaction)
Get next schedules.
|
Date |
IServiceClock.getNextScheduleTime(SessionConfig sessionConfig,
ClockConfig clockConfig,
ITransaction transaction)
Returns the scheduled date-time for the next execution of a clock.
|
Collection<ClockConfig> |
ClockManager.getRunningClocks(long timeSpent,
ITransaction transaction) |
Collection<ClockConfig> |
IClockManagerSPI.getRunningClocks(long timeSpent,
ITransaction transaction)
Get clocks running longer than a specific time in milliseconds.
|
Collection<ClockConfig> |
ClockManager.getRunningClocksInHalfMaxRunTime(ITransaction transaction) |
Collection<ClockConfig> |
IClockManagerSPI.getRunningClocksInHalfMaxRunTime(ITransaction transaction)
Get clocks running longer than half of its configured maximum run time.
|
boolean |
ClockManager.isPortalClockRunning(SessionConfig sessionConfig,
ITransaction transaction) |
boolean |
IClockManager.isPortalClockRunning(SessionConfig sessionConfig,
ITransaction transaction)
Verify if the portal clock is running.
|
boolean |
ClockDaoJdbc.setClockRunning(String clockId,
boolean runningState,
int maxRunTime,
ITransaction transaction) |
boolean |
IClockDao.setClockRunning(String clockId,
boolean runningState,
int maxRunTime,
ITransaction transaction)
Set the running of the clock.
|
boolean |
ClockManager.setRunning(SessionConfig sessionConfig,
String clockId,
boolean running,
ITransaction transaction) |
boolean |
IClockManager.setRunning(SessionConfig sessionConfig,
String clockId,
boolean running,
ITransaction transaction)
Sets the running status of a clock in the database.
|
boolean |
ClockDaoJdbc.update(ClockConfig clockConfig,
ITransaction transaction) |
boolean |
IClockDao.update(ClockConfig clockConfig,
ITransaction transaction)
Update the clock.
|
void |
ClockManager.update(SessionConfig sessionConfig,
ClockConfig clockConfig,
ITransaction transaction) |
void |
IClockManager.update(SessionConfig sessionConfig,
ClockConfig clockConfig,
ITransaction transaction)
Update the configuration of a clock.
|
Modifier and Type | Method and Description |
---|---|
IClusterConfig |
IClusterManager.getClusterConfig(ITransaction transaction)
Returns a persistent cluster configuration object.
|
IClusterConfig |
SingleServerClusterManager.getClusterConfig(ITransaction transaction) |
Collection<IClusterMember> |
IClusterManager.getMembers()
Returns a collection with information about the current members of this cluster.
|
Modifier and Type | Method and Description |
---|---|
void |
DeleteExpiredDurableMessagesClock.doTick(SessionConfig sessionConfig,
ClockConfig clockConfig) |
IClusterConfig |
JGroupsClusterManager.getClusterConfig(ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
String |
CommandPaletteResource.getSuggestions(String hint)
Returns the suggestions for the given hint.
|
void |
CommandPaletteBigDataInitializedEventObserver.onEvent(IPortalEvent event) |
void |
CommandPaletteManager.remove(DirtyItem item) |
void |
ICommandPaletteManagerSPI.remove(DirtyItem item)
Removes the given dirty item.
|
void |
CommandPaletteRebuildIndexTask.run() |
void |
CommandPaletteReindexDirtyItemsTask.run() |
IQueueTaskProcess |
CommandPaletteManager.scheduleRebuildIndex() |
IQueueTaskProcess |
ICommandPaletteManagerSPI.scheduleRebuildIndex()
Schedule a full index rebuild.
|
IQueueTaskProcess |
CommandPaletteManager.scheduleReindexDirtyItems() |
IQueueTaskProcess |
ICommandPaletteManagerSPI.scheduleReindexDirtyItems()
Schedule a reindex of dirty items.
|
void |
CommandPaletteManager.setDirty(ChannelConfig channel) |
void |
ICommandPaletteManagerSPI.setDirty(ChannelConfig channel)
Sets the given channel dirty.
|
void |
CommandPaletteManager.setDirty(PageConfig page) |
void |
ICommandPaletteManagerSPI.setDirty(PageConfig page)
Sets the given page dirty.
|
Modifier and Type | Method and Description |
---|---|
EnvironmentProperty |
EnvironmentConfiguration.addProperty(String name)
Adds a property with the given name in the configuration.
|
static ServerConfiguration |
ServerConfiguration.getCurrentConfiguration()
Returns the current server configuration.
|
Map<String,List<String>> |
EnvironmentConfiguration.getProperties()
Returns an immutable map of the environment properties.
|
String |
EnvironmentConfiguration.getPropertyValue(String propertyName)
Returns the value of the property that has the given name.
|
List<String> |
EnvironmentConfiguration.getPropertyValues(String propertyName)
Returns an immutable set of values of the property that has the given name.
|
static void |
ServerConfiguration.removeConfiguration(String serverId)
Removes the configuration for a given server id.
|
static void |
ServerConfiguration.updateConfiguration(String serverId,
String baseSourcePath)
Updates the configuration.
|
static void |
EnvironmentConfiguration.updateCurrentConfiguration(EnvironmentConfiguration config)
Update the current configuration.
|
Modifier and Type | Class and Description |
---|---|
class |
ControllerException |
Modifier and Type | Method and Description |
---|---|
protected String |
ControllerXml.getResponseXml(PortalException portalException) |
Modifier and Type | Method and Description |
---|---|
void |
ControllerHtml.deleteCookie(String name)
Deprecated.
Since 4.0.7, use
CookieUtil.deleteCookie(HttpServletRequest, HttpServletResponse, String) instead. |
String |
ControllerHtml.getCookie(String name)
Deprecated.
Since 4.0.7, use
CookieUtil.getCookie(HttpServletRequest, String) instead. |
protected int |
ControllerHtml.getRequestMode()
Returns the mode for the current request.
|
protected String |
ControllerXml.getResponseXml(PortalException portalException) |
void |
ControllerXml.loadUserInfo(Document requestDom,
ITransaction portalTransaction)
Deprecated.
Since 4.0.7 this method does nothing.
ControllerXml.sessionConfig is now initialized in the constructor. |
void |
ControllerHtml.loadUserInfo(ITransaction transaction)
Loads the user information from ther user session Id taken from the
request cookie.
|
void |
ControllerHtml.setCookie(String name,
String value)
Deprecated.
Since 4.0.7, use
CookieUtil.setCookie(HttpServletRequest, HttpServletResponse, String, String) instead. |
Constructor and Description |
---|
ControllerHtml(HttpServletRequest request,
HttpServletResponse response) |
ControllerHtml(HttpServletRequest request,
HttpServletResponse response,
boolean initialize) |
ControllerXml(HttpServletRequest request,
HttpServletResponse response) |
Modifier and Type | Method and Description |
---|---|
void |
ICipherSpi.init(Node configuration)
This method is called only once and before any other method are called.
|
void |
MessageDigestCipher.init(Node configuration) |
void |
SymmetricCipher.init(Node configuration) |
Modifier and Type | Method and Description |
---|---|
void |
CssDaoJdbc.add(CssConfig cssConfig,
ITransaction transaction) |
void |
ICssDao.add(CssConfig cssConfig,
ITransaction transaction)
Add the CSS.
|
String |
CssManager.add(SessionConfig sessionConfig,
CssConfig cssConfig,
ITransaction transaction) |
String |
ICssManager.add(SessionConfig sessionConfig,
CssConfig cssConfig,
ITransaction transaction)
Add a CSS.
|
void |
CssManager.addOrUpdate(SessionConfig sessionConfig,
CssConfig cssConfig,
ITransaction transaction) |
void |
ICssManager.addOrUpdate(SessionConfig sessionConfig,
CssConfig cssConfig,
ITransaction transaction) |
void |
CssManager.delete(SessionConfig sessionConfig,
String cssId,
ITransaction transaction) |
void |
ICssManager.delete(SessionConfig sessionConfig,
String cssId,
ITransaction transaction)
Delete a CSS.
|
void |
CssDaoJdbc.delete(String cssId,
ITransaction transaction) |
void |
ICssDao.delete(String cssId,
ITransaction transaction)
Delete the CSS.
|
void |
CssManager.deleteConfig(DeserializationContext deserializationContext,
String configId) |
void |
CssConfig.deserialize(Node pageNode) |
String |
CssManager.deserialize(SessionConfig sessionConfig,
DeserializationConfig deserializationConfig,
Node cssConfigNode,
ITransaction transaction) |
String |
ICssManager.deserialize(SessionConfig sessionConfig,
DeserializationConfig deserializationConfig,
Node cssConfigNode,
ITransaction transaction)
Deserialize a CSS Configuration from a XML document
|
CssConfig |
CssManager.get(SessionConfig sessionConfig,
String cssId,
ITransaction transaction) |
CssConfig |
ICssManager.get(SessionConfig sessionConfig,
String cssId,
ITransaction transaction)
Get a CSS configuration.
|
CssConfig |
CssDaoJdbc.get(String cssId,
ITransaction transaction) |
CssConfig |
ICssDao.get(String cssId,
ITransaction transaction)
Get the CSS.
|
List<CssConfig> |
CssDaoJdbc.getAll(ITransaction transaction) |
List<CssConfig> |
ICssDao.getAll(ITransaction transaction)
Get all CSSs
|
List<CssConfig> |
CssManager.getAll(SessionConfig sessionConfig,
ITransaction transaction) |
Collection<String> |
CssManager.getChannelIdsUsingCss(SessionConfig sessionConfig,
String cssId,
ITransaction transaction) |
Collection<String> |
ICssManager.getChannelIdsUsingCss(SessionConfig sessionConfig,
String cssId,
ITransaction transaction) |
Collection<String> |
CssDaoJdbc.getChannelIdsUsingCss(String cssId,
ITransaction transaction) |
Collection<String> |
ICssDao.getChannelIdsUsingCss(String cssId,
ITransaction transaction) |
Collection<String> |
CssManager.getPageIdsUsingCss(SessionConfig sessionConfig,
String cssId,
ITransaction transaction) |
Collection<String> |
ICssManager.getPageIdsUsingCss(SessionConfig sessionConfig,
String cssId,
ITransaction transaction) |
Collection<String> |
CssDaoJdbc.getPageIdsUsingCss(String cssId,
ITransaction transaction) |
Collection<String> |
ICssDao.getPageIdsUsingCss(String cssId,
ITransaction transaction) |
void |
CssConfig.serialize(OutputStream outputStream) |
void |
CssManager.serialize(SessionConfig sessionConfig,
String cssId,
OutputStream outputStream,
ITransaction transaction) |
void |
ICssManager.serialize(SessionConfig sessionConfig,
String cssId,
OutputStream outputStream,
ITransaction transaction)
Serializes a CSS Configuration into XML outputStream
|
void |
CssDaoJdbc.update(CssConfig cssConfig,
ITransaction transaction) |
void |
ICssDao.update(CssConfig cssConfig,
ITransaction transaction)
Update the CSS.
|
void |
CssManager.update(SessionConfig sessionConfig,
CssConfig cssConfig,
ITransaction transaction) |
void |
ICssManager.update(SessionConfig sessionConfig,
CssConfig cssConfig,
ITransaction transaction)
Update a CSS.
|
Constructor and Description |
---|
CssControllerXml(HttpServletRequest request,
HttpServletResponse response,
PageContext pageContext) |
Modifier and Type | Method and Description |
---|---|
void |
CssSerializationManager.deserialize(DeserializationContext deserializationContext,
CssSerializableConfig cssSerializableConfig) |
void |
ICssSerializationManager.deserialize(DeserializationContext deserializationContext,
CssSerializableConfig cssSerializableConfig)
Deserialize a CSS
|
CssSerializableConfig |
CssSerializationManager.serialize(SerializationContext serializationContext,
String cssId) |
CssSerializableConfig |
ICssSerializationManager.serialize(SerializationContext serializationContext,
String cssId)
Serialize a CSS
|
Modifier and Type | Class and Description |
---|---|
class |
DaoException
Dao Exception
|
Modifier and Type | Method and Description |
---|---|
protected void |
GenericHibernateManualUpdateDao.add(T bean,
ITransaction transaction)
Adds the bean to the persistence layer.
|
boolean |
TransactionHibernate.addObserver(ITransactionObserver observer) |
protected void |
GenericHibernateManualUpdateDao.addOrUpdate(T bean,
ITransaction transaction) |
protected boolean |
GenericHibernateManualUpdateDao.delete(ID id,
ITransaction transaction)
Deletes the bean with the given id from persistence.
|
void |
GenericHibernateDao.delete(T bean,
ITransaction transaction)
Deletes the given bean from persistence.
|
protected void |
GenericHibernateManualUpdateDao.evict(ID id,
ITransaction transaction)
Evicts the bean with the given id from the second-level cache.
|
protected boolean |
GenericHibernateManualUpdateDao.exists(ID id,
ITransaction transaction)
Returns whether the bean of identifier
id exists. |
T |
GenericHibernateDao.get(ID id,
ITransaction transaction)
Returns the bean with the given id.
|
protected T |
GenericHibernateManualUpdateDao.get(ID id,
ITransaction transaction)
Returns the bean with the given id.
|
protected org.hibernate.Session |
GenericHibernateDao.getSession(ITransaction transaction)
Returns the hibernate session associated with the given transaction.
|
void |
GenericHibernateDao.persist(T bean,
ITransaction transaction)
Persists a transient bean, making it persistent.
|
static List<Exception> |
HibernateUtil.rebuildEntityManagerFactoriesIfNeeded()
Rebuilds the entity manager factories if needed.
|
boolean |
TransactionHibernate.removeObserver(ITransactionObserver observer) |
protected void |
GenericHibernateManualUpdateDao.update(T bean,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
void |
DeploymentManager.changeComponentResolved(String componentId,
ITransaction transaction) |
void |
IDeploymentManagerSPI.changeComponentResolved(String componentId,
ITransaction transaction)
Changes the resolved value of the component based on the given component
identifier.
|
void |
DeploymentManager.changeModuleResolved(String moduleId,
ITransaction transaction) |
void |
IDeploymentManagerSPI.changeModuleResolved(String moduleId,
ITransaction transaction)
Changes the resolved value of the module based on the given module
identifier.
|
static void |
DeploymentUtil.clearStylesCache(Collection<String> stylesPath)
Clears the cache of the styles with the given paths.
|
static void |
DeploymentUtil.copyPublicFiles(File portalFile,
File baseFolder)
Copies all public files from the given component public file path to each website.
|
static void |
DeploymentUtil.copyPublicFiles(File portalFile,
File baseFolder,
IWebsite website)
Copies all public files from the given component public file path to the static directory of the given website.
|
static void |
DeploymentUtil.copyPublicFiles(String componentPublicFilesPath,
JarFile moduleFile)
Copies all public files from the given component public file path to each website.
|
static void |
DeploymentUtil.copyPublicFiles(String componentPublicFilesPath,
JarFile moduleFile,
Collection<IWebsite> websites)
Copies all public files from the given component public file path to the given website only.
|
static void |
DeploymentUtil.createChannelComponent(String name,
String channelId,
String exportToPath,
IModule module,
IFile componentDefinitionFile,
ITransaction transaction) |
IDeploymentExecutionPlan |
DeploymentManager.createModuleDeploymentExecutionPlan(IFile moduleFolder,
boolean forceReprocess,
boolean syncStructure) |
IDeploymentExecutionPlan |
IDeploymentManagerSPI.createModuleDeploymentExecutionPlan(IFile moduleFolder,
boolean forceReprocess,
boolean syncStructure)
Creates, validates and returns a module deployment execution plan.
|
IDeploymentExecutionPlan |
DeploymentManager.createModuleDeploymentExecutionPlan(IFile moduleFolder,
boolean forceReprocess,
boolean syncStructure,
boolean wasClosedModule) |
IDeploymentExecutionPlan |
IDeploymentManagerSPI.createModuleDeploymentExecutionPlan(IFile moduleFolder,
boolean forceReprocess,
boolean syncStructure,
boolean wasClosedModule)
Creates, validates and returns a module deployment execution plan.
|
IDeploymentExecutionPlan |
DeploymentManager.createModuleDeploymentProcess(InputStream moduleArchive,
boolean reprocessAllComponents) |
IDeploymentExecutionPlan |
IDeploymentManager.createModuleDeploymentProcess(InputStream moduleArchive,
boolean reprocessAllComponents)
Creates a
deployment execution plan for
deploying the given module. |
IDeploymentExecutionPlan |
DeploymentManager.createModuleUndeploymentProcess(List<IModule> modules) |
IDeploymentExecutionPlan |
IDeploymentManager.createModuleUndeploymentProcess(List<IModule> modules)
Creates a
deployment execution plan for
undeployment of the given modules. |
IDeploymentExecutionPlan |
DeploymentManager.createPackageDeploymentProcess(File packageArchive,
boolean reprocessAllComponents) |
IDeploymentExecutionPlan |
IDeploymentManager.createPackageDeploymentProcess(File packageArchive,
boolean reprocessAllComponents)
Creates a
deployment execution plan for
deploying the given package. |
IDeploymentExecutionPlan |
DeploymentManager.createPackageDeploymentProcess(File packageArchive,
boolean reprocessAllComponents,
boolean syncStructure) |
IDeploymentExecutionPlan |
IDeploymentManagerSPI.createPackageDeploymentProcess(File packageArchive,
boolean reprocessAllComponents,
boolean syncStructure)
Creates a
deployment execution plan for
deploying the given package. |
static void |
DeploymentUtil.deletePublicFiles(Set<String> componentPublicFilesPaths)
Deletes the given files from public folder.
|
static void |
DeploymentUtil.deletePublicFiles(Set<String> componentPublicFilesPaths,
IWebsite website)
Deletes the given files from public folder for the given website.
|
void |
GenericWarDeployer.deploy(SessionConfig sessionConfig,
DeployConfig deployConfig)
Deprecated.
|
void |
IPortalDeployer.deploy(SessionConfig sessionConfig,
DeployConfig deployConfig)
Deprecated.
Do the specified deployment into the portal.
|
void |
DeploymentManager.deployModuleSource(IFile moduleFolder)
Deploys the module referenced in the File parameter
|
void |
IDeploymentManagerSPI.deployModuleSource(IFile moduleSourceFolder)
Deploys the module source folder.
|
void |
DeploymentManager.deployModuleSource(IFile moduleFolder,
boolean syncStructure)
Deploys the module referenced in the File parameter
|
void |
IDeploymentManagerSPI.deployModuleSource(IFile moduleSourceFolder,
boolean syncStructure)
Deploys the module source folder.
|
void |
DeploymentManager.deployModuleSource(IModule module)
Deploys the module passed as a parameter.
|
void |
IDeploymentManagerSPI.deployModuleSource(IModule module)
Deploys the module source folder.
|
ModuleType |
IDeploymentManager.detectModuleType(InputStream moduleArchive)
Detects the module type of an archive, based on its contents.
|
Collection<ActivityPriority> |
DeploymentActivityPrioritizer.generateActivityPriorities(Activity activity) |
static Set<String> |
DeploymentUtil.getAllAvailableResources()
Returns all available resources of all deployed modules.
|
IComponent |
DeploymentManager.getChannelComponent(String channelId) |
IComponent |
IDeploymentManagerSPI.getChannelComponent(String channelId)
Returns the component associated to the channel.
|
IComponent |
DeploymentManager.getComponent(String componentId) |
IComponent |
IDeploymentManager.getComponent(String componentId)
Returns the component with the specified identifier.
|
static File |
DeploymentUtil.getComponentFile(IComponent component)
Utility method to obtain an archive file relative to a component.
|
static File |
DeploymentUtil.getComponentFile(IComponent component,
ComponentFolder folder)
Returns the relative folder path within a component.
|
List<IComponent> |
DeploymentManager.getComponents() |
List<IComponent> |
IDeploymentManagerSPI.getComponents()
Returns the list of all installed components.
|
String |
GenericWarDeployer.getCustomDeploymentInterfaceId(DeployConfig deployConfig)
Deprecated.
|
String |
IPortalDeployer.getCustomDeploymentInterfaceId(DeployConfig deployConfig)
Deprecated.
Returns the service interface id to be called when the deployment will
use this deployer.
|
String |
DeploymentManager.getLastDeployInstallationId() |
String |
IDeploymentManagerSPI.getLastDeployInstallationId()
Returns the Last Deploy Installation identifier.
|
ComponentObject |
Component.getMetadataForComparing()
Returns the meta data that should be used for comparing this component (or its inner objects) to other one.
|
ModuleObject |
Module.getMetadataForComparing()
Returns the meta data that should be used for comparing this module (or its inner objects) to other one.
|
IModule |
DeploymentManager.getModule(String moduleId) |
IModule |
IDeploymentManager.getModule(String moduleId)
Returns the module with the specified identifier.
|
static Document |
DeploymentUtil.getModuleDefinitionFromJarModule(File moduleFile)
Returns the module descriptor for a module JAR file.
|
static File |
DeploymentUtil.getModuleFile(IModule module)
Utility method to obtain an archive file relative to a module.
|
static File |
DeploymentUtil.getModuleFile(IModule module,
ModuleType moduleType)
Utility method to obtain an archive file relative to a module.
|
static LocalDataFile |
DeploymentUtil.getModuleLocalDataFile(IModule module)
Utility method to obtain an archive file relative to a module.
|
static LocalDataFile |
DeploymentUtil.getModuleLocalDataFile(String moduleId)
Utility method to obtain an archive file relative to a module.
|
Collection<IModule> |
DeploymentManager.getModules(ModuleType moduleType) |
Collection<IModule> |
IDeploymentManager.getModules(ModuleType moduleType)
Returns the currently installed modules of the specified type.
|
static File |
DeploymentUtil.getNewVersionModuleFile(IModule module)
Utility method to obtain the new version of the archive file relative to a module.
|
static LocalDataFile |
DeploymentUtil.getNewVersionModuleLocalDataFile(IModule module)
Utility method to obtain the new version of the archive file relative to a module.
|
static File |
DeploymentUtil.getOldVersionModuleFile(IModule module)
Utility method to obtain the old version of the archive file relative to a module.
|
static LocalDataFile |
DeploymentUtil.getOldVersionModuleLocalDataFile(IModule module)
Utility method to obtain the old version of the archive file relative to a module.
|
IPortalDeployer |
DeploymentManager.getPortalDeployer(DeployConfig deployConfig)
Deprecated.
|
IPortalDeployer |
IDeploymentManager.getPortalDeployer(DeployConfig deployConfig)
Deprecated.
Since 5.0.0 the use of
IPortalDeployer
has been deprecated. |
String |
DeploymentManager.getResourceModuleId(String resource)
Returns the module id for the given resource
|
String |
IDeploymentManagerSPI.getResourceModuleId(String resource)
Returns the module id corresponding to a resource.
|
Set<String> |
DeploymentManager.getResources(URI basePath,
boolean recursively,
IResourceFilter resourceFilter) |
Set<String> |
IDeploymentManagerSPI.getResources(URI basePath,
boolean recursively,
IResourceFilter resourceFilter)
Returns the available resources within the given base path.
|
static Set<String> |
DeploymentUtil.getResourcesOfModule(IModule module)
Returns all available resources of a given module.
|
boolean |
DeploymentManager.isInstallInProgress() |
boolean |
IDeploymentManagerSPI.isInstallInProgress()
Returns whether a deploy installation is in progress.
|
static Collection<String> |
DeploymentUtil.readAllStylesFromModule(IModule module)
Returns all styles present in the given module.
|
static Collection<String> |
DeploymentUtil.readAllStylesFromModule(IModule module,
File moduleFile)
Returns all styles present in the given module.
|
void |
DeploymentManager.registerActivityStreamStructure()
Register activity-related structure.
|
static ClusterMirroredLocalDataFile |
DeploymentUtil.renameTempPortalFileToFinalModulePortalFile(LocalDataFile tempPortalFile)
Renames the temp module file to the unique module file name.
|
void |
DeploymentManager.resetDeployment() |
void |
IDeploymentManagerSPI.resetDeployment()
Resets the deployment status (and performs all required actions) to make a new deployment possible.
This method can make the portal unstable. |
protected boolean |
BusinessContextRegisterHelper.shouldUnregister(SessionConfig sessionConfig,
IDeployObject definition,
ITransaction transaction) |
protected boolean |
ServiceRegisterHelper.shouldUnregister(SessionConfig sessionConfig,
IDeployObject definition,
ITransaction transaction) |
protected boolean |
ThemeRegisterHelper.shouldUnregister(SessionConfig sessionConfig,
IDeployObject definition,
ITransaction transaction) |
String |
DeploymentManager.submit(IDeploymentExecutionPlan executionPlan) |
String |
IDeploymentManager.submit(IDeploymentExecutionPlan executionPlan)
Submits the
execution plan created by
this manager and returns the created process identifier. |
void |
DeploymentManager.updateChannelId(String componentId,
String channelId) |
void |
IDeploymentManagerSPI.updateChannelId(String componentId,
String channelId)
Updates the channelId of the given component.
|
void |
DeploymentManager.updateChannelId(String componentId,
String channelId,
boolean allowUpdateIfChannelBelongsToOtherComponent) |
void |
IDeploymentManagerSPI.updateChannelId(String componentId,
String channelId,
boolean allowUpdateIfChannelBelongsToOtherComponent)
Updates the channelId of the given component.
|
void |
DeploymentManager.updateClassLoader(Collection<IModule> modulesToBeAdded,
Collection<IModule> modulesToBeRemoved,
ModuleDiff diff,
boolean forceReprocess)
Updates the portal classloader over the cluster..
|
void |
DeploymentMessageWriter.write(String title,
String message,
DeploymentMessageLevel level)
Writes the given message as a package message, a module message and / or
a component message accordingly to the provided identifiers.
|
Modifier and Type | Class and Description |
---|---|
class |
DeploymentInProgressException
Indicates that exists a deployment in progress.
|
class |
IllegalModuleArchiveException
Indicates that a module archive provided is illegal.
|
class |
IllegalPackageArchiveException
Exception thrown when a package archive is not valid.
|
Modifier and Type | Method and Description |
---|---|
static ModuleDiff |
ModuleDiff.diff(IModule originalModule,
IModule newModule)
Returns the diff of the given modules, if applicable or
null . |
Modifier and Type | Method and Description |
---|---|
protected Transformer |
DeploymentSqlGenerator.createTransformer(String sourcePath) |
Constructor and Description |
---|
DeploymentSqlGenerator() |
Modifier and Type | Method and Description |
---|---|
String |
AbstractDeploymentStepExecutable.localize(String localizableString,
String... parameters)
Localize a string with the given parameters.
|
Constructor and Description |
---|
RemoveComponentPublicFilesStepExecutable(IComponent component)
Creates a new instance.
|
Modifier and Type | Method and Description |
---|---|
String |
DisplayMessageStepExecutable.getDescriptionInternal() |
String |
RemoveGlobalNonReferencedEntriesStepExecutable.getDescriptionInternal() |
String |
RunClassStepExecutable.getDescriptionInternal() |
String |
RunSqlStepExecutable.getDescriptionInternal() |
Constructor and Description |
---|
RemoveBigDataDocumentTypesStepExecutable(Map<String,List<EnvironmentType>> environment,
String message,
Collection<String> documentTypeIdsToBeRemoved) |
RunClassStepExecutable(Map<String,List<EnvironmentType>> environment,
String message,
String customClassScript,
Map<String,String> parameters)
Creates a new instance.
|
RunSqlStepExecutable(Map<String,List<EnvironmentType>> environment,
String message,
Node runSqlNode)
Creates a new instance.
|
RunSqlStepExecutable(Map<String,List<EnvironmentType>> environment,
String message,
String sql,
String database)
Creates a new instance.
|
Modifier and Type | Method and Description |
---|---|
void |
FCMActivityNotifier.notify(ActivityDocument activityDocument,
Collection<UserConfig> users) |
Modifier and Type | Method and Description |
---|---|
void |
IDocumentationManager.generateDocumentation(String sourceRootPath,
boolean reGenerateImages,
Locale locale,
boolean insertStringHolders)
Generates documentation for one or more services and static directories specified in a documentationdefinition.xml file
|
void |
IDocumentationManager.generateServiceDocumentation(String serviceId,
boolean reGenerateImages,
Locale locale,
boolean insertStringHolders)
Generates documentation for a given service.
|
void |
IDocumentationManager.generateStaticDocumentation(String sourceRootPath,
Locale locale)
Generates documentation given a root directory.
|
Response |
DocumentationResource.goTo(String page,
String locale)
Redirects user to the desired page in the online documentation.
|
Modifier and Type | Method and Description |
---|---|
static String |
PortalFunctionMapper.concat(Object[] objects)
Concatenates the strings.
|
Map<String,List<String>> |
PortalVariableResolver.EnvironmentBean.getProperties() |
protected static String |
PortalFunctionMapper.localize(IResource baseResource,
PageWebResource pwr,
String[] args)
Resolves the string.
|
protected static String |
PortalFunctionMapper.localize(IResource baseResource,
String[] args)
Resolves the string.
|
static String |
PortalFunctionMapper.localize(String[] args)
Resolves the string.
|
Modifier and Type | Method and Description |
---|---|
String |
IPortalEventManager.addObserver(SessionConfig sessionConfig,
ObserverConfig observerConfig,
ITransaction transaction)
Adds an observer to the persistence.
|
String |
PortalEventManager.addObserver(SessionConfig sessionConfig,
ObserverConfig observerConfig,
ITransaction transaction) |
void |
IPortalEventManager.deleteObserver(SessionConfig sessionConfig,
String observerId,
ITransaction transaction)
Deletes an observer configuration from persistence.
|
void |
PortalEventManager.deleteObserver(SessionConfig sessionConfig,
String observerId,
ITransaction transaction) |
ObserverConfig |
IPortalEventManager.getObserver(SessionConfig sessionConfig,
String observerId,
ITransaction transaction)
Returns an observer configuration.
|
ObserverConfig |
PortalEventManager.getObserver(SessionConfig sessionConfig,
String observerId,
ITransaction transaction) |
ObserverConfig |
IPortalEventManager.getObserverByClassName(SessionConfig sessionConfig,
String observerClassName,
ITransaction transaction)
Searches for an observer configuration based on its class name.
|
ObserverConfig |
PortalEventManager.getObserverByClassName(SessionConfig sessionConfig,
String observerClassName,
ITransaction transaction) |
void |
IPortalEventManager.initObservers(SessionConfig sessionConfig,
ITransaction transaction)
Initializes the observers.
|
void |
PortalEventManager.initObservers(SessionConfig sessionConfig,
ITransaction transaction) |
void |
IPortalEventManager.notifyObservers(IPortalEvent event)
Notify event observers of the given event.
|
void |
PortalEventManager.notifyObservers(IPortalEvent event) |
void |
IPortalEventObserver.onEvent(IPortalEvent event)
Notifies that an event has been raised.
|
void |
IPortalEventManager.registerObservers(SessionConfig sessionConfig,
String observersConfigPath,
ITransaction transaction)
Registers the observers in the specified observer configuration file.
|
void |
PortalEventManager.registerObservers(SessionConfig sessionConfig,
String observersConfigPath,
ITransaction transaction) |
void |
IPortalEventManager.updateObserver(SessionConfig sessionConfig,
ObserverConfig observerConfig,
ITransaction transaction)
Updates an observer configuration in persistence.
|
void |
PortalEventManager.updateObserver(SessionConfig sessionConfig,
ObserverConfig observerConfig,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
protected void |
PortalEventEntityListener.onPostLoad(Object entity) |
protected void |
PortalEventEntityListener.onPostPersist(Object entity) |
protected void |
PortalEventEntityListener.onPostRemove(Object entity) |
protected void |
PortalEventEntityListener.onPostUpdate(Object entity) |
protected void |
PortalEventEntityListener.onPrePersist(Object entity) |
protected void |
PortalEventEntityListener.onPreRemove(Object entity) |
protected void |
PortalEventEntityListener.onPreUpdate(Object entity) |
Modifier and Type | Class and Description |
---|---|
class |
FileValidationException
Base exception for the File Validators.
|
Modifier and Type | Method and Description |
---|---|
void |
FilesDaoJdbc.add(FilesConfig filesConfig,
ITransaction transaction) |
void |
IFilesDao.add(FilesConfig filesConfig,
ITransaction transaction)
Add the files.
|
FileConfig |
FileManager.add(SessionConfig sessionConfig,
FileConfig fileConfig,
ITransaction transaction)
Deprecated.
|
FileConfig |
IFileManager.add(SessionConfig sessionConfig,
FileConfig fileConfig,
ITransaction transaction)
Deprecated.
Since 6.0.0 replaced by
IFileManager.add(SessionConfig, String, File, String, String, ITransaction) . |
FileConfig |
FileManager.add(SessionConfig sessionConfig,
String name,
File file,
String contentType,
String serviceInstanceId,
ITransaction transaction) |
FileConfig |
IFileManager.add(SessionConfig sessionConfig,
String name,
File file,
String contentType,
String serviceInstanceId,
ITransaction transaction)
Persists a file.
|
FileConfig |
FileManager.add(SessionConfig sessionConfig,
String fileId,
String fileRelativePath,
String name,
File file,
String serviceInstanceId,
ITransaction transaction) |
FileConfig |
IFileManager.add(SessionConfig sessionConfig,
String fileId,
String fileRelativePath,
String name,
File file,
String serviceInstanceId,
ITransaction transaction)
Persists a file.
|
FileConfig |
FileManager.add(SessionConfig sessionConfig,
String fileId,
String fileRelativePath,
String name,
File file,
String contentType,
String serviceInstanceId,
ITransaction transaction) |
FileConfig |
IFileManager.add(SessionConfig sessionConfig,
String fileId,
String fileRelativePath,
String name,
File file,
String contentType,
String serviceInstanceId,
ITransaction transaction)
Persists a file.
|
void |
FileManager.changeFilename(SessionConfig sessionConfig,
String fileId,
String newFilename,
ITransaction transaction) |
void |
IFileManager.changeFilename(SessionConfig sessionConfig,
String fileId,
String newFilename,
ITransaction transaction)
Changes the filename of a file.
|
void |
FilesDaoJdbc.delete(String filesId,
ITransaction transaction) |
void |
IFilesDao.delete(String filesId,
ITransaction transaction)
Delete the files.
|
void |
FilesDaoJdbc.deleteFilesLists(String filesId,
ITransaction transaction) |
void |
IFilesDao.deleteFilesLists(String filesId,
ITransaction transaction)
Deletes the entries in the FilesList table the has the given filesId.
|
FileConfig |
FileManager.findByFullPath(SessionConfig sessionConfig,
String fullPath,
ITransaction transaction)
Finds the FileConfig by the full path.
|
FileConfig |
FileManager.get(SessionConfig sessionConfig,
String fileId,
ITransaction transaction) |
FileConfig |
IFileManager.get(SessionConfig sessionConfig,
String fileId,
ITransaction transaction)
Returns the FileConfig for a file with the given fileId.
|
FilesConfig |
FilesDaoJdbc.get(String filesId,
ITransaction transaction) |
FilesConfig |
IFilesDao.get(String filesId,
ITransaction transaction)
Get the files.
|
String |
IContentTypeProvider.getContentType(String fileName,
InputStream fileInputStream)
Returns the content type for the given file.
If no content type could be inferred, null should be returned. |
File |
FileManager.getFile(SessionConfig sessionConfig,
FileConfig fileConfig,
ITransaction transaction)
Deprecated.
|
File |
IFileManager.getFile(SessionConfig sessionConfig,
FileConfig fileConfig,
ITransaction transaction)
Deprecated.
since 8.0.0 replaced by
IFileManager.getPortalFile(SessionConfig, FileConfig, ITransaction) .
When not using the LumisPortal's default file systems, this method may raise an exception. |
Collection<FileConfig> |
FileManager.getFileConfigsByFilesId(SessionConfig sessionConfig,
String filesId,
ITransaction transaction) |
Collection<FileConfig> |
IFileManager.getFileConfigsByFilesId(SessionConfig sessionConfig,
String filesId,
ITransaction transaction)
Returns a collection of FileConfig of file entries belonging to the files
with the given id.
|
Collection<FileConfig> |
FileManager.getFileConfigsByServiceInstanceId(String serviceInstanceId,
ITransaction transaction)
Returns all file configs by a given service instance id.
|
static IMonitor |
FileMonitorUtil.getFileDownloadMonitor(FileConfig fileConfig,
ITransaction transaction)
Returns a monitor for the "lumis.portal.monitor.ev.file.download" event.
|
IServiceInterfaceUrl |
FileManager.getFileHref(SessionConfig sessionConfig,
String fileId,
ITransaction transaction) |
IServiceInterfaceUrl |
IFileManager.getFileHref(SessionConfig sessionConfig,
String fileId,
ITransaction transaction)
Returns the href that is used to access the specified file.
|
FilesConfig |
FileManager.getFilesConfig(SessionConfig sessionConfig,
String filesId,
ITransaction transaction) |
FilesConfig |
IFileManager.getFilesConfig(SessionConfig sessionConfig,
String filesId,
ITransaction transaction)
Returns the FilesConfig for a files with the given filesId.
|
static IMonitor |
FileMonitorUtil.getFileUploadMonitor(FileConfig fileConfig,
ITransaction transaction)
Returns a monitor for the "lumis.portal.monitor.ev.file.upload" event.
|
IFileMetadata |
FileParameter.getMetadata()
Retrieves the metadata of the file.
|
FileMimeTypeConfig |
FileManager.getMimeType(SessionConfig sessionConfig,
String fileMimeType,
ITransaction transaction) |
FileMimeTypeConfig |
IFileManager.getMimeType(SessionConfig sessionConfig,
String fileMimeType,
ITransaction transaction)
Returns a mime type information.
|
int |
FileManager.getNumberOfServiceInstanceFiles(SessionConfig sessionConfig,
String serviceInstanceId,
ITransaction transaction) |
int |
IFileManager.getNumberOfServiceInstanceFiles(SessionConfig sessionConfig,
String serviceInstanceId,
ITransaction transaction)
Returns the number of files for a service instance.
|
IFile |
FileManager.getPortalFile(SessionConfig sessionConfig,
FileConfig fileConfig,
ITransaction transaction) |
IFile |
IFileManager.getPortalFile(SessionConfig sessionConfig,
FileConfig fileConfig,
ITransaction transaction)
Returns the File object for accessing the corresponding file in the
portal filesystem.
|
static IWebsite |
FileUtil.getWebsiteByFile(FileConfig fileConfig,
ITransaction transaction)
Returns the website of the given file (the website that contains the file's service instance).
|
void |
FileDownloadControllerHtml.handleRequest() |
void |
FileManager.moveFile(FileConfig file,
IWebRootPortalBaseFolder oldWebRoot,
IWebRootPortalBaseFolder newWebRoot)
Moves the given
file from one web root to another. |
void |
FileManager.publicServiceInstanceFiles(SessionConfig sessionConfig,
String serviceInstanceId,
boolean filesArePublic,
ITransaction transaction) |
void |
IFileManager.publicServiceInstanceFiles(SessionConfig sessionConfig,
String serviceInstanceId,
boolean filesArePublic,
ITransaction transaction)
Creates or deletes the public copy of the files of a service instance.
|
void |
FileManager.removeStoredFile(SessionConfig sessionConfig,
String fileId,
ITransaction transaction) |
void |
IFileManager.removeStoredFile(SessionConfig sessionConfig,
String fileId,
ITransaction transaction)
Removes the specified file.
|
void |
FileManager.removeStoredFiles(SessionConfig sessionConfig,
String filesId,
ITransaction transaction) |
void |
IFileManager.removeStoredFiles(SessionConfig sessionConfig,
String filesId,
ITransaction transaction)
Removes the files associated with the filesId given.
|
void |
FileManager.setFileContentLocaleId(String fileId,
String contentLocaleId) |
void |
IFileManager.setFileContentLocaleId(String fileId,
String contentLocaleId)
Sets the given content locale identifier in the file with the given identifier.
|
void |
FilesDaoJdbc.update(FilesConfig filesConfig,
ITransaction transaction) |
void |
IFilesDao.update(FilesConfig filesConfig,
ITransaction transaction)
Updates the files.
|
void |
FileManager.updateMetadata(String fileId,
ITransaction transaction)
Updates metadata information from a given file
|
void |
IFileValidator.validate(FileConfig file)
Validate the metadata of a file.
|
Constructor and Description |
---|
FileDownloadControllerHtml(HttpServletRequest request,
HttpServletResponse response) |
Modifier and Type | Method and Description |
---|---|
void |
MultimediaMetadataExtractor.extractMetadata(File file,
String contentType,
FileMetadata fileMetadata) |
void |
IMetadataExtractor.extractMetadata(InputStream inputStream,
String contentType,
FileMetadata fileMetadata)
Extracts the meta data information from the given input stream.
|
void |
ImageMetadataExtractor.extractMetadata(InputStream inputStream,
String contentType,
FileMetadata fileMetadata) |
void |
MultimediaMetadataExtractor.extractMetadata(InputStream inputStream,
String contentType,
FileMetadata fileMetadata) |
protected static IMetadataExtractor |
MetadataExtractorFactory.getDefaultExtractor(FileMacrotype fileMetadataType)
Returns the default
IMetadataExtractor instance, based on the
FileMacrotype . |
static IMetadataExtractor |
MetadataExtractorFactory.getExtractor(FileMacrotype type,
String serviceInstanceId)
Returns an
extractor based on service instance
and FileMacrotype . |
static void |
FileMacrotypeMappingUtil.reorderMatchers(List<String> ids)
Reorder the matchers with the given identifiers.
|
static void |
FileMacrotypeMappingUtil.scheduleAsynchronousReorderingTransactionObserver(ITransaction transaction)
Schedule the asynchronous reordering to
ITransactionObserver.afterCommit() of the given ITransaction . |
static void |
FileMacrotypeMappingUtil.scheduleCacheClearTransactionObserver(ITransaction transaction)
Schedule the clear cache processing to
ITransactionObserver.afterCommit() of the given ITransaction . |
Modifier and Type | Method and Description |
---|---|
FileTransformation |
FileTransformationManager.addFileTransformation(SessionConfig sessionConfig,
FileTransformation fileTransformation,
ITransaction transaction) |
FileTransformation |
IFileTransformationManager.addFileTransformation(SessionConfig sessionConfig,
FileTransformation fileTransformation,
ITransaction transaction)
Persist a FileTransformation for a serviceInstance.
|
void |
FileTransformationManager.addTransformedFileConfig(TransformedFileConfig fileTransformedConfig,
ITransaction transaction) |
void |
IFileTransformationManagerSPI.addTransformedFileConfig(TransformedFileConfig file,
ITransaction transaction)
Persists a transformed file.
|
void |
FileTransformationManager.changeFilename(SessionConfig sessionConfig,
String tranformedFileId,
String newFilename,
ITransaction transaction) |
void |
IFileTransformationManagerSPI.changeFilename(SessionConfig sessionConfig,
String fileId,
String newFilename,
ITransaction transaction)
Changes the filename of a tranformed file.
|
void |
IFormatTransformer.encode(InputStream content,
OutputStream output)
Performs the file encode transformations, as change of file format.
|
IServiceInterfaceUrl |
FileTransformationManager.getFileHref(SessionConfig sessionConfig,
TransformedFileConfig transformedFileConfig,
ITransaction transaction) |
IServiceInterfaceUrl |
IFileTransformationManagerSPI.getFileHref(SessionConfig sessionConfig,
TransformedFileConfig transformedFileConfig,
ITransaction transaction)
Returns the href for linking to the given transformed file in a portal's page.
|
FileTransformation |
FileTransformationManager.getFileTransformation(String fileTransformationId,
ITransaction transaction) |
FileTransformation |
IFileTransformationManager.getFileTransformation(String fileTransformationId,
ITransaction transaction)
Return a given persisted transformation.
|
Collection<FileTransformation> |
FileTransformationManager.getFileTransformationsByServiceInstanceId(String serviceInstanceId,
ITransaction transaction) |
Collection<FileTransformation> |
IFileTransformationManager.getFileTransformationsByServiceInstanceId(String serviceInstanceId,
ITransaction transaction)
Returns all transformations for the given service instance.
|
IFile |
FileTransformationManager.getPortalFile(SessionConfig sessionConfig,
TransformedFileConfig transformedFileConfig,
ITransaction transaction) |
IFile |
IFileTransformationManagerSPI.getPortalFile(SessionConfig sessionConfig,
TransformedFileConfig transformedFileConfig,
ITransaction transaction)
Returns the
IFile related to the given TransformedFileConfig . |
TransformedFileConfig |
FileTransformationManager.getTransformedFileConfig(String transformedFileId,
ITransaction transaction) |
TransformedFileConfig |
IFileTransformationManagerSPI.getTransformedFileConfig(String fileTrnsfPersistedId,
ITransaction transaction)
Returns the persisted generated file.
|
Collection<TransformedFileConfig> |
FileTransformationManager.getTransformedFileConfigByOriginalId(String originalFileId,
ITransaction transaction) |
Collection<TransformedFileConfig> |
IFileTransformationManagerSPI.getTransformedFileConfigByOriginalId(String originalFileId,
ITransaction transaction)
Returns all transformed files by the original file.
|
IFileTransformer |
FileTransformerFactory.getTransformer(String serviceInstanceId)
Returns the proper transformer.
Returns a customized extractor if defined else returns the default content extractor. |
static boolean |
SimpleParameterType.isRemovable(String name)
Asserts if a given transformation parameter is used by other transformations.
|
void |
FileTransformationManager.moveTransformedFiles(FileConfig fileConfig,
IWebRootPortalBaseFolder oldWebRoot) |
void |
IFileTransformationManagerSPI.moveTransformedFiles(FileConfig fileConfig,
IWebRootPortalBaseFolder oldWebRoot)
Moves the transformed public files from the old web root to the current.
|
void |
FileTransformationManager.recreateTransformations(SessionConfig sessionConfig,
String serviceInstanceId,
ITransaction transaction) |
void |
IFileTransformationManagerSPI.recreateTransformations(SessionConfig sessionConfig,
String serviceInstanceId,
ITransaction transaction)
Recreates all transformations of a given file.
|
void |
FileTransformationManager.removeFileTransformation(SessionConfig sessionConfig,
FileTransformation fileTransformation,
ITransaction transaction) |
void |
IFileTransformationManager.removeFileTransformation(SessionConfig sessionConfig,
FileTransformation fileTransformation,
ITransaction transaction)
Removes the specified transformation and its related files.
|
void |
FileTransformationManager.removeFileTransformationInternal(SessionConfig sessionConfig,
FileTransformation fileTransformation,
IWebRootPortalBaseFolder webRoot,
ITransaction transaction) |
void |
IFileTransformationManagerSPI.removeFileTransformationInternal(SessionConfig sessionConfig,
FileTransformation fileTransformation,
IWebRootPortalBaseFolder webRoot,
ITransaction transaction)
Removes the specified transformation and all related files.
|
void |
FileTransformationManager.removeTransformedFileConfig(TransformedFileConfig transformedFileConfig,
ITransaction transaction) |
void |
IFileTransformationManagerSPI.removeTransformedFileConfig(TransformedFileConfig transformedFileConfig,
ITransaction transaction)
Deletes asynchronously the persisted transformed file.
|
void |
FileTransformationManager.removeTransformedFileConfig(TransformedFileConfig transformedFileConfig,
IWebRootPortalBaseFolder webRootBaseFolder,
ITransaction transaction) |
void |
IFileTransformationManagerSPI.removeTransformedFileConfig(TransformedFileConfig transformedFileConfig,
IWebRootPortalBaseFolder webRootBaseFolder,
ITransaction transaction)
Deletes synchronously persisted transformed file.
|
void |
CopyTransformationsToPublicFolderTask.run() |
void |
MoveTransformedPublicFilesTask.run() |
void |
RemoveTransformationTask.run() |
void |
RemoveTransformationsFromPublicFolderTask.run() |
void |
RemoveTransformedFilesTask.run() |
void |
TransformationTask.run() |
TransformedFileConfig |
DefaultFileTransformer.transform(FileConfig fileConfig,
FileTransformation fileTransformation) |
TransformedFileConfig |
IFileTransformer.transform(FileConfig fileConfig,
FileTransformation fileTransformation)
Converts the file using the file config as source of transformation, applying the transformations.
|
void |
DummyTransformation.transform(OutputStream outputStream) |
void |
ITransformation.transform(OutputStream outputStream)
Performs the file transformation using the
outputStream parameter as target
of the file transformations. |
void |
ImageTransformation.transform(OutputStream outputStream) |
void |
TranscodingTransformation.transform(OutputStream outputStream) |
void |
VideoDimensionTransformation.transform(OutputStream outputStream) |
void |
FileTransformationManager.transformFile(SessionConfig sessionConfig,
String fileId,
FileTransformation fileTransformation,
ITransaction transaction) |
void |
IFileTransformationManagerSPI.transformFile(SessionConfig sessionConfig,
String fileId,
FileTransformation fileTransformation,
ITransaction transaction)
Transforms a given file.
|
void |
FileTransformationManager.transformFiles(Collection<FileConfig> files,
String serviceInstanceId,
ITransaction transaction)
Schedule the file transformation for the given files.
|
void |
FileTransformationManager.updateFileTransformation(SessionConfig sessionConfig,
FileTransformation fileTransformation,
ITransaction transaction) |
void |
IFileTransformationManager.updateFileTransformation(SessionConfig sessionConfig,
FileTransformation fileTransformation,
ITransaction transaction)
Updates a given transformation.
|
void |
FileTransformationManager.updateMetadata(String transformedFileConfigId,
ITransaction transaction) |
void |
IFileTransformationManagerSPI.updateMetadata(String transformedFileConfigId,
ITransaction transaction)
Updates metadata information from a given tranformed file
|
Modifier and Type | Method and Description |
---|---|
void |
MultiMediaFormatEncoder.encode(InputStream content,
OutputStream output) |
protected String |
MultiMediaFormatEncoder.getCodecByFormat(String fileFormat)
Returns the codec for the file format.
|
protected it.sauronsoftware.jave.EncodingAttributes |
MultiMediaFormatEncoder.getEncodingAttributes(String contentType,
String targetFormat)
Returns the encoding attributes correctly built for given content type and target format.
|
static IFormatTransformer |
FormatEncoderFactory.getFormatEncoder(String contentType,
String targetFormat,
String serviceInstanceId)
Returns a
IFormatTransformer class instance based on content type
and target format. |
Modifier and Type | Method and Description |
---|---|
void |
MaxMindDBUpdateClock.doTick(SessionConfig sessionConfig,
ClockConfig clockConfig) |
Modifier and Type | Method and Description |
---|---|
String |
GroupManager.add(SessionConfig sessionConfig,
GroupConfig groupConfig,
ITransaction transaction) |
String |
IGroupManager.add(SessionConfig sessionConfig,
GroupConfig groupConfig,
ITransaction transaction)
Add a group.
|
protected void |
GroupControllerXml.addGroup(ITransaction portalTransaction) |
void |
GroupManager.addGroupType(SessionConfig sessionConfig,
GroupType groupType,
ITransaction transaction) |
void |
IGroupManager.addGroupType(SessionConfig sessionConfig,
GroupType groupType,
ITransaction transaction)
Adds a group type.
|
void |
GroupManager.addMember(SessionConfig sessionConfig,
String groupId,
String memberId,
ITransaction transaction) |
void |
IGroupManager.addMember(SessionConfig sessionConfig,
String groupId,
String memberId,
ITransaction transaction)
Add a member into the group.
|
void |
AbstractGroupMembershipProvider.addMember(String groupId,
String memberId) |
void |
IGroupMembershipProvider.addMember(String groupId,
String memberId)
Add a member into a group.
|
void |
GroupManager.addOrUpdate(SessionConfig sessionConfig,
GroupConfig groupConfig,
ITransaction transaction) |
void |
IGroupManager.addOrUpdate(SessionConfig sessionConfig,
GroupConfig groupConfig,
ITransaction transaction) |
protected Collection<CacheItem<GroupConfig>> |
GroupManager.bulkLoadGroups()
Reads all groups from data base.
|
void |
GroupManager.delete(SessionConfig sessionConfig,
String groupId,
ITransaction transaction) |
void |
IGroupManager.delete(SessionConfig sessionConfig,
String groupId,
ITransaction transaction)
Delete a group.
|
void |
GroupManager.deleteAllMembers(SessionConfig sessionConfig,
String groupId,
ITransaction transaction) |
void |
IGroupManager.deleteAllMembers(SessionConfig sessionConfig,
String groupId,
ITransaction transaction)
Delete all member associations for the specified group.
|
void |
GroupManager.deleteConfig(DeserializationContext deserializationContext,
String configId) |
void |
AbstractGroupMembershipProvider.deleteGroupMembershipData(String groupId) |
void |
IGroupMembershipProvider.deleteGroupMembershipData(String groupId)
Deletes all data stored for managing the membership of a group.
|
void |
GroupManager.deleteGroupType(SessionConfig sessionConfig,
String groupTypeId,
ITransaction transaction) |
void |
IGroupManager.deleteGroupType(SessionConfig sessionConfig,
String groupTypeId,
ITransaction transaction)
Deletes a group type.
|
void |
AbstractGroupMembershipProvider.deleteGroupTypeMembershipData() |
void |
IGroupMembershipProvider.deleteGroupTypeMembershipData()
Deletes all data stored for managing the membership of a group type.
|
void |
GroupManager.deleteMember(SessionConfig sessionConfig,
String groupId,
String memberId,
ITransaction transaction) |
void |
IGroupManager.deleteMember(SessionConfig sessionConfig,
String groupId,
String memberId,
ITransaction transaction)
Delete a member of the group.
|
void |
GroupConfig.deserialize(Node groupNode) |
String |
GroupManager.deserialize(SessionConfig sessionConfig,
DeserializationConfig deserializationConfig,
Node groupNode,
ITransaction transaction) |
String |
IGroupManager.deserialize(SessionConfig sessionConfig,
DeserializationConfig deserializationConfig,
Node groupNode,
ITransaction transaction) |
void |
GroupManager.deserializeMembers(SessionConfig sessionConfig,
DeserializationConfig deserializationConfig,
Node membersNodes,
ITransaction transaction) |
void |
IGroupManager.deserializeMembers(SessionConfig sessionConfig,
DeserializationConfig deserializationConfig,
Node membersNode,
ITransaction transaction) |
GroupConfig |
GroupManager.get(SessionConfig sessionConfig,
String groupId,
ITransaction transaction) |
GroupConfig |
IGroupManager.get(SessionConfig sessionConfig,
String groupId,
ITransaction transaction)
Returns the group with the specified identifier.
|
Collection<GroupConfig> |
GroupManager.getByChannelId(SessionConfig sessionConfig,
String channelId,
ITransaction transaction) |
Collection<GroupConfig> |
IGroupManager.getByChannelId(SessionConfig sessionConfig,
String channelId,
ITransaction transaction)
Get all local groups from the specified channel
|
Collection<GroupConfig> |
GroupManager.getByOrigin(SessionConfig sessionConfig,
String origin,
ITransaction transaction) |
Collection<GroupConfig> |
IGroupManager.getByOrigin(SessionConfig sessionConfig,
String origin,
ITransaction transaction)
Get the local groups configuration for the specified origin.
|
String |
GroupManager.getGroupConfigurationInterfaceId(SessionConfig sessionConfig,
String groupTypeId,
ITransaction transaction) |
String |
IGroupManager.getGroupConfigurationInterfaceId(SessionConfig sessionConfig,
String groupTypeId,
ITransaction transaction)
Returns the interface identifier for editing membership configurations
of groups of a specific group type.
|
Collection<String> |
IGroupMembershipProvider.getGroups(String principalId)
Returns the groups of a principal.
|
GroupType |
GroupManager.getGroupType(SessionConfig sessionConfig,
String groupTypeId,
ITransaction transaction) |
GroupType |
IGroupManager.getGroupType(SessionConfig sessionConfig,
String groupTypeId,
ITransaction transaction)
Returns a group type.
|
String |
GroupManager.getGroupTypeConfigurationInterfaceId(SessionConfig sessionConfig,
String groupTypeId,
ITransaction transaction) |
String |
IGroupManager.getGroupTypeConfigurationInterfaceId(SessionConfig sessionConfig,
String groupTypeId,
ITransaction transaction)
Returns the interface identifier for editing membership configurations
for a group type.
|
Collection<String> |
GroupManager.getIds(SessionConfig sessionConfig,
ITransaction transaction) |
Collection<String> |
IGroupManager.getIds(SessionConfig sessionConfig,
ITransaction transaction)
Get all groups.
|
Collection<String> |
GroupManager.getMemberGroups(SessionConfig sessionConfig,
String memberId,
boolean recursively,
boolean useSessionCache,
ITransaction transaction) |
Collection<String> |
IGroupManagerSPI.getMemberGroups(SessionConfig sessionConfig,
String memberId,
boolean recursively,
boolean useSessionCache,
ITransaction transaction)
Returns an array of groups of the given member.
|
Collection<String> |
GroupManager.getMemberGroups(SessionConfig sessionConfig,
String memberId,
boolean recursively,
ITransaction transaction) |
Collection<String> |
IGroupManager.getMemberGroups(SessionConfig sessionConfig,
String memberId,
boolean recursively,
ITransaction transaction)
Returns an array of groups of the given member.
|
Collection<String> |
GroupManager.getMembers(SessionConfig sessionConfig,
String groupId,
int filterType,
boolean recursively,
ITransaction transaction) |
Collection<String> |
IGroupManager.getMembers(SessionConfig sessionConfig,
String groupId,
int filterType,
boolean recursively,
ITransaction transaction)
Returns the immediate group members.
|
Collection<String> |
IGroupMembershipProvider.getMembers(String groupId,
int filterType)
Returns the members of a group.
|
void |
GroupManager.invalidateGroupMembershipProvider(SessionConfig sessionConfig,
String groupTypeId,
ITransaction transaction)
Destroys a group membership provider from the storage, cluster wide.
|
void |
IGroupManager.invalidateGroupMembershipProvider(SessionConfig sessionConfig,
String groupTypeId,
ITransaction transaction)
Invalidates the group membership provider of a group type.
|
boolean |
GroupManager.isMember(SessionConfig sessionConfig,
Collection<String> groupIds,
String principalId,
ITransaction transaction) |
boolean |
IGroupManager.isMember(SessionConfig sessionConfig,
Collection<String> groupIds,
String principalId,
ITransaction transaction)
Deprecated.
since 11.2.0 replaced by
IPrincipalManager.isMember(SessionConfig, String, Collection, ITransaction) |
boolean |
GroupManager.isMember(SessionConfig sessionConfig,
String groupId,
String principalId,
ITransaction transaction) |
boolean |
IGroupManager.isMember(SessionConfig sessionConfig,
String groupId,
String principalId,
ITransaction transaction)
Deprecated.
since 11.2.0 replaced by
IPrincipalManager.isMember(SessionConfig, String, Collection, ITransaction) |
void |
AbstractGroupMembershipProvider.removeMember(String groupId,
String memberId) |
void |
IGroupMembershipProvider.removeMember(String groupId,
String memberId)
Remove a member from a group.
|
void |
GroupConfig.serialize(OutputStream outputStream) |
void |
GroupManager.serialize(SessionConfig sessionConfig,
GroupConfig groupConfig,
OutputStream outputStream,
ITransaction transaction) |
void |
IGroupManager.serialize(SessionConfig sessionConfig,
GroupConfig groupConfig,
OutputStream outputStream,
ITransaction transaction) |
void |
GroupManager.serializeMembers(SessionConfig sessionConfig,
GroupConfig groupConfig,
OutputStream outputStream,
ITransaction transaction) |
void |
IGroupManager.serializeMembers(SessionConfig sessionConfig,
GroupConfig groupConfig,
OutputStream outputStream,
ITransaction transaction) |
void |
GroupManager.update(SessionConfig sessionConfig,
GroupConfig groupConfig,
ITransaction transaction) |
void |
IGroupManager.update(SessionConfig sessionConfig,
GroupConfig groupConfig,
ITransaction transaction)
Update the group configuration.
|
void |
GroupManager.updateGroupType(SessionConfig sessionConfig,
GroupType groupType,
ITransaction transaction) |
void |
IGroupManager.updateGroupType(SessionConfig sessionConfig,
GroupType groupType,
ITransaction transaction)
Updates a group type.
|
Constructor and Description |
---|
GroupControllerXml(HttpServletRequest request,
HttpServletResponse response,
PageContext pageContext) |
Modifier and Type | Method and Description |
---|---|
String |
GroupAclManager.add(SessionConfig sessionConfig,
GroupConfig groupConfig,
ITransaction transaction) |
String |
IGroupAclManager.add(SessionConfig sessionConfig,
GroupConfig groupConfig,
ITransaction transaction)
Add an Access Control List to the Group.
|
void |
GroupAclManager.checkRequiredPermissions(AccessControlList acl) |
void |
IGroupAclManager.checkRequiredPermissions(AccessControlList acl)
Checks if the required permissions were given for someone.
|
AccessControlList |
GroupAclManager.get(SessionConfig sessionConfig,
String groupId,
ITransaction transaction) |
AccessControlList |
IGroupAclManager.get(SessionConfig sessionConfig,
String groupId,
ITransaction transaction)
Get the Group's Access Control List.
|
protected AccessControlList |
GroupAclManager.getAclInternal(SessionConfig sessionConfig,
String groupId,
ITransaction transaction) |
static int[] |
GroupPermissions.getImplies() |
protected int |
GroupAclManager.getRequiredPermissions() |
static int |
GroupPermissions.getRequiredPermissions() |
void |
GroupAclManager.update(SessionConfig sessionConfig,
String groupId,
AccessControlList acl,
ITransaction transaction) |
void |
IGroupAclManager.update(SessionConfig sessionConfig,
String groupId,
AccessControlList acl,
ITransaction transaction)
Update the Groups's ACL.
|
Modifier and Type | Method and Description |
---|---|
void |
DatabaseViewGroupMembershipProvider.deleteGroupMembershipData(String groupId)
Deletes
DatabaseViewGroupConfig of the specified group. |
void |
DatabaseViewGroupMembershipProvider.deleteGroupTypeMembershipData()
Deletes
DatabaseViewGroupTypeConfig of the current group type. |
Collection<String> |
DatabaseViewGroupMembershipProvider.getGroups(String principalId) |
Collection<String> |
DatabaseViewGroupMembershipProvider.getMembers(String groupId,
int filterType) |
IFormulaStatement |
DatabaseViewGroupConfig.getMembersFormula()
Returns the membership formula statement, according to this configuration.
|
protected Map<String,Object> |
DatabaseViewGroupMembershipProvider.readMemberData(String principalId)
Returns the data for a specific member.
|
protected Collection<String> |
DatabaseViewGroupMembershipProvider.readMembers(DatabaseViewGroupConfig databaseViewGroupConfig,
int filterType)
Read from persistence the identifiers of principals that match the
specified criteria.
|
Modifier and Type | Method and Description |
---|---|
void |
GroupSerializationManager.deserialize(DeserializationContext deserializationContext,
GroupSerializableConfig groupSerializableConfig) |
void |
IGroupSerializationManager.deserialize(DeserializationContext deserializationContext,
GroupSerializableConfig groupSerializableConfig)
Deserialize a group.
|
SerializationMessageConfigNode |
GroupSerializationManager.getSerializationMessageConfigNode(BaseSerializationContext baseSerializationContext,
GroupConfig groupConfig) |
SerializationMessageConfigNode |
IGroupSerializationManager.getSerializationMessageConfigNode(BaseSerializationContext baseSerializationContext,
GroupConfig groupConfig)
Get a
SerializationMessageConfigNode object containing fully recursive information about a group. |
SerializationMessageConfigNode |
GroupSerializationManager.getSerializationMessageConfigNode(BaseSerializationContext baseSerializationContext,
GroupConfig groupConfig,
EnumSet<SerializationMessageConfigNode.RecursionStopPoints> recursionStopPoints) |
SerializationMessageConfigNode |
IGroupSerializationManager.getSerializationMessageConfigNode(BaseSerializationContext baseSerializationContext,
GroupConfig groupConfig,
EnumSet<SerializationMessageConfigNode.RecursionStopPoints> recursionStopPoints)
Get a
SerializationMessageConfigNode object containing partially recursive information about a group. |
GroupSerializableConfig |
GroupSerializationManager.serialize(SerializationContext serializationContext,
GroupConfig groupConfig) |
GroupSerializableConfig |
IGroupSerializationManager.serialize(SerializationContext serializationContext,
GroupConfig groupConfig)
Serialize a group.
|
Modifier and Type | Method and Description |
---|---|
void |
StandardGroupMembershipProvider.addMember(String groupId,
String memberId) |
protected Collection<CacheItem<Collection<String>>> |
StandardGroupMembershipProvider.bulkLoadMemberships(ICacheMultiDataProvider.IRequest request)
Bulk load the memberships.
|
void |
StandardGroupMembershipProvider.deleteGroupMembershipData(String groupId) |
Collection<String> |
StandardGroupMembershipProvider.getGroups(String principalId) |
Collection<String> |
StandardGroupMembershipProvider.getMembers(String groupId,
int filterType) |
void |
StandardGroupMembershipProvider.removeMember(String groupId,
String memberId) |
Modifier and Type | Method and Description |
---|---|
protected Map<String,Date> |
HealthCheckGeneral.getLumisServersTime()
Returns the LumisXP servers time.
|
Constructor and Description |
---|
HealthCheckInfo(Class<?> cls,
Method method) |
Modifier and Type | Method and Description |
---|---|
protected IServiceInterfaceUrl |
GenericHyperLinkResolver.createUrl(SessionConfig sessionConfig,
HyperLinkConfig hyperLinkConfig,
String pageId,
ITransaction transaction)
Creates an URL for the given hyperlink.
|
String |
HyperLinkManager.getHyperlinkServiceId(SessionConfig sessionConfig,
HyperLinkConfig hyperLinkConfig,
ITransaction transaction) |
String |
IHyperLinkManager.getHyperlinkServiceId(SessionConfig sessionConfig,
HyperLinkConfig hyperLinkConfig,
ITransaction transaction)
Returns the id of the service related to the given hyperlink.
|
IServiceInterfaceUrl |
HyperLinkManager.getUrl(SessionConfig sessionConfig,
HyperLinkConfig hyperLinkConfig,
ITransaction transaction) |
IServiceInterfaceUrl |
IHyperLinkManager.getUrl(SessionConfig sessionConfig,
HyperLinkConfig hyperLinkConfig,
ITransaction transaction)
Returns the URL corresponding to the information contained in the
given
HyperlinkConfig . |
String |
HyperLinkManager.getXmlString(SessionConfig sessionConfig,
Node hyperLinksNode,
String serviceId,
String serviceInstanceId,
String sourcePageId,
ITransaction transaction)
Deprecated.
|
String |
IHyperLinkManager.getXmlString(SessionConfig sessionConfig,
Node hyperLinkNode,
String serviceId,
String serviceInstanceId,
String sourcePageId,
ITransaction transaction)
Deprecated.
This method may be removed in the future.
|
void |
HyperLinkControllerHtml.hyperLink() |
protected boolean |
GenericHyperLinkResolver.interfaceInstanceCanBeUsedAsLinkTarget(String interfaceInstanceId)
Returns whether the interface instance with the given identifier can be used in hyperlinks or not.
|
protected String |
GenericHyperLinkResolver.resolveDestinationInterfaceId(SessionConfig sessionConfig,
HyperLinkConfig hyperLinkConfig,
ITransaction transaction)
Resolves the interface that should be the destination for the given
hyperlinkConfig |
protected String |
GenericHyperLinkResolver.resolveDestinationPageId(SessionConfig sessionConfig,
HyperLinkConfig hyperLinkConfig,
ITransaction transaction)
Tries to resolve the destination page for the specified hyperlink.
|
IServiceInterfaceUrl |
GenericHyperLinkResolver.resolveHyperLink(SessionConfig sessionConfig,
HyperLinkConfig hyperLinkConfig,
ITransaction transaction)
Resolves an hyperlink to the corresponding URL.
|
IServiceInterfaceUrl |
IHyperLinkResolver.resolveHyperLink(SessionConfig sessionConfig,
HyperLinkConfig hyperLinkConfig,
ITransaction transaction)
Resolves an hyperlink to the corresponding URL.
|
protected void |
GenericHyperLinkResolver.setUrlParameters(SessionConfig sessionConfig,
IServiceInterfaceUrl url,
Map<String,String[]> parameters,
ITransaction transaction)
Replaces the parameters in the url with the parameters in the given map.
|
Constructor and Description |
---|
HyperLinkControllerHtml(HttpServletRequest request,
HttpServletResponse response,
PageContext pageContext) |
Modifier and Type | Method and Description |
---|---|
String |
IServiceInterfaceInContextEdit.getInContextEditMenu(SessionConfig sessionConfig,
IURLFactory urlFactory,
ServiceInterfaceInstanceConfig serviceInterfaceInstanceConfig,
String detailsLumItemId,
ITransaction transaction)
Returns in context edit menu XML string for the given service interface
instance.
|
String |
IServiceInterfaceInContextEdit.getInContextEditMenu(SessionConfig sessionConfig,
IURLFactory urlFactory,
String itemId,
String sourcePageId,
ITransaction transaction)
Returns in context edit menu XML string for the given content
(represented by a version's item id).
|
String |
IServiceInterfaceInContextEdit.processInContextEditContent(ServiceContainerRenderRequest renderRequest,
ServiceInterfaceInstanceConfig serviceInterfaceInstanceConfig,
String outputHTML,
ITransaction transaction)
Process in context edit content related attributes.
|
boolean |
IServiceInterfaceInContextEdit.removeInContextEditInterfaceInstance(SessionConfig sessionConfig,
IPortalMode portalMode,
ServiceInterfaceInstanceConfig serviceInterfaceInstanceConfig,
String html,
org.apache.wicket.util.string.AppendingStringBuffer sb,
String detailsLumItemId,
ITransaction transaction)
Removes in context editing interface instance related attributes if
needed.
|
Constructor and Description |
---|
InContextEditControllerXml(HttpServletRequest request,
HttpServletResponse response,
PageContext pageContext) |
Modifier and Type | Class and Description |
---|---|
class |
MandatoryStepIgnoredException
|
class |
ProcessNotOwnedException
PortalException that indicates a process was requested by an owner
that differs from it's one. |
Modifier and Type | Method and Description |
---|---|
IProcess |
IInteractiveProcessManager.createProcess(String title,
List<Step> steps,
IProcessCallbackHandler callbackHandler)
Creates a
portal interactive process with the given
steps . |
IProcess |
InteractiveProcessManager.createProcess(String title,
List<Step> steps,
IProcessCallbackHandler callbackHandler) |
StepOutcome |
Step.execute()
Executes this step and returns the outcome.
If this step has already been executed and it's outcome is StepOutcomeStatus.SUCCESS or StepOutcomeStatus.IGNORED an
IllegalStateException is raised. |
IStepOutcome |
IProcess.executeNextStep()
Executes the next step of this process and returns the outcome.
|
IStepOutcome |
Process.executeNextStep() |
IStepExecutable |
Step.getExecutable()
Returns this step's executable.
|
Integer |
IProcess.getLastExecutedStep()
Returns the last executed step.
|
Integer |
Process.getLastExecutedStep() |
IProcess |
IInteractiveProcessManager.getProcess(String processId,
String owner)
Returns the process of the given identifier.
The parameter processId is required. |
Process |
InteractiveProcessManager.getProcess(String processId,
String ownerId) |
IProcessCallbackHandler |
Process.getProcessCallbackHandler()
Converts the Process Callback Handler from bytes to object and returns it.
|
List<IStep> |
IProcess.getSteps()
Returns an unmodifiable list of the steps.
|
IStepOutcome |
IProcess.ignoreNextStep()
Ignores the next step of this process.
|
IStepOutcome |
Process.ignoreNextStep() |
void |
InteractiveProcessManager.recover(String processId)
Changes the process status to "Ready".
|
void |
IProcess.stop()
Stops the process.
|
void |
Process.stop() |
String |
IInteractiveProcessManager.submitProcess(IProcess process)
Submits a process created with
#createProcess(String, List) . |
String |
InteractiveProcessManager.submitProcess(IProcess process) |
String |
IInteractiveProcessManager.takeOwnership(String processId)
Takes the ownership of the process with the given identifier.
|
String |
InteractiveProcessManager.takeOwnership(String processId) |
boolean |
IProcess.tryToExecuteUntilTheEnd()
Tries to execute the process until the end.
|
boolean |
Process.tryToExecuteUntilTheEnd() |
Modifier and Type | Method and Description |
---|---|
void |
ILocalizationManager.add(LocaleConfig locale)
Adds the given locale.
|
void |
LocalizationManager.add(LocaleConfig localeConfig) |
String |
ILocalizationManager.addCustomString(SessionConfig sessionConfig,
CustomStringConfig customStringConfig,
ITransaction transaction)
Add a Custom String
|
String |
LocalizationManager.addCustomString(SessionConfig sessionConfig,
CustomStringConfig customStringConfig,
ITransaction transaction) |
void |
CustomStringLocalizationDaoJdbc.addOrUpdate(CustomStringConfig customStringConfig,
ITransaction transaction) |
void |
ICustomStringLocalizationDao.addOrUpdate(CustomStringConfig customStringConfig,
ITransaction transaction)
Add or Update the specified custom string
|
void |
ILocalizationManager.clearCache()
Clear the localization cache.
|
void |
LocalizationManager.clearCache() |
void |
ILocalizationManager.clearCache(String resourcePath)
Clear the localization cache by passing the resource path.
|
void |
LocalizationManager.clearCache(String resourcePath) |
void |
ILocalizationManager.clearCache(String resourcePath,
Locale locale)
Clear the localization cache by passing the resource path and the locale.
|
void |
LocalizationManager.clearCache(String resourcePath,
Locale locale) |
void |
ILocalizationManager.delete(String id)
Deletes the locale with the given identifier.
|
void |
LocalizationManager.delete(String id) |
void |
CustomStringLocalizationDaoJdbc.delete(String customStringId,
ITransaction transaction) |
void |
ICustomStringLocalizationDao.delete(String customStringId,
ITransaction transaction)
Delete CustomString
|
void |
ILocalizationManager.deleteCustomString(SessionConfig sessionConfig,
String customStringId,
ITransaction transaction)
Delete a specified Custom String
|
void |
LocalizationManager.deleteCustomString(SessionConfig sessionConfig,
String customStringId,
ITransaction transaction) |
CustomStringConfig |
CustomStringLocalizationDaoJdbc.get(String customStringId,
ITransaction transaction) |
CustomStringConfig |
ICustomStringLocalizationDao.get(String customStringId,
ITransaction transaction)
Get the CustomString object
|
CustomStringConfig |
ILocalizationManager.getCustomString(SessionConfig sessionConfig,
String customStringId,
ITransaction transaction)
Get the Custom String object
|
CustomStringConfig |
LocalizationManager.getCustomString(SessionConfig sessionConfig,
String customStringId,
ITransaction transaction) |
String |
CustomStringLocalizationDaoJdbc.getIdByStringInfo(CustomStringConfig customStringConfig,
ITransaction transaction) |
String |
ICustomStringLocalizationDao.getIdByStringInfo(CustomStringConfig customStringConfig,
ITransaction transaction)
Get CustomStringId from stringId, resourcePath and localeCode
|
Collection<LocaleConfig> |
ILocalizationManager.getLocales(ITransaction transaction)
Returns the available locales for the portal.
|
Collection<LocaleConfig> |
LocalizationManager.getLocales(ITransaction transaction)
Returns a collection of locale config
|
Map<String,String> |
CustomStringLocalizationDaoJdbc.getStringTable(String resourcePath,
Locale locale,
List<ITheme> themes) |
Map<String,String> |
IStringLocalizationDao.getStringTable(String resourcePath,
Locale locale,
List<ITheme> themes)
Get the string table of the string localization.
|
Map<String,String> |
MainStringLocalizationDaoXml.getStringTable(String resourcePath,
Locale locale,
List<ITheme> themes) |
void |
LocalizationControllerHtml.handleSetLocaleRequest() |
static boolean |
LocaleUtilInternal.isCurrentLocaleValid(ChannelConfig channel)
Returns whether the session locale is valid for a given channel.
|
String |
ILocalizationManager.localize(String id,
IResource resource)
Localizes the given string id using the given resource and current locale.
|
String |
LocalizationManager.localize(String id,
IResource resource) |
String |
ILocalizationManager.localize(String id,
IResource resource,
Locale locale)
Localizes the given string id using the given resource and locale.
|
String |
LocalizationManager.localize(String id,
IResource resource,
Locale locale) |
String |
ILocalizationManager.localize(String id,
IResource resource,
Locale locale,
WebResource webResource)
Localizes the given string id using the given resource,
WebResource and locale. |
String |
LocalizationManager.localize(String id,
IResource resource,
Locale locale,
WebResource webResource) |
String |
ILocalizationManager.localize(String id,
IResource resource,
PageWebResource pageWebResource)
Localizes the given string id using the given resource,
PageWebResource and current locale. |
String |
LocalizationManager.localize(String id,
IResource resource,
PageWebResource pageWebResource) |
String |
ILocalizationManager.localize(String id,
List<IResource> resources)
Localizes the given string id using the given resources and current locale.
|
String |
LocalizationManager.localize(String id,
List<IResource> resources) |
String |
ILocalizationManager.localize(String id,
List<IResource> resources,
Locale locale)
Localizes the given string id using the given resources and locale.
|
String |
LocalizationManager.localize(String id,
List<IResource> resources,
Locale locale) |
String |
ILocalizationManager.localize(String id,
List<IResource> resources,
Locale locale,
WebResource pageWebResource)
Localizes the given string id using the given resources,
WebResource and locale. |
String |
LocalizationManager.localize(String id,
List<IResource> resources,
Locale locale,
WebResource webResource) |
String |
ILocalizationManager.localize(String id,
List<IResource> resources,
PageWebResource pageWebResource)
Localizes the given string id using the given resources,
PageWebResource and current locale. |
String |
LocalizationManager.localize(String id,
List<IResource> resources,
PageWebResource pageWebResource) |
void |
LocalizationCacheClearObserver.onEvent(IPortalEvent event) |
static Locale |
LocaleUtilInternal.selectLocale(HttpServletRequest request,
ChannelConfig channel)
Returns the selected locale for a given channel and request.
|
void |
ILocalizationManager.update(LocaleConfig locale)
Updates the given locale.
|
void |
LocalizationManager.update(LocaleConfig locale) |
void |
ILocalizationManager.updateCustomString(SessionConfig sessionConfig,
CustomStringConfig customStringConfig,
ITransaction transaction)
Update a specified Custom String
|
void |
LocalizationManager.updateCustomString(SessionConfig sessionConfig,
CustomStringConfig customStringConfig,
ITransaction transaction) |
Constructor and Description |
---|
LocalizationControllerHtml(HttpServletRequest request,
HttpServletResponse response) |
Modifier and Type | Method and Description |
---|---|
void |
LockManager.forceSingleUnlock(String id)
Force the unlock of a single lock with the specified identifier (database id).
|
void |
LockManager.forceUnlock(String resourceId)
Forces the unlock of the specified lock resource, independently of the
current owner.
|
Collection<String> |
ILockManagerSPI.getRecentlyLock(long lastMilliseconds)
Return write locks for the last millisenconds
|
Collection<String> |
LockManager.getRecentlyLock(long lastMilliseconds) |
void |
ILockManager.unlockExpiredLocks()
Deletes all the locks that have expired.
|
void |
LockManager.unlockExpiredLocks() |
Modifier and Type | Method and Description |
---|---|
void |
LockClock.doTick(SessionConfig sessionConfig,
ClockConfig clockConfig) |
Modifier and Type | Class and Description |
---|---|
class |
ManagerException |
Modifier and Type | Method and Description |
---|---|
void |
IMetaTagDao.add(MetaTagConfig metaTagConfig,
ITransaction transaction)
Add a meta-tag
|
void |
MetaTagDao.add(MetaTagConfig metaTagConfig,
ITransaction transaction) |
String |
IMetaTagManager.add(SessionConfig sessionConfig,
MetaTagConfig metaTagConfig,
ITransaction transaction)
Adds a meta-tag
|
String |
MetaTagManager.add(SessionConfig sessionConfig,
MetaTagConfig metaTagConfig,
ITransaction transaction) |
void |
IMetaTagManager.addOrUpdate(SessionConfig sessionConfig,
MetaTagConfig metaTagConfig,
ITransaction transaction)
Update a meta-tag.
|
void |
MetaTagManager.addOrUpdate(SessionConfig sessionConfig,
MetaTagConfig metaTagConfig,
ITransaction transaction) |
void |
IMetaTagManager.delete(SessionConfig sessionConfig,
String id,
ITransaction transaction)
Delete a meta-tag.
|
void |
MetaTagManager.delete(SessionConfig sessionConfig,
String id,
ITransaction transaction) |
void |
IMetaTagDao.delete(String id,
ITransaction transaction)
Delete a meta-tag.
|
void |
MetaTagDao.delete(String id,
ITransaction transaction) |
void |
IMetaTagManagerSPI.deserializeMetaTags(SessionConfig sessionConfig,
DeserializationConfig deserializationConfig,
Node metaTagsNodes,
ChannelConfig parentChannel,
ITransaction transaction)
Deserialize meta-tags into a channel.
|
void |
MetaTagManager.deserializeMetaTags(SessionConfig sessionConfig,
DeserializationConfig deserializationConfig,
Node metaTagsNodes,
ChannelConfig parentChannel,
ITransaction transaction) |
void |
IMetaTagManagerSPI.deserializeMetaTags(SessionConfig sessionConfig,
DeserializationConfig deserializationConfig,
Node metaTagsNodes,
PageConfig parentPage,
ITransaction transaction)
Deserialize meta-tags into a page.
|
void |
MetaTagManager.deserializeMetaTags(SessionConfig sessionConfig,
DeserializationConfig deserializationConfig,
Node metaTagsNodes,
PageConfig parentPage,
ITransaction transaction) |
MetaTagConfig |
IMetaTagManager.get(SessionConfig sessionConfig,
String id,
ITransaction transaction)
Get a meta-tag object
|
MetaTagConfig |
MetaTagManager.get(SessionConfig sessionConfig,
String id,
ITransaction transaction) |
MetaTagConfig |
IMetaTagDao.get(String id,
ITransaction transaction)
Get a meta-tag object.
|
MetaTagConfig |
MetaTagDao.get(String id,
ITransaction transaction) |
List<String> |
IMetaTagManager.getIdsByParentId(SessionConfig sessionConfig,
String parentId,
ITransaction transaction)
Get a list of meta-tag ids given the parent channelId or pageId
|
List<String> |
MetaTagManager.getIdsByParentId(SessionConfig sessionConfig,
String parentId,
ITransaction transaction) |
List<String> |
IMetaTagDao.getIdsByParentId(String parentId,
ITransaction transaction)
Get a list of meta-tag ids given the parentId
|
List<String> |
MetaTagDao.getIdsByParentId(String parentId,
ITransaction transaction) |
List<MetaTagConfig> |
IMetaTagManagerSPI.getMetaTagsByParentId(SessionConfig sessionConfig,
String parentId,
ITransaction transaction)
Get a list of meta-tag object given the parent pageId
|
List<MetaTagConfig> |
MetaTagManager.getMetaTagsByParentId(SessionConfig sessionConfig,
String parentId,
ITransaction transaction) |
void |
IMetaTagManagerSPI.serializeMetaTags(SessionConfig sessionConfig,
String parentId,
StringBuilder output,
ITransaction transaction)
Serializes the meta-tags belonging to the specified parent.
|
void |
MetaTagManager.serializeMetaTags(SessionConfig sessionConfig,
String parentId,
StringBuilder output,
ITransaction transaction) |
void |
IMetaTagDao.update(MetaTagConfig metaTagConfig,
ITransaction transaction)
Update a meta-tag configuration.
|
void |
MetaTagDao.update(MetaTagConfig metaTagConfig,
ITransaction transaction) |
void |
IMetaTagManager.update(SessionConfig sessionConfig,
MetaTagConfig metaTagConfig,
ITransaction transaction)
Update a meta-tag configuration.
|
void |
MetaTagManager.update(SessionConfig sessionConfig,
MetaTagConfig metaTagConfig,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
static String |
MobileAPIUtils.getGCMProjectId()
Returns the currently configured GCM project id.
|
protected String |
MobileAPIV10.getGCMProjectId()
Returns the GCM project identifier.
|
Modifier and Type | Method and Description |
---|---|
void |
IMonitorManagerSPI.addMonitorUser(UserConfig userConfig)
Adds a new monitor user to persistence.
|
IMonitorValuesProvider |
MonitorHelper.addSessionValues(SessionConfig sessionConfig,
HttpSession httpSession)
Adds a value provider related to
SessionConfig and HttpSession . |
void |
IMonitorManagerSPI.anonymizeAllMonitorUser()
Anonymizes all monitor users without consent.
|
void |
IMonitorManagerSPI.anonymizeMonitorUser(String monitorUserId)
Anonymizes the given monitor user.
|
void |
IMonitorManagerSPI.anonymizeMonitorUsers(Collection<String> monitorUserIds)
Anonymizes the given monitor users.
|
void |
IMonitorManagerSPI.clearRequestRulesCache()
Clears the request rules cache.
|
void |
IMonitorManagerSPI.deleteUserActivities(String userId)
Delete monitor user activities.
|
Collection<IMonitorEvent> |
IMonitorManagerSPI.getAllEvents()
Returns all monitor events.
|
Collection<IMonitorField> |
IMonitorManagerSPI.getAllFields()
Returns all monitor fields.
|
IMonitorEvent |
IMonitorManager.getEvent(String eventId)
Returns an unmodifiable event.
|
IMonitorField |
IMonitorManager.getField(String fieldId)
Returns an unmodifiable field.
|
IMonitorFieldGroup |
IMonitorManager.getFieldGroup(String fieldGroupId)
Returns an unmodifiable field group.
|
String |
IMonitorManagerSPI.getFriendlyIdUserField()
Returns the field used to calculated the monitor user's friendly id for portal users.
|
void |
IMonitorManagerSPI.initializeMonitoringData(ITransaction transaction,
boolean forceEventProcess)
Method called during portal database initialization to populate the
monitoring related data.
|
void |
IMonitorManagerSPI.initializeMonitorRequestRules()
Initializes the monitor request rules.
|
void |
IMonitorManagerSPI.loadMonitorUserInfo(String userId,
IUserConfigInitializer userConfigInitializer)
Provides a monitor user information to
IUserConfigInitializer . |
void |
IMonitorManagerSPI.mergeMonitorUserDuringAuthentication(String httpSessionId,
String srcMonitorUserId,
String destMonitorUserId)
Merges a monitor user to another, because a http session identified as the first monitor user was authenticated
as the second monitor user.
|
void |
IMonitorManagerSPI.mergeMonitorUsers(String srcMonitorUserId,
String destMonitorUserId)
Merger monitor users.
|
IMonitor |
IMonitorManager.monitor(String eventId)
Returns the monitor for an event with the given identifier.
|
IMonitor |
IMonitorManager.monitor(String eventId,
ITransaction transaction)
Returns the monitor for an event with the given identifier.
|
void |
IMonitorManagerSPI.reindexAllMonitorUser()
Reindex all monitor users and their event data.
|
void |
IMonitorManagerSPI.reindexGroupMember(Collection<String> principalIds)
Schedule reindex of monitor users due to membership change.
|
void |
IMonitorManagerSPI.reindexMonitorUsers(Collection<String> monitorUserIds)
Reindex the given monitor users.
|
void |
IMonitorManagerSPI.scheduleReindexMonitorUser(String id,
Long visitorId)
Schedules the reindexing of the monitor user with the given identifier on big data after the commit of the
current transaction.
|
void |
IMonitorManagerSPI.setFriendlyIdUserField(String field)
Sets the field used to calculated the monitor user's friendly id for portal users.
|
boolean |
IMonitorManagerSPI.shouldMonitorRequest(HttpServletRequest request)
Returns whether the given request should have the events monitored.
|
IMonitor |
IMonitorManagerSPI.syncMonitor(String eventId)
Returns a synchronous monitor.
|
void |
IMonitorManagerSPI.updateAllMonitorEventDocumentTypes()
Updates all monitor event document types.
|
void |
IMonitorManagerSPI.updateMonitorDefinition(Set<String> definitionPaths)
Updates the monitor definition from the given file paths.
|
void |
IMonitorManagerSPI.updateMonitorUser(UserConfig userConfig,
UserConfig original)
Updates the data stored in a monitor user with the corresponding data on a portal user.
|
default void |
IMonitorManagerSPI.updateMonitorUserDocumentType()
Updates monitor user document types.
|
void |
IMonitorManagerSPI.updateMonitorUserDocumentType(IBigDataRepository repository)
Updates monitor user document types.
|
void |
IMonitorManagerSPI.upgradeEventData()
Schedules the upgrade of event data in BigData.
|
Modifier and Type | Method and Description |
---|---|
void |
MonitorManager.addMonitorUser(UserConfig userConfig) |
void |
MonitorManager.anonymizeAllMonitorUser() |
void |
MonitorManager.anonymizeMonitorUser(String monitorUserId) |
static void |
MonitorManager.anonymizeMonitorUserPendingData(MonitorUser monitorUser)
Anonymizes data for the given user that should be anonimized but it is not.
|
void |
MonitorManager.anonymizeMonitorUsers(Collection<String> monitorUserIds) |
void |
MonitorManager.clearRequestRulesCache() |
void |
MonitorManager.deleteUserActivities(String userId) |
void |
MonitorCleanupClock.doTick(SessionConfig sessionConfig,
ClockConfig clockConfig) |
IMonitorEventSPI |
MonitorManager.getEvent(String eventId) |
IMonitorFieldSPI |
MonitorManager.getField(String fieldId) |
IMonitorFieldGroup |
MonitorManager.getFieldGroup(String fieldGroupId) |
String |
MonitorManager.getFriendlyIdUserField() |
static ISearchQueryFilter |
MonitorUtilInternal.getPrivacyFilter(ServiceInstanceConfig analyticsServiceInstance,
DocumentTypeField acceptedPurposetsTypeField)
Returns the privacy term part filter.
|
void |
MonitorManager.initializeMonitoringData(ITransaction transaction,
boolean forceEventProcess) |
void |
MonitorManager.initializeMonitorRequestRules() |
void |
MonitorResource.leavePage(long duration,
String clientTitle)
Logs the page enter event.
|
void |
MonitorManager.loadMonitorUserInfo(String userId,
IUserConfigInitializer userConfigInitializer) |
void |
MonitorManager.mergeMonitorUserDuringAuthentication(String httpSessionId,
String srcMonitorUserId,
String destMonitorUserId) |
void |
MonitorManager.mergeMonitorUsers(String srcMonitorUserId,
String destMonitorUserId) |
IMonitor |
MonitorManager.monitor(String eventId) |
IMonitor |
MonitorManager.monitor(String eventId,
ITransaction transaction) |
void |
MonitorBigDataInitObserver.onEvent(IPortalEvent event) |
void |
MonitorResource.pageView(String clientTitle)
Logs the view event.
|
static void |
MonitorUtilInternal.refreshMonitorIndices()
Refreshes all monitor indices.
|
void |
MonitorManager.reindexAllMonitorUser() |
void |
MonitorManager.reindexGroupMember(Collection<String> principalIds) |
void |
MonitorManager.reindexMonitorUsers(Collection<String> monitorUserIds) |
void |
MonitorUserAnonymizeAllTask.run() |
void |
MonitorUserMergeTask.run() |
void |
PageViewEventUpdateTask.run() |
static void |
MonitorUserAnonymizeAllTask.schedule()
Schedules the execution of task that anonymize all monitor users.
|
static void |
PageViewEventUpdateTask.schedule()
Schedules the execution of task that upgrades page view event data.
|
void |
MonitorUser.scheduleReindex()
Schedules the reindexing of this monitor user on big data.
|
void |
MonitorManager.scheduleReindexMonitorUser(String id,
Long visitorId) |
void |
MonitorUser.setFriendlyId(String friendlyId)
Sets the friendly identifier of this user.
|
void |
MonitorManager.setFriendlyIdUserField(String requestField) |
boolean |
MonitorManager.shouldMonitorRequest(HttpServletRequest request) |
IMonitor |
MonitorManager.syncMonitor(String eventId) |
void |
MonitorManager.updateAllMonitorEventDocumentTypes() |
void |
MonitorManager.updateMonitorDefinition(Set<String> definitionPaths) |
void |
MonitorManager.updateMonitorUser(UserConfig userConfig,
UserConfig originalUserConfig) |
void |
MonitorManager.updateMonitorUserDocumentType(IBigDataRepository repository) |
void |
MonitorManager.upgradeEventData() |
Constructor and Description |
---|
MonitorEventValuesProvider(Map<String,Object> source,
MonitorUser monUser,
String eventId) |
Modifier and Type | Method and Description |
---|---|
Response |
MonitorV1Resource.identifyMonitorUser(String trackId,
String reqData)
Identify monitor user.
|
Response |
MonitorV1Resource.updateMonitorUser(String trackId,
String reqData)
Update the requested monitor user.
|
Modifier and Type | Method and Description |
---|---|
void |
IPageDao.add(PageConfig pageConfig,
ITransaction transaction)
Add the page.
|
void |
PageDaoHib.add(PageConfig pageConfig,
ITransaction transaction) |
String |
IPageManager.add(SessionConfig sessionConfig,
PageConfig pageConfig,
ITransaction transaction)
Add a page.
|
String |
PageManager.add(SessionConfig sessionConfig,
PageConfig pageConfig,
ITransaction transaction) |
void |
IPageDao.addCss(String pageId,
String cssId,
int position,
ITransaction transaction) |
void |
PageDaoHib.addCss(String pageId,
String cssId,
int position,
ITransaction transaction) |
void |
IPageManager.addCssLink(SessionConfig sessionConfig,
String pageId,
String cssId,
int position,
ITransaction transaction)
Add the hyperlink to the page's CSS file.
|
void |
PageManager.addCssLink(SessionConfig sessionConfig,
String pageId,
String cssId,
int position,
ITransaction transaction) |
void |
IPageManager.addOrUpdate(SessionConfig sessionConfig,
PageConfig pageConfig,
ITransaction transaction)
Add or Update a Page, depending on its previous existence.
|
void |
PageManager.addOrUpdate(SessionConfig sessionConfig,
PageConfig pageConfig,
ITransaction transaction) |
protected void |
PageControllerXml.addPage(ITransaction transaction) |
protected void |
PageConfig.applyPropertyBagChanges() |
void |
IPageManager.clearCache(SessionConfig sessionConfig,
Collection<String> pageIds,
ITransaction transaction)
Clears the cache for a group of pages.
|
void |
PageManager.clearCache(SessionConfig sessionConfig,
Collection<String> pageIds,
ITransaction transaction) |
void |
IPageManager.clearCache(SessionConfig sessionConfig,
String pageId,
ITransaction transaction)
Clear the page cache.
|
void |
PageManager.clearCache(SessionConfig sessionConfig,
String pageId,
ITransaction transaction) |
void |
PageManager.clearCssAndMetatagCache(String pageId,
ITransaction transaction)
Clears the CSS and Metatag caches of the page with the given identifier.
|
void |
IPageManager.copy(SessionConfig sessionConfig,
String sourcePageId,
String destinationPageId,
ITransaction transaction)
Copy the layout and properties from the original page to the destination
page.
|
void |
PageManager.copy(SessionConfig sessionConfig,
String sourcePageId,
String destinationPageId,
ITransaction transaction) |
WebResource |
PageManager.createWebResourceByDynamicPath(String dynamicPath) |
void |
IPageManager.delete(SessionConfig sessionConfig,
String pageId,
ITransaction transaction)
Delete a page.
|
void |
PageManager.delete(SessionConfig sessionConfig,
String pageId,
ITransaction transaction) |
boolean |
IPageDao.delete(String pageId,
ITransaction transaction)
Delete the page.
|
boolean |
PageDaoHib.delete(String pageId,
ITransaction transaction) |
void |
PageManager.deleteConfig(DeserializationContext deserializationContext,
String configId) |
void |
IPageDao.deleteCss(String pageId,
String cssId,
ITransaction transaction)
Delete the CSS from the page.
|
void |
PageDaoHib.deleteCss(String pageId,
String cssId,
ITransaction transaction) |
void |
IPageManager.deleteCssLink(SessionConfig sessionConfig,
String pageId,
String cssId,
ITransaction transaction)
Delete the hyperlink to the page's CSS file.
|
void |
PageManager.deleteCssLink(SessionConfig sessionConfig,
String pageId,
String cssId,
ITransaction transaction) |
void |
IPageManager.deleteOrphanInterfaces(SessionConfig sessionConfig,
String pageId,
ITransaction daoTransaction)
Remove any interface instance associated to the page that is not being referenced in it's layout.
|
void |
PageManager.deleteOrphanInterfaces(SessionConfig sessionConfig,
String pageId,
ITransaction daoTransaction) |
protected void |
PageControllerXml.deletePage(ITransaction portalTransaction) |
void |
PageConfig.deserialize(Node pageNode) |
String |
IPageManager.deserialize(SessionConfig sessionConfig,
DeserializationConfig deserializationConfig,
Node pageNode,
boolean firstDeserialization,
ITransaction transaction) |
String |
PageManager.deserialize(SessionConfig sessionConfig,
DeserializationConfig deserializationConfig,
Node pageNode,
boolean firstDeserialization,
ITransaction transaction) |
String |
IPageManager.deserialize(SessionConfig sessionConfig,
DeserializationConfig deserializationConfig,
Node pageNode,
ITransaction transaction) |
String |
PageManager.deserialize(SessionConfig sessionConfig,
DeserializationConfig deserializationConfig,
Node pageNode,
ITransaction transaction) |
void |
IPageManager.deserializeCss(SessionConfig sessionConfig,
DeserializationConfig deserializationConfig,
Node cssLinksNodes,
ITransaction transaction) |
void |
PageManager.deserializeCss(SessionConfig sessionConfig,
DeserializationConfig deserializationConfig,
Node cssLinksNodes,
ITransaction transaction) |
protected void |
PageConfig.deserializePropertyBag(Node propertyBagNode) |
protected void |
PageManager.disconnectFromTemplate_Internal(SessionConfig sessionConfig,
PageConfig pageConfig,
ITransaction transaction) |
void |
IPageManager.disconnectFromTemplate(SessionConfig sessionConfig,
String pageId,
ITransaction transaction)
Disconnect the page from its template if one exists
|
void |
PageManager.disconnectFromTemplate(SessionConfig sessionConfig,
String pageId,
ITransaction transaction) |
void |
IPageDao.evict(String pageId,
ITransaction transaction)
Removes the specified page from this DAO's cache.
|
void |
PageDaoHib.evict(String pageId,
ITransaction transaction) |
PageConfig |
IPageManager.get(SessionConfig sessionConfig,
String pageId,
ITransaction transaction)
Get the configuration of the page.
|
PageConfig |
PageManager.get(SessionConfig sessionConfig,
String pageId,
ITransaction transaction) |
PageConfig |
IPageDao.get(String pageId,
ITransaction transaction)
Get the page.
|
PageConfig |
PageDaoHib.get(String pageId,
ITransaction transaction) |
int |
IPageManager.getCachePage(SessionConfig sessionConfig,
PageConfig pageConfig,
ITransaction transaction) |
int |
PageManager.getCachePage(SessionConfig sessionConfig,
PageConfig pageConfig,
ITransaction transaction) |
boolean |
IPageManager.getCenterPage(SessionConfig sessionConfig,
PageConfig pageConfig,
ITransaction transaction) |
boolean |
PageManager.getCenterPage(SessionConfig sessionConfig,
PageConfig pageConfig,
ITransaction transaction) |
List<IChannelChild> |
IPageDao.getChannelsChildren(String parentChannelIds,
boolean hidePages,
boolean hidePageTemplates,
IResource resource,
Locale locale,
ITransaction transaction) |
List<IChannelChild> |
PageDaoHib.getChannelsChildren(String parentChannelIds,
boolean hidePages,
boolean hidePageTemplates,
IResource resource,
Locale locale,
ITransaction transaction) |
List<IChannelChild> |
IPageDao.getChildrenData(String channelId,
int hidePages,
int hidePageTemplates,
IResource resource,
Locale locale,
ITransaction transaction) |
List<IChannelChild> |
PageDaoHib.getChildrenData(String channelId,
int hidePages,
int hidePageTemplates,
IResource resource,
Locale locale,
ITransaction transaction) |
PageConfig |
IPageDao.getCommitted(String pageId,
ITransaction transaction)
Get the lastest committed version of the page.
|
PageConfig |
PageDaoHib.getCommitted(String pageId,
ITransaction transaction) |
List<String> |
IPageManager.getCssIds(SessionConfig sessionConfig,
String pageId,
ITransaction transaction)
Get a list of Css Ids of the page.
|
List<String> |
PageManager.getCssIds(SessionConfig sessionConfig,
String pageId,
ITransaction transaction) |
List<String> |
IPageDao.getCssIds(String pageId,
ITransaction transaction)
Get the ids of the page's CSS.
|
List<String> |
PageDaoHib.getCssIds(String pageId,
ITransaction transaction) |
List<String> |
IPageManager.getCssIdsRecursively(SessionConfig sessionConfig,
String pageId,
ITransaction transaction)
Get a list of Css Ids of the page including inherited Css.
|
List<String> |
PageManager.getCssIdsRecursively(SessionConfig sessionConfig,
String pageId,
ITransaction transaction) |
String |
IPageManager.getFirstIdByChannelId(SessionConfig sessionConfig,
String channelId,
ITransaction transaction) |
String |
PageManager.getFirstIdByChannelId(SessionConfig sessionConfig,
String channelId,
ITransaction transaction) |
String |
IPageDao.getFirstIdByChannelId(String channelId,
ITransaction transaction)
Get the id of the first child page.
|
String |
PageDaoHib.getFirstIdByChannelId(String channelId,
ITransaction transaction) |
PageConfig |
IPageManager.getFirstPageByChannelIdRecursively(SessionConfig sessionConfig,
String channelId,
ITransaction transaction)
Returns the first page for a channel, including pages in sub-channels.
|
PageConfig |
PageManager.getFirstPageByChannelIdRecursively(SessionConfig sessionConfig,
String channelId,
ITransaction transaction) |
String |
IPageDao.getIdByUserId(String userId,
ITransaction transaction)
Get the id of the user's home page.
|
String |
PageDaoHib.getIdByUserId(String userId,
ITransaction transaction) |
List<String> |
IPageDao.getIdsByChannelId(String channelId,
ITransaction transaction)
Get the list of page's ids given the channel's id.
|
List<String> |
PageDaoHib.getIdsByChannelId(String channelId,
ITransaction transaction) |
List<String> |
IPageManager.getIdsByParentChannelId(SessionConfig sessionConfig,
String channelId,
ITransaction transaction)
Returns all the pages that have the given channel as their parent
channel.
|
List<String> |
PageManager.getIdsByParentChannelId(SessionConfig sessionConfig,
String channelId,
ITransaction transaction) |
List<String> |
IPageManager.getIdsByParentChannelIdRecursively(SessionConfig sessionConfig,
String channelId,
ITransaction transaction) |
List<String> |
PageManager.getIdsByParentChannelIdRecursively(SessionConfig sessionConfig,
String channelId,
ITransaction transaction) |
Collection<String> |
IPageManager.getIdsByParentTemplateId(SessionConfig sessionConfig,
String parentTemplateId,
ITransaction transaction) |
Collection<String> |
PageManager.getIdsByParentTemplateId(SessionConfig sessionConfig,
String parentTemplateId,
ITransaction transaction) |
Collection<String> |
IPageDao.getIdsByParentTemplateId(String parentTemplateId,
ITransaction transaction)
Add the CSS to the page.
|
Collection<String> |
PageDaoHib.getIdsByParentTemplateId(String parentTemplateId,
ITransaction transaction) |
Collection<String> |
IPageManager.getIdsByServiceInstanceId(SessionConfig sessionConfig,
String serviceInstanceId,
ITransaction transaction) |
Collection<String> |
PageManager.getIdsByServiceInstanceId(SessionConfig sessionConfig,
String serviceInstanceId,
ITransaction transaction) |
Collection<String> |
IPageDao.getIdsByServiceInstanceId(String serviceInstanceId,
ITransaction transaction) |
Collection<String> |
PageDaoHib.getIdsByServiceInstanceId(String serviceInstanceId,
ITransaction transaction) |
static List<String> |
PageLayoutUtil.getLayoutServiceInstanceIds(Document document)
|
int |
IPageManager.getLayoutType(SessionConfig sessionConfig,
PageConfig pageConfig,
ITransaction transaction)
Returns the layout type used for rendering the page to the end user.
|
int |
PageManager.getLayoutType(SessionConfig sessionConfig,
PageConfig pageConfig,
ITransaction transaction) |
List<String> |
IPageManager.getMetaTagIdsRecursively(SessionConfig sessionConfig,
PageConfig pageConfig,
ITransaction transaction)
Get a list of Meta-Tags Ids of the page including inherited Meta-Tags.
|
List<String> |
PageManager.getMetaTagIdsRecursively(SessionConfig sessionConfig,
PageConfig pageConfig,
ITransaction transaction) |
static String |
PageLayoutUtil.getNodeInterfaceInstanceId(Node interfaceInstanceNode)
Gets the service interface instance identifier present into its
Node . |
Collection<PageConfig> |
PageRenderDataChangedEvent.getPagesChanged()
Returns the pages whose render data may have changed.
|
String |
IPageManager.getPageWebResourceDataProviderClassName(SessionConfig sessionConfig,
PageConfig pageConfig,
ITransaction transaction)
Returns the
IPageWebResourceDataProvider
class name for the given page. |
String |
PageManager.getPageWebResourceDataProviderClassName(SessionConfig sessionConfig,
PageConfig pageConfig,
ITransaction transaction) |
List<String> |
IPageManager.getParentPathIds(SessionConfig sessionConfig,
String pageId,
ITransaction transaction)
Returns the Ids of parent channels recursively.
|
List<String> |
PageManager.getParentPathIds(SessionConfig sessionConfig,
String pageId,
ITransaction transaction) |
String |
IPageManager.getPath(SessionConfig sessionConfig,
String pageId,
boolean localizable,
ITransaction transaction)
Returns the complete path beginning from the root channel to the page.
|
String |
PageManager.getPath(SessionConfig sessionConfig,
String pageId,
boolean localizable,
ITransaction transaction) |
String |
IPageManager.getPath(SessionConfig sessionConfig,
String pageId,
ITransaction transaction)
Returns the complete path beginning from the root channel to the page.
|
String |
PageManager.getPath(SessionConfig sessionConfig,
String pageId,
ITransaction transaction) |
String |
IPageManager.getProtocolScheme(SessionConfig sessionConfig,
int protocolType,
ITransaction transaction)
Return the protocol Scheme of the page given a protocol type.
|
String |
PageManager.getProtocolScheme(SessionConfig sessionConfig,
int protocolType,
ITransaction transaction) |
int |
IPageManager.getProtocolType(SessionConfig sessionConfig,
PageConfig pageConfig,
ITransaction transaction)
Returns the protocolType of the given page.
|
int |
PageManager.getProtocolType(SessionConfig sessionConfig,
PageConfig pageConfig,
ITransaction transaction) |
String |
IPageManager.getRuntimeDataProviderClassName(SessionConfig sessionConfig,
PageConfig pageConfig,
ITransaction transaction)
Deprecated.
Since 5.0.0 replaced by
IPageManager.getPageWebResourceDataProviderClassName(SessionConfig, PageConfig, ITransaction) . |
String |
PageManager.getRuntimeDataProviderClassName(SessionConfig sessionConfig,
PageConfig pageConfig,
ITransaction transaction)
Deprecated.
|
protected String |
PageWebResource.getSeoRuleUrlPattern() |
boolean |
IPageDao.hasDependentPages(String pageTemplateId,
ITransaction transaction) |
boolean |
PageDaoHib.hasDependentPages(String pageTemplateId,
ITransaction transaction) |
boolean |
PageManager.isCacheEnabled(WebResource webResource) |
protected void |
PageConfig.loadPropertyBagValues() |
static String |
PageWebResourceFunctionMapper.localize(String[] args)
Resolves the string.
|
protected boolean |
PageConfig.mayUseFriendlyId(String friendlyId) |
static void |
PageLayoutUtil.replaceInterfaceInstanceIds(Document layout,
Map<String,String> mapping)
|
static void |
PageLayoutUtil.replaceInterfaceInstanceIds(Document layoutDocument,
PageLayoutUtil.IMappingResolver resolver)
Replaces service interface instance identifiers of given
layout using the given PageLayoutUtil.IMappingResolver to resolve the
identifiers. |
String |
PageLayoutUtil.IMappingResolver.resolve(String serviceInterfaceInstaceId)
Resolves a service interface instance identifier into another one.
|
static String |
PageWebResourceFunctionMapper.resolveURL(String url)
Resolves the given URL.
The URL will only be resolved against the applied themes if the requested page was previously set within PageWebResourceFunctionMapper.beforeEvaluation() . |
void |
PageConfig.serialize(PageConfig pageConfig,
OutputStream outputStream) |
void |
IPageManager.serialize(SessionConfig sessionConfig,
String pageId,
OutputStream outputStream,
ITransaction transaction) |
void |
PageManager.serialize(SessionConfig sessionConfig,
String pageId,
OutputStream outputStream,
ITransaction transaction) |
void |
IPageManager.serializeCss(SessionConfig sessionConfig,
String pageId,
OutputStream outputStream,
ITransaction transaction) |
void |
PageManager.serializeCss(SessionConfig sessionConfig,
String pageId,
OutputStream outputStream,
ITransaction transaction) |
void |
PageManager.setWebResourcesMissingData(String resourceId,
boolean processChildren) |
void |
IPageDao.update(PageConfig pageConfig,
ITransaction transaction)
Update the page.
|
void |
PageDaoHib.update(PageConfig pageConfig,
ITransaction transaction) |
void |
IPageManager.update(SessionConfig sessionConfig,
PageConfig pageConfig,
ITransaction transaction)
Update a page.
|
void |
PageManager.update(SessionConfig sessionConfig,
PageConfig pageConfig,
ITransaction transaction) |
void |
IPageManager.updateDeserializedPageLayout(SessionConfig sessionConfig,
DeserializationConfig deserializationConfig,
String pageId,
ITransaction transaction) |
void |
PageManager.updateDeserializedPageLayout(SessionConfig sessionConfig,
DeserializationConfig deserealizationConfig,
String pageId,
ITransaction transaction) |
void |
IPageManager.updateLayout(SessionConfig sessionConfig,
String pageId,
String layout,
ITransaction transaction)
Update the page layout.
|
void |
PageManager.updateLayout(SessionConfig sessionConfig,
String pageId,
String layout,
ITransaction transaction) |
void |
IPageManager.updateSsiProperty(SessionConfig sessionConfig,
ServiceInterfaceInstanceConfig serviceInterfaceInstanceConfig,
ITransaction transaction)
Updates the server side include property of the interface's page.
|
void |
PageManager.updateSsiProperty(SessionConfig sessionConfig,
ServiceInterfaceInstanceConfig serviceInterfaceInstanceConfig,
ITransaction transaction) |
Constructor and Description |
---|
PageControllerXml(HttpServletRequest request,
HttpServletResponse response,
PageContext pageContext) |
Modifier and Type | Method and Description |
---|---|
String |
IPageAclManager.add(SessionConfig sessionConfig,
PageConfig pageConfig,
ITransaction transaction)
Add an Access Control List to the Page.
|
String |
PageAclManager.add(SessionConfig sessionConfig,
PageConfig pageConfig,
ITransaction transaction) |
void |
IPageAclManager.checkRequiredPermissions(AccessControlList acl)
Checks if the required permissions were given for someone.
|
void |
PageAclManager.checkRequiredPermissions(AccessControlList acl) |
AccessControlList |
IPageAclManager.get(SessionConfig sessionConfig,
String pageId,
ITransaction transaction)
Get the Page's Access Control List.
|
AccessControlList |
PageAclManager.get(SessionConfig sessionConfig,
String pageId,
ITransaction transaction) |
protected AccessControlList |
PageAclManager.getAclInternal(SessionConfig sessionConfig,
String pageId,
ITransaction transaction) |
static int[] |
PagePermissions.getImplies() |
protected int |
PageAclManager.getRequiredPermissions() |
static int |
PagePermissions.getRequiredPermissions() |
void |
IPageAclManager.update(SessionConfig sessionConfig,
String pageId,
AccessControlList acl,
ITransaction transaction)
Update the Page's ACL.
|
void |
PageAclManager.update(SessionConfig sessionConfig,
String pageId,
AccessControlList acl,
ITransaction transaction) |
Modifier and Type | Class and Description |
---|---|
protected static class |
PageCacheControllerHtml.PageUnavailableException
Exception thrown when the requested page is temporarily unavailable,
for example, due to timeout in the page generation.
|
Modifier and Type | Method and Description |
---|---|
void |
IPageCacheManager.clearAllHTMLCache(ITransaction transaction)
Clears all page HTML cache.
|
void |
PageCacheManager.clearAllHTMLCache(ITransaction transaction) |
void |
IPageCacheManager.clearCacheByChannelIds(SessionConfig sessionConfig,
Collection<String> channelIds,
Map<String,String[]> parameters,
int changeType,
ITransaction transaction)
Clear the cache of the pages within the specified channels recursively.
|
void |
PageCacheManager.clearCacheByChannelIds(SessionConfig sessionConfig,
Collection<String> channelIds,
Map<String,String[]> parameters,
int changeType,
ITransaction transaction) |
void |
IPageCacheManager.clearCacheByPagesIds(SessionConfig sessionConfig,
Collection<String> pagesIds,
Map<String,String[]> parameters,
Locale locale,
int changeType,
ITransaction transaction)
Clear the cache of the specified pages.
|
void |
PageCacheManager.clearCacheByPagesIds(SessionConfig sessionConfig,
Collection<String> pagesIds,
Map<String,String[]> parameters,
Locale locale,
int changeType,
ITransaction transaction) |
void |
IPageCacheManager.clearPageCacheErrors(Collection<String> pageCacheIds,
ITransaction transaction)
Clear page cache errors in the database.
|
void |
PageCacheManager.clearPageCacheErrors(Collection<String> pageCacheIds,
ITransaction transaction) |
void |
IPageCacheManager.delete(SessionConfig sessionConfig,
String pageCacheId,
ITransaction transaction)
Delete a page cache.
|
void |
PageCacheManager.delete(SessionConfig sessionConfig,
String pageCacheId,
ITransaction transaction) |
protected void |
PageCacheControllerHtml.dispatchToDefaultErrorPage(Exception exception)
Dispatches the request to the default error page.
|
protected void |
PageCacheControllerHtml.doHandleError()
Contains the logic for processing the not found (404) error event.
|
protected PageCacheManager.HttpAccessResult |
PageCacheManager.doHttpAccess(URL url,
String cookies) |
void |
IPageCacheManager.expirePageCache(PageCacheConfig pageCacheConfig)
Expires a single
PageCacheConfig . |
void |
PageCacheManager.expirePageCache(PageCacheConfig pageCacheConfig)
Expires a single
PageCacheConfig |
PageCacheConfig |
PageCacheManager.generateNextPage(lumis.portal.page.cache.GenerationSelectStrategy generationSelectStrategy)
Generates next outdated page cache, according to the given strategy.
|
protected void |
PageCacheManager.generatePage(PageCacheConfig pageCacheConfig) |
PageCacheConfig |
IPageCacheManager.generatePage(String pageCacheId)
Generates a page cache.
|
PageCacheConfig |
PageCacheManager.generatePage(String pageCacheId) |
PageCacheConfig |
IPageCacheManager.get(String pageCacheId)
Returns a page cache given its identifier.
|
PageCacheConfig |
PageCacheManager.get(String pageCacheId) |
protected PageCacheConfig |
PageCacheManager.getGenerationLock(String pageCacheId)
Gets a lock for generating a cached page.
|
protected PageCacheConfig |
PageCacheManager.getNextPageForGeneration(lumis.portal.page.cache.GenerationSelectStrategy generationSelectStrategy)
Returns the next page cache to be generated.
|
static PageConfig |
PageCacheUtil.getPageByPageCache(SessionConfig sessionConfig,
PageCacheConfig pageCacheConfig,
ITransaction transaction)
Returns the page that will be rendered when accessing a web resource.
|
int |
IPageCacheManager.getPageCacheGenerationState(SessionConfig sessionConfig,
ITransaction transaction)
Deprecated.
Since 5.0.0, replaced by
IPageCacheManager.isPageCacheGenerationEnabled()
for better performance and easier use. |
int |
PageCacheManager.getPageCacheGenerationState(SessionConfig sessionConfig,
ITransaction transaction)
Deprecated.
|
static String |
PageCacheUtil.getPageCacheGeneratorUserAgent()
Returns the user agent string to be used when requesting a page for cache generation.
|
static IMonitor |
PageCacheMonitorUtil.getPageCacheMonitor(PageCacheConfig pageCacheConfig)
Returns a
monitor by a page cache
configuration . |
void |
PageCacheControllerHtml.handleError() |
void |
PageCacheObserver.onEvent(IPortalEvent event) |
void |
IPageCacheManager.pageCacheMissed(String pageCacheId,
boolean forImmediateUse)
Indicates a miss in the page cache occurred.
|
void |
PageCacheManager.pageCacheMissed(String pageCacheId,
boolean forImmediateUse) |
String |
IPageCacheManager.processHTMLForPageCache(String htmlContent,
PageCacheConfig pageCache)
Processes a HTML code for storing for a page cache.
|
String |
PageCacheManager.processHTMLForPageCache(String htmlContent,
PageCacheConfig pageCache) |
default String |
IPageCacheManager.processHTMLForPageCache(String htmlContent,
PageCacheConfig pageCache,
boolean convertGuestOnlyCaches)
Deprecated.
since 10.3.0 replaced by
IPageCacheManager.processHTMLForPageCache(String, PageCacheConfig) . From the version 10.3.0 on,
the parameter convertGuestOnlyCaches is ignored. |
void |
PageCacheManager.recalculateCaches(String channelId)
Recalculates the attributes for the caches in the portal area inside the
specified channel.
|
protected void |
PageCacheManager.releaseGenerationLock(PageCacheConfig pageCacheConfig,
IPageCacheManager.GenerationOutcome outcome)
Releases the generation lock for a cached page.
|
void |
IPageCacheManagerSPI.resetExpiredGeneratingPages()
Resets all pages that have been in the generating state for more than 30 minutes.
|
void |
PageCacheManager.resetExpiredGeneratingPages() |
void |
IPageCacheManager.setPageCacheGenerationState(SessionConfig sessionConfig,
int state,
ITransaction transaction)
Sets the page cache generation state
|
void |
PageCacheManager.setPageCacheGenerationState(SessionConfig sessionConfig,
int state,
ITransaction transaction)
Sets the page cache generation state.
|
void |
IPageCacheManager.updateCachedFilesLastModifiedDate(SessionConfig sessionConfig,
PageConfig pageConfig,
Locale locale,
Date lastModifiedDate,
ITransaction transaction)
Updates the last modified date of the cached files that match the given pageId and locale.
|
void |
PageCacheManager.updateCachedFilesLastModifiedDate(SessionConfig sessionConfig,
PageConfig pageConfig,
Locale locale,
Date lastModifiedDate,
ITransaction transaction) |
String |
IPageCacheManager.waitForGeneration(String pageCacheId,
long timeout)
Waits for the generation of a page cache.
|
String |
PageCacheManager.waitForGeneration(String pageCacheId,
long timeout) |
void |
IPageCacheManager.waitForPagesReadyToGenerate(long timeout,
boolean forImmediateUseOnly)
Waits for new pages to be ready to be generated.
|
Constructor and Description |
---|
HtmlGenerationConfig(Node htmlGenerationNode) |
PageCacheControllerHtml(HttpServletRequest request,
HttpServletResponse response) |
Modifier and Type | Method and Description |
---|---|
void |
IPageLinkDao.add(PageLinkConfig pageLinkConfig,
ITransaction transaction)
Add the page link.
|
void |
PageLinkDaoJdbc.add(PageLinkConfig pageLinkConfig,
ITransaction transaction) |
String |
IPageLinkManager.add(SessionConfig sessionConfig,
PageLinkConfig pageLinkConfig,
ITransaction transaction)
Add a page link.
|
String |
PageLinkManager.add(SessionConfig sessionConfig,
PageLinkConfig pageLinkConfig,
ITransaction transaction) |
void |
IPageLinkManager.delete(SessionConfig sessionConfig,
String pageLinkId,
ITransaction transaction)
Delete a page link.
|
void |
PageLinkManager.delete(SessionConfig sessionConfig,
String pageLinkId,
ITransaction transaction) |
void |
IPageLinkDao.delete(String pageLinkId,
ITransaction transaction)
Delete the page link.
|
void |
PageLinkDaoJdbc.delete(String pageLinkId,
ITransaction transaction) |
PageLinkConfig |
IPageLinkManager.get(SessionConfig sessionConfig,
String pageLinkId,
ITransaction transaction)
Get the page link configuraton.
|
PageLinkConfig |
PageLinkManager.get(SessionConfig sessionConfig,
String pageLinkId,
ITransaction transaction) |
PageLinkConfig |
IPageLinkDao.get(String pageLinkId,
ITransaction transaction)
Get the page link.
|
PageLinkConfig |
PageLinkDaoJdbc.get(String pageLinkId,
ITransaction transaction) |
Collection<String> |
IPageLinkManager.getByPageId(SessionConfig sessionConfig,
String pageId,
ITransaction transaction)
Get the page link ids associated to a page
|
Collection<String> |
PageLinkManager.getByPageId(SessionConfig sessionConfig,
String pageId,
ITransaction transaction) |
Collection<String> |
IPageLinkDao.getByPageId(String pageId,
ITransaction transaction)
Get page links associated with one page
|
Collection<String> |
PageLinkDaoJdbc.getByPageId(String pageId,
ITransaction transaction) |
List<PageLinkConfig> |
IPageLinkDao.getByTypeAndWebsite(int type,
String website,
ITransaction transaction)
Returns a list of page links given a type and website.
|
List<PageLinkConfig> |
PageLinkDaoJdbc.getByTypeAndWebsite(int type,
String websiteId,
ITransaction transaction) |
PageLinkConfig |
IPageLinkManager.getByTypeAndWebsite(SessionConfig sessionConfig,
int type,
String website,
ITransaction transaction)
Deprecated.
Since 6.2.0 this method was specialized and replaced by
IPageLinkManager.getDefaultLoginPage(SessionConfig, IWebsiteBaseURL, String, ITransaction) and
IPageLinkManager.getDefaultHomePage(SessionConfig, IWebsiteBaseURL, ITransaction) . |
PageLinkConfig |
PageLinkManager.getByTypeAndWebsite(SessionConfig sessionConfig,
int type,
String website,
ITransaction transaction)
Deprecated.
|
PageLinkConfig |
IPageLinkManagerSPI.getByTypeAndWebsite(SessionConfig sessionConfig,
int type,
String website,
PortalRequestContext requestContext,
ITransaction transaction)
Deprecated.
Since 6.2.0 this method was specialized and replaced by
IPageLinkManagerSPI.getDefaultLoginPage(SessionConfig, IWebsiteBaseURL, String, PortalRequestContext, ITransaction) and
IPageLinkManagerSPI.getDefaultHomePage(SessionConfig, IWebsiteBaseURL, PortalRequestContext, ITransaction) . |
PageLinkConfig |
PageLinkManager.getByTypeAndWebsite(SessionConfig sessionConfig,
int type,
String website,
PortalRequestContext requestContext,
ITransaction transaction)
Deprecated.
|
List<PageLinkConfig> |
IPageLinkManagerSPI.getByTypeAndWebsiteIdentifier(SessionConfig sessionConfig,
int type,
String websiteId,
ITransaction transaction)
Returns the list of
page links with the given type
and website identifier. |
List<PageLinkConfig> |
PageLinkManager.getByTypeAndWebsiteIdentifier(SessionConfig sessionConfig,
int type,
String websiteId,
ITransaction transaction) |
PageLinkConfig |
IPageLinkDao.getByTypeWebsiteAndChannelId(int type,
String websiteId,
String channelId,
ITransaction transaction)
Get the page link given type, website and channelId.
|
PageLinkConfig |
PageLinkDaoJdbc.getByTypeWebsiteAndChannelId(int type,
String websiteId,
String channelId,
ITransaction transaction) |
PageLinkConfig |
IPageLinkManager.getByTypeWebsiteAndChannelId(SessionConfig sessionConfig,
int type,
String website,
String channelId,
ITransaction transaction)
Deprecated.
Since 6.2.0 this method was specialized and replaced by
IPageLinkManager.getDefaultLoginPage(SessionConfig, IWebsiteBaseURL, String, ITransaction) and
IPageLinkManager.getDefaultHomePage(SessionConfig, IWebsiteBaseURL, ITransaction) . |
PageLinkConfig |
PageLinkManager.getByTypeWebsiteAndChannelId(SessionConfig sessionConfig,
int type,
String website,
String requestedChannelId,
ITransaction transaction)
Deprecated.
|
PageLinkConfig |
IPageLinkManagerSPI.getByTypeWebsiteAndChannelId(SessionConfig sessionConfig,
int type,
String website,
String channelId,
PortalRequestContext requestContext,
ITransaction transaction)
Deprecated.
Since 6.2.0 this method was specialized and
replaced by
IPageLinkManagerSPI.getDefaultLoginPage(SessionConfig, IWebsiteBaseURL, String, PortalRequestContext, ITransaction)
and
IPageLinkManagerSPI.getDefaultHomePage(SessionConfig, IWebsiteBaseURL, PortalRequestContext, ITransaction)
. |
PageLinkConfig |
PageLinkManager.getByTypeWebsiteAndChannelId(SessionConfig sessionConfig,
int type,
String website,
String requestedChannelId,
PortalRequestContext requestContext,
ITransaction transaction)
Deprecated.
|
PageLinkConfig |
IPageLinkManagerSPI.getDefaultErrorPage(SessionConfig sessionConfig,
IWebsiteBaseURL websiteBaseURL,
PortalRequestContext requestContext,
ITransaction transaction)
Returns the most appropriate error page, based on the given website base URL.
|
PageLinkConfig |
PageLinkManager.getDefaultErrorPage(SessionConfig sessionConfig,
IWebsiteBaseURL websiteBaseURL,
PortalRequestContext requestContext,
ITransaction transaction) |
PageLinkConfig |
IPageLinkManager.getDefaultHomePage(SessionConfig sessionConfig,
IWebsiteBaseURL websiteBaseURL,
ITransaction transaction)
Returns the most appropriate home page, based on the given website base URL.
|
PageLinkConfig |
PageLinkManager.getDefaultHomePage(SessionConfig sessionConfig,
IWebsiteBaseURL websiteBaseURL,
ITransaction transaction) |
PageLinkConfig |
IPageLinkManagerSPI.getDefaultHomePage(SessionConfig sessionConfig,
IWebsiteBaseURL websiteBaseURL,
PortalRequestContext requestContext,
ITransaction transaction)
Returns the most appropriate home page is identified based on the website,
priority and Context Rules.
|
PageLinkConfig |
PageLinkManager.getDefaultHomePage(SessionConfig sessionConfig,
IWebsiteBaseURL websiteBaseURL,
PortalRequestContext requestContext,
ITransaction transaction) |
PageLinkConfig |
IPageLinkManager.getDefaultLoginPage(SessionConfig sessionConfig,
IWebsiteBaseURL websiteBaseURL,
String channelId,
ITransaction transaction)
Returns the most appropriate login page, based on the given website base URL
and destination channel identifier.
|
PageLinkConfig |
PageLinkManager.getDefaultLoginPage(SessionConfig sessionConfig,
IWebsiteBaseURL websiteBaseURL,
String channelId,
ITransaction transaction) |
PageLinkConfig |
IPageLinkManagerSPI.getDefaultLoginPage(SessionConfig sessionConfig,
IWebsiteBaseURL websiteBaseURL,
String channelId,
PortalRequestContext requestContext,
ITransaction transaction)
Returns the most appropriate login page is identified based on the website,
priority, Context Rules and destination channel identifier.
|
PageLinkConfig |
PageLinkManager.getDefaultLoginPage(SessionConfig sessionConfig,
IWebsiteBaseURL websiteBaseURL,
String channelId,
PortalRequestContext requestContext,
ITransaction transaction) |
void |
IPageLinkDao.update(PageLinkConfig pageLinkConfig,
ITransaction transaction)
Update the page link.
|
void |
PageLinkDaoJdbc.update(PageLinkConfig pageLinkConfig,
ITransaction transaction) |
void |
IPageLinkManager.update(SessionConfig sessionConfig,
PageLinkConfig pageLinkConfig,
ITransaction transaction)
Update the page link.
|
void |
PageLinkManager.update(SessionConfig sessionConfig,
PageLinkConfig pageLinkConfig,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
void |
IPageSerializationManager.deserialize(DeserializationContext deserializationContext,
PageSerializableConfig pageSerializableConfig)
Deserialize a page.
|
void |
PageSerializationManager.deserialize(DeserializationContext deserializationContext,
PageSerializableConfig pageSerializableConfig) |
SerializationMessageConfigNode |
IPageSerializationManager.getSerializationMessageConfigNode(BaseSerializationContext baseSerializationContext,
PageConfig pageConfig)
Get a
SerializationMessageConfigNode object containing fully recursive information about a page. |
SerializationMessageConfigNode |
PageSerializationManager.getSerializationMessageConfigNode(BaseSerializationContext baseSerializationContext,
PageConfig pageConfig) |
SerializationMessageConfigNode |
IPageSerializationManager.getSerializationMessageConfigNode(BaseSerializationContext baseSerializationContext,
PageConfig pageConfig,
EnumSet<SerializationMessageConfigNode.RecursionStopPoints> recursionStopPoints)
Get a
SerializationMessageConfigNode object containing partially recursive information about a page. |
SerializationMessageConfigNode |
PageSerializationManager.getSerializationMessageConfigNode(BaseSerializationContext baseSerializationContext,
PageConfig pageConfig,
EnumSet<SerializationMessageConfigNode.RecursionStopPoints> recursionStopPoints) |
boolean |
PageConfigPersister.persistConfig(DeserializationContext deserializationContext,
Object config,
boolean firstPersistence) |
boolean |
PageSerializationManager.persistConfig(DeserializationContext deserializationContext,
Object config,
boolean firstPersistence) |
PageSerializableConfig |
IPageSerializationManager.serialize(SerializationContext serializationContext,
String pageId,
boolean deepSerialization)
Serialize a page.
|
PageSerializableConfig |
PageSerializationManager.serialize(SerializationContext serializationContext,
String pageId,
boolean deepSerialization) |
Modifier and Type | Method and Description |
---|---|
protected void |
PageTemplateManager.createAllNewInterfaces(SessionConfig sessionConfig,
String pageId,
Document newPageLayoutDoc,
ITransaction transaction) |
String |
IPageTemplateManager.generateDefaultLayout(SessionConfig sessionConfig,
String pageId,
ITransaction transaction) |
String |
PageTemplateManager.generateDefaultLayout(SessionConfig sessionConfig,
String pageId,
ITransaction transaction) |
String |
InterfaceInstanceNodeWrapper.getInterfaceHolderId() |
boolean |
IPageTemplateManager.hasInterfaceHolder(SessionConfig sessionConfig,
PageConfig pageConfig,
ITransaction transaction)
Returns true if the given page template has an interface holder
|
boolean |
PageTemplateManager.hasInterfaceHolder(SessionConfig sessionConfig,
PageConfig pageConfig,
ITransaction transaction) |
protected void |
PageTemplateManager.insertIndependentInterfaces(SessionConfig sessionConfig,
InterfaceHolderMapping interfaceHolderMapping,
Document newPageLayoutDoc,
Document oldPageLayoutDoc,
ITransaction transaction) |
protected void |
PageTemplateManager.insertInterfaceInstance(SessionConfig sessionConfig,
InterfaceInstanceNodeWrapper pageInterface,
Document newPageLayoutDoc,
InterfaceHolderMapping interfaceHolderMapping,
ITransaction transaction) |
protected void |
PageTemplateManager.updateLinkedInterfaces(SessionConfig sessionConfig,
Document newPageLayoutDoc,
Document oldPageLayoutDoc,
ITransaction transaction) |
protected void |
PageTemplateControllerXml.updatePageLayoutFromTemplate(ITransaction portalTransaction) |
void |
IPageTemplateManager.updatePageLayoutFromTemplate(SessionConfig sessionConfig,
String pageId,
ITransaction transaction)
Updates the given page layout based on the layout of the template that
the page belongs to.
|
void |
PageTemplateManager.updatePageLayoutFromTemplate(SessionConfig sessionConfig,
String pageId,
ITransaction transaction) |
Constructor and Description |
---|
InterfaceHolderMapping(SessionConfig sessionConfig,
Document fromPageLayoutDoc,
Document toPageLayoutDoc,
ITransaction transaction) |
InterfaceInstanceNodeWrapper(SessionConfig sessionConfig,
Node interfaceInstanceNode,
ITransaction transaction) |
InterfaceInstanceNodeWrapper(SessionConfig sessionConfig,
String interfaceId,
Document layoutDoc,
ITransaction transaction) |
PageTemplateControllerXml(HttpServletRequest request,
HttpServletResponse response,
PageContext pageContext) |
Modifier and Type | Method and Description |
---|---|
void |
IPageTemplateAclManager.add(SessionConfig sessionConfig,
PageConfig pageConfig,
ITransaction transaction)
Add an Access Control List to the Page.
|
void |
PageTemplateAclManager.add(SessionConfig sessionConfig,
PageConfig pageTemplateConfig,
ITransaction transaction) |
AccessControlList |
IPageTemplateAclManager.get(SessionConfig sessionConfig,
String pageTemplateId,
ITransaction transaction)
Get the Page Template's Access Control List.
|
AccessControlList |
PageTemplateAclManager.get(SessionConfig sessionConfig,
String pageTemplateId,
ITransaction transaction) |
protected AccessControlList |
PageTemplateAclManager.getAclInternal(SessionConfig sessionConfig,
String pageTemplateId,
ITransaction transaction) |
static int[] |
PageTemplatePermissions.getImplies() |
protected int |
PageTemplateAclManager.getRequiredPermissions() |
static int |
PageTemplatePermissions.getRequiredPermissions() |
void |
IPageTemplateAclManager.parentAclUpdated(SessionConfig sessionConfig,
String parentChannelId,
AccessControlList parentChannelAcl,
ITransaction transaction)
Update Page Template's inheriting permissions.
|
void |
PageTemplateAclManager.parentAclUpdated(SessionConfig sessionConfig,
String parentChannelId,
AccessControlList parentChannelAcl,
ITransaction transaction) |
void |
IPageTemplateAclManager.setInheritance(SessionConfig sessionConfig,
String pageId,
boolean inherit,
ITransaction transaction)
Specifies if the page template inherits its parent channel`s ACL.
|
void |
PageTemplateAclManager.setInheritance(SessionConfig sessionConfig,
String pageTemplateId,
boolean inherit,
ITransaction transaction) |
void |
IPageTemplateAclManager.update(SessionConfig sessionConfig,
String pageTemplateId,
AccessControlList acl,
ITransaction transaction)
Update the Page Template's ACL.
|
void |
PageTemplateAclManager.update(SessionConfig sessionConfig,
String pageTemplateId,
AccessControlList acl,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
protected URL |
AbstractPageWebResourceDataProvider.getCanonicalUrl()
Returns the URL used for the canonical URL link element for the
AbstractPageWebResourceDataProvider.pageWebResource . |
protected URL |
DefaultPageWebResourceDataProvider.getCanonicalUrl()
Returns the URL used for the canonical URL link element for the
AbstractPageWebResourceDataProvider.pageWebResource . |
static URL |
SeoWebResourceUtil.getCanonicalUrl(String pageId,
Locale locale)
Returns the canonical URL for the specified
page SeoRule if defined. |
protected abstract String |
AbstractPageWebResourceDataProvider.getDescription()
Returns the description for the page web resource.
|
protected String |
DefaultPageWebResourceDataProvider.getDescription() |
protected abstract List<String> |
AbstractPageWebResourceDataProvider.getKeywords()
Returns the keywords for the page web resource.
|
protected List<String> |
DefaultPageWebResourceDataProvider.getKeywords() |
protected Map<String,String> |
AbstractPageWebResourceDataProvider.getMetaTags()
Returns the meta tags map for the page web resource.
|
protected Map<String,String> |
DefaultPageWebResourceDataProvider.getMetaTags() |
static String |
SeoWebResourceUtil.getPageDescription(String pageId,
Locale locale)
Returns the description for the specified
page SeoRule if defined. |
static String |
SeoWebResourceUtil.getPageSocialDescription(String pageId,
Locale locale)
Returns the social description for the specified
page SeoRule if defined. |
static String |
SeoWebResourceUtil.getPageSocialImageFileId(String pageId,
Locale locale)
Returns the social image file id for the specified
page SeoRule if defined. |
static String |
SeoWebResourceUtil.getPageSocialTitle(String pageId,
Locale locale)
Returns the social title for the specified
page SeoRule if defined. |
static String |
SeoWebResourceUtil.getPageTitle(String pageId,
Locale locale)
Returns the title for the specified
page SeoRule if defined. |
static String |
SeoWebResourceUtil.getPageTitlePattern(String pageId,
Locale locale)
Returns the page title pattern for the given page and locale.
|
PageWebResourceData |
AbstractPageWebResourceDataProvider.getPageWebResourceData()
Template method for filling up a page web resource data properties.
|
PageWebResourceData |
IPageWebResourceDataProvider.getPageWebResourceData()
Returns the data about a page web resource.
|
protected abstract String |
AbstractPageWebResourceDataProvider.getSimpleTitle()
Returns the simple title for the page web resource.
|
protected String |
DefaultPageWebResourceDataProvider.getSimpleTitle() |
protected abstract String |
AbstractPageWebResourceDataProvider.getTitle()
Returns the title for the page web resource.
|
protected String |
DefaultPageWebResourceDataProvider.getTitle() |
protected String |
DefaultPageWebResourceDataProvider.getTitlePattern()
Returns the pattern to be used when resolving the title or
null if there's no specific title pattern. |
static String |
SeoWebResourceUtil.getUrlPathByChannelId(String channelId,
Locale locale)
Returns the url path for the specified
channel SeoRule if defined. |
static String |
SeoWebResourceUtil.getUrlPathByPageId(String pageId,
Locale locale)
Returns the url path for the specified
PageConfig#getId( page) SeoRule if defined. |
protected String |
AbstractPageWebResourceDataProvider.getUrlTitle()
Returns the title to be used when generating the URL of the page web resource.
|
protected VariableResolver |
DefaultPageWebResourceDataProvider.getVariableResolver()
Returns the variable resolver used to resolve title against the title pattern.
|
void |
AbstractPageWebResourceDataProvider.init(PageWebResource pageWebResource)
Sets
AbstractPageWebResourceDataProvider.pageWebResource attribute with the given pageWebResource object. |
void |
DefaultPageWebResourceDataProvider.init(PageWebResource pageWebResource) |
void |
IPageWebResourceDataProvider.init(PageWebResource pageWebResource)
Initializes this page web resource data provider.
|
Modifier and Type | Method and Description |
---|---|
void |
IPreferencesManagerSPI.copySharedInterfaceInstancePreferences(String srcInterfaceInstanceId,
String destInterfaceInstanceId)
Copies the shared interface instance preferences from an interface instance to another.
|
void |
PreferencesManager.copySharedInterfaceInstancePreferences(String srcInterfaceInstanceId,
String destInterfaceInstanceId) |
void |
IPreferencesManager.delete(SessionConfig sessionConfig,
String resourceId,
int resourceType,
ITransaction transaction)
Deprecated.
Since 10.2.0, replaced by
IPreferencesManager.deletePreferencesByServiceInterfaceInstanceId(String) . |
void |
PreferencesManager.delete(SessionConfig sessionConfig,
String resourceId,
int resourceType,
ITransaction transaction)
Deprecated.
|
void |
IPreferencesManager.deletePreferencesByServiceInterfaceInstanceId(String serviceInterfaceInstanceId)
Deletes all non-structure level preferences associated with the specified service interface instance.
|
void |
PreferencesManager.deletePreferencesByServiceInterfaceInstanceId(String serviceInterfaceInstanceId) |
IPreferences |
IPreferencesManager.getPreferences(SessionConfig sessionConfig,
String resourceId,
int resourceType)
Deprecated.
Since 10.2.0, replaced by
IPreferencesManager.getServiceInterfaceInstancePreferences(String, PreferencesLevel) . |
IPreferences |
PreferencesManager.getPreferences(SessionConfig sessionConfig,
String resourceId,
int resourceType)
Deprecated.
|
IPreferences |
IPreferencesManager.getServiceInterfaceInstancePreferences(String serviceInterfaceInstanceId,
PreferencesLevel level)
Returns the preferences for a specified resource at the specified level.
|
IPreferences |
PreferencesManager.getServiceInterfaceInstancePreferences(String serviceInterfaceInstanceId,
PreferencesLevel level) |
void |
IPreferencesManagerSPI.setSharedInterfaceInstancePreferences(String interfaceInstanceId,
Map<String,String[]> sharedPreferences)
Sets the shared interface instance preferences for the given interface instance identifier.
|
void |
PreferencesManager.setSharedInterfaceInstancePreferences(String interfaceInstanceId,
Map<String,String[]> sharedPreferences) |
Modifier and Type | Method and Description |
---|---|
protected void |
PresentationControllerHtml.checkForFileUpload(ITransaction transaction) |
protected boolean |
PresentationControllerHtml.checkForProtocolRedirect(ITransaction portalTransaction) |
List<String> |
IPresentationManager.getAdministrationBarChannelIds(SessionConfig sessionConfig,
ITransaction transaction)
Get the Ids of the administration bar of the Channel.
|
List<String> |
PresentationManager.getAdministrationBarChannelIds(SessionConfig sessionConfig,
ITransaction transaction) |
PageConfig |
IPresentationManager.getDefaultPage(SessionConfig sessionConfig,
String pageId,
String channelId,
IWebsiteBaseURL websiteBaseURL,
int mode,
ITransaction daoTransaction)
Get the default Page.
|
PageConfig |
PresentationManager.getDefaultPage(SessionConfig sessionConfig,
String pageId,
String channelId,
IWebsiteBaseURL websiteBaseURL,
int mode,
ITransaction daoTransaction) |
PageConfig |
IPresentationManagerSPI.getDefaultPage(SessionConfig sessionConfig,
String pageId,
String channelId,
IWebsiteBaseURL websiteBaseURL,
IPortalMode mode,
PortalRequestContext requestContext,
boolean fallbackToFirstWebsitePage,
ITransaction transaction)
Get the default Page.
|
PageConfig |
PresentationManager.getDefaultPage(SessionConfig sessionConfig,
String pageId,
String channelId,
IWebsiteBaseURL websiteBaseURL,
IPortalMode mode,
PortalRequestContext requestContext,
boolean fallbackToFirstWebsitePage,
ITransaction transaction) |
PageConfig |
IPresentationManagerSPI.getDefaultPage(SessionConfig sessionConfig,
String pageId,
String channelId,
IWebsiteBaseURL websiteBaseURL,
IPortalMode mode,
PortalRequestContext requestContext,
ITransaction daoTransaction)
Get the default Page.
|
PageConfig |
PresentationManager.getDefaultPage(SessionConfig sessionConfig,
String pageId,
String channelId,
IWebsiteBaseURL websiteBaseURL,
IPortalMode mode,
PortalRequestContext requestContext,
ITransaction transaction) |
PageConfig |
IPresentationManager.getDefaultPage(SessionConfig sessionConfig,
String pageId,
String channelId,
String website,
int mode,
ITransaction daoTransaction)
Deprecated.
|
PageConfig |
PresentationManager.getDefaultPage(SessionConfig sessionConfig,
String pageId,
String channelId,
String website,
int mode,
ITransaction daoTransaction)
Deprecated.
|
PageConfig |
IPresentationManagerSPI.getDefaultPage(SessionConfig sessionConfig,
String pageId,
String channelId,
String website,
int mode,
PortalRequestContext requestContext,
ITransaction daoTransaction)
Deprecated.
|
PageConfig |
PresentationManager.getDefaultPage(SessionConfig sessionConfig,
String pageId,
String channelId,
String website,
int mode,
PortalRequestContext requestContext,
ITransaction transaction)
Deprecated.
|
List<IHtmlProcessor> |
IPresentationManagerSPI.getProcessors(PageWebResource webResource)
Returns a list with the
HTML processors for the given web resource . |
List<IHtmlProcessor> |
PresentationManager.getProcessors(PageWebResource webResource) |
static String |
PageRendererUtil.getServiceInterfaceInstanceSafeModeHTML(String serviceInterfaceInstanceId)
Returns the HTML used for a service interface instance rendering
in safe mode.
|
void |
IHtmlProcessor.init(String serviceInstanceId)
Initializes this HTML processor with the given service instance identifier.
|
static void |
HttpSessionMonitor.monitorSession(SessionConfig sessionConfig,
PageWebResource webResource,
HttpSession session,
String lastTrackId)
Starts monitoring the given http session.
|
void |
HtmlProcessorEventObserver.onEvent(IPortalEvent event) |
protected void |
PresentationControllerHtml.prepareForPageRendering(ITransaction portalTransaction)
Performs any initialization required before page rendering.
|
String |
IHtmlProcessor.process(String originalHtml,
IPageWebResourceRenderRequest pageWebResourceRenderRequest)
Returns the processed HMTL for user.
|
protected ITransaction |
PresentationControllerHtml.processActionIfRequired(ITransaction portalTransaction)
Checks to see if an action is to be processed.
|
void |
PresentationControllerHtml.renderPage()
Renders a portal page.
|
protected void |
PresentationControllerHtml.renderPagePortalSettingsMode(ITransaction portalTransaction)
Renders the page in portal settings mode .
|
protected void |
PresentationControllerHtml.renderPagePortalStudioMode(ITransaction portalTransaction)
Renders the page in portal studio mode .
|
protected void |
PresentationControllerHtml.renderPagePublisherMode(ITransaction portalTransaction)
Renders the page in publisher perspective.
|
protected void |
PresentationControllerHtml.renderPageUserMode(ITransaction portalTransaction)
Render the page in UserMode.
|
void |
IPresentationManager.resetAdministrationBarChannelIds()
Reset the administration bar of the Channel.
|
protected void |
PresentationControllerHtml.setDataPreviewMode(ITransaction portalTransaction)
Sets the Page Preview Mode.
|
protected void |
PresentationControllerHtml.setPageInfo(ITransaction portalTransaction)
This method calls the
presentationManager.getDefaultPage
to calculate the page that needs to be rendered. |
protected void |
PresentationControllerHtml.setPageMode(ITransaction portalTransaction)
Sets the Page Mode.
|
protected void |
PresentationControllerHtml.setUACompatibleHeader()
Sets a new HTTP Header with the value stored in the property lumis.portal.presentation.X-UA-Compatible.
|
protected void |
PresentationControllerHtml.setWebResource(ITransaction transaction)
Sets
PresentationControllerHtml.webResource with the web resource instance for the
current request. |
protected AccessError |
PresentationControllerHtml.validatePageAccess(ITransaction transaction) |
Constructor and Description |
---|
PresentationControllerHtml(HttpServletRequest request,
HttpServletResponse response,
PageContext pageContext) |
Modifier and Type | Method and Description |
---|---|
protected boolean |
AbstractPageBodyMiddleComponent.columnsHavePercentWidths(Node[] columns)
Returns the columns width of the wished columns collection.
|
protected Document |
AbstractPageBodyMiddleComponent.generatePageLayout()
Returns the page layout.
|
protected String |
AbstractPageBodyMiddleComponent.generateSpan(ServiceInterfaceInstanceConfig serviceInterfaceInstConfig)
Generates the Colspans and Rowspans of the component.
|
protected String |
AbstractPageBodyMiddleComponent.generateStyles(ServiceInterfaceInstanceConfig serviceInterfaceInstConfig)
Generates the style of the component.
|
protected Document |
AbstractPageBodyMiddleComponent.getPageLayout()
Returns the layout of the current Page.
|
protected ServiceInterfaceInstanceConfig |
AbstractPageBodyMiddleComponent.getServiceInterfaceInstanceConfigForRendering(String serviceInterfaceInstanceId,
ITransaction transaction)
Returns the Interface instance config to be rendered.
|
Modifier and Type | Method and Description |
---|---|
protected ContextValidatingPortalMode.PageChannelResolveResult |
ContentPublicationPortalMode.resolve(HttpServletRequest request,
IPageWebResourceRequest webResourceRequest) |
protected abstract ContextValidatingPortalMode.PageChannelResolveResult |
ContextValidatingPortalMode.resolve(HttpServletRequest request,
IPageWebResourceRequest webResourceRequest)
Resolves the context.
|
protected ContextValidatingPortalMode.PageChannelResolveResult |
PortalStudioPortalMode.resolve(HttpServletRequest request,
IPageWebResourceRequest webResourceRequest) |
boolean |
ContentAdministrationPortalMode.validateAccess(IPortalMode currentMode,
HttpServletRequest httpServletRequest,
IPageWebResourceRequest webResourceRequest) |
boolean |
ContextValidatingPortalMode.validateAccess(IPortalMode currentMode,
HttpServletRequest httpServletRequest,
IPageWebResourceRequest webResourceRequest) |
boolean |
IPortalModeSPI.validateAccess(IPortalMode currentMode,
HttpServletRequest httpServletRequest,
IPageWebResourceRequest webResourceRequest)
Checks whether the current user has access to the given portal mode.
|
boolean |
SettingsPortalMode.validateAccess(IPortalMode currentMode,
HttpServletRequest httpServletRequest,
IPageWebResourceRequest webResourceRequest) |
Modifier and Type | Method and Description |
---|---|
static String |
CustomerExperienceSubHeader.buildTargetUrl(SessionConfig sessionConfig,
HttpServletRequest httpServletRequest,
ServiceInstanceConfig serviceInstanceConfig)
Builds the target url for the current service instance to use the customer experience functionality.
|
static ServiceInstanceConfig |
CustomerExperienceHelper.findCurrentAnalyticsServiceInstance(SessionConfig sessionConfig,
String channelId,
Collection<String> serviceInstanceIds,
ITransaction transaction)
Discovers the current analytics service instance.
|
static String |
CustomerExperienceHelper.getAnalyticsPageId(String channelId)
Return Analytics page identifier.
|
Modifier and Type | Method and Description |
---|---|
protected org.apache.wicket.util.string.AppendingStringBuffer |
PortalSettingsNavigationComponent.renderAdministrationMenu(LayoutFilePage page,
ChannelConfig curChannel,
int iLevel,
boolean isLast,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
static ServiceInstanceConfig |
AutoAdministrationHelper.findCurrentAutoAdministrationServiceInstance(SessionConfig sessionConfig,
String channelId,
Collection<String> serviceInstanceIds,
ITransaction transaction)
Discovers the current auto administration service instance.
|
static String |
AutoAdministrationHelper.findTargetChannelId(String startingChannelId)
Retrieves the
channelId of the closets auto-administration service instance for the startingChannelId . |
static String |
AutoAdministrationHelper.getAutoAdministrationPageId(String channelId)
Discovers the pageId from the nearest auto administration service instance.
|
Modifier and Type | Method and Description |
---|---|
void |
IPrincipalDao.add(PrincipalConfig principal,
ITransaction transaction)
Adds a new principal
|
void |
PrincipalDaoJdbc.add(PrincipalConfig principal,
ITransaction transaction) |
void |
IPrincipalManager.add(SessionConfig sessionConfig,
PrincipalConfig principal,
ITransaction transaction)
Add a Principal.
|
void |
PrincipalManager.add(SessionConfig sessionConfig,
PrincipalConfig principal,
ITransaction transaction) |
Collection<PrincipalConfig> |
IPrincipalDao.bulkLoad(String principalId,
int numOfElements,
ITransaction transaction)
Bulk loads principals and return them.
|
Collection<PrincipalConfig> |
PrincipalDaoJdbc.bulkLoad(String principalId,
int numOfElements,
ITransaction transaction) |
protected Collection<CacheItem<PrincipalConfig>> |
PrincipalManager.bulkLoadPrincipals(ICacheMultiDataProvider.IRequest request)
Read all principals given the cache request.
|
void |
IPrincipalManager.delete(SessionConfig sessionConfig,
String principalId,
ITransaction transaction)
Remove a Principal.
|
void |
PrincipalManager.delete(SessionConfig sessionConfig,
String principalId,
ITransaction transaction) |
void |
IPrincipalDao.delete(String principalId,
ITransaction transaction)
Delets a principal
|
void |
PrincipalDaoJdbc.delete(String principalId,
ITransaction transaction) |
PrincipalConfig |
IPrincipalManager.get(SessionConfig sessionConfig,
String principalId,
ITransaction transaction)
Get the Principal.
|
PrincipalConfig |
PrincipalManager.get(SessionConfig sessionConfig,
String principalId,
ITransaction transaction) |
PrincipalConfig |
IPrincipalDao.get(String principalId,
ITransaction transaction)
Get the principal.
|
PrincipalConfig |
PrincipalDaoJdbc.get(String principalId,
ITransaction transaction) |
PrincipalConfig |
IPrincipalManager.getByShortId(SessionConfig sessionConfig,
String shortId,
ITransaction transaction)
Get the Principal given the shortId.
|
PrincipalConfig |
PrincipalManager.getByShortId(SessionConfig sessionConfig,
String shortId,
ITransaction transaction) |
PrincipalConfig |
IPrincipalDao.getByShortId(String shortId,
ITransaction transaction)
Get the principal by his's short Id
|
PrincipalConfig |
PrincipalDaoJdbc.getByShortId(String shortId,
ITransaction transaction) |
Set<String> |
IPrincipalManager.getPortalUserMembers(SessionConfig sessionConfig,
String principalId,
ITransaction transaction)
Returns the members that are (portal) users of the given principal.
The return value will be: If the given principal is a user: a set with a single entry that is the given user itself. If the given principal is a user segmentation: a set with the users that are members of the given segmentation. If the given principal is a group: a set containing the result of a recursion in this method with each direct member of the given group. |
Set<String> |
PrincipalManager.getPortalUserMembers(SessionConfig sessionConfig,
String principalId,
ITransaction transaction) |
Principals |
IPrincipalManagerSPI.getPrincipalPrincipals(SessionConfig sessionConfig,
String principalId,
boolean useSessionCache,
ITransaction transaction)
Returns the principals of the given principal.
The return value will be: If the given principal is a user: a set with an entry that is the given user itself and the result of the recursion in this method for each group and segmentation the user is member of. |
Principals |
PrincipalManager.getPrincipalPrincipals(SessionConfig sessionConfig,
String principalId,
boolean useSessionCache,
ITransaction transaction) |
Set<String> |
IPrincipalManager.getPrincipals(SessionConfig sessionConfig,
String principalId,
ITransaction transaction)
Returns the principals of the given principal.
The return value will be: If the given principal is a user: a set with an entry that is the given user itself and the result of the recursion in this method for each group and segmentation the user is member of. |
Set<String> |
PrincipalManager.getPrincipals(SessionConfig sessionConfig,
String principalId,
ITransaction transaction) |
boolean |
IPrincipalManager.isMember(SessionConfig sessionConfig,
String portalUserId,
Collection<String> principalIds,
ITransaction transaction)
Check whether the principal is a member of any given principal.
|
boolean |
PrincipalManager.isMember(SessionConfig sessionConfig,
String portalUserId,
Collection<String> principalIds,
ITransaction transaction) |
void |
IPrincipalDao.update(PrincipalConfig principal,
ITransaction transaction)
Updates a principal
|
void |
PrincipalDaoJdbc.update(PrincipalConfig principal,
ITransaction transaction) |
void |
IPrincipalManager.update(SessionConfig sessionConfig,
PrincipalConfig principal,
ITransaction transaction)
Update a Principal.
|
void |
PrincipalManager.update(SessionConfig sessionConfig,
PrincipalConfig principal,
ITransaction transaction) |
protected int |
PrincipalManager.validateAccess(SessionConfig sessionConfig,
PrincipalConfig principal,
ITransaction transaction) |
protected void |
PrincipalManager.validateAdministrationAccess(SessionConfig sessionConfig,
PrincipalConfig principal,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
void |
ImportPrincipalClock.doTick(SessionConfig sessionConfig,
ClockConfig clockConfig)
Scheduled method that executes the automatic run of the read/write
principals operation.
|
void |
IImportPrincipalManager.readPrincipals(SessionConfig sessionConfig,
String principalReaderConfigId,
ITransaction transaction)
Read xml config file initializing the declared readers building a xml file with the users and groups extracted by the users.
|
void |
ImportPrincipalManager.readPrincipals(SessionConfig sessionConfig,
String principalReaderConfigId,
ITransaction transaction) |
void |
IImportPrincipalManager.writePrincipals(SessionConfig sessionConfig,
String principalWriterConfigId,
ITransaction transaction)
Read a xml file with user's and group's configuration and import them to Lumis database.
|
void |
ImportPrincipalManager.writePrincipals(SessionConfig sessionConfig,
String principalWriterConfigId,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
Map<String,String> |
ActiveDirectoryPrincipalReader.read(Node reader) |
Map<String,String> |
IPrincipalReader.read(Node reader)
Read users and groups and return them in string format in entries named userList and groupList of the map returned.
|
protected String |
ActiveDirectoryPrincipalReader.readGroups()
Returns a XML string containing the groups read from AD.
|
protected void |
ActiveDirectoryPrincipalReader.readGroups(StringBuilder sbGroup,
LdapContext context,
boolean recursive)
Reads the groups using the given
LdapContext and stores the XML string in the given StringBuilder . |
protected String |
ActiveDirectoryPrincipalReader.readUsers()
Returns a XML string containing the users read from AD.
|
protected void |
ActiveDirectoryPrincipalReader.readUsers(StringBuilder sbUser,
LdapContext context,
boolean recursive)
Reads the users from ActiveDirectory using the given
LdapContext and store the result XML string in the
given StringBuilder . |
Modifier and Type | Method and Description |
---|---|
void |
IPrincipalSerializationManager.analyzeExternalDependencies(SerializationContext serializationContext,
ISerializationMessageConfigNodeBuilder serializationMessageConfigNodeBuilder,
String principalId) |
void |
PrincipalSerializationManager.analyzeExternalDependencies(SerializationContext serializationContext,
ISerializationMessageConfigNodeBuilder serializationMessageConfigNodeBuilder,
String principalId) |
boolean |
IPrincipalSerializationManager.isGlobalPrincipal(SessionConfig sessionConfig,
String principalId,
ITransaction transaction) |
boolean |
PrincipalSerializationManager.isGlobalPrincipal(SessionConfig sessionConfig,
String principalId,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
void |
IPrivacyTermManager.acceptAllPurposesOfPrivacyTerm(String serviceInstanceId,
String sourceIp)
This method is used to make the current monitored user to accept all purposes of the privacy term with the given service instance.
|
void |
IPrivacyTermManagerSPI.changeProcessPurpose(String serviceInstanceId)
Changes the term process purpose to a new one.
|
List<String> |
IPrivacyTermManagerSPI.getPrivacyProcessPurposes(ServiceInstanceConfig analyticsServiceInstance)
Returns all privacy term process purposes identifier of analytics service instance.
|
boolean |
IPrivacyTermManagerSPI.hasUserConsentedForDependentServiceInstance(ServiceInstanceConfig dependentServiceInstance,
String monitorUserId)
Check if monitor user accepted a privacy term the given dependent service instance of privacy term service instances.
|
boolean |
IPrivacyTermManager.isAllPurposesOfPrivacyTermAccepted(String serviceInstanceId)
Returns whether current monitor user has accepted all processing purposes of the privacy term with the given service instance with the given identifier.
|
void |
IPrivacyTermManager.revokeConsentOfAllPurposesOfPrivacyTerm(String serviceInstanceId)
Revokes the consent of the current monitored user on all purposes of the privacy term of the given service instance.
|
Modifier and Type | Method and Description |
---|---|
IQueueTaskProcess |
IProcessQueueManagerSPI.getNextQueueTaskProcessForExecution()
Returns the next task process for execution.
|
IQueueTaskProcess |
QueueManager.getNextQueueTaskProcessForExecution() |
IQueueStatistics |
IProcessQueueManager.getQueueStatistics()
Retrieves the current situation statistics of the queue.
|
IQueueStatistics |
QueueManager.getQueueStatistics() |
IQueueTaskProcess |
IProcessQueueManager.getTaskProcess(String processId)
Retrieves the queue item of represented by the processId.
|
IQueueTaskProcess |
QueueManager.getTaskProcess(String processId) |
Collection<IQueueTaskProcess> |
IProcessQueueManager.getTaskProcessByOwnerId(String ownerId)
Returns the processes of a given owner.
|
Collection<IQueueTaskProcess> |
QueueManager.getTaskProcessByOwnerId(String ownerId) |
void |
IProcessQueueManagerSPI.removeFromQueue(IQueueTaskProcess item,
boolean notifyListeners)
Removes from queue the current item.
|
void |
QueueManager.removeFromQueue(IQueueTaskProcess item,
boolean notifyListeners) |
void |
IProcessQueueManager.reprocess(String processId)
Triggers the process to be retried.
|
void |
QueueManager.reprocess(String processId) |
void |
IQueueTask.run()
Method to be called by queue processor in order to process queue item.
|
IQueueTaskProcess |
IProcessQueueManager.schedule(IQueueTask task,
QueueTaskScheduleConfig taskScheduleConfig)
Schedules the execution of the given task.
|
IQueueTaskProcess |
QueueManager.schedule(IQueueTask task,
QueueTaskScheduleConfig taskScheduleConfig) |
void |
IProcessQueueManagerSPI.setFailedStatus(IQueueTaskProcess queueItem)
Sets the given process the status of
QueueTaskProcessStatus.Failed . |
void |
QueueManager.setFailedStatus(IQueueTaskProcess queueItem) |
Modifier and Type | Method and Description |
---|---|
void |
IProgressDao.add(ProgressConfig progressConfig) |
void |
ProgressDaoJdbc.add(ProgressConfig progressConfig) |
void |
IProgressManager.addOrUpdate(ProgressConfig progressConfig) |
void |
ProgressManager.addOrUpdate(ProgressConfig progressConfig) |
void |
IProgressDao.addOrUpdateStep(ProgressConfig progressConfig) |
void |
ProgressDaoJdbc.addOrUpdateStep(ProgressConfig progressConfig) |
void |
IProgressDao.deleteByProcessId(String processId) |
void |
IProgressManager.deleteByProcessId(String processId) |
void |
ProgressDaoJdbc.deleteByProcessId(String processId) |
void |
ProgressManager.deleteByProcessId(String processId) |
void |
IProgressDao.deleteExpired(Timestamp expirationDateTime) |
void |
IProgressManager.deleteExpired(Timestamp expirationDateTime) |
void |
ProgressDaoJdbc.deleteExpired(Timestamp expirationDateTime) |
void |
ProgressManager.deleteExpired(Timestamp expirationDateTime) |
boolean |
IProgressDao.getAbortedByProcessId(String processId) |
boolean |
IProgressManager.getAbortedByProcessId(String processId) |
boolean |
ProgressDaoJdbc.getAbortedByProcessId(String processId) |
boolean |
ProgressManager.getAbortedByProcessId(String processId) |
Collection<ProgressConfig> |
IProgressDao.getByProcessId(String processId,
Timestamp startDateTime) |
Collection<ProgressConfig> |
IProgressManager.getByProcessId(String processId,
Timestamp startDateTime) |
Collection<ProgressConfig> |
ProgressDaoJdbc.getByProcessId(String processId,
Timestamp startDateTime) |
Collection<ProgressConfig> |
ProgressManager.getByProcessId(String processId,
Timestamp startDateTime) |
Constructor and Description |
---|
ProgressControllerHtml(HttpServletRequest request,
HttpServletResponse response) |
Modifier and Type | Method and Description |
---|---|
void |
IPropertyBagManager.add(PropertyBag bag)
Persists a property bag.
|
void |
PropertyBagManager.add(PropertyBag bag) |
void |
IPropertyBagManager.delete(PropertyBag bag)
Deletes the given property bag.
|
void |
PropertyBagManager.delete(PropertyBag bag) |
PropertyBag |
IPropertyBagManager.get(String propertyBagId)
Returns the property bag with the given identifier.
|
PropertyBag |
PropertyBagManager.get(String propertyBagId) |
Property |
PropertyBag.getLocalProperty(String propertyName)
Returns a property in this property bag.
|
Property |
PropertyBag.getProperty(String propertyName)
Returns a property of this property bag.
|
String |
IPropertyBagManager.getValue(String propertyBagId,
String propertyName,
String defaultValue)
Returns the value of the property with the given name for the property bag with the given identifier and, if no value was found, return the given default value.
The calculated value will be calculated considering the inherited values. When changing some property bag values, the new values will only be available in this method after the transaction that changed the property bag values is commited. This method is preferable to PropertyBag.getValue(String, String) . |
String |
PropertyBagManager.getValue(String propertyBagId,
String propertyName,
String defaultValue) |
Map<String,List<String>> |
IPropertyBagManager.getValueMap(String propertyBagId)
Returns the value map for the property bag with the given identifier.
The resulting map will be calculated considering the inherited values and will be an unmodifiable map. When changing some property bag values, the new values will only be available in this method after the transaction that changed the property bag values is commited. This method is preferable to PropertyBag.getValueMap() . |
Map<String,List<String>> |
PropertyBagManager.getValueMap(String propertyBagId) |
Tuple2<Map<String,List<String>>,Map<String,List<String>>> |
IPropertyBagManagerSPI.getValues(String propertyBagId)
|
Tuple2<Map<String,List<String>>,Map<String,List<String>>> |
PropertyBagManager.getValues(String propertyBagId) |
List<String> |
IPropertyBagManager.getValues(String propertyBagId,
String propertyName,
List<String> defaultValues)
Returns the values of the property with the given name for the property bag with the given identifier and, if no value was found, return the given default values.
The calculated value will be calculated considering the inherited values. When changing some property bag values, the new values will only be available in this method after the transaction that changed the property bag values is commited. If the values could be calculated (and, thus, the default values are not used), the returned list will be immutable. If the values couldn't be found, the default values will be returned and, whether it is an immutable list is not defined. This method is preferable to PropertyBag.getValues(String, List) . |
List<String> |
PropertyBagManager.getValues(String propertyBagId,
String propertyName,
List<String> defaultValues) |
void |
PropertyBag.removeProperty(String propertyName)
Removes a property from this property bag.
|
static void |
PropertyBagManager.scheduleClearCache(String propertyBagId)
Schedules a cache clear if needed.
|
Modifier and Type | Method and Description |
---|---|
void |
IPropertyBagSerializationManager.deserializePropertyBag(DeserializationContext deserializationContext,
String propertyBagId,
String parentPropertyBagId)
Deserializes a
PropertyBag object. |
void |
PropertyBagSerializationManager.deserializePropertyBag(DeserializationContext deserializationContext,
String propertyBagId,
String parentPropertyBagId) |
void |
IPropertyBagSerializationManager.serialize(SerializationContext serializationContext,
String propertyBag)
Serializes a property bag.
|
void |
PropertyBagSerializationManager.serialize(SerializationContext serializationContext,
String propertyBagId) |
Modifier and Type | Method and Description |
---|---|
static void |
PublicFilesUtil.copyPortalWWWFiles(IWebRootPortalBaseFolder baseFolder)
Copy (asynchronously) portal public files to the given base folder.
|
static void |
PublicFilesUtil.removePortalWWWFiles(IWebRootPortalBaseFolder baseFolder,
boolean async)
Removes (asynchronously) portal public files from the given base folder.
|
Modifier and Type | Method and Description |
---|---|
String |
PortalHrefToAbsoluteXmlAdapter.marshal(String value) |
String |
PortalHrefToAbsoluteXmlAdapter.unmarshal(String value) |
Modifier and Type | Method and Description |
---|---|
void |
CrossSiteRequestManager.clearCache(ITransaction transaction) |
void |
ICrossSiteRequestManagerSPI.clearCache(ITransaction transaction)
Clears the cache after the commit of the given transaction.
|
void |
CrossSiteRequestManager.clearCORSCache(ITransaction transaction) |
void |
ICrossSiteRequestManagerSPI.clearCORSCache(ITransaction transaction)
Clears the CORS definitions cache after the commit of the given transaction.
|
CorsRule |
CrossSiteRequestManager.findCorsRuleForActualRequest(HttpServletRequest request) |
CorsRule |
ICrossSiteRequestManagerSPI.findCorsRuleForActualRequest(HttpServletRequest request)
Returns the
CorsRule to be applied for the given actual request. |
CorsRule |
CrossSiteRequestManager.findCorsRuleForPreflightRequest(HttpServletRequest request) |
CorsRule |
ICrossSiteRequestManagerSPI.findCorsRuleForPreflightRequest(HttpServletRequest request)
Returns the
CorsRule to be applied for the given preflight request. |
boolean |
CrossSiteRequestManager.isAllowed(HttpServletRequest request) |
boolean |
ICrossSiteRequestManagerSPI.isAllowed(HttpServletRequest request)
Returns whether the given request is allowed to be performed.
|
Modifier and Type | Method and Description |
---|---|
void |
ISendMailManager.addMailToSendQueue(SessionConfig sessionConfig,
IMultipleMail mail,
String queueId,
ITransaction transaction)
Adds an e-mail to the send queue.
|
void |
SendMailManager.addMailToSendQueue(SessionConfig sessionConfig,
IMultipleMail mail,
String queueId,
ITransaction transaction) |
void |
ISendMailManager.addMailToSendQueue(SessionConfig sessionConfig,
ISingleMail mail,
String queueId,
ITransaction transaction)
Adds an e-mail to the send queue.
|
void |
SendMailManager.addMailToSendQueue(SessionConfig sessionConfig,
ISingleMail mail,
String queueId,
ITransaction transaction) |
IMailAttachment |
ISendMailManager.createMailAttachment()
Factory method for creating a new mail attachment instance.
|
IMailAttachment |
SendMailManager.createMailAttachment() |
IMailDestination |
ISendMailManager.createMailDestination()
Factory method for creating a new mail destination instance.
|
IMailDestination |
SendMailManager.createMailDestination() |
IMultipleMail |
ISendMailManager.createMultipleMail()
Factory method for creating a new blank mail instance.
|
IMultipleMail |
SendMailManager.createMultipleMail() |
ISingleMail |
ISendMailManager.createSingleMail()
Factory method for creating a new blank mail instance.
|
ISingleMail |
SendMailManager.createSingleMail() |
void |
ISendMailManager.deleteMail(SessionConfig sessionConfig,
String mailId,
ITransaction transaction)
Deletes a mail and all its internal components (body, attachments,
destinations).
|
void |
SendMailManager.deleteMail(SessionConfig sessionConfig,
String mailId,
ITransaction transaction) |
void |
ISendMailManager.deleteMailDestination(SessionConfig sessionConfig,
String mailDestinationId,
ITransaction transaction)
Deletes a mail destination.
|
void |
SendMailManager.deleteMailDestination(SessionConfig sessionConfig,
String mailDestinationId,
ITransaction transaction) |
void |
SendMailClock.doTick(SessionConfig sessionConfig,
ClockConfig clockConfig)
|
String |
ISendMailManager.generateNewQueueId()
Returns a new generated queue id.
|
String |
SendMailManager.generateNewQueueId() |
IMailConfig |
ISendMailManager.getMailConfig(SessionConfig sessionConfig,
ITransaction transaction)
Returns the IMailConfig containing the configurations for sending
e-mails.
|
IMailConfig |
SendMailManager.getMailConfig(SessionConfig sessionConfig,
ITransaction transaction) |
protected IMailSender |
SendMailManager.getMailSender(SessionConfig sessionConfig,
ITransaction transaction)
Returns a new instance of the
IMailSender to be used by this manager for sending e-mails. |
void |
ISendMailManager.pollMailQueueProcessing()
Verifies the need to create another mail queue process thread, and create
it if necessary.
|
void |
SendMailManager.pollMailQueueProcessing() |
boolean |
SendMailManager.processNextQueuedMail(String queueId) |
void |
IMailSender.sendMail(SessionConfig sessionConfig,
ISingleMail mail,
ITransaction transaction)
Sends a mail.
|
void |
ISendMailManager.sendMail(SessionConfig sessionConfig,
ISingleMail mail,
ITransaction transaction)
Sends an e-mail immediately.
|
void |
SendMailManager.sendMail(SessionConfig sessionConfig,
ISingleMail mail,
ITransaction transaction) |
void |
ISendMailManager.setMailConfig(SessionConfig sessionConfig,
IMailConfig mailConfig,
ITransaction transaction)
Sets the IMailConfig containing the configurations for sending e-mails.
|
void |
SendMailManager.setMailConfig(SessionConfig sessionConfig,
IMailConfig mailConfig,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
IMultipleMail |
ISendMailDao.createMultipleMail()
Factory method for creating a new blank mail instance.
|
ISingleMail |
ISendMailDao.createSingleMail()
Factory method for creating a new blank mail instance.
|
Modifier and Type | Method and Description |
---|---|
IMultipleMail |
SendMailDaoHib.createMultipleMail() |
ISingleMail |
SendMailDaoHib.createSingleMail() |
Modifier and Type | Method and Description |
---|---|
protected IMailConfig |
SmtpMailSender.getMailConfig()
Returns the MailConfig with the configurations to be used when sending the e-mail.
|
void |
SmtpMailSender.sendMail(SessionConfig sessionConfig,
ISingleMail mail,
ITransaction transaction) |
Modifier and Type | Class and Description |
---|---|
class |
SerializationAbortedException
Exception that is raised when a user request to stop a serialization process
|
class |
SerializationException
General exception for serialization problems
|
class |
SerializationSimulationException
Exception raised when an importing simulation ends
|
Modifier and Type | Method and Description |
---|---|
boolean |
SerializationConfig.IChannelFilter.accept(String channelId) |
void |
FileCopyTransactionObserver.afterCommit() |
void |
FileCopyTransactionObserver.afterRollback() |
boolean |
FileCopyTransactionObserver.beforeCommit() |
void |
FileCopyTransactionObserver.beforeRollback() |
void |
ISerializationManager2.beginDeserializeChannel(DeserializationContext deserializationContext)
Deserialize a channel from a xml file asynchronously.
|
void |
SerializationManager2.beginDeserializeChannel(DeserializationContext deserializationContext) |
void |
ISerializationManager2.beginDeserializeServiceInstanceContent(DeserializationContext deserializationContext,
String serviceInstanceId)
Deserialize the contents of a
ServiceInstanceConfig from a xml file asynchronously. |
void |
SerializationManager2.beginDeserializeServiceInstanceContent(DeserializationContext deserializationContext,
String serviceInstanceId) |
void |
ISerializationManager2.beginSerializeChannel(SerializationContext serializationContext)
Serialize a channel to a xml file asynchronously.
|
void |
SerializationManager2.beginSerializeChannel(SerializationContext serializationContext) |
SerializationMessageConfigNode |
ISerializationMessageConfigNodeBuilder.build() |
String |
ISerializationManager.deserialize(SessionConfig sessionConfig,
DeserializationConfig deserializationConfig,
Document importDocument,
ITransaction transaction) |
String |
SerializationManager.deserialize(SessionConfig sessionConfig,
DeserializationConfig deserializationConfig,
Document importDocument,
ITransaction transaction) |
protected void |
SerializationManager.deserializeAccessControlLists(SessionConfig sessionConfig,
DeserializationConfig deserializationConfig,
Document importDocument,
boolean onlyAddSimpleAcls,
ITransaction transaction) |
String |
ISerializationManager2.deserializeChannel(DeserializationContext deserializationContext)
Deserialize a channel from a xml file.
|
String |
SerializationManager2.deserializeChannel(DeserializationContext deserializationContext) |
protected String |
SerializationManager.deserializeChannels(SessionConfig sessionConfig,
DeserializationConfig deserializationConfig,
Document importDocument,
ITransaction transaction) |
protected void |
SerializationManager.deserializeChannelsSecondPass(SessionConfig sessionConfig,
DeserializationConfig deserializationConfig,
Document importDocument,
ITransaction transaction) |
protected void |
SerializationManager.deserializeCss(SessionConfig sessionConfig,
DeserializationConfig deserializationConfig,
Document importDocument,
ITransaction transaction) |
protected void |
SerializationManager.deserializeLocalGroups(SessionConfig sessionConfig,
DeserializationConfig deserializationConfig,
Document importDocument,
ITransaction transaction) |
void |
ISerializationManager2.deserializePage(DeserializationContext deserializationContext,
String pageId,
boolean setupSerializationContext,
boolean checkUnresolvedDependencies)
Deserialize a page from a xml file.
|
void |
SerializationManager2.deserializePage(DeserializationContext deserializationContext,
String pageId,
boolean setupSerializationContext,
boolean checkUnresolvedDependencies) |
protected void |
SerializationManager.deserializePages(SessionConfig sessionConfig,
DeserializationConfig deserializationConfig,
Document importDocument,
ITransaction transaction) |
protected void |
SerializationManager.deserializePageServiceInterfaceInstances(SessionConfig sessionConfig,
DeserializationConfig deserializationConfig,
Document importDocument,
ITransaction transaction) |
protected void |
SerializationManager.deserializePageTemplates(SessionConfig sessionConfig,
DeserializationConfig deserializationConfig,
Document importDocument,
boolean firstDeserialization,
ITransaction transaction) |
protected void |
SerializationManager.deserializePageTemplateServiceInterfaceInstances(SessionConfig sessionConfig,
DeserializationConfig deserializationConfig,
Document importDocument,
ITransaction transaction) |
protected void |
SerializationManager.deserializeServiceInstanceDependencies(SessionConfig sessionConfig,
DeserializationConfig deserializationConfig,
Document importDocument,
ITransaction transaction) |
protected void |
SerializationManager.deserializeServiceInstances(SessionConfig sessionConfig,
DeserializationConfig deserializationConfig,
Document importDocument,
ITransaction transaction) |
protected void |
SerializationManager.deserializeServiceInterfaceInstances(SessionConfig sessionConfig,
DeserializationConfig deserializationConfig,
Document importDocument,
boolean isTemplate,
ITransaction transaction) |
protected void |
SerializationManager.deserializeStyles(SessionConfig sessionConfig,
DeserializationConfig deserializationConfig,
Document importDocument,
ITransaction transaction) |
protected void |
SerializationManager.deserializeTemplateChannelLinks(SessionConfig sessionConfig,
DeserializationConfig deserializationConfig,
Document importDocument,
ITransaction transaction) |
protected void |
SerializationManager.loadChannelCssIdsRecursively(SessionConfig sessionConfig,
SerializationConfig serializationConfig,
String channelId,
HashMap<String,String> cssIdMap,
ITransaction transaction) |
protected void |
SerializationManager.loadPageCssIdsRecursively(SessionConfig sessionConfig,
SerializationConfig serializationConfig,
String channelId,
HashMap<String,String> cssIdMap,
ITransaction transaction) |
void |
ExternalDependencyLocalizer.localizeMessage(Dependency dependency) |
void |
DeserializationContext.persistAllDependentConfigs() |
void |
DeserializationContext.persistDependentConfigs(String dependencyKey) |
void |
BaseSerializationContext.sendProgressFinalNotification(String message,
ProgressConfig.Type type) |
void |
BaseSerializationContext.sendProgressNotification(Document messageDoc,
String styleFilename,
ProgressConfig.Type type) |
void |
BaseSerializationContext.sendProgressNotification(String message,
ProgressConfig.Type type,
String innerProgressId) |
OutputStream |
ISerializationManager.serialize(SessionConfig sessionConfig,
SerializationConfig serializationConfig,
OutputStream outputStream,
ITransaction transaction) |
OutputStream |
SerializationManager.serialize(SessionConfig sessionConfig,
SerializationConfig serializationConfig,
OutputStream outputStream,
ITransaction transaction) |
protected void |
SerializationManager.serializeAccessControlLists(SessionConfig sessionConfig,
SerializationConfig serializationConfig,
OutputStream outputStream,
ITransaction transaction) |
void |
ISerializationManager2.serializeChannel(SerializationContext serializationContext)
Serialize a channel to a xml file.
|
void |
SerializationManager2.serializeChannel(SerializationContext serializationContext) |
protected void |
SerializationManager.serializeChannelAccessControlListRecursively(SessionConfig sessionConfig,
SerializationConfig serializationConfig,
String channelId,
OutputStream outputStream,
ITransaction transaction) |
protected void |
SerializationManager.serializeChannelLocalGroupAccessControlListRecursively(SessionConfig sessionConfig,
SerializationConfig serializationConfig,
String channelId,
OutputStream outputStream,
ITransaction transaction) |
protected void |
SerializationManager.serializeChannelLocalGroupsRecursively(SessionConfig sessionConfig,
SerializationConfig serializationConfig,
String channelId,
OutputStream outputStream,
ITransaction transaction) |
protected void |
SerializationManager.serializeChannelPageAccessControlListRecursively(SessionConfig sessionConfig,
SerializationConfig serializationConfig,
String channelId,
OutputStream outputStream,
ITransaction transaction) |
protected void |
SerializationManager.serializeChannelPagesRecursively(SessionConfig sessionConfig,
SerializationConfig serializationConfig,
String channelId,
OutputStream outputStream,
ITransaction transaction) |
protected void |
SerializationManager.serializeChannelRecursively(SessionConfig sessionConfig,
SerializationConfig serializationConfig,
String channelId,
OutputStream outputStream,
ITransaction transaction) |
protected void |
SerializationManager.serializeChannels(SessionConfig sessionConfig,
SerializationConfig serializationConfig,
OutputStream outputStream,
ITransaction transaction) |
protected void |
SerializationManager.serializeChannelServiceInstanceAccessControlListRecursively(SessionConfig sessionConfig,
SerializationConfig serializationConfig,
String channelId,
OutputStream outputStream,
ITransaction transaction) |
protected void |
SerializationManager.serializeChannelServiceInstancesRecursively(SessionConfig sessionConfig,
SerializationConfig serializationConfig,
String channelId,
OutputStream outputStream,
ITransaction transaction) |
protected void |
SerializationManager.serializeChannelServiceInterfaceInstancesRecursively(SessionConfig sessionConfig,
SerializationConfig serializationConfig,
String channelId,
OutputStream outputStream,
ITransaction transaction) |
protected void |
SerializationManager.serializeChannelTemplateLinks(SessionConfig sessionConfig,
SerializationConfig serializationConfig,
OutputStream outputStream,
ITransaction transaction) |
protected void |
SerializationManager.serializeChannelTemplateLinksRecursively(SessionConfig sessionConfig,
SerializationConfig serializationConfig,
String channelId,
OutputStream outputStream,
ITransaction transaction) |
protected void |
SerializationManager.serializeCss(SessionConfig sessionConfig,
SerializationConfig serializationConfig,
OutputStream outputStream,
ITransaction transaction) |
protected void |
SerializationManager.serializeLocalGroups(SessionConfig sessionConfig,
SerializationConfig serializationConfig,
OutputStream outputStream,
ITransaction transaction) |
void |
ISerializationManager2.serializePage(SerializationContext serializationContext,
String pageId,
boolean setupSerializationContext)
Serialize a page to a xml file.
|
void |
SerializationManager2.serializePage(SerializationContext serializationContext,
String pageId,
boolean setupSerializationContext) |
protected void |
SerializationManager.serializePage(SessionConfig sessionConfig,
String pageId,
OutputStream outputStream,
ITransaction transaction) |
protected void |
SerializationManager.serializePages(SessionConfig sessionConfig,
SerializationConfig serializationConfig,
OutputStream outputStream,
ITransaction transaction) |
protected void |
SerializationManager.serializePageServiceInterfaceInstances(SessionConfig sessionConfig,
String pageId,
OutputStream outputStream,
ITransaction transaction) |
protected void |
SerializationManager.serializeServiceInstance(SessionConfig sessionConfig,
String serviceInstanceId,
OutputStream outputStream,
ITransaction transaction) |
protected void |
SerializationManager.serializeServiceInstanceDependencies(SessionConfig sessionConfig,
SerializationConfig serializationConfig,
OutputStream outputStream,
ITransaction transaction) |
protected void |
SerializationManager.serializeServiceInstanceDependenciesRecursively(SessionConfig sessionConfig,
SerializationConfig serializationConfig,
String channelId,
OutputStream outputStream,
ITransaction transaction) |
protected void |
SerializationManager.serializeServiceInstances(SessionConfig sessionConfig,
SerializationConfig serializationConfig,
OutputStream outputStream,
ITransaction transaction) |
protected void |
SerializationManager.serializeServiceInterfaceInstance(SessionConfig sessionConfig,
String serviceInterfaceInstanceId,
OutputStream outputStream,
ITransaction transaction) |
protected void |
SerializationManager.serializeServiceInterfaceInstances(SessionConfig sessionConfig,
SerializationConfig serializationConfig,
OutputStream outputStream,
ITransaction transaction) |
protected void |
SerializationManager.serializeStyles(SessionConfig sessionConfig,
SerializationConfig serializationConfig,
OutputStream outputStream,
ITransaction transaction) |
void |
BaseSerializationContext.updateProgressBar(int incrementOverallProgress,
int incrementItemProgress,
String itemName) |
void |
BaseSerializationContext.updateProgressBar(int incrementOverallProgress,
String itemName) |
Constructor and Description |
---|
SerializationContext(SessionConfig sessionConfig,
ITransaction transaction,
String rootChannelId,
IDirectory directory,
boolean progressEnabled,
boolean includeContent) |
SerializationContext(SessionConfig sessionConfig,
ITransaction transaction,
String rootChannelId,
IDirectory directory,
boolean progressEnabled,
boolean includeContent,
boolean forExport) |
Modifier and Type | Method and Description |
---|---|
void |
IConfigDeleter.deleteConfig(DeserializationContext deserializationContext,
String configId) |
void |
ConfigDependencyAnalyzer.persist(IConfigPersister configPersister,
boolean firstPersistenceIsRequired) |
boolean |
IConfigPersister.persistConfig(DeserializationContext deserializationContext,
Object config,
boolean firstPersistence)
Performs a config persistance (add or update) operation
|
Modifier and Type | Class and Description |
---|---|
class |
ServiceException
Exception for Services
|
Modifier and Type | Method and Description |
---|---|
void |
IServiceDao.add(ServiceConfig serviceConfig,
ITransaction transaction)
Add the service.
|
void |
ServiceDaoHib.add(ServiceConfig serviceConfig,
ITransaction transaction) |
protected void |
ServiceControllerXml.addServiceInstance(ITransaction portalTransaction) |
protected void |
ServiceControllerXml.addServiceInterfaceInstance(ITransaction portalTransaction) |
void |
GenericService.autoAddDependencies(SessionConfig sessionConfig,
ServiceInstanceConfig config,
ITransaction transaction) |
void |
IService.autoAddDependencies(SessionConfig sessionConfig,
ServiceInstanceConfig config,
ITransaction transaction)
Adds service specific dependencies.
|
default boolean |
IService.checkFileAccess(FileConfig file)
Returns whether the current user has access to the given file.
|
void |
IServiceDao.clearCache()
Clears the caches in this DAO.
|
void |
IServiceManager.clearCache()
Clear the manager cache entries for Services, Service Configs and Service Types.
|
void |
ServiceDaoHib.clearCache() |
void |
ServiceManager.clearCache() |
boolean |
IServiceDao.delete(String serviceId,
ITransaction transaction)
Delete the service.
|
boolean |
ServiceDaoHib.delete(String serviceId,
ITransaction transaction) |
void |
GenericService.deserializeContent(ServiceInstanceDeserializationContext serviceInstanceDeserializationContext) |
void |
IService.deserializeContent(ServiceInstanceDeserializationContext serviceInstanceDeserializationContext)
Deserializes service instance Content.
|
ServiceConfig |
IServiceManager.get(SessionConfig sessionConfig,
String serviceId,
ITransaction transaction)
Get the configuration of the service.
|
ServiceConfig |
ServiceManager.get(SessionConfig sessionConfig,
String serviceId,
ITransaction transaction) |
ServiceConfig |
IServiceDao.get(String serviceId,
ITransaction transaction)
Get the service.
|
ServiceConfig |
ServiceDaoHib.get(String serviceId,
ITransaction transaction) |
ServiceConfig |
IServiceDao.getByBaseUrl(String baseUrl,
ITransaction daoTransaction)
Returns a ServiceConfig by it's baseUrl.
|
ServiceConfig |
ServiceDaoHib.getByBaseUrl(String baseUrl,
ITransaction daoTransaction) |
Node |
IServiceClockDefinitionProvider.getClocks(SessionConfig sessionConfig,
ServiceConfig config,
ITransaction transaction) |
Element |
GenericService.getDefaultServiceInstanceMenu(ServiceInstanceConfig serviceInstance) |
Element |
IService.getDefaultServiceInstanceMenu(ServiceInstanceConfig serviceInstance)
Returns the default service instance menu definition to use for a service instance.
|
Date |
GenericServiceClock.getNextScheduleTime(SessionConfig sessionConfig,
ClockConfig clockConfig,
ITransaction transaction) |
Collection<String> |
IServiceManager.getPreBuiltChannelFiles(SessionConfig sessionConfig,
String serviceId,
ITransaction transaction)
Returns a collection of paths to the pre built channel files for the
specified service.
|
Collection<String> |
ServiceManager.getPreBuiltChannelFiles(SessionConfig sessionConfig,
String serviceId,
ITransaction transaction) |
IService |
IServiceManager.getService(SessionConfig sessionConfig,
String serviceId,
ITransaction transaction)
Get the service.
|
IService |
ServiceManager.getService(SessionConfig sessionConfig,
String serviceId,
ITransaction transaction) |
Collection<ServiceConfig> |
IServiceManager.getServices(SessionConfig sessionConfig,
boolean getInstantiableServicesOnly,
ITransaction transaction)
Get services.
|
Collection<ServiceConfig> |
ServiceManager.getServices(SessionConfig sessionConfig,
boolean getInstantiableServicesOnly,
ITransaction transaction) |
Collection<String> |
IServiceDao.getServicesIds(boolean getInstantiableServicesOnly,
ITransaction transaction)
Get the ids of services.
|
Collection<String> |
ServiceDaoHib.getServicesIds(boolean getInstantiableServicesOnly,
ITransaction transaction) |
ServiceTypeConfig |
ServiceManager.getServiceTypeConfig(SessionConfig sessionConfig,
String serviceType,
ITransaction transaction) |
void |
GenericService.instanceAdded(SessionConfig sessionConfig,
ServiceInstanceConfig config,
ITransaction transaction) |
void |
IService.instanceAdded(SessionConfig sessionConfig,
ServiceInstanceConfig config,
ITransaction transaction)
Called by the service container to indicate that a service instance has
been added.
|
void |
GenericService.instanceDeleted(SessionConfig sessionConfig,
ServiceInstanceConfig config,
ITransaction transaction) |
void |
IService.instanceDeleted(SessionConfig sessionConfig,
ServiceInstanceConfig config,
ITransaction transaction)
Called by the service container to indicate that a service instance is
about to be deleted.
|
void |
GenericService.instanceDeserialized(ServiceInstanceDeserializationContext serviceInstanceDeserializationContext) |
void |
IService.instanceDeserialized(ServiceInstanceDeserializationContext serviceInstanceDeserializationContext)
Called after an service instance is deserialized.
|
void |
GenericService.instanceDeserialized(SessionConfig sessionConfig,
String serviceInstanceId,
DeserializationConfig deserializationConfig,
Node accessControlListNode,
ITransaction transaction) |
void |
IService.instanceDeserialized(SessionConfig sessionConfig,
String serviceInstanceId,
DeserializationConfig deserializationConfig,
Node accessControlListNode,
ITransaction transaction)
Called after an service instance is deserialized.
|
void |
IService.instanceLoaded(ServiceInstanceConfig config)
Deprecated.
Since 11.2.0 because this method was never called and may be removed in the future.
|
void |
GenericService.instanceMoved(SessionConfig sessionConfig,
ServiceInstanceConfig serviceInstance,
IPortalBaseFolder oldWebRootFolder,
IPortalBaseFolder newWebRootFolder,
ITransaction transaction) |
void |
IService.instanceMoved(SessionConfig sessionConfig,
ServiceInstanceConfig serviceInstance,
IPortalBaseFolder oldWebRootFolder,
IPortalBaseFolder newWebRootFolder,
ITransaction transaction)
Called to indicate the given service instance has been moved from a
web root base folder to another one. |
void |
GenericService.instanceMoved(SessionConfig sessionConfig,
ServiceInstanceConfig serviceInstance,
IWebsite oldWebsite,
IWebsite newWebsite,
ITransaction transaction) |
void |
IService.instanceMoved(SessionConfig sessionConfig,
ServiceInstanceConfig serviceInstance,
IWebsite oldWebsite,
IWebsite newWebsite,
ITransaction transaction)
Called to indicate the given service instance has been moved from a
website to another one. |
void |
GenericService.instanceSerialized(ServiceInstanceSerializationContext serviceInstanceSerializationContext) |
void |
IService.instanceSerialized(ServiceInstanceSerializationContext serviceInstanceSerializationContext)
Called after the serialization of a service instance.
|
void |
GenericService.instanceSerialized(SessionConfig sessionConfig,
String serviceInstanceId,
OutputStream outputStream,
ITransaction transaction) |
void |
IService.instanceSerialized(SessionConfig sessionConfig,
String serviceInstanceId,
OutputStream outputStream,
ITransaction transaction)
Called after the serialization of a service instance.
|
void |
IService.instanceUnloaded(ServiceInstanceConfig config)
Deprecated.
Since 11.2.0 because this method was never called and may be removed in the future.
|
void |
GenericService.load(ServiceConfig config) |
void |
IService.load(ServiceConfig config)
Called by the service container to indicate to a service that the service
is being activated.
|
void |
GenericService.postRegister(SessionConfig sessionConfig,
ServiceConfig serviceConfig,
ITransaction transaction) |
void |
IService.postRegister(SessionConfig sessionConfig,
ServiceConfig serviceConfig,
ITransaction transaction)
Called by the service manager after a service definition is registered.
|
void |
GenericService.postUnregister(SessionConfig sessionConfig,
ITransaction transaction) |
void |
IService.postUnregister(SessionConfig sessionConfig,
ITransaction transaction)
Called by the service manager after a service has been unregistered.
|
void |
GenericService.preRegister(SessionConfig sessionConfig,
Node serviceXmlNode,
ITransaction transaction) |
void |
IService.preRegister(SessionConfig sessionConfig,
Node serviceXmlNode,
ITransaction transaction)
Called by the service manager when a service definition is about to be
registered.
|
void |
GenericService.preUnregister(SessionConfig sessionConfig,
ITransaction transaction) |
void |
IService.preUnregister(SessionConfig sessionConfig,
ITransaction transaction)
Called by the service manager when a service is about to be unregistered.
|
protected void |
ServiceControllerXml.register(Node methodNode,
ITransaction portalTransaction) |
void |
IServiceManager.register(SessionConfig sessionConfig,
String serviceConfigPath,
ITransaction transaction)
Register the service.
|
void |
ServiceManager.register(SessionConfig sessionConfig,
String serviceConfigPath,
ITransaction transaction)
Service
|
protected void |
ServiceControllerXml.registerServiceTypes(Node methodNode,
ITransaction portalTransaction) |
void |
IServiceManager.registerServiceTypes(SessionConfig sessionConfig,
String serviceTypesConfigPath,
ITransaction transaction)
Register the types of service.
|
void |
ServiceManager.registerServiceTypes(SessionConfig sessionConfig,
String serviceTypesConfigPath,
ITransaction transaction) |
void |
GenericService.unload(ServiceConfig config) |
void |
IService.unload(ServiceConfig config)
Called by the service container to indicate to a service that the it is
being de-activated.
|
void |
IServiceManager.unregister(SessionConfig sessionConfig,
String serviceId,
ITransaction transaction)
Unregister a service.
|
void |
ServiceManager.unregister(SessionConfig sessionConfig,
String serviceId,
ITransaction transaction) |
void |
IServiceManager.unregisterServiceType(SessionConfig sessionConfig,
String typeId,
ITransaction transaction)
Unregister the service´s type.
|
void |
ServiceManager.unregisterServiceType(SessionConfig sessionConfig,
String typeId,
ITransaction transaction) |
void |
IServiceDao.update(ServiceConfig serviceConfig,
ITransaction transaction)
Update the service.
|
void |
ServiceDaoHib.update(ServiceConfig serviceConfig,
ITransaction transaction) |
Constructor and Description |
---|
ServiceControllerXml(HttpServletRequest request,
HttpServletResponse response,
PageContext pageContext) |
ServiceRenderDataChangedEvent(SessionConfig sessionConfig,
Collection<ServiceConfig> servicesChanged,
ITransaction transaction)
Creates a new event of change for the given services.
|
Modifier and Type | Method and Description |
---|---|
String |
IServiceAclManager.add(SessionConfig sessionConfig,
ServiceConfig serviceConfig,
ITransaction transaction)
Add an Access Control List to the Service.
|
String |
ServiceAclManager.add(SessionConfig sessionConfig,
ServiceConfig serviceConfig,
ITransaction transaction) |
AccessControlList |
IServiceAclManager.get(SessionConfig sessionConfig,
String serviceId,
ITransaction transaction)
Get the Service's Access Control List.
|
AccessControlList |
ServiceAclManager.get(SessionConfig sessionConfig,
String serviceId,
ITransaction transaction) |
protected AccessControlList |
ServiceAclManager.getAclInternal(SessionConfig sessionConfig,
String serviceId,
ITransaction transaction) |
static int[] |
ServicePermissions.getImplies() |
protected int |
ServiceAclManager.getRequiredPermissions() |
static int |
ServicePermissions.getRequiredPermissions() |
void |
IServiceAclManager.update(SessionConfig sessionConfig,
String serviceId,
AccessControlList acl,
ITransaction transaction)
Update the Service's ACL.
|
void |
ServiceAclManager.update(SessionConfig sessionConfig,
String serviceId,
AccessControlList acl,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
SerializationMessageConfigNode |
IServiceSerializationManager.getSerializationMessageConfigNode(BaseSerializationContext baseSerializationContext,
ServiceConfig serviceConfig)
Get a
SerializationMessageConfigNode object containing fully recursive information about a service. |
SerializationMessageConfigNode |
ServiceSerializationManager.getSerializationMessageConfigNode(BaseSerializationContext baseSerializationContext,
ServiceConfig serviceConfig) |
Modifier and Type | Method and Description |
---|---|
void |
IServiceTypeDao.addOrUpdate(ServiceTypeConfig definition,
ITransaction transaction)
Add or update the service's type.
|
void |
ServiceTypeDaoJdbc.addOrUpdate(ServiceTypeConfig definition,
ITransaction transaction) |
void |
IServiceTypeDao.delete(String serviceType,
ITransaction transaction)
Delete the service's type.
|
void |
ServiceTypeDaoJdbc.delete(String serviceType,
ITransaction transaction) |
ServiceTypeConfig |
IServiceTypeDao.get(String serviceType,
ITransaction transaction)
Get the service's type.
|
ServiceTypeConfig |
ServiceTypeDaoJdbc.get(String serviceType,
ITransaction transaction) |
Modifier and Type | Class and Description |
---|---|
class |
ServiceContainerException
Generic exception thrown by the service container.
|
Modifier and Type | Method and Description |
---|---|
void |
ServiceContainerRenderResponse.applyStyle(int applyRule,
String styleFile) |
void |
ServiceContainerRequestDispatcher.forward(IServiceInterfaceRenderRequest renderRequest,
IServiceInterfaceRenderResponse renderResponse) |
protected String |
ServiceContainer.getAccessDeniedOutput(ServiceContainerRenderRequest renderRequest,
ITransaction portalTransaction) |
int |
ServiceContainerRenderResponse.getApplyStyleRule() |
String |
ServiceContainerUrl.getOpenScript(IServiceInterfaceRequest request,
OpenRuntimeInterfaceBehavior behavior,
String controlContainerFormName,
ITransaction transaction)
Deprecated.
Returns the script for opening this URL based on the provided parameters.
|
String |
ServiceContainerUrl.getOpenScript(IServiceInterfaceRequest request,
String controlContainerFormName,
ITransaction transaction)
Deprecated.
Returns the script for opening this URL based on the provided parameters.
|
String |
ServiceContainerHttpServletRequest.getServiceInterfaceInstanceParameter(String name,
String serviceInterfaceInstanceId) |
Enumeration<String> |
ServiceContainerHttpServletRequest.getServiceInterfaceInstanceParameterNames(String serviceInterfaceInstanceId) |
Map<String,String[]> |
ServiceContainerHttpServletRequest.getServiceInterfaceInstanceParameters(String serviceInterfaceInstanceId) |
String[] |
ServiceContainerHttpServletRequest.getServiceInterfaceInstanceParameterValues(String name,
String serviceInterfaceInstanceId) |
String |
ServiceContainerRenderResponse.getStyleFile() |
String |
ServiceContainerRenderResponse.getStyleId() |
String |
ServiceContainerUrl.getUrl()
Deprecated.
Since 4.0.7 this method was replaced by
ServiceContainerUrl.toString() method, so this
interface uses the same method as specified in the PortletURL interface. |
String |
ServiceContainerUrl.getWindowOpen(ITransaction transaction)
Deprecated.
since 8.2.0 replaced by
ServiceContainerUrl.getOpenScript(IServiceInterfaceRequest, String, ITransaction) |
String |
ReplaceInterfacesStorage.handleReplaceInterfaceOperations(String currentInterfaceInstanceId,
String[] replaceInterfaceOperations,
PortalRequestParameters parameters)
Handles the replace interface commands.
|
void |
ServiceContainerRequestDispatcher.include(IServiceInterfaceRenderRequest renderRequest,
IServiceInterfaceRenderResponse renderResponse) |
static String |
ServiceContainerRequestFunctionMapper.localize(String[] args)
Resolves the string.
|
ITransaction |
ServiceContainer.processServiceInterfaceInstanceAction(ServiceContainerActionRequest actionRequest,
ServiceContainerActionResponse actionResponse,
ITransaction portalTransaction)
Processes the action for a service interface instance.
|
String |
ServiceContainer.renderServiceInterfaceInstance(ServiceContainerRenderRequest renderRequest,
ServiceContainerRenderResponse renderResponse,
ITransaction portalTransaction)
Renders a single service interface instance.
|
void |
ServiceContainerRenderResponse.setApplyStyleRule(int applyRule) |
void |
ServiceContainerHttpServletRequest.setServiceInterfaceInstanceFileParameters(String serviceInterfaceInstanceId,
Map<String,FileParameter> parameters) |
void |
ServiceContainerHttpServletRequest.setServiceInterfaceInstanceParameters(String serviceInterfaceInstanceId,
Map<String,String[]> parameters) |
void |
ServiceContainerRenderResponse.setStyleId(String styleId) |
Modifier and Type | Class and Description |
---|---|
class |
ServiceInstanceDuplicatedInChannelException
Exception that indicates that there are more than one service instance of the same service id in a channel.
|
Modifier and Type | Method and Description |
---|---|
void |
IServiceInstanceDao.add(ServiceInstanceConfig serviceInstanceConfig,
ITransaction transaction)
Add the service's instance.
|
void |
ServiceInstanceDaoJdbc.add(ServiceInstanceConfig serviceInstanceConfig,
ITransaction transaction) |
String |
IServiceInstanceManager.add(SessionConfig sessionConfig,
ServiceInstanceConfig serviceInstanceConfig,
boolean fromDeserialization,
ITransaction transaction) |
String |
ServiceInstanceManager.add(SessionConfig sessionConfig,
ServiceInstanceConfig serviceInstanceConfig,
boolean fromDeserialization,
ITransaction transaction) |
String |
IServiceInstanceManager.add(SessionConfig sessionConfig,
ServiceInstanceConfig serviceInstanceConfig,
ITransaction transaction)
Add a service instance.
|
String |
ServiceInstanceManager.add(SessionConfig sessionConfig,
ServiceInstanceConfig serviceInstanceConfig,
ITransaction transaction) |
void |
IServiceInstanceManager.addOrUpdate(SessionConfig sessionConfig,
ServiceInstanceConfig serviceInstanceConfig,
boolean fromDeserialization,
ITransaction transaction) |
void |
ServiceInstanceManager.addOrUpdate(SessionConfig sessionConfig,
ServiceInstanceConfig serviceInstanceConfig,
boolean fromDeserialization,
ITransaction transaction) |
void |
IServiceInstanceManager.addOrUpdate(SessionConfig sessionConfig,
ServiceInstanceConfig serviceInstanceConfig,
ITransaction transaction)
Add or Update a Service Instance, depending on its previous existence.
|
void |
ServiceInstanceManager.addOrUpdate(SessionConfig sessionConfig,
ServiceInstanceConfig serviceInstanceConfig,
ITransaction transaction) |
void |
IServiceInstanceDao.addServiceInstanceDependency(ServiceInstanceDependencyConfig serviceInstanceDependencyConfig,
ITransaction transaction)
Add the given service instance dependency to the persistence.
|
void |
ServiceInstanceDaoHib.addServiceInstanceDependency(ServiceInstanceDependencyConfig serviceInstanceDependencyConfig,
ITransaction transaction) |
void |
ServiceInstanceDaoJdbc.addServiceInstanceDependency(ServiceInstanceDependencyConfig serviceInstanceDependencyConfig,
ITransaction transaction) |
void |
IServiceInstanceManagerSPI.clearAppropriateAutoAdministrationsPerPageIdCache(ServiceInstanceConfig serviceInstanceConfig,
ITransaction transaction)
Clears the entry in the cacheAutoAdministrationPageIds cache if the service config is an instance of a an auto-administration service.
|
void |
ServiceInstanceManager.clearAppropriateAutoAdministrationsPerPageIdCache(ServiceInstanceConfig serviceInstanceConfig,
ITransaction transaction) |
void |
IServiceInstanceManager.clearServiceInstanceCache(SessionConfig sessionConfig,
String serviceInstanceId,
ITransaction transaction)
Remove the object cache entries for the specificed Service Instance also clearing it's ACL cache.
|
void |
ServiceInstanceManager.clearServiceInstanceCache(SessionConfig sessionConfig,
String serviceInstanceId,
ITransaction transaction) |
void |
ServiceInstanceManager.clearServiceInstanceMemoryCache(String serviceInstanceId,
ITransaction transaction)
Clears the service instance information cached in this manager.
|
void |
IServiceInstanceManager.delete(SessionConfig sessionConfig,
String serviceInstanceId,
boolean force,
ITransaction transaction)
Delete a service instance.
|
void |
ServiceInstanceManager.delete(SessionConfig sessionConfig,
String serviceInstanceId,
boolean force,
ITransaction transaction) |
void |
IServiceInstanceDao.delete(String serviceInstanceId,
ITransaction transaction)
Delete the service's instance.
|
void |
ServiceInstanceDaoHib.delete(String serviceInstanceId,
ITransaction transaction) |
void |
ServiceInstanceDaoJdbc.delete(String serviceInstanceId,
ITransaction transaction) |
void |
ServiceInstanceManager.deleteConfig(DeserializationContext deserializationContext,
String configId) |
void |
IServiceInstanceManager.deleteCustomProperties(SessionConfig sessionConfig,
String serviceInstanceId,
ITransaction transaction)
Deletes all service instance´s custom properties
|
void |
ServiceInstanceManager.deleteCustomProperties(SessionConfig sessionConfig,
String serviceInstanceId,
ITransaction transaction) |
void |
IServiceInstanceDao.deleteCustomProperties(String serviceInstanceId,
ITransaction daoTransaction)
Delete all service instance´s custom properties.
|
void |
ServiceInstanceDaoJdbc.deleteCustomProperties(String serviceInstanceId,
ITransaction daoTransaction) |
void |
IServiceInstanceManager.deleteCustomProperty(SessionConfig sessionConfig,
String serviceInstanceId,
String name,
ITransaction transaction)
Deletes a service instance custom property
|
void |
ServiceInstanceManager.deleteCustomProperty(SessionConfig sessionConfig,
String serviceInstanceId,
String name,
ITransaction transaction) |
void |
IServiceInstanceDao.deleteCustomProperty(String serviceInstanceId,
String name,
ITransaction daoTransaction)
Delete a service instance´s custom property.
|
void |
ServiceInstanceDaoJdbc.deleteCustomProperty(String serviceInstanceId,
String name,
ITransaction daoTransaction) |
void |
ServiceInstanceConfig.deserialize(Node serviceInstanceNode) |
void |
ServiceInstanceDependencyConfig.deserialize(Node serviceInstanceDependencyNode) |
String |
IServiceInstanceManager.deserialize(SessionConfig sessionConfig,
DeserializationConfig deserializationConfig,
Node serviceInstanceNode,
ITransaction transaction) |
String |
ServiceInstanceManager.deserialize(SessionConfig sessionConfig,
DeserializationConfig deserializationConfig,
Node serviceInstanceNode,
ITransaction transaction) |
void |
IServiceInstanceManager.deserializeCustomProperties(SessionConfig sessionConfig,
DeserializationConfig deserializationConfig,
Node serviceInstanceCustomPropertiesNode,
ITransaction transaction)
Deprecated.
Since 6.2.0 this method is no longer used and may be removed in a future version.
|
void |
ServiceInstanceManager.deserializeCustomProperties(SessionConfig sessionConfig,
DeserializationConfig deserializationConfig,
Node serviceInstanceCustomPropertiesNode,
ITransaction transaction)
Deprecated.
|
String |
IServiceInstanceManager.deserializeDependency(SessionConfig sessionConfig,
DeserializationConfig deserializationConfig,
Node serviceInstanceDependencyNode,
ITransaction transaction)
Deserializes the given dependency
|
String |
ServiceInstanceManager.deserializeDependency(SessionConfig sessionConfig,
DeserializationConfig deserializationConfig,
Node serviceInstanceDependencyNode,
ITransaction transaction) |
protected void |
ServiceInstanceConfig.deserializePropertyBag(Node propertyBagNode) |
boolean |
IServiceInstanceManagerSPI.existsRestShortName(String restShortName,
String serviceInstanceIdToIgnore,
ITransaction transaction)
Verify if a given name exists.
|
boolean |
ServiceInstanceManager.existsRestShortName(String restShortName,
String serviceInstanceIdToIgnore,
ITransaction transaction) |
ServiceInstanceConfig |
IServiceInstanceManager.findServiceInstanceThroughChannelTree(SessionConfig sessionConfig,
String channelId,
String serviceId,
ITransaction transaction)
Searches for a service instance
|
ServiceInstanceConfig |
ServiceInstanceManager.findServiceInstanceThroughChannelTree(SessionConfig sessionConfig,
String channelId,
String serviceId,
ITransaction transaction) |
ServiceInstanceConfig |
IServiceInstanceDao.get(String serviceInstanceId,
ITransaction transaction)
Get the service's instance.
|
ServiceInstanceConfig |
IServiceInstanceManager.get(String serviceInstanceId,
ITransaction transaction)
Get the configuration of the service instance.
|
ServiceInstanceConfig |
ServiceInstanceDaoJdbc.get(String serviceInstanceId,
ITransaction transaction) |
ServiceInstanceConfig |
ServiceInstanceManager.get(String serviceInstanceId,
ITransaction transaction) |
String |
IServiceInstanceMenuItem.getActionJavascript(ServiceInstanceConfig serviceInstance,
Element menuItemDefinition)
Returns the javascript code to be executed when this menu item is triggered by the user.
|
ServiceInstanceConfig |
IServiceInstanceDao.getByRestShortName(String restShortName,
ITransaction transaction)
Get the service's instance by rest short name.
|
ServiceInstanceConfig |
IServiceInstanceManagerSPI.getByRestShortName(String restShortName,
ITransaction transaction)
Get the service's instance by rest short name.
|
ServiceInstanceConfig |
ServiceInstanceDaoJdbc.getByRestShortName(String restShortName,
ITransaction transaction) |
ServiceInstanceConfig |
ServiceInstanceManager.getByRestShortName(String restShortName,
ITransaction transaction) |
List<IChannelChild> |
IServiceInstanceDao.getChannelsChildren(String parentChannelIds,
boolean hideItems,
String serviceId,
IResource resource,
Locale locale,
ITransaction transaction) |
List<IChannelChild> |
ServiceInstanceDaoJdbc.getChannelsChildren(String parentChannelIds,
boolean hideItems,
String serviceId,
IResource resource,
Locale locale,
ITransaction transaction) |
List<IChannelChild> |
IServiceInstanceDao.getChildrenData(String channelId,
int hidePages,
String serviceId,
IResource resource,
Locale locale,
ITransaction transaction) |
List<IChannelChild> |
ServiceInstanceDaoJdbc.getChildrenData(String channelId,
int hidePages,
String serviceId,
IResource resource,
Locale locale,
ITransaction transaction) |
Map<String,String> |
IServiceInstanceManager.getCustomProperties(SessionConfig sessionConfig,
String serviceInstanceId,
ITransaction transaction)
Gets all the custom properties of a specified service instance.
|
Map<String,String> |
ServiceInstanceManager.getCustomProperties(SessionConfig sessionConfig,
String serviceInstanceId,
ITransaction transaction) |
HashMap<String,String> |
IServiceInstanceDao.getCustomProperties(String serviceInstanceId,
ITransaction daoTransaction)
Get all service instance's custom properties.
|
HashMap<String,String> |
ServiceInstanceDaoJdbc.getCustomProperties(String serviceInstanceId,
ITransaction daoTransaction) |
String |
IServiceInstanceManager.getCustomProperty(SessionConfig sessionConfig,
String serviceInstanceId,
String name,
ITransaction transaction)
Returns the specified custom property.
|
String |
ServiceInstanceManager.getCustomProperty(SessionConfig sessionConfig,
String serviceInstanceId,
String name,
ITransaction transaction) |
String |
IServiceInstanceDao.getCustomProperty(String serviceInstanceId,
String name,
ITransaction daoTransaction)
Get service instance´s custom property.
|
String |
ServiceInstanceDaoJdbc.getCustomProperty(String serviceInstanceId,
String name,
ITransaction daoTransaction) |
ServiceInstanceDependencyConfig |
IServiceInstanceManager.getDependency(String serviceInstanceDependencyId,
ITransaction transaction) |
ServiceInstanceDependencyConfig |
ServiceInstanceManager.getDependency(String serviceInstanceDependencyId,
ITransaction transaction) |
Collection<String> |
IServiceInstanceManager.getDependencyIdsByServiceInstanceId(SessionConfig sessionConfig,
String serviceInstanceId,
ITransaction transaction)
Returns the service instance ids that the given service instance id depends on
|
Collection<String> |
ServiceInstanceManager.getDependencyIdsByServiceInstanceId(SessionConfig sessionConfig,
String serviceInstanceId,
ITransaction transaction) |
Collection<String> |
IServiceInstanceDao.getDependencyIdsByServiceInstanceId(String serviceInstanceId,
ITransaction transaction)
Get the ids of all the service instances that the given service instance depends on
|
Collection<String> |
ServiceInstanceDaoJdbc.getDependencyIdsByServiceInstanceId(String serviceInstanceId,
ITransaction transaction) |
Collection<String> |
IServiceInstanceManager.getDependentServiceInstanceIds(SessionConfig sessionConfig,
String serviceInstanceId,
ITransaction transaction) |
Collection<String> |
ServiceInstanceManager.getDependentServiceInstanceIds(SessionConfig sessionConfig,
String serviceInstanceId,
ITransaction transaction) |
Collection<ServiceInstanceConfig> |
IServiceInstanceManager.getDependentServiceInstances(SessionConfig sessionConfig,
String serviceInstanceId,
ITransaction transaction)
Returns the service instances that are dependent on the specified service instance.
|
Collection<ServiceInstanceConfig> |
ServiceInstanceManager.getDependentServiceInstances(SessionConfig sessionConfig,
String serviceInstanceId,
ITransaction transaction) |
Collection<FileTransformation> |
ServiceInstanceManager.getFileTransformations(String serviceInstanceId)
Gets all fileTransformations using an serviceInstance´s id..
|
Collection<String> |
IServiceInstanceManager.getIds(SessionConfig sessionConfig,
ITransaction transaction)
Get the ids of all services instances
|
Collection<String> |
ServiceInstanceManager.getIds(SessionConfig sessionConfig,
ITransaction transaction) |
Collection<String> |
IServiceInstanceManager.getIdsByChannelId(SessionConfig sessionConfig,
String channelId,
ITransaction transaction)
Get the ids of the services instances by passing the channel id.
|
Collection<String> |
ServiceInstanceManager.getIdsByChannelId(SessionConfig sessionConfig,
String channelId,
ITransaction transaction) |
Collection<String> |
IServiceInstanceDao.getIdsByChannelIdAndServiceId(String channelId,
String serviceId,
ITransaction transaction)
Get a list of ids in a given channel and of a given service.
|
Collection<String> |
ServiceInstanceDaoJdbc.getIdsByChannelIdAndServiceId(String channelId,
String serviceId,
ITransaction transaction) |
Collection<String> |
IServiceInstanceManager.getIdsByChannelTree(SessionConfig sessionConfig,
String rootChannelId,
ITransaction transaction)
Get the ids of the services instances of all the channel tree by passing the tree's root channel id.
|
Collection<String> |
ServiceInstanceManager.getIdsByChannelTree(SessionConfig sessionConfig,
String rootChannelId,
ITransaction transaction) |
Collection<String> |
IServiceInstanceManager.getIdsByChannelTreeAndAreaTags(SessionConfig sessionConfig,
String rootChannelId,
Collection<String> areaTags,
ITransaction transaction)
Returns the identifiers of services instances that belong to the channel tree inside the specified root channel,
and contains any of the specified area tags.
|
Collection<String> |
ServiceInstanceManager.getIdsByChannelTreeAndAreaTags(SessionConfig sessionConfig,
String rootChannelId,
Collection<String> areaTags,
ITransaction transaction) |
Collection<String> |
IServiceInstanceManager.getIdsByServiceId(SessionConfig sessionConfig,
String serviceId,
ITransaction transaction)
Get the ids of the services instances by passing the service id.
|
Collection<String> |
ServiceInstanceManager.getIdsByServiceId(SessionConfig sessionConfig,
String serviceId,
ITransaction transaction) |
Collection<String> |
IServiceInstanceDao.getIdsByServiceInstanceAndDependencyType(String serviceInstanceId,
String dependencyType,
ITransaction transaction)
Get the ids of the service instances that the given service instance depends on by the given dependency type.
|
Collection<String> |
ServiceInstanceDaoJdbc.getIdsByServiceInstanceAndDependencyType(String serviceInstanceId,
String dependencyType,
ITransaction transaction) |
Collection<String> |
IServiceInstanceDao.getIdsOfDependentServiceInstances(String serviceInstanceId,
ITransaction transaction)
Get the ids of all service instances that depends on the given service instance.
|
Collection<String> |
ServiceInstanceDaoJdbc.getIdsOfDependentServiceInstances(String serviceInstanceId,
ITransaction transaction) |
String |
IServiceInstanceManagerSPI.getMenuXml(String serviceInstanceId)
Returns the configuration menu in XML for a service instance.
|
String |
ServiceInstanceManager.getMenuXml(String serviceInstanceId) |
ServiceInstanceConfig |
IServiceInstanceManager.getServiceInstanceByDependency(SessionConfig sessionConfig,
String serviceInstanceId,
String dependencyType,
ITransaction transaction)
Get the service instance the given service instance depends on by the given dependency type.
|
ServiceInstanceConfig |
ServiceInstanceManager.getServiceInstanceByDependency(SessionConfig sessionConfig,
String serviceInstanceId,
String dependencyType,
ITransaction transaction) |
ServiceInstanceDependencyConfig |
IServiceInstanceDao.getServiceInstanceDependency(String dependencyId,
ITransaction transaction)
Get a
ServiceInstanceDependencyConfig by the dependencyId. |
ServiceInstanceDependencyConfig |
ServiceInstanceDaoHib.getServiceInstanceDependency(String dependencyId,
ITransaction transaction) |
ServiceInstanceDependencyConfig |
ServiceInstanceDaoJdbc.getServiceInstanceDependency(String dependencyId,
ITransaction transaction) |
Collection<ServiceInstanceConfig> |
IServiceInstanceManager.getServiceInstancesByDependency(SessionConfig sessionConfig,
String serviceInstanceId,
String dependencyType,
ITransaction transaction)
Returns the service instances the given service instance depends on by the given dependency type.
|
Collection<ServiceInstanceConfig> |
ServiceInstanceManager.getServiceInstancesByDependency(SessionConfig sessionConfig,
String serviceInstanceId,
String dependencyType,
ITransaction transaction) |
Collection<String> |
IServiceInstanceDao.getServiceInstancesIdsByAutoAdminPageId(String pageId,
ITransaction transaction)
Returns a collection of serviceInstanceIds that contain the pageid as its auto administration page.
|
Collection<String> |
IServiceInstanceManagerSPI.getServiceInstancesIdsByAutoAdminPageId(String pageId,
ITransaction transaction)
Returns the service instance ids that use the indicated page id as the auto administration page.
|
Collection<String> |
ServiceInstanceDaoJdbc.getServiceInstancesIdsByAutoAdminPageId(String pageId,
ITransaction transaction) |
Collection<String> |
ServiceInstanceManager.getServiceInstancesIdsByAutoAdminPageId(String pageId,
ITransaction transaction) |
boolean |
IServiceInstanceManagerSPI.isGoogleAnalyticsEnabled(ServiceInstanceConfig serviceInstanceConfig)
Returns whether the Google Analytics is enable in the given service instance.
|
boolean |
ServiceInstanceManager.isGoogleAnalyticsEnabled(ServiceInstanceConfig serviceInstanceConfig) |
boolean |
ServiceInstanceManager.isGoogleAnalyticsEnabled(String propertyBagId)
Returns whether the Google Analytics is enable in the given property bag.
|
Boolean |
IServiceInstanceManagerSPI.isGoogleAnalyticsEnabledLocal(ServiceInstanceConfig serviceInstanceConfig)
Returns whether the Google Analytics is enable in the given service instance or
null if this property is inherited. |
Boolean |
ServiceInstanceManager.isGoogleAnalyticsEnabledLocal(ServiceInstanceConfig serviceInstanceConfig) |
Boolean |
ServiceInstanceManager.isGoogleAnalyticsEnabledLocal(String propertyBagId)
Returns whether the Google Analytics is enable in the given property bag or
null if this property is inherited. |
protected boolean |
ServiceInstanceConfig.mayUseFriendlyId(String friendlyId) |
void |
IServiceInstanceDao.removeServiceInstanceDependencies(String dependentServiceInstanceId,
String dependencyType,
ITransaction transaction)
Remove the service instance dependencies that matches the dependent service instance id and dependency type given.
|
void |
ServiceInstanceDaoHib.removeServiceInstanceDependencies(String dependentServiceInstanceId,
String dependencyType,
ITransaction transaction) |
void |
ServiceInstanceDaoJdbc.removeServiceInstanceDependencies(String dependentServiceInstanceId,
String dependencyType,
ITransaction transaction) |
void |
ServiceInstanceConfig.serialize(SessionConfig sessionConfig,
OutputStream outputStream,
ITransaction transaction) |
void |
IServiceInstanceManager.serialize(SessionConfig sessionConfig,
String serviceInstanceId,
OutputStream outputStream,
ITransaction transaction) |
void |
ServiceInstanceManager.serialize(SessionConfig sessionConfig,
String serviceInstanceId,
OutputStream outputStream,
ITransaction transaction) |
void |
IServiceInstanceManager.serializeCustomProperties(SessionConfig sessionConfig,
String serviceInstanceId,
OutputStream outputStream,
ITransaction transaction)
Serializes the custom properties of a service instance into the specified outputstream.
|
void |
ServiceInstanceManager.serializeCustomProperties(SessionConfig sessionConfig,
String serviceInstanceId,
OutputStream outputStream,
ITransaction transaction) |
void |
IServiceInstanceManager.serializeDependencies(SessionConfig sessionConfig,
String serviceInstanceId,
OutputStream outputStream,
ITransaction transaction)
Serializes the dependencies of a service instance
|
void |
ServiceInstanceManager.serializeDependencies(SessionConfig sessionConfig,
String serviceInstanceId,
OutputStream outputStream,
ITransaction transaction) |
void |
IServiceInstanceManagerSPI.serializeFileTransformations(SessionConfig sessionConfig,
String serviceInstanceId,
OutputStream outputStream,
ITransaction transaction)
serialize a fileTransformation to be used in a new channel created from channel template.
|
void |
ServiceInstanceManager.serializeFileTransformations(SessionConfig sessionConfig,
String serviceInstanceId,
OutputStream outputStream,
ITransaction transaction) |
void |
IServiceInstanceManager.setCustomProperties(SessionConfig sessionConfig,
String serviceInstanceId,
Map<String,String> propertiesTable,
ITransaction transaction)
Receives a Map with one or more properties to be set for the given
service instance.
|
void |
ServiceInstanceManager.setCustomProperties(SessionConfig sessionConfig,
String serviceInstanceId,
Map<String,String> propertiesTable,
ITransaction transaction) |
void |
IServiceInstanceManager.setCustomProperty(SessionConfig sessionConfig,
String serviceInstanceId,
String name,
String value,
ITransaction transaction)
Set a custom property for the given service instance.
|
void |
ServiceInstanceManager.setCustomProperty(SessionConfig sessionConfig,
String serviceInstanceId,
String name,
String value,
ITransaction transaction) |
void |
IServiceInstanceDao.setCustomProperty(String serviceInstanceId,
String name,
String value,
ITransaction daoTransaction)
Set service instance´s custom property.
|
void |
ServiceInstanceDaoJdbc.setCustomProperty(String serviceInstanceId,
String name,
String value,
ITransaction daoTransaction) |
void |
IServiceInstanceManagerSPI.setGoogleAnalyticsEnable(Boolean enabled,
ServiceInstanceConfig serviceInstanceConfig)
Sets whether the Google Analytics is enable in the given service instance.
|
void |
ServiceInstanceManager.setGoogleAnalyticsEnable(Boolean enabled,
ServiceInstanceConfig serviceInstanceConfig) |
void |
ServiceInstanceManager.setGoogleAnalyticsEnable(Boolean enabled,
String propertyBagId)
Sets whether the Google Analytics is enable in the given property bag.
|
void |
IServiceInstanceManager.setServiceInstanceDependency(ServiceInstanceDependencyConfig serviceInstanceDependencyConfig,
ITransaction transaction)
Sets the given service instance dependency.
|
void |
ServiceInstanceManager.setServiceInstanceDependency(ServiceInstanceDependencyConfig serviceInstanceDependencyConfig,
ITransaction transaction) |
void |
IServiceInstanceDao.update(ServiceInstanceConfig serviceInstanceConfig,
ITransaction transaction)
Update the service's instance.
|
void |
ServiceInstanceDaoJdbc.update(ServiceInstanceConfig serviceInstanceConfig,
ITransaction transaction) |
void |
IServiceInstanceManager.update(SessionConfig sessionConfig,
ServiceInstanceConfig serviceInstanceConfig,
ITransaction transaction)
Update a service instance.
|
void |
ServiceInstanceManager.update(SessionConfig sessionConfig,
ServiceInstanceConfig serviceInstanceConfig,
ITransaction transaction) |
void |
ServiceInstanceManager.validateDuplicateInstanceInChannel(ServiceInstanceConfig serviceInstanceConfig,
ITransaction transaction)
Validates that there are no duplicates of a service instance in the same channel.
|
Constructor and Description |
---|
ServiceInstanceRenderDataChangedEvent(SessionConfig sessionConfig,
Collection<ServiceInstanceConfig> serviceInstancesChanged,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
String |
IServiceInstanceAclManager.add(SessionConfig sessionConfig,
ServiceInstanceConfig serviceInstanceConfig,
ITransaction transaction)
Add an Access Control List to the Service Instance.
|
String |
ServiceInstanceAclManager.add(SessionConfig sessionConfig,
ServiceInstanceConfig serviceInstanceConfig,
ITransaction transaction) |
void |
IServiceInstanceAclManager.checkRequiredPermissions(AccessControlList acl)
Checks if the required permissions were given for someone.
|
void |
ServiceInstanceAclManager.checkRequiredPermissions(AccessControlList acl) |
boolean |
IServiceInstanceAclManager.checkServiceInstancePermission(SessionConfig sessionConfig,
String serviceInstanceId,
String permissionId,
ITransaction transaction)
Checks if an user has a permission on a service instance.
|
boolean |
ServiceInstanceAclManager.checkServiceInstancePermission(SessionConfig sessionConfig,
String serviceInstanceId,
String permissionId,
ITransaction transaction) |
boolean |
IServiceInstanceAclManager.checkServiceInstancePermission(SessionConfig sessionConfig,
String userId,
String serviceInstanceId,
String permissionId,
ITransaction transaction)
Checks if an user has a permission on a service instance.
|
boolean |
ServiceInstanceAclManager.checkServiceInstancePermission(SessionConfig sessionConfig,
String userId,
String serviceInstanceId,
String permissionId,
ITransaction transaction) |
void |
IServiceInstanceAclManager.clearCache(SessionConfig sessionConfig,
String serviceInstanceId,
ITransaction transaction)
Reloads the ACL associated with the given serviceInstanceId.
|
void |
ServiceInstanceAclManager.clearCache(SessionConfig sessionConfig,
String serviceInstanceId,
ITransaction transaction) |
AccessControlList |
IServiceInstanceAclManager.get(SessionConfig sessionConfig,
String serviceInstanceId,
ITransaction transaction)
Get the Service Instance's Access Control List.
|
AccessControlList |
ServiceInstanceAclManager.get(SessionConfig sessionConfig,
String serviceInstanceId,
ITransaction transaction) |
protected AccessControlList |
ServiceInstanceAclManager.getAclInternal(SessionConfig sessionConfig,
String serviceInstanceId,
ITransaction transaction) |
int[] |
ServiceInstancePermissions.getImplies() |
HashMap<Integer,Integer> |
ServiceInstancePermissions.getInheritPermissionsMap() |
ServiceInstancePermissions |
IServiceInstanceAclManager.getPermissions(SessionConfig sessionConfig,
String serviceId,
ITransaction transaction) |
ServiceInstancePermissions |
ServiceInstanceAclManager.getPermissions(SessionConfig sessionConfig,
String serviceId,
ITransaction transaction) |
String |
ServiceInstancePermissions.getPermissionsDefinition(Locale locale) |
String |
ServiceInstancePermissions.getRecursiveImplies(IPermission permission) |
protected int |
ServiceInstanceAclManager.getRequiredPermissions() |
void |
IServiceInstanceAclManager.update(SessionConfig sessionConfig,
String serviceInstanceId,
AccessControlList acl,
ITransaction transaction)
Update the Service Instance's ACL.
|
void |
ServiceInstanceAclManager.update(SessionConfig sessionConfig,
String serviceInstanceId,
AccessControlList acl,
ITransaction transaction) |
IPermission |
ServiceInstancePermissions.valueOf(String permissionName) |
IPermission[] |
ServiceInstancePermissions.values() |
Modifier and Type | Method and Description |
---|---|
SerializationMessageConfigNode |
IServiceInstanceAclSerializationManager.getSerializationMessageConfigNode(BaseSerializationContext baseSerializationContext,
ServiceInstanceConfig serviceInstanceConfig,
AccessControlList accessControlList)
Get a
SerializationMessageConfigNode object containing fully recursive information about a service instance ACL. |
SerializationMessageConfigNode |
ServiceInstanceAclSerializationManager.getSerializationMessageConfigNode(BaseSerializationContext baseSerializationContext,
ServiceInstanceConfig serviceInstanceConfig,
AccessControlList accessControlList) |
SerializationMessageConfigNode |
IServiceInstanceAclSerializationManager.getSerializationMessageConfigNode(BaseSerializationContext baseSerializationContext,
ServiceInstanceConfig serviceInstanceConfig,
AccessControlList accessControlList,
EnumSet<SerializationMessageConfigNode.RecursionStopPoints> recursionStopPoints)
Get a
SerializationMessageConfigNode object containing partially recursive information about a service instance ACL. |
SerializationMessageConfigNode |
ServiceInstanceAclSerializationManager.getSerializationMessageConfigNode(BaseSerializationContext baseSerializationContext,
ServiceInstanceConfig serviceInstanceConfig,
AccessControlList accessControlList,
EnumSet<SerializationMessageConfigNode.RecursionStopPoints> recursionStopPoints) |
AccessControlListSerializableConfig |
ServiceInstanceAclSerializationManager.serialize(SerializationContext serializationContext,
String securableId) |
Modifier and Type | Method and Description |
---|---|
void |
ServiceInstanceSerializationManager.deleteConfig(DeserializationContext deserializationContext,
String configId) |
void |
IServiceInstanceSerializationManager.deserialize(DeserializationContext deserializationContext,
ServiceInstanceSerializableConfig serviceInstanceSerializableConfig)
Deserialize a service instance.
|
void |
ServiceInstanceSerializationManager.deserialize(DeserializationContext deserializationContext,
ServiceInstanceSerializableConfig serviceInstanceSerializableConfig) |
void |
IServiceInstanceSerializationManager.deserializeContent(DeserializationContext deserializationContext,
ServiceInstanceConfig serviceInstanceConfig)
Deserialize service instance content.
|
void |
ServiceInstanceSerializationManager.deserializeContent(DeserializationContext deserializationContext,
ServiceInstanceConfig serviceInstanceConfig) |
void |
IServiceInstanceSerializationManager.deserializeContent(DeserializationContext deserializationContext,
ServiceInstanceSerializableConfig serviceInstanceSerializableConfig)
Deserialize service instance content.
|
void |
ServiceInstanceSerializationManager.deserializeContent(DeserializationContext deserializationContext,
ServiceInstanceSerializableConfig serviceInstanceSerializableConfig) |
void |
ServiceInstanceBaseSerializationContext.finalizeInnerProgressBar(String text) |
SerializationMessageConfigNode |
IServiceInstanceSerializationManager.getSerializationMessageConfigNode(BaseSerializationContext baseSerializationContext,
ServiceInstanceConfig serviceInstanceConfig)
Get a
SerializationMessageConfigNode object containing fully recursive information about a service instance. |
SerializationMessageConfigNode |
ServiceInstanceSerializationManager.getSerializationMessageConfigNode(BaseSerializationContext baseSerializationContext,
ServiceInstanceConfig serviceInstanceConfig) |
SerializationMessageConfigNode |
IServiceInstanceSerializationManager.getSerializationMessageConfigNode(BaseSerializationContext baseSerializationContext,
ServiceInstanceConfig serviceInstanceConfig,
EnumSet<SerializationMessageConfigNode.RecursionStopPoints> recursionStopPoints)
Get a
SerializationMessageConfigNode object containing partially recursive information about a service instance. |
SerializationMessageConfigNode |
ServiceInstanceSerializationManager.getSerializationMessageConfigNode(BaseSerializationContext baseSerializationContext,
ServiceInstanceConfig serviceInstanceConfig,
EnumSet<SerializationMessageConfigNode.RecursionStopPoints> recursionStopPoints) |
void |
ServiceInstanceBaseSerializationContext.initializeInnerProgressBar(int innerProgressMax,
String text) |
void |
ServiceInstanceDeserializationContext.persistDependentConfigs(String dependencyKey) |
void |
ServiceInstanceDeserializationContext.sendProgressFinalNotification(String message,
ProgressConfig.Type type) |
void |
ServiceInstanceSerializationContext.sendProgressFinalNotification(String message,
ProgressConfig.Type type) |
void |
ServiceInstanceDeserializationContext.sendProgressNotification(Document messageDoc,
String styleFilename,
ProgressConfig.Type type) |
void |
ServiceInstanceSerializationContext.sendProgressNotification(Document messageDoc,
String styleFilename,
ProgressConfig.Type type) |
void |
ServiceInstanceDeserializationContext.sendProgressNotification(String message,
ProgressConfig.Type type) |
void |
ServiceInstanceSerializationContext.sendProgressNotification(String message,
ProgressConfig.Type type) |
ServiceInstanceSerializableConfig |
IServiceInstanceSerializationManager.serialize(SerializationContext serializationContext,
String serviceInstanceId)
Serialize a service instance.
|
ServiceInstanceSerializableConfig |
ServiceInstanceSerializationManager.serialize(SerializationContext serializationContext,
String serviceInstanceId) |
void |
ServiceInstanceBaseSerializationContext.updateInnerProgressBar(int increment,
String text) |
Modifier and Type | Class and Description |
---|---|
class |
ServiceInterfaceException |
Modifier and Type | Method and Description |
---|---|
void |
IServiceInterfaceDao.addOrUpdate(ServiceInterfaceConfig serviceInterfaceConfig,
ITransaction daoTransaction)
Add or update the service's interface.
|
void |
ServiceInterfaceDaoHib.addOrUpdate(ServiceInterfaceConfig serviceInterfaceConfig,
ITransaction daoTransaction) |
void |
IServiceInterfaceManager.addOrUpdateStyle(SessionConfig sessionConfig,
ServiceInterfaceStyleConfig serviceInterfaceStyleConfig,
ITransaction transaction)
Add or update a Style.
|
void |
ServiceInterfaceManager.addOrUpdateStyle(SessionConfig sessionConfig,
ServiceInterfaceStyleConfig serviceInterfaceStyleConfig,
ITransaction transaction) |
void |
IServiceInterfaceRenderResponse.applyStyle(int applyRule,
String styleFile) |
void |
ServiceInterfaceRenderResponseSPIWrapper.applyStyle(int applyRule,
String styleFile) |
boolean |
IServiceInterfaceDao.delete(ServiceInterfaceConfig serviceInterfaceConfig,
ITransaction daoTransaction)
Delete the service's interface.
|
boolean |
ServiceInterfaceDaoHib.delete(ServiceInterfaceConfig serviceInterfaceConfig,
ITransaction daoTransaction) |
void |
IServiceInterfaceManager.deleteStyle(SessionConfig sessionConfig,
String serviceInterfaceStyleId,
String serviceInterfaceId,
ITransaction transaction)
Delete a Style.
|
void |
ServiceInterfaceManager.deleteStyle(SessionConfig sessionConfig,
String serviceInterfaceStyleId,
String serviceInterfaceId,
ITransaction transaction) |
void |
IServiceInterfaceManager.deserializeStyle(SessionConfig sessionConfig,
Node interfaceStyleNode,
ITransaction transaction)
Deserializes a ServiceInterfaceStyleConfig contained in the interfaceStyleNode.
|
void |
ServiceInterfaceManager.deserializeStyle(SessionConfig sessionConfig,
Node interfaceStyleNode,
ITransaction transaction) |
static OpenRuntimeInterfaceBehavior |
OpenRuntimeInterfaceBehavior.from(PageWebResource pageWebResource,
boolean keepParentActive)
Returns the
OpenRuntimeInterfaceBehavior for the given page. |
ServiceInterfaceConfig |
IServiceInterfaceDao.get(String interfaceId,
ITransaction daoTransaction)
Get the service's interface.
|
ServiceInterfaceConfig |
ServiceInterfaceDaoHib.get(String serviceInterfaceId,
ITransaction daoTransaction) |
String |
IServiceInterfaceDao.getCustomDefaultStyleId(String serviceInterfaceId,
ITransaction daoTransaction)
Get the id of the custom default style.
|
String |
ServiceInterfaceDaoHib.getCustomDefaultStyleId(String serviceInterfaceId,
ITransaction daoTransaction) |
String |
IServiceInterfaceDao.getDefaultStyleId(String serviceInterfaceId,
ITransaction daoTransaction)
Get the default style of the service's interface.
|
String |
ServiceInterfaceDaoHib.getDefaultStyleId(String serviceInterfaceId,
ITransaction daoTransaction) |
String |
ServiceInterfaceConfig.getDefinition() |
Node |
ServiceInterfaceConfig.getDefinitionNode() |
Collection<String> |
IServiceInterfaceDao.getIdsByServiceId(String serviceId,
ITransaction daoTransaction)
Get all interfaces ids from a given service.
|
Collection<String> |
IServiceInterfaceManager.getIdsByServiceId(String serviceId,
ITransaction transaction)
Get the service interface ids from a given service.
|
Collection<String> |
ServiceInterfaceDaoHib.getIdsByServiceId(String serviceId,
ITransaction daoTransaction) |
Collection<String> |
ServiceInterfaceManager.getIdsByServiceId(String serviceId,
ITransaction transaction) |
Node |
IServiceInterfaceMenu.getMenu(SessionConfig sessionConfig,
ServiceInterfaceInstanceConfig config,
ITransaction transaction) |
Node |
StyledServiceInterface.getMenu(SessionConfig sessionConfig,
ServiceInterfaceInstanceConfig config,
ITransaction transaction) |
ServiceInterfaceMenuGroupTypeConfig |
IServiceInterfaceManager.getMenuGroupType(SessionConfig sessionConfig,
String menuGroupTypeId,
ITransaction transaction)
Get the menu group type.
|
ServiceInterfaceMenuGroupTypeConfig |
ServiceInterfaceManager.getMenuGroupType(SessionConfig sessionConfig,
String menuGroupTypeId,
ITransaction transaction) |
ServiceInterfaceMenuItemTypeConfig |
IServiceInterfaceManager.getMenuItemType(SessionConfig sessionConfig,
String menuItemTypeId,
ITransaction transaction)
Get the menu item type.
|
ServiceInterfaceMenuItemTypeConfig |
ServiceInterfaceManager.getMenuItemType(SessionConfig sessionConfig,
String menuItemTypeId,
ITransaction transaction) |
String |
ServiceInterfaceConfig.getPopupWindowProperties() |
IResource |
ServiceInterfaceConfig.getResource() |
IServiceInterface |
IServiceInterfaceManager.getServiceInterface(String serviceInterfaceId,
ITransaction transaction)
Get the service interface.
|
IServiceInterface |
ServiceInterfaceManager.getServiceInterface(String serviceInterfaceId,
ITransaction transaction) |
ServiceInterfaceConfig |
IServiceInterfaceManager.getServiceInterfaceConfig(String serviceInterfaceId,
ITransaction transaction)
Get the configuration of the service interface.
|
ServiceInterfaceConfig |
ServiceInterfaceManager.getServiceInterfaceConfig(String serviceInterfaceId,
ITransaction transaction) |
protected ServiceInterfaceTypeConfig |
ServiceInterfaceManager.getServiceInterfaceTypeConfig(String interfaceType,
ITransaction transaction) |
ServiceInterfaceStyleConfig |
IServiceInterfaceManager.getStyle(SessionConfig sessionConfig,
String serviceInterfaceStyleId,
String serviceInterfaceId,
ITransaction transaction)
Get the style configuration os the service interface.
|
ServiceInterfaceStyleConfig |
ServiceInterfaceManager.getStyle(SessionConfig sessionConfig,
String serviceInterfaceStyleId,
String serviceInterfaceId,
ITransaction transaction) |
ServiceInterfaceStyleConfig |
IServiceInterfaceManager.getStyleByServiceInterfaceInstanceId(SessionConfig sessionConfig,
String serviceInterfaceInstanceId,
ITransaction transaction)
Get the Style given the ServiceInterfaceInstanceId.
|
ServiceInterfaceStyleConfig |
ServiceInterfaceManager.getStyleByServiceInterfaceInstanceId(SessionConfig sessionConfig,
String serviceInterfaceInstanceId,
ITransaction transaction) |
Collection<String> |
IServiceInterfaceManager.getStyleIds(SessionConfig sessionConfig,
String serviceInterfaceId,
ITransaction transaction)
Get the Id of all styles associated with a service interface.
|
Collection<String> |
ServiceInterfaceManager.getStyleIds(SessionConfig sessionConfig,
String serviceInterfaceId,
ITransaction transaction) |
Collection<String> |
IServiceInterfaceManager.getStyleIdsByInterfaceInstance(SessionConfig sessionConfig,
String interfaceInstanceId,
ITransaction transaction,
boolean onlyCustomStyles)
Get the Id of all styles available to an interface instance considering
the isolation rules.
|
Collection<String> |
ServiceInterfaceManager.getStyleIdsByInterfaceInstance(SessionConfig sessionConfig,
String interfaceInstanceId,
ITransaction transaction,
boolean onlyCustomStyles) |
String |
IServiceInterfaceUrl.getUrl()
Deprecated.
Since 4.0.7 this method was replaced by
IServiceInterfaceUrl.toString() method, so this
interface uses the same method as specified in the PortletURL interface. |
void |
IServiceInterfaceRequestDispatcher.include(IServiceInterfaceRenderRequest renderRequest,
IServiceInterfaceRenderResponse renderResponse) |
void |
GenericServiceInterface.instanceAdded(ServiceInterfaceInstanceConfig config,
ITransaction transaction) |
void |
IServiceInterface.instanceAdded(ServiceInterfaceInstanceConfig config,
ITransaction transaction)
Called by the service container to indicate that a service interface instance has been added
|
void |
GenericServiceInterface.instanceDeleted(ServiceInterfaceInstanceConfig config) |
void |
IServiceInterface.instanceDeleted(ServiceInterfaceInstanceConfig config)
Called by the service container to indicate that a service interface instance has been
deleted
|
void |
GenericServiceInterface.instanceLoaded(ServiceInterfaceInstanceConfig config) |
void |
IServiceInterface.instanceLoaded(ServiceInterfaceInstanceConfig config) |
void |
GenericServiceInterface.instanceUnLoaded(ServiceInterfaceInstanceConfig config) |
void |
IServiceInterface.instanceUnLoaded(ServiceInterfaceInstanceConfig config)
Called by the service container to indicate that a service interface instance is about to be
destroyed
|
boolean |
ServiceInterfaceConfig.isRestEnabled()
Returns whether Rest API is enabled for the interface.
|
void |
GenericServiceInterface.load(ServiceInterfaceConfig config) |
void |
IServiceInterface.load(ServiceInterfaceConfig config)
Called by the service interface container to indicate to a service interface that the service
interface is being placed into service.
|
void |
GenericServiceInterface.processAction(IServiceInterfaceActionRequest request,
IServiceInterfaceActionResponse response) |
void |
IServiceInterface.processAction(IServiceInterfaceActionRequest request,
IServiceInterfaceActionResponse response)
Called by the service interface container to allow the service interface to process an action
request.
|
void |
GenericServiceInterface.register(SessionConfig sessionConfig,
Node serviceInterfaceXmlNode,
ITransaction transaction) |
void |
IServiceInterface.register(SessionConfig sessionConfig,
Node serviceInterfaceXmlNode,
ITransaction transaction)
Called by the service interface manager when a service interface definition is registered.
|
void |
IServiceInterfaceManager.register(SessionConfig sessionConfig,
String serviceConfigPath,
ITransaction transaction)
Register the service interface.
|
void |
ServiceInterfaceManager.register(SessionConfig sessionConfig,
String serviceConfigPath,
ITransaction transaction) |
void |
IServiceInterfaceManager.registerMenuGroupTypes(SessionConfig sessionConfig,
String groupTypesConfigPath,
ITransaction transaction)
Register the menu group types.
|
void |
ServiceInterfaceManager.registerMenuGroupTypes(SessionConfig sessionConfig,
String groupTypesConfigPath,
ITransaction transaction) |
void |
IServiceInterfaceManager.registerMenuItemTypes(SessionConfig sessionConfig,
String itemTypesConfigPath,
ITransaction transaction)
Register menu item type.
|
void |
ServiceInterfaceManager.registerMenuItemTypes(SessionConfig sessionConfig,
String itemTypesConfigPath,
ITransaction transaction) |
void |
IServiceInterfaceManager.registerServiceInterfaceTypes(SessionConfig sessionConfig,
String serviceTypesConfigPath,
ITransaction transaction)
Register the type of the service interface.
|
void |
ServiceInterfaceManager.registerServiceInterfaceTypes(SessionConfig sessionConfig,
String serviceTypesConfigPath,
ITransaction transaction) |
void |
GenericServiceInterface.render(IServiceInterfaceRenderRequest request,
IServiceInterfaceRenderResponse response) |
void |
IServiceInterface.render(IServiceInterfaceRenderRequest request,
IServiceInterfaceRenderResponse response)
Called by the service interface container to allow the service interface to generate the
content of the response based on its current state.
|
void |
StyledServiceInterface.render(IServiceInterfaceRenderRequest request,
IServiceInterfaceRenderResponse response) |
void |
GenericServiceInterface.renderBefore(IServiceInterfaceRenderRequest request,
IServiceInterfaceRenderResponse response) |
void |
IServiceInterface.renderBefore(IServiceInterfaceRenderRequest request,
IServiceInterfaceRenderResponse response)
Called by the service interface container before rendering the interface client side.
|
void |
IServiceInterfaceManager.serializeStyle(SessionConfig sessionConfig,
String serviceInterfaceStyleId,
String serviceInterfaceId,
OutputStream outputStream,
ITransaction transaction)
Serializes a ServiceInterfaceStyleConfig to the specified outputStream.
|
void |
ServiceInterfaceManager.serializeStyle(SessionConfig sessionConfig,
String serviceInterfaceStyleId,
String serviceInterfaceId,
OutputStream outputStream,
ITransaction transaction) |
void |
IServiceInterfaceDao.setCustomDefaultStyleId(String serviceInterfaceId,
String serviceInterfaceStyleId,
ITransaction daoTransaction)
Update the id of the custom default style.
|
void |
ServiceInterfaceDaoHib.setCustomDefaultStyleId(String serviceInterfaceId,
String serviceInterfaceStyleId,
ITransaction daoTransaction) |
void |
IServiceInterfaceDao.setDefaultStyleId(String serviceInterfaceId,
String serviceInterfaceStyleId,
ITransaction daoTransaction)
Update the default style of the service's interface.
|
void |
ServiceInterfaceDaoHib.setDefaultStyleId(String serviceInterfaceId,
String serviceInterfaceStyleId,
ITransaction daoTransaction) |
void |
ServiceInterfaceConfig.setDefinition(String interfaceDefinition) |
void |
ServiceInterfaceConfig.setDefinitionNode(Node interfaceXmlNode) |
void |
IServiceInterfaceRenderResponse.setStyleId(String styleId) |
void |
ServiceInterfaceRenderResponseSPIWrapper.setStyleId(String styleId) |
void |
GenericServiceInterface.unload() |
void |
IServiceInterface.unload()
Called by the service interface container to indicate to a service interface that the service
interface is being taken out of service.
|
void |
IServiceInterfaceManager.unregister(SessionConfig sessionConfig,
ServiceInterfaceConfig serviceInterfaceConfig,
ITransaction transaction)
Unregister the Service Interface.
|
void |
ServiceInterfaceManager.unregister(SessionConfig sessionConfig,
ServiceInterfaceConfig serviceInterfaceConfig,
ITransaction transaction) |
void |
IServiceInterfaceManager.unregisterMenuGroupType(SessionConfig sessionConfig,
String typeId,
ITransaction transaction)
Unregisters a service menu group type.
|
void |
ServiceInterfaceManager.unregisterMenuGroupType(SessionConfig sessionConfig,
String typeId,
ITransaction transaction) |
void |
IServiceInterfaceManager.unregisterMenuItemType(SessionConfig sessionConfig,
String typeId,
ITransaction transaction)
Unregisters a service menu item type.
|
void |
ServiceInterfaceManager.unregisterMenuItemType(SessionConfig sessionConfig,
String typeId,
ITransaction transaction) |
void |
IServiceInterfaceManager.unregisterServiceInterfaceType(String typeId,
ITransaction transaction)
Unregister the type of service interface.
|
void |
ServiceInterfaceManager.unregisterServiceInterfaceType(String typeId,
ITransaction transaction) |
Constructor and Description |
---|
ServiceInterfaceControllerXml(HttpServletRequest request,
HttpServletResponse response,
PageContext pageContext) |
Modifier and Type | Method and Description |
---|---|
String |
IServiceInterfaceListManager.get(SessionConfig sessionConfig,
String channelId,
ITransaction transaction)
Get the data of the service interface list.
|
String |
ServiceInterfaceListManager.get(SessionConfig sessionConfig,
String channelId,
ITransaction transaction) |
String |
IServiceInterfaceListDao.getData(String channelId,
ITransaction transaction)
Get the data of the service's interface list.
|
String |
ServiceInterfaceListDaoJdbc.getData(String channelId,
ITransaction transaction) |
Constructor and Description |
---|
ServiceInterfaceListControllerXml(HttpServletRequest request,
HttpServletResponse response,
PageContext pageContext) |
Modifier and Type | Method and Description |
---|---|
void |
IServiceInterfaceMenuGroupTypeDao.addOrUpdate(ServiceInterfaceMenuGroupTypeConfig config,
ITransaction transaction) |
void |
ServiceInterfaceMenuGroupTypeDaoHib.addOrUpdate(ServiceInterfaceMenuGroupTypeConfig config,
ITransaction transaction) |
void |
ServiceInterfaceMenuGroupTypeDaoJdbc.addOrUpdate(ServiceInterfaceMenuGroupTypeConfig config,
ITransaction transaction) |
void |
IServiceInterfaceMenuItemTypeDao.addOrUpdate(ServiceInterfaceMenuItemTypeConfig config,
ITransaction transaction) |
void |
ServiceInterfaceMenuItemTypeDaoHib.addOrUpdate(ServiceInterfaceMenuItemTypeConfig config,
ITransaction transaction) |
void |
ServiceInterfaceMenuItemTypeDaoJdbc.addOrUpdate(ServiceInterfaceMenuItemTypeConfig config,
ITransaction transaction) |
boolean |
IServiceInterfaceMenuGroupTypeDao.delete(String menuGroupType,
ITransaction transaction) |
boolean |
IServiceInterfaceMenuItemTypeDao.delete(String menuItemTypeId,
ITransaction transaction) |
boolean |
ServiceInterfaceMenuGroupTypeDaoHib.delete(String menuGroupTypeId,
ITransaction transaction) |
boolean |
ServiceInterfaceMenuGroupTypeDaoJdbc.delete(String menuGroupTypeId,
ITransaction transaction) |
boolean |
ServiceInterfaceMenuItemTypeDaoHib.delete(String menuItemTypeId,
ITransaction transaction) |
boolean |
ServiceInterfaceMenuItemTypeDaoJdbc.delete(String menuItemTypeId,
ITransaction transaction) |
String |
IMenuItemParser.generateMenuItemXml(Object menuItemImpl,
Element itemDefinition)
Generates the XML used for rendering a menu item.
|
ServiceInterfaceMenuGroupTypeConfig |
IServiceInterfaceMenuGroupTypeDao.get(String menuGroupType,
ITransaction transaction) |
ServiceInterfaceMenuItemTypeConfig |
IServiceInterfaceMenuItemTypeDao.get(String menuItemTypeId,
ITransaction transaction) |
ServiceInterfaceMenuGroupTypeConfig |
ServiceInterfaceMenuGroupTypeDaoHib.get(String menuGroupTypeId,
ITransaction transaction) |
ServiceInterfaceMenuGroupTypeConfig |
ServiceInterfaceMenuGroupTypeDaoJdbc.get(String menuGroupTypeId,
ITransaction transaction) |
ServiceInterfaceMenuItemTypeConfig |
ServiceInterfaceMenuItemTypeDaoHib.get(String menuItemTypeId,
ITransaction transaction) |
ServiceInterfaceMenuItemTypeConfig |
ServiceInterfaceMenuItemTypeDaoJdbc.get(String menuItemTypeId,
ITransaction transaction) |
String |
AddPopupInterface.getActionJavascript(IServiceInterfaceMenuItemRequest menuItemRequest) |
String |
AddStylePopupInterface.getActionJavascript(IServiceInterfaceMenuItemRequest menuItemRequest) |
String |
IServiceInterfaceMenuItem.getActionJavascript(IServiceInterfaceMenuItemRequest menuItemRequest)
Returns the javascript code to be executed when this menu item is triggered by the user.
|
String |
AddPopupInterface.getActionJavascript(ServiceInstanceConfig serviceInstance,
Element menuItemDefinition) |
Modifier and Type | Method and Description |
---|---|
void |
IServiceInterfaceSerializationManager.deserializeStyle(DeserializationContext deserializationContext,
ServiceInterfaceStyleSerializableConfig serviceInterfaceStyleSerializableConfig)
Deserialize a service interface style.
|
void |
ServiceInterfaceSerializationManager.deserializeStyle(DeserializationContext deserializationContext,
ServiceInterfaceStyleSerializableConfig serviceInterfaceStyleSerializableConfig) |
SerializationMessageConfigNode |
IServiceInterfaceSerializationManager.getSerializationMessageConfigNode(BaseSerializationContext baseSerializationContext,
ServiceInterfaceConfig serviceInterfaceConfig)
Get a
SerializationMessageConfigNode object containing partially recursive information about a service interface. |
SerializationMessageConfigNode |
ServiceInterfaceSerializationManager.getSerializationMessageConfigNode(BaseSerializationContext baseSerializationContext,
ServiceInterfaceConfig serviceInterfaceConfig) |
ServiceInterfaceStyleSerializableConfig |
IServiceInterfaceSerializationManager.serializeStyle(SerializationContext serializationContext,
String serviceInterfaceStyleId,
String serviceInterfaceId)
Serialize a service interface style.
|
ServiceInterfaceStyleSerializableConfig |
ServiceInterfaceSerializationManager.serializeStyle(SerializationContext serializationContext,
String serviceInterfaceStyleId,
String serviceInterfaceId) |
void |
IServiceInterfaceSerializationManager.updateStyleDependency(DeserializationContext deserializationContext,
ServiceInterfaceStyleSerializableConfig serviceInterfaceStyleSerializableConfig)
Updates the style isolation dependency.
|
void |
ServiceInterfaceSerializationManager.updateStyleDependency(DeserializationContext deserializationContext,
ServiceInterfaceStyleSerializableConfig serviceInterfaceStyleSerializableConfig) |
Modifier and Type | Class and Description |
---|---|
class |
IsolationLevelValidationException
This exception is thrown when the validation performed due to the change
of the isolation level of a service interface style has failed.
|
Modifier and Type | Method and Description |
---|---|
static void |
ServiceInterfaceStyleDao.addOrUpdate(ServiceInterfaceStyleConfig serviceInterfaceStyleConfig,
ITransaction daoTransaction) |
void |
IServiceInterfaceStyleManager.addStyleCacheConfig(StyleCacheConfig styleCacheConfig)
Add a cache of the style.
|
void |
ServiceInterfaceStyleManager.addStyleCacheConfig(StyleCacheConfig styleCacheConfig) |
static void |
ServiceInterfaceStyleDao.addStyleCacheConfig(StyleCacheConfig styleCacheConfig,
ITransaction transaction) |
void |
IServiceInterfaceStyleManager.clearStyleCache(ITransaction transaction)
Clears all style cache.
|
void |
ServiceInterfaceStyleManager.clearStyleCache(ITransaction transaction) |
void |
IServiceInterfaceStyleManager.clearStyleCache(String fileName)
Clear the cache for the specified style file.
|
void |
ServiceInterfaceStyleManager.clearStyleCache(String fileName) |
IStyle |
IStyleFactory.createCachedStyle(String stylePath,
List<ITheme> themes)
Creates a cached version of the requested style.
|
IStyle |
IStyleFactory.createDynamicStyle(String stylePath,
List<ITheme> themes)
Creates a dynamic version of the requested style.
|
IStyle |
IStyleFactory.createDynamicStyle(String styleString,
String stylePath,
List<ITheme> themes)
Creates a dynamic version of the requested style using the given style text.
|
static void |
ServiceInterfaceStyleDao.delete(String serviceInterfaceStyleId,
String serviceInterfaceId,
ITransaction daoTransaction) |
void |
IServiceInterfaceStyleManager.deleteStyleCacheConfig(String fileName)
Delete the cache of the style.
|
void |
ServiceInterfaceStyleManager.deleteStyleCacheConfig(String fileName) |
static void |
ServiceInterfaceStyleDao.deleteStyleCacheConfig(String fileName,
ITransaction transaction) |
void |
ServiceInterfaceStyleConfig.deserialize(Node serviceInstanceNode)
Deserialize the properties of the ServiceInstanceStyleConfig from the specified XML Node.
|
static ServiceInterfaceStyleConfig |
ServiceInterfaceStyleDao.get(String serviceInterfaceStyleId,
String serviceInterfaceId,
ITransaction daoTransaction) |
IStyle |
IServiceInterfaceStyleManager.getCachedStyle(String stylePath)
Returns the cached version of the style in the given path.
|
IStyle |
ServiceInterfaceStyleManager.getCachedStyle(String stylePath) |
IStyle |
IServiceInterfaceStyleManager.getCachedStyle(String stylePath,
List<ITheme> themes)
Returns the cached version of the style in the given path.
|
IStyle |
ServiceInterfaceStyleManager.getCachedStyle(String stylePath,
List<ITheme> themes) |
IStyle |
IServiceInterfaceStyleManager.getDynamicStyle(String stylePath)
Returns the dynamic version of the style in the given path.
|
IStyle |
ServiceInterfaceStyleManager.getDynamicStyle(String stylePath) |
IStyle |
IServiceInterfaceStyleManager.getDynamicStyle(String stylePath,
List<ITheme> themes)
Returns the dynamic version of the style in the given path.
|
IStyle |
ServiceInterfaceStyleManager.getDynamicStyle(String stylePath,
List<ITheme> themes) |
IStyle |
IServiceInterfaceStyleManager.getDynamicStyle(String styleString,
String stylePath,
List<ITheme> themes)
Returns the cached version of the style in the given path.
|
IStyle |
ServiceInterfaceStyleManager.getDynamicStyle(String styleString,
String stylePath,
List<ITheme> themes) |
static Collection<String> |
ServiceInterfaceStyleDao.getIdsByInterfaceInstanceId(String interfaceId,
String serviceInstanceId,
String interfaceInstanceId,
boolean onlyCustomStyles,
ITransaction daoTransaction) |
static Collection<String> |
ServiceInterfaceStyleDao.getIdsByServiceInterfaceId(String serviceInterfaceId,
ITransaction daoTransaction) |
static Collection<String> |
ServiceInterfaceStyleDao.getIdsByStyleFilePath(String styleFilePath,
ITransaction daoTransaction) |
StyleCacheConfig |
IServiceInterfaceStyleManager.getStyleCacheConfig(String fileName)
Get the styleCacheConfig.
|
StyleCacheConfig |
ServiceInterfaceStyleManager.getStyleCacheConfig(String fileName) |
static StyleCacheConfig |
ServiceInterfaceStyleDao.getStyleCacheConfig(String fileName,
ITransaction transaction) |
static ServiceInterfaceStyleConfig |
ServiceInterfaceStyleDao.getWidgetStyle(String serviceInterfaceId,
ITransaction transaction) |
void |
ServiceInterfaceStyleConfig.serialize(ServiceInterfaceStyleConfig styleConfig,
OutputStream outputStream)
Serializes the interface style config to the specified output stream.
|
void |
ServiceInterfaceStyleConfig.setIsolation(ServiceInterfaceStyleConfig.IsolationLevel isolationLevel,
Collection<String> allowedConsumers)
Sets the isolationLevel.
|
void |
IStyle.transformOutput(IServiceInterfaceRequestSPI request,
IServiceInterfaceRenderResponseSPI response)
Transforms the output of a service interface.
|
void |
IStyle.transformOutput(IServiceInterfaceRequestSPI request,
IServiceInterfaceRenderResponseSPI response,
String xml)
Transforms the output of a service interface using the given XML.
|
void |
IServiceInterfaceStyleManager.updateStyleCacheConfig(StyleCacheConfig styleCacheConfig)
Update the cache of the style.
|
void |
ServiceInterfaceStyleManager.updateStyleCacheConfig(StyleCacheConfig styleCacheConfig) |
static void |
ServiceInterfaceStyleDao.updateStyleCacheConfig(StyleCacheConfig styleCacheConfig,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
IStyle |
AbstractScriptingStyleFactory.createCachedStyle(String stylePath,
List<ITheme> themes) |
IStyle |
AbstractScriptingStyleFactory.createDynamicStyle(String stylePath,
List<ITheme> themes) |
IStyle |
AbstractScriptingStyleFactory.createDynamicStyle(String styleString,
String stylePath,
List<ITheme> themes) |
void |
GenericCompiledScriptStyle.transformOutput(IServiceInterfaceRequestSPI request,
IServiceInterfaceRenderResponseSPI response) |
void |
GenericScriptingStyle.transformOutput(IServiceInterfaceRequestSPI request,
IServiceInterfaceRenderResponseSPI response) |
void |
GenericCompiledScriptStyle.transformOutput(IServiceInterfaceRequestSPI request,
IServiceInterfaceRenderResponseSPI response,
String output) |
void |
GenericScriptingStyle.transformOutput(IServiceInterfaceRequestSPI request,
IServiceInterfaceRenderResponseSPI response,
String output) |
Modifier and Type | Method and Description |
---|---|
IStyle |
ThymeleafStyleFactory.createCachedStyle(String stylePath,
List<ITheme> themes) |
IStyle |
ThymeleafStyleFactory.createDynamicStyle(String stylePath,
List<ITheme> themes) |
IStyle |
ThymeleafStyleFactory.createDynamicStyle(String styleString,
String stylePath,
List<ITheme> themes) |
Modifier and Type | Method and Description |
---|---|
IStyle |
XslStyleFactory.createCachedStyle(String stylePath,
List<ITheme> themes) |
IStyle |
XslStyleFactory.createDynamicStyle(String stylePath,
List<ITheme> themes) |
IStyle |
XslStyleFactory.createDynamicStyle(String xslStringDocument,
String resourcePath,
List<ITheme> themes) |
Transformer |
XslStyle.getTransformer()
Returns the transformer.
|
void |
XslStyle.transformOutput(IServiceInterfaceRequestSPI request,
IServiceInterfaceRenderResponseSPI response) |
void |
XslStyle.transformOutput(IServiceInterfaceRequestSPI request,
IServiceInterfaceRenderResponseSPI response,
String output) |
Modifier and Type | Method and Description |
---|---|
void |
IServiceInterfaceTypeDao.addOrUpdate(ServiceInterfaceTypeConfig definition,
ITransaction transaction)
Add or update the type of the service's interface.
|
void |
ServiceInterfaceTypeDaoJdbc.addOrUpdate(ServiceInterfaceTypeConfig definition,
ITransaction transaction) |
void |
IServiceInterfaceTypeDao.delete(String interfaceType,
ITransaction transaction)
Delete the type of the service's interface.
|
void |
ServiceInterfaceTypeDaoJdbc.delete(String interfaceType,
ITransaction transaction) |
ServiceInterfaceTypeConfig |
IServiceInterfaceTypeDao.get(String interfaceType,
ITransaction transaction)
Get the type of the service's interface.
|
ServiceInterfaceTypeConfig |
ServiceInterfaceTypeDaoJdbc.get(String interfaceType,
ITransaction transaction) |
Modifier and Type | Class and Description |
---|---|
class |
CacheKeyProviderClassNotFoundException
Portal Exception that indicates that the class that is used to
generate the cache key is not available at runtime.
|
Modifier and Type | Method and Description |
---|---|
void |
IServiceInterfaceInstanceDao.add(ServiceInterfaceInstanceConfig serviceInterfaceInstance,
ITransaction daoTransaction)
Add the service's interface's instance.
|
void |
ServiceInterfaceInstanceDaoJdbc.add(ServiceInterfaceInstanceConfig serviceInterfaceInstance,
ITransaction transaction) |
String |
IServiceInterfaceInstanceManager.add(SessionConfig sessionConfig,
ServiceInterfaceInstanceConfig serviceInterfaceInstanceConfig,
ITransaction transaction)
Add a service interface instance.
|
String |
ServiceInterfaceInstanceManager.add(SessionConfig sessionConfig,
ServiceInterfaceInstanceConfig serviceInterfaceInstanceConfig,
ITransaction transaction) |
void |
IServiceInterfaceInstanceManager.addOrUpdate(SessionConfig sessionConfig,
ServiceInterfaceInstanceConfig serviceInterfaceInstanceConfig,
ITransaction transaction)
Add or Update a Service Interface Instance, depending on its previous
existence.
|
void |
ServiceInterfaceInstanceManager.addOrUpdate(SessionConfig sessionConfig,
ServiceInterfaceInstanceConfig serviceInterfaceInstanceConfig,
ITransaction transaction)
Service Interface Instance
|
boolean |
DummyInterfaceInstanceOwner.checkPermission(SessionConfig sessionConfig,
ServiceInterfaceInstanceConfig serviceInterfaceInstanceConfig,
ServiceInterfaceInstancePermission permission) |
boolean |
IServiceInterfaceInstanceOwner.checkPermission(SessionConfig sessionConfig,
ServiceInterfaceInstanceConfig serviceInterfaceInstanceConfig,
ServiceInterfaceInstancePermission permission)
Checks the user permission based on the owner rules.
|
void |
IServiceInterfaceInstanceManager.clearCache(ITransaction transaction)
Clears all cache stored in this manager.
|
void |
ServiceInterfaceInstanceManager.clearCache(ITransaction transaction) |
void |
IServiceInterfaceInstanceManager.clearCache(SessionConfig sessionConfig,
String serviceInterfaceInstanceId,
ITransaction transaction)
Clears the caches of a service interface instance.
|
void |
ServiceInterfaceInstanceManager.clearCache(SessionConfig sessionConfig,
String serviceInterfaceInstanceId,
ITransaction transaction) |
void |
IServiceInterfaceInstanceManagerSPI.clearHtmlCache(String serviceInterfaceInstanceId)
Clears the HTML cache of a service interface instance.
|
void |
ServiceInterfaceInstanceManager.clearHtmlCache(String serviceInterfaceInstanceId) |
protected void |
ServiceInterfaceInstanceControllerHtml.clearServiceInterfaceInstanceCache()
Clears the HTML cache of the specified interface, if any, and clears the XSL Transformer cache for the XSL file used by the interface.
|
void |
IServiceInterfaceInstanceManagerSPI.clearTimeoutCache(String serviceInterfaceInstanceId,
ITransaction transaction)
Clears the cache for the timeout cache value.
|
void |
ServiceInterfaceInstanceManager.clearTimeoutCache(String serviceInterfaceInstanceId,
ITransaction transaction) |
String |
IServiceInterfaceInstanceManager.copy(SessionConfig sessionConfig,
String sourceServiceInterfaceInstanceId,
String destinationPageId,
boolean destinationInterfaceInstanceIsFromTemplate,
ITransaction transaction)
Creates a copy of the given interface instance to the specified page.
|
String |
ServiceInterfaceInstanceManager.copy(SessionConfig sessionConfig,
String sourceServiceInterfaceInstanceId,
String destinationPageId,
boolean destinationInterfaceInstanceIsFromTemplate,
ITransaction transaction) |
String |
ServiceInterfaceInstanceManager.copy(SessionConfig sessionConfig,
String sourceServiceInterfaceInstanceId,
String destinationPageId,
Class<? extends IServiceInterfaceInstanceOwner> ownerClass,
boolean destinationInterfaceInstanceIsFromTemplate,
ITransaction transaction)
Copies a Service Interface Instance based on the passed id to a given page or orphan if owner info is passed.
|
void |
IServiceInterfaceInstanceManager.delete(SessionConfig sessionConfig,
String serviceInterfaceInstanceId,
ITransaction transaction)
Delete a service interface instance.
|
void |
ServiceInterfaceInstanceManager.delete(SessionConfig sessionConfig,
String serviceInterfaceInstanceId,
ITransaction transaction) |
void |
IServiceInterfaceInstanceDao.delete(String serviceInterfaceInstanceId,
ITransaction daoTransaction)
Delete the service's interface's instance.
|
void |
ServiceInterfaceInstanceDaoJdbc.delete(String serviceInterfaceInstanceId,
ITransaction transaction) |
void |
IServiceInterfaceInstanceManager.deleteCustomProperties(SessionConfig sessionConfig,
String interfaceInstanceId,
ITransaction transaction)
Deletes all the interface instance custom properties
|
void |
ServiceInterfaceInstanceManager.deleteCustomProperties(SessionConfig sessionConfig,
String interfaceInstanceId,
ITransaction transaction) |
void |
IServiceInterfaceInstanceDao.deleteCustomProperties(String interfaceInstanceId,
ITransaction daoTransaction)
Delete the custom propertires of the service's interface's instance.
|
void |
ServiceInterfaceInstanceDaoJdbc.deleteCustomProperties(String interfaceInstanceId,
ITransaction transaction) |
void |
IServiceInterfaceInstanceManager.deleteCustomProperty(SessionConfig sessionConfig,
String interfaceInstanceId,
String name,
ITransaction transaction)
Deletes the interface instance custom property
|
void |
ServiceInterfaceInstanceManager.deleteCustomProperty(SessionConfig sessionConfig,
String interfaceInstanceId,
String name,
ITransaction transaction) |
boolean |
IServiceInterfaceInstanceDao.deleteCustomProperty(String interfaceInstanceId,
String name,
ITransaction daoTransaction)
Delete a custom property of the service's interface's instance.
|
boolean |
ServiceInterfaceInstanceDaoJdbc.deleteCustomProperty(String interfaceInstanceId,
String name,
ITransaction transaction) |
void |
ServiceInterfaceInstanceConfig.deserialize(Node serviceInterfaceInstanceNode) |
String |
IServiceInterfaceInstanceManager.deserialize(SessionConfig sessionConfig,
DeserializationConfig deserializationConfig,
Node serviceInterfaceInstanceNode,
ITransaction transaction) |
String |
ServiceInterfaceInstanceManager.deserialize(SessionConfig sessionConfig,
DeserializationConfig deserializationConfig,
Node serviceInterfaceInstanceNode,
ITransaction transaction) |
void |
IServiceInterfaceInstanceManager.deserializeCustomProperties(SessionConfig sessionConfig,
DeserializationConfig deserializationConfig,
Node serviceInterfaceInstanceCustomPropertiesNode,
ITransaction transaction)
Deprecated.
Since 6.2.0 this method is no longer used and may be removed in a future version.
|
void |
ServiceInterfaceInstanceManager.deserializeCustomProperties(SessionConfig sessionConfig,
DeserializationConfig deserializationConfig,
Node serviceInterfaceInstanceCustomPropertiesNode,
ITransaction transaction)
Deprecated.
|
String |
IServiceInterfaceInstanceManagerSPI.generateMenu(Node menuDefinition,
IMenuItemParser menuItemParser,
Element defaultMenu)
Generates a configuration menu XML definition for use by Portal Studio.
|
String |
ServiceInterfaceInstanceManager.generateMenu(Node menuDefinition,
IMenuItemParser menuItemParser,
Element defaultMenu) |
ServiceInterfaceInstanceConfig |
IServiceInterfaceInstanceManager.get(SessionConfig sessionConfig,
String serviceInterfaceInstanceId,
ITransaction transaction)
Get the configuration of the service interface instance.
|
ServiceInterfaceInstanceConfig |
ServiceInterfaceInstanceManager.get(SessionConfig sessionConfig,
String serviceInterfaceInstanceId,
ITransaction transaction) |
ServiceInterfaceInstanceConfig |
IServiceInterfaceInstanceDao.get(String interfaceInstanceId,
ITransaction daoTransaction)
Get the service's interface's instance.
|
ServiceInterfaceInstanceConfig |
ServiceInterfaceInstanceDaoJdbc.get(String interfaceInstanceId,
ITransaction transaction) |
String |
IInterfaceInstanceCacheKeyProvider.getCacheKey(IServiceInterfaceRenderRequest request)
Generates the cache key for a specific
ServiceInterfaceInstanceConfig . |
int |
IServiceInterfaceInstanceManager.getCacheLevel(SessionConfig sessionConfig,
String serviceInterfaceInstanceId,
ITransaction transaction)
Returns the cacheLevel property of an interface instance.
|
int |
ServiceInterfaceInstanceManager.getCacheLevel(SessionConfig sessionConfig,
String serviceInterfaceInstanceId,
ITransaction transaction) |
int |
IServiceInterfaceInstanceManager.getCachePersonalization(SessionConfig sessionConfig,
String serviceInterfaceInstanceId,
ITransaction transaction)
Returns the cachePersonalization property of an interface instance.
|
int |
ServiceInterfaceInstanceManager.getCachePersonalization(SessionConfig sessionConfig,
String serviceInterfaceInstanceId,
ITransaction transaction) |
boolean |
IServiceInterfaceInstanceManager.getCacheServerSideInclude(SessionConfig sessionConfig,
String serviceInterfaceInstanceId,
ITransaction transaction)
Returns the cacheServerSideInclude property of an interface instance.
|
boolean |
ServiceInterfaceInstanceManager.getCacheServerSideInclude(SessionConfig sessionConfig,
String serviceInterfaceInstanceId,
ITransaction transaction) |
Map<String,String> |
IServiceInterfaceInstanceManager.getCustomProperties(SessionConfig sessionConfig,
String interfaceInstanceId,
ITransaction transaction)
Returns a Map containing all name/value pairs of custom properties
from the specified service interface instance.
|
Map<String,String> |
ServiceInterfaceInstanceManager.getCustomProperties(SessionConfig sessionConfig,
String interfaceInstanceId,
ITransaction transaction) |
HashMap<String,String> |
IServiceInterfaceInstanceDao.getCustomProperties(String interfaceInstanceId,
ITransaction daoTransaction)
Get all custom properties of the specified service insterface instance.
|
HashMap<String,String> |
ServiceInterfaceInstanceDaoJdbc.getCustomProperties(String interfaceInstanceId,
ITransaction transaction) |
String |
IServiceInterfaceInstanceManager.getCustomProperty(SessionConfig sessionConfig,
String interfaceInstanceId,
String name,
ITransaction transaction)
Returns the specified custom property.
|
String |
ServiceInterfaceInstanceManager.getCustomProperty(SessionConfig sessionConfig,
String interfaceInstanceId,
String name,
ITransaction transaction) |
String |
IServiceInterfaceInstanceDao.getCustomProperty(String interfaceInstanceId,
String name,
ITransaction daoTransaction)
Get the custom property of the service's interface's instance.
|
String |
ServiceInterfaceInstanceDaoJdbc.getCustomProperty(String interfaceInstanceId,
String name,
ITransaction transaction) |
String |
IServiceInterfaceInstanceManager.getDisplayName(ServiceInterfaceInstanceConfig serviceInterfaceInstanceConfig,
ITransaction transaction)
Returns the display name for a service interface instance.
|
String |
ServiceInterfaceInstanceManager.getDisplayName(ServiceInterfaceInstanceConfig serviceInterfaceInstanceConfig,
ITransaction transaction) |
boolean |
IServiceInterfaceInstanceManager.getEnableCache(SessionConfig sessionConfig,
String serviceInterfaceInstanceId,
ITransaction transaction)
Returns the enableCache property of an interface instance.
|
boolean |
ServiceInterfaceInstanceManager.getEnableCache(SessionConfig sessionConfig,
String serviceInterfaceInstanceId,
ITransaction transaction) |
List<String> |
IServiceInterfaceInstanceDao.getIdsByBaseInterfaceInstanceId(String interfaceInstanceId,
ITransaction daoTransaction)
Returns a list of ids of interface instances that have the given base interface instance id.
|
List<String> |
ServiceInterfaceInstanceDaoJdbc.getIdsByBaseInterfaceInstanceId(String interfaceInstanceId,
ITransaction daoTransaction) |
Collection<String> |
IServiceInterfaceInstanceManagerSPI.getIdsByBaseServiceInterfaceInstance(SessionConfig sessionConfig,
String serviceInterfaceInstanceId,
ITransaction transaction)
Returns the identifiers of derived interface instances that derives from the interface instance with the given identifier.
|
Collection<String> |
ServiceInterfaceInstanceManager.getIdsByBaseServiceInterfaceInstance(SessionConfig sessionConfig,
String serviceInterfaceInstanceId,
ITransaction transaction) |
List<String> |
IServiceInterfaceInstanceDao.getIdsByInterfaceStyleId(String interfaceStyleId,
ITransaction daoTransaction)
Returns a list of ids of interface instances that uses the given interface style id.
|
List<String> |
ServiceInterfaceInstanceDaoJdbc.getIdsByInterfaceStyleId(String interfaceStyleId,
ITransaction daoTransaction) |
Collection<String> |
IServiceInterfaceInstanceManager.getIdsByPageId(SessionConfig sessionConfig,
String pageId,
ITransaction transaction)
Get a list of ids by passing the page's id.
|
Collection<String> |
ServiceInterfaceInstanceManager.getIdsByPageId(SessionConfig sessionConfig,
String pageId,
ITransaction transaction) |
Collection<String> |
IServiceInterfaceInstanceManager.getIdsByServiceInstanceId(SessionConfig sessionConfig,
String serviceInstanceId,
boolean includeRunTimeInterfaces,
ITransaction transaction)
Get the Ids given the ServiceInstanceId.
|
Collection<String> |
ServiceInterfaceInstanceManager.getIdsByServiceInstanceId(SessionConfig sessionConfig,
String serviceInstanceId,
boolean includeRunTimeInterfaces,
ITransaction transaction) |
Collection<String> |
IServiceInterfaceInstanceManager.getIdsByServiceInstanceId(SessionConfig sessionConfig,
String serviceInstanceId,
ITransaction transaction)
Get a list of ids by passing the id of the service instance.
|
Collection<String> |
ServiceInterfaceInstanceManager.getIdsByServiceInstanceId(SessionConfig sessionConfig,
String serviceInstanceId,
ITransaction transaction) |
Collection<String> |
IServiceInterfaceInstanceDao.getIdsByServiceInstanceId(String serviceInstanceId,
boolean ignoreRuntimeInterfaces,
ITransaction transaction)
Get a list of ids given the id of the id of the service's instance.
|
Collection<String> |
ServiceInterfaceInstanceDaoJdbc.getIdsByServiceInstanceId(String serviceInstanceId,
boolean includeRunTimeInterfaces,
ITransaction transaction) |
Collection<String> |
IServiceInterfaceInstanceManager.getIdsByServiceInterfaceId(SessionConfig sessionConfig,
String serviceInterfaceId,
boolean ignoreRuntimeInterfaces,
boolean ignorePageTemplates,
ITransaction transaction)
Get a list of ids by passing the ids of the service interface.
|
Collection<String> |
ServiceInterfaceInstanceManager.getIdsByServiceInterfaceId(SessionConfig sessionConfig,
String serviceInterfaceId,
boolean ignoreRuntimeInterfaces,
boolean ignorePageTemplates,
ITransaction transaction) |
Collection<String> |
IServiceInterfaceInstanceManager.getIdsByServiceInterfaceId(SessionConfig sessionConfig,
String serviceInterfaceId,
boolean ignoreRuntimeInterfaces,
ITransaction transaction)
Get a list of ids by passing the ids of the service interface.
|
Collection<String> |
ServiceInterfaceInstanceManager.getIdsByServiceInterfaceId(SessionConfig sessionConfig,
String serviceInterfaceId,
boolean ignoreRuntimeInterfaces,
ITransaction transaction) |
Collection<String> |
IServiceInterfaceInstanceDao.getIdsByServiceInterfaceId(String serviceInterfaceId,
boolean ignoreRuntimeInterfaces,
boolean ignorePageTemplates,
ITransaction transaction)
Get a list of ids given the id of the service's interface.
|
Collection<String> |
ServiceInterfaceInstanceDaoJdbc.getIdsByServiceInterfaceId(String serviceInterfaceId,
boolean ignoreRuntimeInterfaces,
boolean ignorePageTemplates,
ITransaction transaction) |
Collection<String> |
IServiceInterfaceInstanceDao.getIdsByServiceInterfaceId(String serviceInterfaceId,
boolean ignoreRuntimeInterfaces,
ITransaction transaction)
Get a list of ids given the id of the service's interface.
|
Collection<String> |
ServiceInterfaceInstanceDaoJdbc.getIdsByServiceInterfaceId(String serviceInterfaceId,
boolean ignoreRuntimeInterfaces,
ITransaction transaction) |
Collection<String> |
IServiceInterfaceInstanceManager.getIdsByServiceInterfaceIdAndServiceInstanceId(SessionConfig sessionConfig,
String serviceInterfaceId,
String serviceInstanceId,
boolean ignoreRuntimeInterfaces,
boolean ignorePageTemplates,
ITransaction transaction)
Get a list of ids by passing the ids of service interface and the service
instance.
|
Collection<String> |
ServiceInterfaceInstanceManager.getIdsByServiceInterfaceIdAndServiceInstanceId(SessionConfig sessionConfig,
String serviceInterfaceId,
String serviceInstanceId,
boolean ignoreRuntimeInterfaces,
boolean ignorePageTemplates,
ITransaction transaction) |
Collection<String> |
IServiceInterfaceInstanceManager.getIdsByServiceInterfaceIdAndServiceInstanceId(SessionConfig sessionConfig,
String serviceInterfaceId,
String serviceInstanceId,
boolean ignoreRuntimeInterfaces,
ITransaction transaction)
Get a list of ids by passing the ids of service interface and the service
instance.
|
Collection<String> |
ServiceInterfaceInstanceManager.getIdsByServiceInterfaceIdAndServiceInstanceId(SessionConfig sessionConfig,
String serviceInterfaceId,
String serviceInstanceId,
boolean ignoreRuntimeInterfaces,
ITransaction transaction) |
Collection<String> |
IServiceInterfaceInstanceDao.getIdsByServiceInterfaceIdAndServiceInstanceId(String serviceInterfaceId,
String serviceInstanceId,
boolean ignoreRuntimeInterfaces,
boolean ignorePageTemplates,
ITransaction transaction)
Get a list of ids given the id of the service's interface and the id of the service's instance.
|
Collection<String> |
ServiceInterfaceInstanceDaoJdbc.getIdsByServiceInterfaceIdAndServiceInstanceId(String serviceInterfaceId,
String serviceInstanceId,
boolean ignoreRuntimeInterfaces,
boolean ignorePageTemplates,
ITransaction transaction) |
Collection<String> |
IServiceInterfaceInstanceDao.getIdsByServiceInterfaceIdAndServiceInstanceId(String serviceInterfaceId,
String serviceInstanceId,
boolean ignoreRuntimeInterfaces,
ITransaction transaction)
Get a list of ids given the id of the service's interface and the id of the service's instance.
|
Collection<String> |
ServiceInterfaceInstanceDaoJdbc.getIdsByServiceInterfaceIdAndServiceInstanceId(String serviceInterfaceId,
String serviceInstanceId,
boolean ignoreRuntimeInterfaces,
ITransaction transaction) |
Collection<String> |
IServiceInterfaceInstanceManager.getIdsByServiceInterfaceStyleId(SessionConfig sessionConfig,
String serviceInterfaceStyleId,
String serviceInterfaceId,
ITransaction transaction)
Get the Ids given the ServiceInterfaceStyleId.
|
Collection<String> |
ServiceInterfaceInstanceManager.getIdsByServiceInterfaceStyleId(SessionConfig sessionConfig,
String serviceInterfaceStyleId,
String serviceInterfaceId,
ITransaction transaction) |
Collection<String> |
IServiceInterfaceInstanceDao.getIdsByServiceInterfaceStyleId(String serviceInterfaceStyleId,
String serviceInterfaceId,
ITransaction daoTransaction)
Get the id given the id of the service's interface's style.
|
Collection<String> |
ServiceInterfaceInstanceDaoJdbc.getIdsByServiceInterfaceStyleId(String serviceInterfaceStyleId,
String serviceInterfaceId,
ITransaction transaction) |
String |
IServiceInterfaceInstanceManager.getInterfaceInstanceHtmlCache(SessionConfig sessionConfig,
String serviceInterfaceInstanceId,
Locale locale,
ITransaction transaction)
Deprecated.
since 7.0.0 deprecated without replacement. LumisXP manages interface instance caches transparently and solutions should not interfere.
|
String |
ServiceInterfaceInstanceManager.getInterfaceInstanceHtmlCache(SessionConfig sessionConfig,
String serviceInterfaceInstanceId,
Locale locale,
ITransaction transaction) |
ServiceInterfaceInstanceCacheEntry |
IServiceInterfaceInstanceManagerSPI.getInterfaceInstanceHtmlCache(String serviceInterfaceInstanceId,
IServiceInterfaceRenderRequest request,
ITransaction transaction)
Get the HTML Cache of the Interface Instance.
|
ServiceInterfaceInstanceCacheEntry |
ServiceInterfaceInstanceManager.getInterfaceInstanceHtmlCache(String serviceInterfaceInstanceId,
IServiceInterfaceRenderRequest request,
ITransaction transaction) |
String |
IServiceInterfaceInstanceManager.getMenu(SessionConfig sessionConfig,
String serviceInterfaceInstanceId,
ITransaction transaction)
Deprecated.
|
String |
ServiceInterfaceInstanceManager.getMenu(SessionConfig sessionConfig,
String serviceInterfaceInstanceId,
ITransaction transaction)
Deprecated.
|
String |
IServiceInterfaceInstanceManagerSPI.getMenuItemXml(SessionConfig sessionConfig,
String serviceInterfaceInstanceId,
ServiceInterfaceMenuLevel menuLevel,
String menuItemId,
ITransaction transaction)
Returns the XML for the menu item in the specified service interface instance and menu level.
|
String |
ServiceInterfaceInstanceManager.getMenuItemXml(SessionConfig sessionConfig,
String serviceInterfaceInstanceId,
ServiceInterfaceMenuLevel menuLevel,
String menuItemId,
ITransaction transaction) |
String |
IServiceInterfaceInstanceManager.getMenuXml(SessionConfig sessionConfig,
String serviceInterfaceInstanceId,
ServiceInterfaceMenuLevel menuLevel,
ITransaction transaction)
Returns the XML for the menu for the specified service interface instance and menu level.
|
String |
ServiceInterfaceInstanceManager.getMenuXml(SessionConfig sessionConfig,
String serviceInterfaceInstanceId,
ServiceInterfaceMenuLevel menuLevel,
ITransaction transaction) |
ServiceInterfaceInstanceConfig |
IServiceInterfaceInstanceManager.getOrAddServiceInterfaceRunTimeInstance(SessionConfig sessionConfig,
String serviceInterfaceId,
String serviceInstanceId,
String pageId,
ITransaction transaction)
Get or Add the ServiceInterfaceRunTimeInstance.
|
ServiceInterfaceInstanceConfig |
ServiceInterfaceInstanceManager.getOrAddServiceInterfaceRunTimeInstance(SessionConfig sessionConfig,
String serviceInterfaceId,
String serviceInstanceId,
String pageId,
ITransaction transaction) |
IServiceInterfaceInstanceOwner |
ServiceInterfaceInstanceConfig.getOwner()
Returns the owner.
|
Collection<String> |
IServiceInterfaceInstanceDao.getPageInterfaceInstanceIds(String pageId,
ITransaction daoTransaction)
Get the ids of the page's interface's instance.
|
Collection<String> |
ServiceInterfaceInstanceDaoJdbc.getPageInterfaceInstanceIds(String pageId,
ITransaction transaction) |
boolean |
IServiceInterfaceInstanceManager.getPrintable(SessionConfig sessionConfig,
String serviceInterfaceInstanceId,
ITransaction transaction)
Returns the printable property of an interface instance.
|
boolean |
ServiceInterfaceInstanceManager.getPrintable(SessionConfig sessionConfig,
String serviceInterfaceInstanceId,
ITransaction transaction) |
int |
IServiceInterfaceInstanceManager.getRenderAs(SessionConfig sessionConfig,
String serviceInterfaceInstanceId,
ITransaction transaction)
Returns the renderAs property of an interface instance.
|
int |
ServiceInterfaceInstanceManager.getRenderAs(SessionConfig sessionConfig,
String serviceInterfaceInstanceId,
ITransaction transaction) |
ServiceInterfaceInstanceConfig |
IServiceInterfaceInstanceDao.getRunTimeInstance(String serviceInterfaceId,
String serviceInstanceId,
String pagetId,
ITransaction daoTransaction)
Get the runtime instance.
|
ServiceInterfaceInstanceConfig |
ServiceInterfaceInstanceDaoJdbc.getRunTimeInstance(String serviceInterfaceId,
String serviceInstanceId,
String pageId,
ITransaction transaction) |
protected void |
ServiceInterfaceInstanceControllerXml.getServiceInterfaceInstanceMenu(Node methodNode,
ServiceInterfaceMenuLevel menuLevel,
ITransaction portalTransaction) |
protected void |
ServiceInterfaceInstanceControllerXml.getServiceInterfaceInstanceProperties(Node methodNode,
ITransaction portalTransaction) |
Collection<ServiceInterfaceInstanceConfig> |
ServiceInterfaceInstanceRenderDataChangedEvent.getServiceInterfaceInstancesChanged()
Returns the service interface instances whose render data may have changed.
|
protected void |
ServiceInterfaceInstanceControllerHtml.getServiceInterfaceInstanceXmlData() |
String |
IServiceInterfaceInstanceManager.getTitle(ServiceInterfaceInstanceConfig serviceInterfaceInstanceConfig,
ITransaction transaction)
Returns the title for a service interface instance.
|
String |
ServiceInterfaceInstanceManager.getTitle(ServiceInterfaceInstanceConfig serviceInterfaceInstanceConfig,
ITransaction transaction) |
String |
IServiceInterfaceInstanceManager.getXmlData(SessionConfig sessionConfig,
String serviceInterfaceInstanceId)
Returns the previously saved XML data for the service interface instance
for the given user session
|
String |
ServiceInterfaceInstanceManager.getXmlData(SessionConfig sessionConfig,
String serviceInterfaceInstanceId) |
boolean |
ServiceInterfaceInstanceManager.isDerivedFromTemplate(SessionConfig sessionConfig,
ServiceInterfaceInstanceConfig serviceInterfaceInstanceConfig,
ITransaction transaction)
Verify whether service interface instance is derived from a channel template or page template.
|
void |
ServiceInterfaceInstanceObserver.onEvent(IPortalEvent ev) |
protected String |
ServiceInterfaceInstanceControllerHtml.processHTML(ServiceContainerRenderRequest renderRequest,
String outputHTML)
Processes the HTML generated by the service interface instance, for proper rendering in the final page.
|
protected void |
ServiceInterfaceInstanceControllerXml.refreshInterfaceInstance(Node methodNode,
ITransaction portalTransaction) |
protected void |
ServiceInterfaceInstanceControllerHtml.renderOutput(ServiceContainerRenderRequest renderRequest,
ServiceContainerRenderResponse renderResponse,
Map<String,String> originalMap,
ITransaction portalTransaction) |
protected void |
ServiceInterfaceInstanceControllerHtml.renderServiceInterfaceInstance()
Returns the HTML for a single service interface instance.
|
void |
ServiceInterfaceInstanceConfig.serialize(ServiceInterfaceInstanceConfig serviceInterfaceInstanceConfig,
OutputStream outputStream) |
void |
IServiceInterfaceInstanceManager.serialize(SessionConfig sessionConfig,
String serviceInterfaceInstanceId,
OutputStream outputStream,
ITransaction transaction) |
void |
ServiceInterfaceInstanceManager.serialize(SessionConfig sessionConfig,
String serviceInterfaceInstanceId,
OutputStream outputStream,
ITransaction transaction) |
void |
IServiceInterfaceInstanceManager.serializeCustomProperties(SessionConfig sessionConfig,
String serviceInterfaceInstanceId,
OutputStream outputStream,
ITransaction transaction) |
void |
ServiceInterfaceInstanceManager.serializeCustomProperties(SessionConfig sessionConfig,
String serviceInterfaceInstanceId,
OutputStream outputStream,
ITransaction transaction) |
void |
IServiceInterfaceInstanceManager.setCustomProperties(SessionConfig sessionConfig,
String interfaceInstanceId,
Map<String,String> propertiesTable,
ITransaction transaction)
Receives a Map with one or more properties to be set for the given
interface.
|
void |
ServiceInterfaceInstanceManager.setCustomProperties(SessionConfig sessionConfig,
String interfaceInstanceId,
Map<String,String> propertiesTable,
ITransaction transaction) |
void |
IServiceInterfaceInstanceManager.setCustomProperty(SessionConfig sessionConfig,
String interfaceInstanceId,
String name,
String value,
ITransaction transaction)
Set a custom property for the given interface instance.
|
void |
ServiceInterfaceInstanceManager.setCustomProperty(SessionConfig sessionConfig,
String interfaceInstanceId,
String name,
String value,
ITransaction transaction) |
boolean |
IServiceInterfaceInstanceDao.setCustomProperty(String interfaceInstanceId,
String name,
String value,
ITransaction daoTransaction)
Set the custom property of the service's interface's instance.
|
boolean |
ServiceInterfaceInstanceDaoJdbc.setCustomProperty(String interfaceInstanceId,
String name,
String value,
ITransaction transaction) |
void |
IServiceInterfaceInstanceManager.setInterfaceInstanceHtmlCache(SessionConfig sessionConfig,
String serviceInterfaceInstanceId,
Locale locale,
String serviceInterfaceInstanceHtml,
ITransaction transaction)
Deprecated.
since 7.0.0 deprecated without replacement. LumisXP manages interface instance caches transparently and solutions should not interfere.
|
void |
ServiceInterfaceInstanceManager.setInterfaceInstanceHtmlCache(SessionConfig sessionConfig,
String serviceInterfaceInstanceId,
Locale locale,
String serviceInterfaceInstanceHtml,
ITransaction transaction) |
void |
IServiceInterfaceInstanceManagerSPI.setInterfaceInstanceHtmlCache(String serviceInterfaceInstanceId,
IServiceInterfaceRenderRequest request,
String serviceInterfaceInstanceHtml,
Map<PortalPrintWriter.WritePosition,LinkedHashMap<String,String>> headWrites,
ITransaction transaction)
Set the HTML Cache of the Interface Instance.
|
void |
ServiceInterfaceInstanceManager.setInterfaceInstanceHtmlCache(String serviceInterfaceInstanceId,
IServiceInterfaceRenderRequest request,
String serviceInterfaceInstanceHtml,
Map<PortalPrintWriter.WritePosition,LinkedHashMap<String,String>> headWrites,
ITransaction transaction) |
protected void |
ServiceInterfaceInstanceControllerHtml.setRequestMode()
Sets the Request Mode.
|
void |
IServiceInterfaceInstanceDao.update(ServiceInterfaceInstanceConfig serviceInterfaceInstance,
ITransaction daoTransaction)
Update the service's interface's instance.
|
void |
ServiceInterfaceInstanceDaoJdbc.update(ServiceInterfaceInstanceConfig serviceInterfaceInstance,
ITransaction transaction) |
void |
IServiceInterfaceInstanceManager.update(SessionConfig sessionConfig,
ServiceInterfaceInstanceConfig serviceInterfaceInstanceConfig,
ITransaction transaction)
Update a service interface instance.
|
void |
ServiceInterfaceInstanceManager.update(SessionConfig sessionConfig,
ServiceInterfaceInstanceConfig serviceInterfaceInstanceConfig,
ITransaction transaction) |
void |
IServiceInterfaceInstanceManager.updateCustomPropertiesFromTemplate(SessionConfig sessionConfig,
String interfaceInstanceId,
ITransaction transaction)
Update the interface instance custom properties from parent interface
instance
|
void |
ServiceInterfaceInstanceManager.updateCustomPropertiesFromTemplate(SessionConfig sessionConfig,
String interfaceInstanceId,
ITransaction transaction) |
void |
IServiceInterfaceInstanceManager.updatePropertiesFromTemplate(SessionConfig sessionConfig,
String interfaceInstanceId,
ITransaction transaction)
Update the properties of from the template.
|
void |
ServiceInterfaceInstanceManager.updatePropertiesFromTemplate(SessionConfig sessionConfig,
String interfaceInstanceId,
ITransaction transaction) |
Constructor and Description |
---|
ServiceInterfaceInstanceControllerHtml(HttpServletRequest request,
HttpServletResponse response,
PageContext pageContext) |
ServiceInterfaceInstanceControllerXml(HttpServletRequest request,
HttpServletResponse response,
PageContext pageContext) |
ServiceInterfaceInstanceRenderDataChangedEvent(SessionConfig sessionConfig,
Collection<ServiceInterfaceInstanceConfig> interfaceInstancesChanged,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
void |
IServiceInterfaceInstanceSerializationManager.deserialize(DeserializationContext deserializationContext,
ServiceInterfaceInstanceSerializableConfig serviceInterfaceInstanceSerializableConfig)
Deserialize a service interface instance.
|
void |
ServiceInterfaceInstanceSerializationManager.deserialize(DeserializationContext deserializationContext,
ServiceInterfaceInstanceSerializableConfig serviceInterfaceInstanceSerializableConfig) |
void |
IServiceInterfaceInstanceSerializationManager.deserialize(DeserializationContext deserializationContext,
ServiceInterfaceInstanceSerializableConfig serviceInterfaceInstanceSerializableConfig,
IDirectory directory,
String interfaceInstanceInputPath,
String customPropertiesInputPath)
Deserializes a service interface instance from specific output path.
|
void |
ServiceInterfaceInstanceSerializationManager.deserialize(DeserializationContext deserializationContext,
ServiceInterfaceInstanceSerializableConfig serviceInterfaceInstanceSerializableConfig,
IDirectory directory,
String interfaceInstanceInputPath,
String customPropertiesInputPath) |
SerializationMessageConfigNode |
IServiceInterfaceInstanceSerializationManager.getSerializationMessageConfigNode(BaseSerializationContext baseSerializationContext,
ServiceInterfaceInstanceConfig serviceInterfaceInstanceConfig)
Get a
SerializationMessageConfigNode object containing fully recursive information about a service interface instance. |
SerializationMessageConfigNode |
ServiceInterfaceInstanceSerializationManager.getSerializationMessageConfigNode(BaseSerializationContext baseSerializationContext,
ServiceInterfaceInstanceConfig serviceInterfaceInstanceConfig) |
SerializationMessageConfigNode |
IServiceInterfaceInstanceSerializationManager.getSerializationMessageConfigNode(BaseSerializationContext baseSerializationContext,
ServiceInterfaceInstanceConfig serviceInterfaceInstanceConfig,
EnumSet<SerializationMessageConfigNode.RecursionStopPoints> recursionStopPoints)
Get a
SerializationMessageConfigNode object containing partially recursive information about a service interface instance. |
SerializationMessageConfigNode |
ServiceInterfaceInstanceSerializationManager.getSerializationMessageConfigNode(BaseSerializationContext baseSerializationContext,
ServiceInterfaceInstanceConfig serviceInterfaceInstanceConfig,
EnumSet<SerializationMessageConfigNode.RecursionStopPoints> recursionStopPoints) |
void |
ServiceInterfaceInstanceConfigDependencyAnalyzer.persist(IConfigPersister configPersister,
boolean firstPersistenceIsRequired) |
boolean |
ServiceInterfaceInstanceSerializationManager.persistConfig(DeserializationContext deserializationContext,
Object config,
boolean firstPersistence) |
ServiceInterfaceInstanceSerializableConfig |
IServiceInterfaceInstanceSerializationManager.serialize(SerializationContext serializationContext,
String serviceInterfaceInstanceId)
Serialize a service interface instance.
|
ServiceInterfaceInstanceSerializableConfig |
ServiceInterfaceInstanceSerializationManager.serialize(SerializationContext serializationContext,
String serviceInterfaceInstanceId) |
ServiceInterfaceInstanceSerializableConfig |
IServiceInterfaceInstanceSerializationManager.serialize(SerializationContext serializationContext,
String serviceInterfaceInstanceId,
IDirectory directory,
String interfaceInstanceOutputPath,
String customPropertiesOutputPath)
Serializes a service interface instance to specific output path.
|
ServiceInterfaceInstanceSerializableConfig |
ServiceInterfaceInstanceSerializationManager.serialize(SerializationContext serializationContext,
String serviceInterfaceInstanceId,
IDirectory directory,
String interfaceInstanceOutputPath,
String customPropertiesOutputPath) |
Modifier and Type | Method and Description |
---|---|
String |
UniqueWriterController.processHtml(String html,
boolean isServerSide)
Deprecated.
since 8.2.0 replaced by
UniqueWriterController.processHtml(String, boolean, IPageWebResourceRenderRequest) . |
String |
UniqueWriterController.processHtml(String html,
boolean isServerSide,
IPageWebResourceRenderRequest renderRequest)
Process the HTML replacing the found markers for their text fragment accordingly.
|
String |
UniqueWriterController.processHtml(String html,
Set<String> usedKeys,
boolean isServerSide,
IPageWebResourceRenderRequest renderRequest)
Process the HTML replacing the found markers for their text fragment accordingly.
|
Modifier and Type | Method and Description |
---|---|
String |
IRelationshipManager.addRelationship(IRelatable source,
IRelatable target,
IRelationshipType relationshipType)
Adds a new relationship between the source and target nodes.
|
String |
IRelationshipManager.addRelationshipType(String id,
String name,
String reverseName,
Set<String> sourceTypes,
Set<String> targetTypes,
boolean bidirectional)
Adds a new type of relationship.
|
IRelatable |
IRelationshipManager.getNode(String id)
Gets the relatable node.
|
IRelatable |
IRelationshipManager.getNode(String type,
String objectId,
boolean createNode)
Gets the relatable node or creates a new node with the values in type and objectId params if the param createNode is equal to true.
|
IRelationship |
IRelationshipManager.getRelationship(String id)
Gets the relationship.
|
Set<IRelatable> |
IRelationshipManager.listRelationships(IRelatable firstObject,
IRelatable secondObject,
IRelationshipType relationshipType)
Lists all relatable nodes that contains a relationship with firstObject and secondObject.
|
Set<IRelationship> |
IRelationshipManager.listRelationships(IRelatable source,
IRelationshipType relationshipType)
Lists all relationships where the param source is the source and where the param source is the target if the relationship is bidirectional.
|
Modifier and Type | Method and Description |
---|---|
protected void |
StructureElement.applyPropertyBagChanges()
Apply the changes made to the properties managed by this element to the property
bag persistence entities.
|
protected void |
StructureElement.deserializePropertyBag(Node propertyBagNode)
Updates this element's property bag according to the given serialized
property bag node.
|
protected String |
StructureElement.getAutomaticFriendlyId(String value)
Generates a friendly identifier for the element based on the given value.
|
protected String |
StructureElement.getFriendlyIdBaseValue(String value)
Returns the base value from the given value.
|
protected String |
StructureElement.getFriendlyIdValueForCounter(String baseValue,
Integer counter)
Returns the result of base value inserting the given counter.
|
protected void |
StructureElement.loadPropertyBagValues()
Loads the values of the property bag of this element.
|
protected abstract boolean |
StructureElement.mayUseFriendlyId(String friendlyId)
Indicates if the element may use the given friendly identifier.
|
protected String |
StructureElement.serializePropertyBag()
Serialize the property bags.
|
Modifier and Type | Method and Description |
---|---|
Set<String> |
AreaTagManager.getAppliedAreaTags(ChannelConfig channel) |
Set<String> |
IAreaTagManagerSPI.getAppliedAreaTags(ChannelConfig channel)
Return the applied area tags in the given channel.
|
Set<String> |
AreaTagManager.getAppliedAreaTags(ServiceInstanceConfig serviceInstance) |
Set<String> |
IAreaTagManagerSPI.getAppliedAreaTags(ServiceInstanceConfig serviceInstance)
Returns the applied area tags in the given service instance.
|
AreaTagUsageConfig |
AreaTagManager.getLocalAreaTags(ChannelConfig channel) |
AreaTagUsageConfig |
IAreaTagManagerSPI.getLocalAreaTags(ChannelConfig channel)
Returns the
area tag usage for the given channel. |
AreaTagUsageConfig |
AreaTagManager.getLocalAreaTags(ServiceInstanceConfig serviceInstance) |
AreaTagUsageConfig |
IAreaTagManagerSPI.getLocalAreaTags(ServiceInstanceConfig serviceInstance)
Returns the
area tag usage for the given service instance. |
void |
AreaTagManager.updateLocalAreaTagUsage(ChannelConfig channel,
AreaTagUsageConfig areaTagAppliance) |
void |
IAreaTagManagerSPI.updateLocalAreaTagUsage(ChannelConfig channel,
AreaTagUsageConfig areaTagAppliance)
Updates the
theme appliance for the given channel. |
void |
AreaTagManager.updateLocalAreaTagUsage(ServiceInstanceConfig serviceInstance,
AreaTagUsageConfig areaTagAppliance) |
void |
IAreaTagManagerSPI.updateLocalAreaTagUsage(ServiceInstanceConfig serviceInstance,
AreaTagUsageConfig areaTagAppliance)
Updates the
theme appliance for the given service instance. |
Modifier and Type | Method and Description |
---|---|
void |
ParallelExecutor.awaitExecutions()
Pauses until all pending tasks complete execution.
|
void |
ParallelExecutor.awaitExecutions(boolean flushAndClearSession)
Pauses until all pending tasks complete execution.
|
ITransaction |
ParallelExecutor.ITransactionFactory.createTransaction()
Creates a transaction and returns it.
|
void |
IStructureSyncManager.syncIn(String rootChannelId,
Set<String> selectedElements,
String processId,
boolean clearHtmlCache)
Synchronizes a structure from the file system to the portal
database.
|
void |
StructureSyncManager.syncIn(String rootChannelId,
Set<String> selectedElements,
String processId,
boolean clearHtmlCache) |
void |
IStructureSyncManager.syncIn(String rootChannelId,
Set<String> selectedElements,
String processId,
File structureRoot,
boolean clearHtmlCache)
Deprecated.
since 8.0.0 replaced by
IStructureSyncManager.syncIn(String, Set, String, IFile, boolean) |
void |
StructureSyncManager.syncIn(String rootChannelId,
Set<String> selectedElements,
String processId,
File structureRoot,
boolean clearHtmlCache) |
void |
IStructureSyncManager.syncIn(String rootChannelId,
Set<String> selectedElements,
String processId,
IFile structureRoot,
boolean clearHtmlCache)
Synchronizes a structure from the file system to the portal
database.
|
void |
StructureSyncManager.syncIn(String rootChannelId,
Set<String> selectedElements,
String processId,
IFile structureRoot,
boolean clearHtmlCache) |
lumis.portal.structure.sync.ChannelHierarchy |
SyncOutProcessor.syncOut(String rootChannelId,
IFile rootDir,
String processId,
Set<String> globalGroupsToBeExported,
boolean isSyncOut)
Synchronizes the structure of a channel hierarchy from the portal to the
file system.
|
void |
IStructureSyncManager.syncOut(String rootChannelId,
String processId,
Set<String> globalGroupsToBeExported)
Synchronizes a structure from the portal database to the file system.
|
void |
StructureSyncManager.syncOut(String rootChannelId,
String processId,
Set<String> globalGroupsToBeExported) |
Modifier and Type | Class and Description |
---|---|
class |
ThemeException
PortalException extension to be used in theme scope. |
Modifier and Type | Method and Description |
---|---|
static void |
ThemeUtil.addNewTheme(String themeName,
String themeDescription,
String themePath,
String moduleId,
IResource resource) |
void |
IThemeManagerSPI.clearCache(String themeId)
Clears the theme cache.
|
void |
ThemeManager.clearCache(String themeId) |
void |
ThemeManager.copyThemesFilesToWebRoots(Collection<? extends ITheme> themes,
Collection<IWebRootPortalBaseFolder> webRoots)
Copies the given themes' WWW resources to the given web root folders.
|
Collection<ITheme> |
IThemeManagerSPI.getAllThemes()
Returns all registered themes
|
Collection<ITheme> |
ThemeManager.getAllThemes()
Returns all existent themes.
|
List<String> |
ThemeManager.getAppliedThemesIds(ChannelConfig channel)
Return the applied themes (identifiers) in the given channel.
|
List<String> |
ThemeManager.getAppliedThemesIds(PageConfig page)
Returns the applied themes (identifiers) in the given page.
|
ThemeUsageConfig |
ThemeManager.getLocalThemes(ChannelConfig channel,
String runtimeInterfaceId)
Returns the
theme usage for the given channel. |
ThemeUsageConfig |
ThemeManager.getLocalThemes(PageConfig page,
String runtimeInterfaceId)
Returns the
theme usage for the given page. |
Set<String> |
IThemeSPI.getResources(IThemeSPI.ResourceFolder resourceFolder)
Returns the resources inside the given resource folder of this theme.
|
IThemeSPI |
IThemeManagerSPI.getTheme(String themeId)
Returns the theme with the given identifier.
|
IThemeSPI |
ThemeManager.getTheme(String themeId) |
static IFile |
ThemeUtil.getThemeRootDir(String themePath) |
List<ITheme> |
IThemeProvider.getThemes()
Returns the list of themes that should be used.
|
List<ITheme> |
ThemeManager.getThemes(List<String> appliedThemeIds)
Returns the applied themes from an applied themes identifiers list.
|
List<ITheme> |
ThemeManager.getThemes(WebResource webResource)
Returns the applied themes in the given web resource.
|
static boolean |
ThemeUtil.isEditableTheme(String themeId)
Returns whether the given theme is editable.
|
void |
IThemeManagerSPI.register(String themePath)
Registers a theme in the specified classpath relative path.
|
void |
ThemeManager.register(String themePath) |
void |
ThemeManager.removeThemeFolderFromWebRoots(Collection<? extends ITheme> themes,
Collection<IWebRootPortalBaseFolder> webRoots)
Removes the given themes' folders from the given web root folders.
|
static String |
ThemeUtil.resolveDefinitionFilePath(String definitionFilePath,
List<? extends ITheme> themes)
Resolves the definition file path with the given applied themes applying the following rules:
If the appliedThemes parameter is null or if it is empty the original resource path will be returned
The given resource will be searched through the applied themes' resource (under IThemeSPI.ResourceFolder.DEF )If the resource was found in any applied theme, the resolved resource will be compound as: |
static String |
ThemeUtil.resolveLayoutFilePath(String layoutFilePath,
List<? extends ITheme> themes)
Resolves the layout file path with the given applied themes applying the following rules:
If the appliedThemes parameter is null or if it is empty the original resource path will be returned
The given resource will be searched through the applied themes' resource (under IThemeSPI.ResourceFolder.DEF )If the resource was found in any applied theme, the resolved resource will be compound as: |
static String |
ThemeUtil.resolveWWWResourcePath(String resourcePath,
List<? extends ITheme> themes)
Resolves the resources' paths with the given applied themes applying the following rules:
If the resource path start with no theme prefix , then the returned resource path will be the original one without the
prefix
If the appliedThemes parameter is null or if it is empty the original resource path will be returned
The given resource will be searched through the applied themes' resource (under IThemeSPI.ResourceFolder.WWW )If the resource was found in any applied theme, the resolved resource will be compound as: <theme www prefix> is ThemeManager.THEME_WWW_RESOURCE_PREFIX )
If the resource was not found, the original one will be returned
|
void |
IThemeManagerSPI.unregister(String themeId)
Unregisters a theme, removing it from the themes registry.
|
void |
ThemeManager.unregister(String themeId) |
void |
ThemeManager.unregister(String themeId,
boolean verifyUsage)
Unregisters a theme, removing it from the themes registry.
|
void |
ThemeManager.updateLocalThemeUsage(ChannelConfig channel,
ThemeUsageConfig themeUsage)
Updates the
theme usage for the given channel. |
void |
ThemeManager.updateLocalThemeUsage(PageConfig page,
ThemeUsageConfig themeUsage)
Updates the
theme usage for the given page. |
Modifier and Type | Method and Description |
---|---|
void |
AbstractTransactionObserver.afterCommit() |
void |
ITransactionObserver.afterCommit()
Called by the observed transaction just after the commit operation.
|
void |
AbstractTransactionObserver.afterRollback() |
void |
ITransactionObserver.afterRollback()
Called by the observed transaction just after the rollback operation.
|
boolean |
AbstractTransactionObserver.beforeCommit() |
boolean |
ITransactionObserver.beforeCommit()
Called by the observed transaction just before the commit operation.
|
void |
AbstractTransactionObserver.beforeRollback() |
void |
ITransactionObserver.beforeRollback()
Called by the observed transaction just before the rollback operation.
|
static ITransaction |
PortalTransactionFactory.getTransaction()
Deprecated.
Since 4.2.0, replaced by
PortalTransactionFactory.createTransaction()
and PortalTransactionFactory.getCurrentTransaction() . Current implementation behaves as
createTransaction() . |
Modifier and Type | Method and Description |
---|---|
String |
IURLManager.convertHTMLPathsToDynamicPaths(String html)
Deprecated.
Since 6.2.0, replaced by
IURLManager.convertHTMLPathsToDynamicPaths(String, IWebsite)
due to the inclusion of multiple websites feature.
For best compatibility, this method resolves based on the
default website's main non-secure URL. If there is no default website,
it will throw an |
String |
URLManager.convertHTMLPathsToDynamicPaths(String html)
Deprecated.
|
String |
IURLManager.convertHTMLPathsToDynamicPaths(String html,
IWebsite baseWebsite)
Deprecated.
since 8.2.0 replaced by
IURLManager.processHTML(String, IPageWebResourceRenderRequest) . |
String |
URLManager.convertHTMLPathsToDynamicPaths(String html,
IWebsite baseWebsite)
Deprecated.
|
String |
IURLManager.convertHTMLPathToDynamicPath(String href,
IWebsite baseWebsite)
Replaces the given path to web resource by the corresponding dynamic path.
|
String |
URLManager.convertHTMLPathToDynamicPath(String href,
IWebsite baseWebsite) |
WebResource |
IWebResourceFactory.createWebResourceByDynamicPath(String dynamicPath)
Creates a
WebResource instance based on a dynamic path. |
void |
URLManager.deleteWebResourceByPageIds(SessionConfig sessionConfig,
Collection<String> pagesIds,
Map<String,String[]> parameters,
Locale locale,
PortalEventOperationType opType,
boolean isAutomaticBulkExpiration,
ITransaction transaction)
Delete the webresources by page identifier.
|
void |
IURLManager.deleteWebResourceRedirection(String sourceWebsiteId,
String sourcePath)
Deletes the web resource redirection rule for the specified source website and path.
|
void |
URLManager.deleteWebResourceRedirection(String sourceWebsiteId,
String sourcePath) |
void |
IURLManager.deleteWebResourcesFromPage(String pageId)
Delete all
web resources from the page that has the given identifier. |
void |
URLManager.deleteWebResourcesFromPage(String pageId) |
void |
IURLManager.deleteWebResourcesInChannelTree(String rootChannelId)
Delete all
web resources in the tree for which the root is the given rootChannelId . |
void |
URLManager.deleteWebResourcesInChannelTree(String rootChannelId) |
protected WebResource |
WebResourceDiscoveryFilter.findWebResource(HttpServletRequest request,
WebsiteDiscoveryFilter.WebsiteRequest websiteRequest,
HttpServletResponse response)
Returns the web resource for the given request.
|
WebResource |
IURLManager.findWebResourceByPathAndWebsite(String websiteId,
String path)
Finds a web resource by it's website identifier and path.
|
WebResource |
URLManager.findWebResourceByPathAndWebsite(String websiteId,
String path) |
String |
IURLManager.fixReferencesAccordingToPath(String html,
String path)
Deprecated.
since 8.2.0 replaced by
IURLManager.fixReferencesAccordingToPath(String, String, IPortalMode, String) |
String |
URLManager.fixReferencesAccordingToPath(String html,
String path)
Deprecated.
|
String |
IURLManager.fixReferencesAccordingToPath(String html,
String path,
IPortalMode portalMode)
Deprecated.
since 8.2.0 replaced by
IURLManager.fixReferencesAccordingToPath(String, String, IPortalMode, String) |
String |
URLManager.fixReferencesAccordingToPath(String html,
String path,
IPortalMode portalMode)
Deprecated.
|
String |
IURLManager.fixReferencesAccordingToPath(String html,
String path,
IPortalMode portalMode,
String pageId)
Fixes references within an HTML according to the given path.
|
String |
URLManager.fixReferencesAccordingToPath(String html,
String path,
IPortalMode portalMode,
String pageId) |
static PageWebResource |
URLUtil.getFirstPageWebResource(ChannelWebResource cwr)
Returns the page web resource for the first page whithin the channel of the given channel web resource.
|
static IURLManager.PathReferenceType |
IURLManager.PathReferenceType.getFromPage(PageConfig pageConfig) |
protected abstract String |
WebResource.getSeoRuleUrlPattern()
Get the Url Path from the SeoRule linked to this WebResource.
|
default WebResource |
IURLManager.getWebResourceByDynamicPath(String dynamicPath,
IURLManager.CreateStrategy createStrategy)
Returns a web resource for the given dynamic path.
|
default WebResource |
IURLManager.getWebResourceByDynamicPath(String dynamicPath,
IURLManager.CreateStrategy createStrategy,
Locale locale)
Returns a web resource for the given dynamic path.
|
WebResource |
IURLManager.getWebResourceByDynamicPath(String dynamicPath,
IURLManager.CreateStrategy createStrategy,
Locale locale,
WebResource creator)
Returns a web resource for the given dynamic path.
|
WebResource |
URLManager.getWebResourceByDynamicPath(String dynamicPath,
IURLManager.CreateStrategy createStrategy,
Locale locale,
WebResource creator) |
String |
IURLManager.getWebResourcePathByDynamicPath(String dynamicPath,
Locale locale)
Deprecated.
Since 6.2.0, due to inclusion of website feature,
the web resource path is not unique, so this method is no longer
appropriated for its original purpose of adjusting links URIs.
Consider using
IURLManager.getWebResourceURI(String, Locale, IWebsite, boolean) instead. |
String |
URLManager.getWebResourcePathByDynamicPath(String dynamicPath,
Locale locale)
Deprecated.
|
WebResource |
IURLManager.getWebResourceToRedirect(String sourceWebsiteId,
String sourcePath)
Returns the web resource to redirect to when the given path on the given website is accessed.
|
WebResource |
URLManager.getWebResourceToRedirect(String sourceWebsiteId,
String sourcePath) |
default URI |
IURLManager.getWebResourceURI(String dynamicPath,
Locale locale,
IWebsite baseWebsite,
boolean baseSecure)
Deprecated.
The (
portal mode is now relevant and should be passed as parameter. Prefer the
method IURLManager.getWebResourceURI(String, Locale, IWebsite, boolean, IPortalMode) . |
default URI |
IURLManager.getWebResourceURI(String dynamicPath,
Locale locale,
IWebsite baseWebsite,
boolean baseSecure,
IPortalMode portalMode)
Returns the URI for referencing a web resource given its dynamic path.
|
URI |
IURLManager.getWebResourceURI(String dynamicPath,
Locale locale,
IWebsite baseWebsite,
boolean baseSecure,
IPortalMode portalMode,
WebResource creator)
Returns the URI for referencing a web resource given its dynamic path.
|
URI |
URLManager.getWebResourceURI(String dynamicPath,
Locale locale,
IWebsite baseWebsite,
boolean baseSecure,
IPortalMode portalMode,
WebResource creator) |
boolean |
IWebResourceFactory.isCacheEnabled(WebResource webResource)
Returns if the cache is enabled for a web resource.
|
void |
URLConversionCacheObserver.onEvent(IPortalEvent ev) |
protected String |
URLManager.processBackgroundHref(lumis.portal.url.URLManager.IHrefProcessor processor,
String matchString) |
default String |
IURLManager.processHref(String url,
List<ITheme> themes,
String applicationRequestedPath,
Locale locale,
IWebsiteBaseURL websiteBaseURL,
boolean baseSecure)
Deprecated.
since 8.2.0 replaced by
IURLManager.processHref(String, List, String, Locale, IWebsiteBaseURL, boolean, IPortalMode) . |
default String |
IURLManager.processHref(String url,
List<ITheme> themes,
String applicationRequestedPath,
Locale locale,
IWebsiteBaseURL websiteBaseURL,
boolean baseSecure,
IPortalMode portalMode)
Deprecated.
|
default String |
IURLManager.processHref(String url,
List<ITheme> themes,
String applicationRequestedPath,
Locale locale,
IWebsiteBaseURL websiteBaseURL,
boolean baseSecure,
IPortalMode portalMode,
IURLManager.PathReferenceType pathReferenceType)
Processes a URL to be rendered correctly in a portal page.
|
String |
IURLManager.processHref(String url,
List<ITheme> themes,
String applicationRequestedPath,
Locale locale,
IWebsiteBaseURL websiteBaseURL,
boolean baseSecure,
IPortalMode portalMode,
IURLManager.PathReferenceType pathReferenceType,
WebResource creator)
Processes a URL to be rendered correctly in a portal page.
|
String |
URLManager.processHref(String url,
List<ITheme> themes,
String applicationRequestedPath,
Locale locale,
IWebsiteBaseURL websiteBaseURL,
boolean baseSecure,
IPortalMode portalMode,
IURLManager.PathReferenceType pathfixType,
WebResource creator) |
String |
IURLManager.processHTML(String originalHtml,
IPageWebResourceRenderRequest renderRequest)
Processes a HTML to be rendered correctly in a portal page.
|
String |
URLManager.processHTML(String originalHtml,
IPageWebResourceRenderRequest request) |
String |
IURLManager.processHTML(String originalHtml,
Locale locale)
Processes a HTML to be used.
|
String |
URLManager.processHTML(String originalHtml,
Locale locale) |
String |
IURLManager.processHTML(String originalHtml,
Locale locale,
boolean baseSecure,
IWebsiteBaseURL baseURL)
Processes a HTML to be used.
|
String |
URLManager.processHTML(String originalHtml,
Locale locale,
boolean baseSecure,
IWebsiteBaseURL baseURL) |
String |
IURLManager.processHTMLDynamicPathReferences(String html)
Deprecated.
Since 6.2.0, replaced by
IURLManager.processHTMLDynamicPathReferences(String, Locale, IWebsite, boolean)
due to the inclusion of multiple websites feature.
For best compatibility, this method resolves based on the
default website's main non-secure URL. If there is no default website,
it will throw an |
String |
URLManager.processHTMLDynamicPathReferences(String html)
Deprecated.
|
String |
IURLManager.processHTMLDynamicPathReferences(String htmlModifiedContent,
Locale locale,
boolean convertGuestOnlyCaches)
Deprecated.
Since 6.2.0, replaced by
IURLManager.processHTMLDynamicPathReferences(String, Locale, IWebsite, boolean)
due to the inclusion of multiple websites feature.
For best compatibility, this method resolves based on the
default website's main non-secure URL. If there is no default website,
it will throw an
|
String |
URLManager.processHTMLDynamicPathReferences(String htmlContent,
Locale locale,
boolean convertGuestOnlyCaches)
Deprecated.
|
String |
IURLManager.processHTMLDynamicPathReferences(String htmlContent,
Locale locale,
IWebsite baseWebsite,
boolean baseSecure)
Processes references to dynamic paths in a given HTML code.
|
String |
URLManager.processHTMLDynamicPathReferences(String htmlContent,
Locale locale,
IWebsite baseWebsite,
boolean baseSecure) |
void |
IURLManager.recalculateFriendlyPaths(Collection<? extends WebResource> webResources)
Calculates and updates friendly paths of the given web resources.
|
void |
URLManager.recalculateFriendlyPaths(Collection<? extends WebResource> webResources) |
void |
IURLManager.recalculateFriendlyPathsInChannelTree(String rootChannelId)
Calculates and updates friendly paths of all
web resources in the tree for which the root is the given rootChannelId . |
void |
URLManager.recalculateFriendlyPathsInChannelTree(String rootChannelId) |
String |
GenericURLResolver.resolveFriendlyPath(WebResource resource,
String currentPath) |
String |
IURLResolver.resolveFriendlyPath(WebResource resource,
String currentPath)
Resolves the friendly path for a web resource.
|
void |
IWebResourceFactory.setPageCacheFilePath(PageCacheConfig pageCache)
Sets the file path for a
PageCacheConfig . |
void |
IURLManager.setWebResourcesMissingData(IWebResourceFactory webResourceFactory,
Collection<WebResource> webResources,
boolean cacheEnabled,
boolean friendlyURLEnabled)
Sets missing data in the given web resources.
|
void |
URLManager.setWebResourcesMissingData(IWebResourceFactory webResourceFactory,
Collection<WebResource> webResources,
boolean cacheEnabled,
boolean friendlyURLEnabled) |
void |
IWebResourceFactory.setWebResourcesMissingData(String resourceId,
boolean processChildren)
Sets missing data in the web resources of the specified resource.
|
Modifier and Type | Method and Description |
---|---|
String |
DummyURLShortener.expand(String url) |
IURLShortener |
IURLShortenerManager.get(ChannelConfig channel)
Returns the
URL shortener for the given
channel . |
IURLShortener |
URLShortenerManager.get(ChannelConfig channel) |
IURLShortener |
IURLShortenerManager.get(ServiceInstanceConfig serviceInstance)
Returns the
URL shortener for the given service
instance. |
IURLShortener |
URLShortenerManager.get(ServiceInstanceConfig serviceInstance) |
protected String |
CustomURLShortener.getApiURL() |
protected String |
DummyURLShortener.getApiURL() |
String |
CustomURLShortener.getCustomUrl()
Returns the custom URL set on this shortener.
|
boolean |
URLShortenerManager.isLocal(ChannelConfig channel)
Returns whether the channel has a local
shortener . |
void |
IURLShortenerManager.put(ChannelConfig channel,
String className,
Map<String,String> parameters)
Sets the
URL shortener for the given channel.The class name received must be one of the following: lumis.portal.urlshortener.CustomURLShortener
lumis.portal.urlshortener.TinyURLShortener
|
void |
URLShortenerManager.put(ChannelConfig channel,
String className,
Map<String,String> parameters) |
void |
IURLShortenerManager.put(ServiceInstanceConfig serviceInstance,
String className,
Map<String,String> parameters)
Sets the
URL shortener for the given service
instance.The class name received must be one of the following: lumis.portal.urlshortener.CustomURLShortener
lumis.portal.urlshortener.TinyURLShortener
|
void |
URLShortenerManager.put(ServiceInstanceConfig serviceInstance,
String className,
Map<String,String> parameters) |
void |
IURLShortenerManager.remove(ChannelConfig channel)
Removes the
URL shortener of the given channel. |
void |
URLShortenerManager.remove(ChannelConfig channel) |
void |
IURLShortenerManager.remove(ServiceInstanceConfig serviceInstance)
Removes the
URL shortener of the given service
instance. |
void |
URLShortenerManager.remove(ServiceInstanceConfig serviceInstance) |
String |
IURLShortener.shorten(String url)
Shortens a given URL.
|
String |
DummyURLShortener.shorten(String url) |
Modifier and Type | Method and Description |
---|---|
String |
IUserManager.add(SessionConfig sessionConfig,
UserConfig userConfig,
ITransaction transaction)
Adds a user to the portal and returns the identifier of the user added.
|
String |
UserManager.add(SessionConfig sessionConfig,
UserConfig userConfig,
ITransaction transaction) |
void |
IUserDao.add(UserConfig userConfig,
ITransaction transaction)
Add the user.
|
void |
UserDaoJdbc.add(UserConfig userConfig,
ITransaction transaction) |
void |
IUserManager.addAlternativeLogin(SessionConfig sessionConfig,
String userId,
String newLogin,
ITransaction transaction)
Adds an alternative login for an user.
|
void |
UserManager.addAlternativeLogin(SessionConfig sessionConfig,
String userId,
String newLogin,
ITransaction transaction) |
void |
IUserDao.addAlternativeLogin(String userId,
String newLogin,
ITransaction transaction)
Adds an alternative login to a user.
|
void |
UserDaoJdbc.addAlternativeLogin(String userId,
String newLogin,
ITransaction transaction) |
void |
IUserManager.addOrUpdate(SessionConfig sessionConfig,
UserConfig userConfig,
ITransaction transaction) |
void |
UserManager.addOrUpdate(SessionConfig sessionConfig,
UserConfig userConfig,
ITransaction transaction) |
protected void |
UserControllerXml.addUser(ITransaction portalTransaction) |
void |
IUserManager.delete(SessionConfig sessionConfig,
String userId,
ITransaction transaction)
Delete an user.
|
void |
UserManager.delete(SessionConfig sessionConfig,
String userId,
ITransaction transaction) |
void |
IUserDao.delete(String userId,
ITransaction transaction)
Delete the user.
|
void |
UserDaoJdbc.delete(String userId,
ITransaction transaction) |
void |
IUserManager.deleteAlternativeLogin(SessionConfig sessionConfig,
String loginToDelete,
ITransaction transaction)
Deletes an alternative login.
|
void |
UserManager.deleteAlternativeLogin(SessionConfig sessionConfig,
String loginToDelete,
ITransaction transaction) |
void |
IUserDao.deleteAlternativeLogin(String loginToDelete,
ITransaction transaction)
Deletes an alternative login.
|
void |
UserDaoJdbc.deleteAlternativeLogin(String loginToDelete,
ITransaction transaction) |
void |
UserManager.deleteConfig(DeserializationContext deserializationContext,
String configId) |
default List<UserConfig> |
IUserManagerSPI.findUsers(String query)
Find the first five users which are not framework users, given a search query for user login or user name.
|
List<UserConfig> |
IUserDao.findUsers(String query,
boolean includeFrameworkUsers,
int maxResults)
Find users by user login or user name, given a search query.
|
List<UserConfig> |
IUserManagerSPI.findUsers(String query,
boolean includeFrameworkUsers,
int maxResults)
Find users by user login or user name, given a search query.
|
List<UserConfig> |
UserDaoJdbc.findUsers(String query,
boolean includeFrameworkUsers,
int maxResults) |
List<UserConfig> |
UserManager.findUsers(String query,
boolean includeFrameworkUsers,
int maxResults) |
UserConfig |
IUserManager.get(SessionConfig sessionConfig,
String userId,
ITransaction transaction)
Get user configuration from userId.
|
UserConfig |
UserManager.get(SessionConfig sessionConfig,
String userId,
ITransaction transaction) |
UserConfig |
IUserDao.get(String userId,
ITransaction transaction)
get the user.
|
UserConfig |
UserDaoJdbc.get(String userId,
ITransaction transaction) |
Collection<String> |
IUserDao.getAllUserIds(ITransaction transaction)
Returns all user ids.
|
Collection<String> |
UserDaoJdbc.getAllUserIds(ITransaction transaction) |
Collection<String> |
IUserManager.getAlternativeLogins(SessionConfig sessionConfig,
String userId,
ITransaction transaction)
Returns the alternative logins for an user.
|
Collection<String> |
UserManager.getAlternativeLogins(SessionConfig sessionConfig,
String userId,
ITransaction transaction) |
Collection<String> |
IUserDao.getAlternativeLogins(String userId,
ITransaction transaction)
Returns the alternative logins of an user.
|
Collection<String> |
UserDaoJdbc.getAlternativeLogins(String userId,
ITransaction transaction) |
Collection<UserConfig> |
IUserManager.getByChannelId(SessionConfig sessionConfig,
String channelId,
ITransaction transaction)
Returns the local users of the specified channel
|
Collection<UserConfig> |
UserManager.getByChannelId(SessionConfig sessionConfig,
String channelId,
ITransaction transaction) |
Collection<String> |
IUserDao.getByChannelId(String channelId,
ITransaction transaction)
Return the local users IDs of the specified channel
|
Collection<String> |
UserDaoJdbc.getByChannelId(String channelId,
ITransaction transaction) |
Collection<UserConfig> |
IUserManager.getByOrigin(SessionConfig sessionConfig,
String origin,
ITransaction transaction)
Return the users, searching by the user's origin.
|
Collection<UserConfig> |
UserManager.getByOrigin(SessionConfig sessionConfig,
String origin,
ITransaction transaction) |
Collection<String> |
IUserDao.getByOrigin(String origin,
ITransaction transaction)
Return the user ids, searching by the user's origin.
|
Collection<String> |
UserDaoJdbc.getByOrigin(String origin,
ITransaction transaction) |
UserConfig |
UserResource.getCurrentUser()
Returns the current logged in user.
|
String |
IUserManager.getUserId(SessionConfig sessionConfig,
String userLogin,
ITransaction transaction)
Deprecated.
Since 4.0.10, replaced by
IUserManager.getUserIdByLogin(SessionConfig, String, ITransaction) . |
String |
UserManager.getUserId(SessionConfig sessionConfig,
String userLogin,
ITransaction transaction)
Deprecated.
|
String |
IUserManager.getUserIdByLogin(SessionConfig sessionConfig,
String userLogin,
ITransaction transaction)
Get the id for a user with the given login.
|
String |
UserManager.getUserIdByLogin(SessionConfig sessionConfig,
String userLogin,
ITransaction transaction) |
String |
IUserDao.getUserIdByLogin(String login,
ITransaction transaction)
Get the id of the user.
|
String |
UserDaoJdbc.getUserIdByLogin(String login,
ITransaction transaction) |
List<UserConfig> |
UserInternalResource.getUsers(String query)
Returns a list of user information given a query string.
|
Collection<UserConfig> |
IUserDao.getUsersByLogins(Set<String> logins)
Get users with the given logins.
|
Collection<UserConfig> |
IUserManagerSPI.getUsersByLogins(Set<String> logins)
Get users with the given logins.
|
Collection<UserConfig> |
UserDaoJdbc.getUsersByLogins(Set<String> logins) |
Collection<UserConfig> |
UserManager.getUsersByLogins(Set<String> logins) |
Response |
UserResource.isMember(String groupAlias)
Returns
true if the user of the given session is member of the group with the given alias or
false otherwise. |
void |
IUserManager.setPassword(SessionConfig sessionConfig,
String userId,
String password,
ITransaction transaction)
Set a new password for the user
|
void |
UserManager.setPassword(SessionConfig sessionConfig,
String userId,
String password,
ITransaction transaction) |
void |
IUserDao.setPassword(String userId,
String password,
ITransaction transaction)
Sets a new password for the user
|
void |
UserDaoJdbc.setPassword(String userId,
String password,
ITransaction transaction) |
void |
UserConfig.setProfileImage(InputStream imageStream,
String mimeType)
Sets the profile image of the given user.
|
void |
IUserManager.update(SessionConfig sessionConfig,
UserConfig userConfig,
ITransaction transaction)
Update the user configuration.
|
void |
UserManager.update(SessionConfig sessionConfig,
UserConfig userConfig,
ITransaction transaction) |
void |
IUserDao.update(UserConfig userConfig,
ITransaction transaction)
Update the user.
|
void |
UserDaoJdbc.update(UserConfig userConfig,
ITransaction transaction) |
void |
IUserDao.updateLoginHistory(String userId,
boolean loginSuccess)
Updates persistence information about a user login history.
|
void |
UserDaoJdbc.updateLoginHistory(String userId,
boolean loginSuccess) |
Constructor and Description |
---|
UserControllerXml(HttpServletRequest request,
HttpServletResponse response,
PageContext pageContext) |
Modifier and Type | Method and Description |
---|---|
void |
IUserSerializationManager.deserialize(DeserializationContext deserializationContext,
UserSerializableConfig userSerializableConfig)
Deserialize a user.
|
void |
UserSerializationManager.deserialize(DeserializationContext deserializationContext,
UserSerializableConfig userSerializableConfig) |
SerializationMessageConfigNode |
IUserSerializationManager.getSerializationMessageConfigNode(BaseSerializationContext baseSerializationContext,
UserConfig userConfig)
Get a
SerializationMessageConfigNode object containing fully recursive information about a user. |
SerializationMessageConfigNode |
UserSerializationManager.getSerializationMessageConfigNode(BaseSerializationContext baseSerializationContext,
UserConfig userConfig) |
SerializationMessageConfigNode |
IUserSerializationManager.getSerializationMessageConfigNode(BaseSerializationContext baseSerializationContext,
UserConfig userConfig,
EnumSet<SerializationMessageConfigNode.RecursionStopPoints> recursionStopPoints)
Get a
SerializationMessageConfigNode object containing partially recursive information about a user. |
SerializationMessageConfigNode |
UserSerializationManager.getSerializationMessageConfigNode(BaseSerializationContext baseSerializationContext,
UserConfig userConfig,
EnumSet<SerializationMessageConfigNode.RecursionStopPoints> recursionStopPoints) |
UserSerializableConfig |
IUserSerializationManager.serialize(SerializationContext serializationContext,
UserConfig userConfig)
Serialize a user.
|
UserSerializableConfig |
UserSerializationManager.serialize(SerializationContext serializationContext,
UserConfig userConfig) |
Modifier and Type | Method and Description |
---|---|
static Document |
PortalUtilInternal.getDefinitionDocument(String relativePath)
Returns the XML Document for a definition file.
|
static org.jsoup.nodes.Element |
PortalUtilInternal.getPageHolderHtmlByServiceInterfaceInstance(String lumServiceInterfaceInstance)
Returns the service interface instance pageholder HTML fragment,
if there is any.
|
Modifier and Type | Method and Description |
---|---|
void |
WebFileReplicationObserver.onEvent(IPortalEvent ev) |
Modifier and Type | Method and Description |
---|---|
static SessionConfig |
WebServiceUtil.getSessionConfig(String sessionId,
ITransaction transaction)
Get a
SessionConfig object for a sessionId. |
Modifier and Type | Class and Description |
---|---|
class |
InvalidWebsiteURLException
Exception used to indicate that a website URL definition is invalid.
|
Modifier and Type | Method and Description |
---|---|
void |
Website.addAdditionalBaseURL(String domain,
int port,
String path)
Adds an additional base URL for this website.
|
void |
Website.addAdditionalBaseURL(String domain,
int port,
String path,
boolean checkURLUnique)
Adds an additional base URL for this website.
|
void |
WebsiteManager.changeChannelWebsite(String channelId,
IWebsite newWebsite,
IWebsite oldWebsite,
boolean changeEvenIfIsWebsiteRoot)
|
void |
WebsiteManager.deletePageWebResources(String pageId)
Deletes the given page
web resources . |
IWebsite |
WebsiteManager.get(String id)
Returns the
website with the given identifier. |
List<IWebsite> |
WebsiteManager.getAllWebsites()
Returns all websites existent in the portal.
|
static String |
WebsiteUtil.getDefaultPageWebSiteURL(HttpServletRequest request,
IPortalMode portalMode)
Returns the URL to the current website with page id to the defined portal mode.
|
IWebsite |
IWebsiteManagerSPI.getDefaultWebsite()
Returns the website flagged as the default website.
|
IWebsite |
WebsiteManager.getDefaultWebsite() |
IWebsiteBaseURL |
IWebsiteManager.getWebsiteBaseURL(HttpServletRequest request)
Returns the website's base URL that a request corresponds to.
|
IWebsiteBaseURL |
WebsiteManager.getWebsiteBaseURL(HttpServletRequest request) |
IWebsiteBaseURL |
IWebsiteManager.getWebsiteBaseURL(URI uri)
Returns the website base URL that serves the given URI or
null if there's no base URL that serves the given URI.If the given URI is not absolute or is opaque, null will be returned.This method will not fallback to default website if no website can relativize the given URI. |
IWebsiteBaseURL |
WebsiteManager.getWebsiteBaseURL(URI uri) |
URI |
IWebsiteManager.getWebsiteBaseURLAsURI(URI uri)
Returns the website base URL as a URI that serves the given URI or
null if there's no base URL that serves the given URI.If the given URI is not absolute or is opaque, null will be returned.This method will not fallback to default website if no website can relativize the given URI. |
URI |
WebsiteManager.getWebsiteBaseURLAsURI(URI uri) |
IWebsite |
IWebsiteManagerSPI.getWebsiteByChannelId(String channelId)
Returns the website that the specific channel belongs to.
|
IWebsite |
WebsiteManager.getWebsiteByChannelId(String channelId) |
IWebsite |
WebsiteManager.getWebsiteByChannelId(String channelId,
FlushModeType flushModeType)
Returns the website that the specific channel belongs to using the
specified
FlushModeType . |
IWebsite |
WebsiteManager.getWebsiteByChannelIdNonRecursively(String channelId,
FlushModeType flushModeType)
Returns the channel's
Website non-recursively (i.e. |
boolean |
WebsiteManager.isWebsiteRoot(String channelId)
Returns whether the given channel is a website root.
|
void |
WebsiteManager.moveServiceInstanceFiles(String serviceInstanceId,
IWebsite newWebsite,
IWebsite oldWebsite,
ITransaction transaction)
Moves the service instance files from the old website to the new one.
|
void |
Website.removeAdditionalBaseURL(IWebsiteBaseURL url)
Removes an additional base URL from this website.
|
static IWebsiteBaseURL |
WebsiteUtil.resolveWebsiteBaseURLByString(String websiteStr)
Deprecated.
since 10.4.0, use
IWebsiteManager.getWebsiteBaseURL(URI) instead. |
static IWebsite |
WebsiteUtil.resolveWebsiteByString(String websiteStr)
Resolves the given website string in a
website .The given string will be parsed as new
URI(String) , so that it must adhere with URI syntax. |
void |
IWebsiteManagerSPI.setDefaultWebsite(IWebsite website)
Sets which website is the default website.
|
void |
WebsiteManager.setDefaultWebsite(IWebsite website) |
void |
Website.setMainNonSecureBaseURL(String domain,
int port,
String path)
Sets the main non-secure base URL of this website.
|
void |
Website.setMainSecureBaseURL(String domain,
int port,
String path)
Sets the main secure base URL of this website.
|
void |
Website.setName(String name)
Sets the website name.
|
void |
Website.setPriority(int priority)
Sets the priority for this website.
|
void |
Website.setProjectId(String projectId)
Sets the projectId.
|
void |
Website.setRootChannelId(String rootChannelId)
Sets the root channel of this web site.
|
void |
Website.setWebRootPath(String webRootPath)
Sets the web root path defined for this website.
|
void |
Website.updateWebsiteBaseURL(IWebsiteBaseURL baseURL,
String domain,
int port,
String path)
Updates the given
base URL with the given
parameters. |
Modifier and Type | Method and Description |
---|---|
String |
AreaTagsResource.getAreaTags(HttpServletResponse response,
String hint,
String maxResults,
String channelId,
String serviceInstanceId)
Returns the list of area tags.
|
Modifier and Type | Method and Description |
---|---|
void |
TagControl.buildSubControls() |
protected IConverter |
TagControl.createConverter() |
IResource |
TagControl.getControlResource() |
protected Object |
TagControl.getParameterValue(String parameterName) |
protected Class<?> |
TagControl.getValueClass() |
void |
TagControl.setRenderData() |
Modifier and Type | Class and Description |
---|---|
class |
PortletException
A
PortalException that uses the lumis.portlet.strings
as default resource. |
Modifier and Type | Method and Description |
---|---|
void |
PortletDeployer.deploy(SessionConfig sessionConfig,
DeployConfig deployConfig)
Deprecated.
|
String |
PortletDeployer.getCustomDeploymentInterfaceId(DeployConfig deployConfig)
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
void |
IPortletManager.deploy(SessionConfig sessionConfig,
PortletDeployConfig deployConfig,
ITransaction transaction)
Deploys a portlet war.
|
void |
PortletManager.deploy(SessionConfig sessionConfig,
PortletDeployConfig deployConfig,
ITransaction transaction) |
void |
IPortletManager.export(SessionConfig sessionConfig,
PortletDeployConfig deployConfig,
ITransaction transaction)
Exports a processed portlet WAR for manual deployment.
|
void |
PortletManager.export(SessionConfig sessionConfig,
PortletDeployConfig deployConfig,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
void |
PortletService.postUnregister(SessionConfig sessionConfig,
ITransaction transaction) |
void |
PortletServiceInterface.processAction(IServiceInterfaceActionRequest request,
IServiceInterfaceActionResponse response) |
void |
PortletServiceInterface.render(IServiceInterfaceRenderRequest request,
IServiceInterfaceRenderResponse response) |
Modifier and Type | Class and Description |
---|---|
class |
SearchException
Deprecated.
Since 8.1.0, lumis.search was replaced by lumis.portal.bigdata.
|
Modifier and Type | Method and Description |
---|---|
abstract SearchHit |
SearchResults.getHit(int hitIndex)
Deprecated.
Returns a
hit of the collection. |
static Searcher |
SearcherFactory.getSearcher(String searchEngineId)
Deprecated.
Creates an instance of the default
Searcher class for the specified search engine. |
static Searcher |
SearcherFactory.getSearcher(String searchEngineId,
String searcherId)
Deprecated.
Creates an instance of the
Searcher class for the specified search
engine and searcher.The class is determined by a searcher config node in search config file. |
abstract SearchResults |
Searcher.search(SearchQuery searchQuery)
Deprecated.
Runs the given
search query and returns the search results . |
abstract void |
Searcher.validate(SearchQuery searchQuery)
Deprecated.
Checks is the given
search query is syntactically correct. |
Constructor and Description |
---|
Processor(Node definitionNode)
Deprecated.
Constructs a processor based on given definition
node . |
Searcher(Node definitionNode)
Deprecated.
Creates a Searcher, configured by the given definition
node . |
Modifier and Type | Method and Description |
---|---|
protected String |
LuceneSearcher.getMainPublishedContextUrlValue(ISearchHit hit)
Deprecated.
Returns the main context URL value that user has access permission.
|
SearchResults |
LuceneSearcher.search(SearchQuery searchQuery)
Deprecated.
|
void |
LuceneSearcher.validate(SearchQuery searchQuery)
Deprecated.
|
Constructor and Description |
---|
LuceneSearcher()
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
protected void |
AbstractObjectInteractionMonitorUtil.addMonitorValues(MonitorHelper monitorHelper)
Adds the monitoring values.
|
void |
AbstractObjectInteractionMonitorUtil.collect()
Collects the data.
|
protected IMonitor |
AbstractObjectInteractionMonitorUtil.getMonitor()
Returns the monitor.
|
Constructor and Description |
---|
AbstractObjectInteractionMonitorUtil(HttpServletRequest request,
String targetObjectName,
String targetObjectId,
String targetObjectServiceInstance,
String serviceInstanceId,
ITransaction transaction)
Creates a new instance.
|
Modifier and Type | Method and Description |
---|---|
protected IQueryValue |
ActivityDateFilter.calculateFilterValue(Node filterNode) |
void |
ActivityStreamResource.deleteActivity(String activityId)
Deletes an activity.
|
Collection<ActivityPriority> |
CreateMessagePrioritizer.generateActivityPriorities(Activity activity) |
ActivityStreamResource.ActivityDocumentListResult |
ActivityStreamResource.getActivities(String activityStreamInterfaceInstanceId,
DateParam before,
int maxResults)
Returns the list of
activity documents returned by
ActivityStreamManager.getRecentActivities using the given parameters. |
IQueryFilter |
ActivityDateFilter.getQueryFilter(QueryField queryField,
IQueryValue queryValue) |
ActivityStreamResource.CountVO |
ActivityStreamResource.getUnreadActivitiesCount(String activityStreamInterfaceInstanceId,
DateParam before)
Returns the number of unread activities the current user has in the specified activity stream interface instance.
|
void |
ActivityStreamServiceInterface.instanceAdded(ServiceInterfaceInstanceConfig config,
ITransaction transaction) |
void |
NotificationsServiceInterface.instanceAdded(ServiceInterfaceInstanceConfig config,
ITransaction transaction) |
void |
ActivityStreamInterfaceInstanceCustomPropertiesDataProvider.loadData(SessionConfig sessionConfig,
Source<?> source,
ITransaction transaction) |
void |
ActivityStreamServiceInstanceCustomPropertiesDataProvider.loadData(SessionConfig sessionConfig,
Source<?> source,
ITransaction transaction) |
void |
ActivityObjectTypesByInterfaceInstanceCustomPropertyDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<?> source,
ITransaction transaction) |
void |
ActivityScopesByInterfaceInstanceCustomPropertyDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<?> source,
ITransaction transaction) |
ActivityStreamResource.CountVO |
ActivityStreamResource.markActivitiesAsRead(String activityStreamInterfaceInstanceId,
DateParam before)
Marks all activities displayed in the specified interface instance as read by the current user.
|
void |
ActivityStreamResource.markActivityAsRead(String activityId)
Marks an activity as read by the current user.
|
void |
ActivityDocumentObserver.onEvent(IPortalEvent event) |
void |
ActivityStreamService.postRegister(SessionConfig sessionConfig,
ServiceConfig serviceConfig,
ITransaction transaction) |
void |
ActivityStreamService.postUnregister(SessionConfig sessionConfig,
ITransaction transaction) |
void |
ActivityStreamDeleteProcessActionHandler.processAction() |
void |
ActivityPostLoadProcessor.processSource(SessionConfig sessionConfig,
Source source,
Node parametersNode,
ITransaction transaction) |
void |
ActivityStreamConfigurationInfoControl.setRenderData() |
Modifier and Type | Method and Description |
---|---|
protected void |
AlbumAddMultipleProcessActionHandler.doAction() |
Collection<String> |
AlbumDaoJdbc.getAlbumPhotos(String albumId,
ITransaction transaction) |
void |
CheckAlbumAccessProcessActionHandler.processAction() |
void |
CheckAlbumDeleteProcessActionHandler.processAction() |
Modifier and Type | Method and Description |
---|---|
protected void |
CreateOrOverrideSegmentationProcessAction.addDefaultResponse() |
void |
AnalyticsService.deserializeContent(ServiceInstanceDeserializationContext serviceInstanceDeserializationContext) |
protected void |
CreateOrOverrideSegmentationProcessAction.doAction() |
void |
AnalyticsHolderServiceInterface.instanceAdded(ServiceInterfaceInstanceConfig config,
ITransaction transaction) |
void |
AnalyticsService.instanceAdded(SessionConfig sessionConfig,
ServiceInstanceConfig serviceInstanceConfig,
ITransaction transaction) |
void |
AnalyticsService.instanceDeleted(SessionConfig sessionConfig,
ServiceInstanceConfig config,
ITransaction transaction) |
void |
AnalyticsService.instanceDeserialized(ServiceInstanceDeserializationContext serviceInstanceDeserializationContext) |
void |
AnalyticsService.instanceDeserialized(SessionConfig sessionConfig,
String serviceInstanceId,
DeserializationConfig deserializationConfig,
Node node,
ITransaction transaction) |
void |
AnalyticsService.instanceSerialized(ServiceInstanceSerializationContext serviceInstanceSerializationContext) |
void |
AnalyticsService.instanceSerialized(SessionConfig sessionConfig,
String serviceInstanceId,
OutputStream outputStream,
ITransaction transaction) |
static String |
AnalyticsStringResource.localize(String stringId)
Localize using self resource.
|
void |
AnalyticsHolderServiceInterface.render(IServiceInterfaceRenderRequest request,
IServiceInterfaceRenderResponse response) |
Modifier and Type | Method and Description |
---|---|
String |
FlowResource.getFlowsByServiceInstance()
Returns the flows of the given service instance as a JSON array.
|
String |
FlowResource.getUserSegmentationsByServiceInstanceId()
Returns the user segmentations of the given service instance.
|
String |
FlowResource.quickSave(String flowId,
String flowDefinition)
Updates the definition of the flow with the given identifier.
|
Modifier and Type | Method and Description |
---|---|
void |
FlowEditorControl.loadFromRequest() |
void |
FlowEditorControl.setRenderData() |
Modifier and Type | Method and Description |
---|---|
protected void |
CreateOrOverrideAutomationFlowProcessAction.addDefaultResponse() |
protected void |
CreateOrOverrideAutomationFlowProcessAction.doAction() |
Modifier and Type | Method and Description |
---|---|
protected ISourceAddDataResult |
AutomationFlowSource.doAddData(IParameters data) |
protected void |
AutomationFlowSource.doDeleteDataByItemIds(Collection<String> itemIds) |
protected ISourceUpdateDataResult |
AutomationFlowSource.doUpdateData(IParameters data) |
Constructor and Description |
---|
AutomationFlowSource(Node sourceDefinitionNode,
ISourceContext sourceContext) |
Modifier and Type | Method and Description |
---|---|
static boolean |
FlowContextFilterUtils.checkMatchValue(FlowContext flowContext,
Operator operator,
IMonitorField.DataType dataType,
String subFieldId,
Object filterValue,
Collection storedValue)
Check if filter value match field value that comes from big data.
|
static boolean |
FlowContextFilterUtils.evalueteNotIndexedValue(FlowContext flowContext,
Operator operator,
IMonitorField.DataType dataType,
String subFieldId,
Object filterValue,
Collection persistedValue)
Evaluates if filter values matches with persisted field value that comes from relational database.
|
static boolean |
FlowContextFilterUtils.evaluteEventPropertyFilter(FlowContext flowContext,
Operator operator,
IMonitorField monitorField,
String subFieldId,
Object valueFilter)
Check if event field value match with filter.
|
String |
CustomerExperienceResource.getExactlyOperatorAutoComplete(String fieldId,
String fieldDataType,
String fieldType,
String userQuery) |
Modifier and Type | Method and Description |
---|---|
void |
CustomerExperienceCommonsControl.loadFromRequest() |
void |
CustomerExperienceCommonsControl.setRenderData() |
Modifier and Type | Method and Description |
---|---|
static EventFilterData |
EventFilterData.create(ServiceInstanceConfig serviceInstance,
org.json.JSONObject jsonData)
Returns a parsed filter or
null if the resulting filter is ano-op filter. |
static void |
EventAnalyticsUtil.createStandardReportsAndDashboards(String serviceInstanceId)
Creates the standard definitions for the given service instance.
|
boolean |
EventFilterData.evaluate(FlowContext flowContext)
Evaluates this filter against the given flow context.
|
static ISearchQueryFilter |
EventFilterData.getAnalyticsServiceInstanceFilter(ServiceInstanceConfig analyticsServiceInstance)
Returns the appropriate filter for restricting events for the analytics service instance or
null if no filter is required. |
ISearchQueryFilter |
EventFilterData.getFilter()
Returns the big data filter.
|
static EventAnalyticsReport |
EventAnalyticsUtil.getReport(String reportId)
Returns the given report.
|
static EventAnalyticsDashboard |
EventAnalyticsUtil.getStandardDashboardByType(String dashboardType)
Returns the standard dashboard by its type.
|
void |
DeleteReportProcessActionHandler.processAction() |
void |
EditDashboardProcessActionHandler.processAction() |
void |
EditReportProcessActionHandler.processAction() |
Modifier and Type | Method and Description |
---|---|
void |
EventAnalyticsControl.loadFromRequest() |
void |
EventAnalyticsControl.setRenderData() |
Constructor and Description |
---|
EventAnalyticsDashboardRequest(org.json.JSONObject request)
Creates a new instance.
|
Constructor and Description |
---|
EventAnalyticsReportRequest(org.json.JSONObject request)
Constructor.
|
Modifier and Type | Method and Description |
---|---|
String |
JourneyResource.getJourneys()
Returns the journeys of service instance.
|
String |
JourneyResource.getJourneyStage(String journeyStageId)
Returns the journeys of service instance.
|
Response |
JourneyResource.goToAdmin()
Returns the flows of the given service instance as a JSON array.
|
Modifier and Type | Method and Description |
---|---|
protected IQueryValue |
ParentJourneyFilter.calculateFilterValue(Node filterNode) |
protected IQueryValue |
UserJourneyInstanceFilter.calculateFilterValue(Node filterNode) |
Modifier and Type | Method and Description |
---|---|
void |
JourneyStageAddEditPostLoadProcessor.processSource(SessionConfig sessionConfig,
Source source,
Node parametersNode,
ITransaction transaction) |
void |
UserJourneyInstancePostLoadProcessor.processSource(SessionConfig sessionConfig,
Source source,
Node parametersNode,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
protected void |
DeleteUserJourneyInstanceProcessAction.doAction() |
Modifier and Type | Method and Description |
---|---|
protected ISourceAddDataResult |
JourneySource.doAddData(IParameters data) |
protected ISourceAddDataResult |
JourneyStageSource.doAddData(IParameters data) |
protected void |
JourneySource.doDeleteDataByItemIds(Collection<String> journeyIds) |
protected void |
JourneyStageSource.doDeleteDataByItemIds(Collection<String> stageIds) |
protected ISourceUpdateDataResult |
JourneySource.doUpdateData(IParameters data) |
protected ISourceUpdateDataResult |
JourneyStageSource.doUpdateData(IParameters data) |
Constructor and Description |
---|
JourneySource(Node sourceDefinitionNode,
ISourceContext sourceContext) |
JourneyStageSource(Node sourceDefinitionNode,
ISourceContext sourceContext) |
Constructor and Description |
---|
UserSegmentation(JourneyStage stage)
Creates a new segmentation for the given journey stage (identifier).
|
Modifier and Type | Method and Description |
---|---|
void |
UserSegmentationGroupGenerationClock.doTick(SessionConfig sessionConfig,
ClockConfig clockConfig) |
Modifier and Type | Method and Description |
---|---|
static UserSegmentationData |
UserSegmentationData.create(ServiceInstanceConfig serviceInstance,
org.json.JSONObject jsonData)
Creates a new data, from the given service instance and JSON object.
|
boolean |
UserSegmentationData.evaluate(FlowContext flowContext)
Evaluates this filter against the given flow context.
|
UserSegmentationData.CreateQueryResult |
UserSegmentationData.ISegmentationFilter.getBigDataFilter() |
Tuple2<ISearchQueryFilter,Boolean> |
UserSegmentationData.getBigDataFilter(ISearchQueryFilter... additionalFilters)
Returns the big data filter for search user segmentation.
|
static ISearchQueryFilter |
UserSegmentationData.getEmptyBigDataFilter(ServiceInstanceConfig serviceInstanceConfig)
Returns the empty big data filter to bring all users with the default fields and in context.
|
void |
UserSegmentationControl.loadFromRequest() |
void |
UserSegmentationControl.setRenderData() |
Modifier and Type | Method and Description |
---|---|
static void |
UserSegmentationDaoJdbc.addMembers(String segmentationId,
Collection<String> monitorUserIds)
Add members to segmentation.
|
static void |
UserSegmentationDaoJdbc.deleteSegmentationMemberships(String segmentationId,
Collection<String> monitorUserIds)
Delete members of segmentation.
|
static Collection<UserSegmentationMembership> |
UserSegmentationDaoJdbc.getAllMemberships()
Returns all memberships.
|
static Set<String> |
UserSegmentationDaoJdbc.getCurrentMembers(String segmentationId)
Returns the current members of the given segmentation.
|
static Set<String> |
UserSegmentationDaoJdbc.getCurrentPortalMembers(String segmentationId)
Returns the current members of the given segmentation.
|
static Set<String> |
UserSegmentationDaoJdbc.getCurrentSegmentations(String monitorUserId)
Returns the current segmentations of the given monitor user.
|
Modifier and Type | Method and Description |
---|---|
void |
ExpirationTimeCacheUnitsOptionsDataProvider.loadData(SessionConfig sessionConfig,
T source,
ITransaction transaction) |
void |
UserSegmentationFieldsCSVDataProvider.loadData(SessionConfig sessionConfig,
T source,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
String |
UserMonitorFieldsCSVEnum.getLabel(IResource resource)
Get localized label for the field.
|
static String |
UserMonitorFieldsCSVEnum.getLabel(String fullIdElasticSearchField,
IResource resource)
Get localized label for the field.
|
Modifier and Type | Method and Description |
---|---|
IUserSegmentation |
UserSegmentationManager.createSegmentationForJourneyStage(JourneyStage stage)
Creates a segmentation for the given journey stage.
|
void |
UserSegmentationManager.deleteSegmentations(Collection<String> ids,
String serviceInstanceId) |
void |
UserSegmentationManager.deleteSegmentationsByServiceInstanceId(String serviceInstanceId) |
List<IUserSegmentation> |
UserSegmentationManager.findByServiceInstanceAndLikeName(String name,
String serviceInstanceId) |
UserSegmentation |
UserSegmentationManager.getById(String id) |
IUserSegmentation |
UserSegmentationManager.getByJourneyStage(String journeyStageId)
Returns the segmentation of a journey stage or
null if there's none. |
UserSegmentation |
UserSegmentationManager.getByNameAndServiceInstance(String name,
String serviceInstanceId) |
List<IUserSegmentation> |
UserSegmentationManager.getByServiceInstance(String serviceInstanceId) |
Collection<String> |
UserSegmentationManager.getMemberSegmentations(String monitorUserId) |
Collection<String> |
UserSegmentationManager.getMemberSegmentations(String monitorUserId,
boolean useSessionCache) |
Collection<String> |
UserSegmentationManager.getPortalMembers(String segmentationId) |
Collection<String> |
UserSegmentationManager.getPortalMemberSegmentations(String portalUserId,
boolean useSessionCache) |
Collection<IUserSegmentation> |
UserSegmentationManager.getSegmentationsThatNeedToHaveMembershipUpdated() |
boolean |
UserSegmentationManager.isMember(Collection<String> segmentationIds,
String monitorUserId) |
String |
UserSegmentationManager.saveSegmentation(String name,
String serviceInstanceId,
org.json.JSONObject segmentationFilter) |
IUserSegmentation |
UserSegmentationManager.updateSegmentation(String id,
String serviceInstanceId,
org.json.JSONObject filter) |
void |
UserSegmentationManager.updateSegmentationMembership(IUserSegmentation segmentation) |
void |
UserSegmentationManager.updateSegmentationMembership(IUserSegmentation segmentation,
String monitorUserId) |
Modifier and Type | Method and Description |
---|---|
Response |
UserSegmentationRestAPI.downloadSegmentationCSV(String jsonData,
List<String> fields,
Character columnSeparator)
Returns a CSV file containing the users in a given segmentation list.
|
String |
FieldReportCSV.getLabel(ServiceConfig serviceConfig)
Whill return self label field localized by service resource string
|
Response |
UserSegmentationRestAPI.getNextActivities(String visitorId,
Integer page,
Long firstEventDateMilli,
lumis.service.analytics.usersegmentation.rest.UserSegmentationRestAPI.NextActivitiesRequest bodyRequest)
Returns only activities of user for be appended in the activities of user.
|
Response |
UserSegmentationRestAPI.getSegmentations(String name)
Returns the segmentations list.
|
Response |
UserSegmentationRestAPI.getUserDetails(String visitorId)
Returns the user details.
|
Response |
UserSegmentationRestAPI.getUsers(String jsonData,
int maxSize,
int startAt)
Returns the users list based on the given filters.
|
Response |
UserSegmentationRestAPI.updateMonitorUserAttributes(long visitorId,
String saveType,
String reqData)
Update monitor user attributes.
|
Modifier and Type | Method and Description |
---|---|
protected ISourceAddDataResult |
UserSegmentationSource.doAddData(IParameters data) |
protected void |
UserSegmentationSource.doDeleteDataByItemIds(Collection<String> itemIds) |
protected ISourceUpdateDataResult |
UserSegmentationSource.doUpdateData(IParameters data) |
Constructor and Description |
---|
UserSegmentationSource(Node sourceDefinitionNode,
ISourceContext sourceContext) |
Modifier and Type | Method and Description |
---|---|
protected String |
AnnouncementTabularDataControl.getFieldHyperlink(TabularSource source,
ISourceData row,
String fieldId,
String compositePrimaryKey,
int rowIndex) |
protected String |
AnnouncementTabularDataControl.getRowHyperlink(TabularSource source,
ISourceData row,
String compositePrimaryKey,
int rowIndex) |
Modifier and Type | Method and Description |
---|---|
protected String |
AssociationDataProvider.getAssociationType() |
protected String |
AssociationTabularDataControl.getRowHyperlink(TabularSource source,
ISourceData row,
String compositePrimaryKey,
int rowIndex) |
boolean |
IServiceInstancePermissionChecker.hasPermission(String serviceInstanceId) |
void |
AssociationDataProvider.loadData(SessionConfig sessionConfig,
Source source,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
void |
ExecuteWorkflowActionProcessActionHandler.clearRequestParameters(List<String> parametersToclear)
Clear all parameters in the given list from the request and sets this result on response.
|
QueryBuilder |
LastContentsDataProvider.createQueryBuilder(IParameters parameters,
TableSource source,
ITransaction transaction) |
QueryBuilder |
WorkFlowStatusDataProvider.createQueryBuilder(IParameters parameters,
TableSource source,
ITransaction transaction) |
Collection<String> |
AutoAdministrationValidatorUtil.getAllowedServiceInstances(String autoAdminChannelId)
Returns a collection of allowed service instances for the current user.
|
static boolean |
AutoAdministrationValidatorUtil.hasPermissionToEditContent(SessionConfig sessionConfig,
String itemId,
ITransaction transaction)
Returns true if the current user has permission to edit the content, otherwise false.
|
void |
HolderServiceInterface.instanceAdded(ServiceInterfaceInstanceConfig config,
ITransaction transaction) |
void |
AutoAdministrationService.instanceAdded(SessionConfig sessionConfig,
ServiceInstanceConfig config,
ITransaction transaction) |
void |
AutoAdministrationService.instanceDeserialized(ServiceInstanceDeserializationContext serviceInstanceDeserializationContext) |
void |
AutoAdministrationService.instanceDeserialized(SessionConfig sessionConfig,
String serviceInstanceId,
DeserializationConfig deserializationConfig,
Node node,
ITransaction transaction) |
void |
MyPortalDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<?> source,
ITransaction transaction) |
void |
NavigationDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<?> source,
ITransaction transaction) |
void |
NavigationTypeDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<?> source,
ITransaction transaction) |
void |
WorkflowStatesByLocalizedNameDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<?> source,
ITransaction transaction) |
void |
AutoAdministrationObserver.onEvent(IPortalEvent event) |
void |
ContentLockProcessActionHandler.processAction() |
void |
ExecuteWorkflowActionProcessActionHandler.processAction() |
void |
HolderServiceInterface.render(IServiceInterfaceRenderRequest request,
IServiceInterfaceRenderResponse response) |
void |
AutoAdministrationBreadCrumbTreeItemControl.setRenderData() |
Constructor and Description |
---|
LastContentsDataProvider() |
NavigationDataProvider() |
NavigationSource(Node sourceDefinitionNode,
ISourceContext sourceContext)
Source constructor.
|
WorkFlowStatusDataProvider() |
Modifier and Type | Method and Description |
---|---|
void |
WorkflowMetaDataControl.buildSubControls() |
protected IDouiDataType |
WorkflowStateControl.createDataType() |
protected ContentWorkflowMetaData |
WorkflowMetaDataControl.getContentWorkflowMetaData()
Returns the content workflow metadata.
|
protected ContentWorkflowMetaData |
WorkflowMetaDataControl.getContentWorkflowMetaData(ContentTableSource source)
Returns the content workflow meta data from the given source and control's itemId.
|
IResource |
WorkflowSendToControl.getControlResource() |
protected String |
ExecuteScriptControl.getItemId()
Returns the itemId.
|
protected String |
WorkflowMetaDataControl.getItemId()
Returns the itemId.
|
List<IResource> |
WorkflowMetaDataControl.getResources() |
void |
ExecuteScriptControl.init(Node controlDefinitionNode,
ControlContainer controlContainer,
IControl parentControl) |
void |
WorkflowMetaDataControl.init(Node controlDefinitionNode,
ControlContainer controlContainer,
IControl parentControl) |
void |
WorkflowAssignedToControl.loadFromRequest() |
void |
WorkflowStateControl.loadFromRequest() |
protected void |
LastWeekDateTimePickerControl.setDefaultValue() |
protected void |
CallEditInterfaceScriptControl.setDefinitionNode(String itemId) |
protected void |
CallLockContentScriptControl.setDefinitionNode(String itemId) |
protected void |
CallPreviewInterfaceScriptControl.setDefinitionNode(String itemId) |
protected void |
CallVersionsInterfaceScriptControl.setDefinitionNode(String itemId) |
protected abstract void |
ExecuteScriptControl.setDefinitionNode(String itemId)
Defines the node to be transformed in link from control.
|
void |
WorkflowActionControl.setProcessActionHandlerParameters(IProcessActionHandler processActionHandler) |
void |
WorkflowSendToControl.setProcessActionHandlerParameters(IProcessActionHandler processActionHandler) |
void |
ExecuteScriptControl.setRenderData() |
void |
WorkflowActionControl.setRenderData() |
void |
WorkflowAssignedToControl.setRenderData() |
void |
WorkflowMetaDataControl.setRenderData() |
void |
WorkflowSendToControl.setRenderData() |
void |
WorkflowStateControl.setRenderData() |
void |
WorkflowStatusAdvancedTabularDataControl.setRenderData() |
protected void |
WorkflowMetaDataControl.setValueFromSource() |
protected void |
WorkflowAssignedToControl.setValueFromSource(ContentTableSource source) |
protected void |
WorkflowMetaDataControl.setValueFromSource(ContentTableSource source) |
protected void |
WorkflowSendToControl.setValueFromSource(ContentTableSource source) |
protected void |
WorkflowStateControl.setValueFromSource(ContentTableSource source) |
Modifier and Type | Method and Description |
---|---|
static void |
AutoAdministrationTreeManager.clearCacheByExclusion(String exclusionId)
Clears the tree cache by tree item exclusion identifier.
|
static void |
AutoAdministrationTreeManager.clearCacheByTree(String treeId)
Clears the tree cache by tree identifier.
|
static AutoAdministrationTree |
AutoAdministrationTreeManager.get(String treeId)
Returns the custom auto administration navigation tree by identifier.
|
Modifier and Type | Method and Description |
---|---|
void |
AddTreeExclusionProcessActionHandler.processAction() |
void |
AddTreeItemProcessActionHandler.processAction() |
void |
DeleteTreeExclusionProcessActionHandler.processAction() |
void |
DeleteTreeItemProcessActionHandler.processAction() |
void |
DeleteTreeProcessActionHandler.processAction() |
void |
EditTreeExclusionProcessActionHandler.processAction() |
void |
EditTreeItemProcessActionHandler.processAction() |
void |
EditTreeProcessActionHandler.processAction() |
Modifier and Type | Method and Description |
---|---|
protected void |
LastContentsQueryBuilder.addQueryTables(QueryBase queryBase)
Adds the appropriate meta data tables based on the meta data that the
given content supports.
|
protected void |
WorkflowStatusQueryBuilder.addQueryTables(QueryBase queryBase)
Adds the appropriate meta data tables based on the meta data that the
given content supports.
|
Constructor and Description |
---|
LastContentsQueryBuilder(IParameters parameters,
TableSource source,
ITransaction transaction)
Creates the object.
|
WorkflowStatusQueryBuilder(IParameters parameters,
TableSource source,
ITransaction transaction)
Creates the object.
|
Modifier and Type | Method and Description |
---|---|
IQueryFilter |
MyLastModifiedDateTimeTableSourceFilter.getQueryFilter(QueryBase queryBase,
IParameters params) |
IQueryFilter |
WorklowStateTableSourceFilter.getQueryFilter(QueryBase queryBase,
IParameters params) |
IQueryFilter |
MyLastModifiedDateTimeTableSourceFilter.getQueryFilter(QueryField queryField,
IQueryValue queryValue) |
IQueryFilter |
WorklowStateTableSourceFilter.getQueryFilter(QueryField queryField,
IQueryValue queryValue) |
Modifier and Type | Method and Description |
---|---|
void |
BannerControl.buildSubControls() |
BannerConfig |
BannerDaoJdbc.get(String bannerId,
ITransaction transaction) |
static IMonitor |
BannerMonitorUtil.getBannerClickMonitor(ServiceInstanceConfig bannerServiceInstanceConfig,
String bannerName,
String bannerCategoryId,
ContentVersion bannerContentVersion,
PageConfig displayPageConfig,
WebResource webResource,
ITransaction transaction)
Returns a monitor for the "lumis.portal.monitor.ev.banner.click" event.
|
static IMonitor |
BannerMonitorUtil.getBannerViewMonitor(ServiceInstanceConfig bannerServiceInstanceConfig,
String bannerName,
String bannerCategoryId,
ContentVersion bannerContentVersion,
PageConfig displayPageConfig,
WebResource webResource,
ITransaction transaction)
Returns a monitor for the "lumis.portal.monitor.ev.banner.view" event.
|
BannerCategoryConfig |
BannerDaoJdbc.getCategory(String bannerCategoryId,
ITransaction transaction) |
Collection<String> |
BannerDaoJdbc.getCategoryBanners(String bannerCategoryId,
ITransaction transaction) |
protected boolean |
BannerAddDataProcessActionHandler.isSendRenderDataChangedNotificationEnabled() |
protected boolean |
BannerDeleteDataProcessActionHandler.isSendRenderDataChangedNotificationEnabled() |
protected boolean |
BannerUpdateDataProcessActionHandler.isSendRenderDataChangedNotificationEnabled() |
void |
BannerPropertiesDataProvider.loadData(SessionConfig sessionConfig,
Source<?> source,
ITransaction transaction) |
void |
BannerDataProvider.loadData(SessionConfig sessionConfig,
TableSource source,
ITransaction transaction) |
void |
BannerAddDataProcessActionHandler.processAction() |
void |
BannerProcessActionHandler.processAction() |
void |
BannerUpdateDataProcessActionHandler.processAction() |
void |
CheckCategoryDeleteProcessActionHandler.processAction() |
protected void |
BannerProcessActionHandler.processSetProperties() |
protected void |
BannerDataProvider.randomizedBanners(TabularData banners,
int amount) |
void |
BannerDouiInterface.render(IServiceInterfaceRenderRequest request,
IServiceInterfaceRenderResponse response) |
protected void |
BannerController.renderOutput(ServiceContainerRenderRequest renderRequest,
ServiceContainerRenderResponse renderResponse,
Map<String,String> originalMap,
ITransaction portalTransaction) |
protected String |
BannerControl.serializeBanner(ISourceData row) |
void |
BannerControl.setRenderData() |
Constructor and Description |
---|
BannerController(HttpServletRequest request,
HttpServletResponse response,
PageContext pageContext) |
BannerDataProvider() |
Modifier and Type | Method and Description |
---|---|
boolean |
BlogService.usesWidgetRepository(ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
protected boolean |
RowProcessActionPostLoadProcessor.checkPreCondition(SessionConfig sessionConfig,
ISourceData row,
Source<? extends ISourceData> source,
Node precondition,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
protected void |
ColProcessActionHandler.attendRequest() |
protected void |
ColProcessActionHandler.closeRequest() |
protected void |
ColRequestSource.doDeleteDataByItemIds(Collection<String> itemIds) |
ColRequestConfig |
ColDaoJdbc.getRequest(String requestId,
ITransaction transaction) |
ColRequestConfig |
ColDaoJdbc.getRequestByConversationId(String conversationId,
ITransaction transaction) |
void |
CheckAttendingHoursDataProvider.loadData(SessionConfig sessionConfig,
Source source,
ITransaction transaction) |
void |
ColProcessActionHandler.processAction() |
protected void |
ColProcessActionHandler.registerRequest() |
protected void |
ColProcessActionHandler.transferRequest() |
protected void |
ColProcessActionHandler.updateRequest() |
void |
ColDaoJdbc.updateRequest(ColRequestConfig requestConfig,
ITransaction transaction) |
Constructor and Description |
---|
ColRequestSource(Node sourceDefinitionNode,
ISourceContext sourceContext) |
Modifier and Type | Method and Description |
---|---|
protected IQueryValue |
DependentServiceInstanceIdFilter.calculateFilterValue(Node filterNode) |
protected String |
AssociatedTermsDataProvider.getAssociationType() |
static String |
CategorizationUtil.getBestTermName(String termContentId)
Returns the best name of the specified term to be shown to current user.
|
static String |
CategorizationUtil.getBestTermName(String termContentId,
Locale locale)
Returns the best name of the specified term to be shown to current user.
|
static List<String> |
CategorizationUtil.getTermPathContentIds(String termContentId)
Returns the content identifiers that make up the path to the specified term.
|
static List<String> |
CategorizationUtil.getTermPathNames(String termContentId)
Returns the names of terms make up the path to the specified term.
|
void |
ListNodesControllerJson.handleRequest() |
void |
AssociatedTermsDataProvider.loadData(SessionConfig sessionConfig,
Source source,
ITransaction transaction) |
void |
TermContentsDataProvider.loadData(SessionConfig sessionConfig,
Source source,
ITransaction transaction) |
void |
DeleteTermProcessActionHandler.processAction() |
void |
UpdateCategorizationRepositoryProcessActionHandler.processAction() |
void |
UpdateTermsParentProcessActionHandler.processAction() |
void |
SelectRepositoryInterface.processAction(IServiceInterfaceActionRequest request,
IServiceInterfaceActionResponse response) |
void |
ParentTermDisplayPostLoadProcessor.processSource(SessionConfig sessionConfig,
Source source,
Node parametersNode,
ITransaction transaction) |
void |
ServiceInstanceDisplayPostLoadProcessor.processSource(SessionConfig sessionConfig,
Source source,
Node parametersNode,
ITransaction transaction) |
void |
TermDetailsPostLoadProcessor.processSource(SessionConfig sessionConfig,
Source source,
Node parametersNode,
ITransaction transaction) |
void |
SelectRepositoryInterface.render(IServiceInterfaceRenderRequest request,
IServiceInterfaceRenderResponse response) |
Modifier and Type | Method and Description |
---|---|
void |
ChannelGeneratorDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<?> source,
ITransaction transaction) |
void |
AddProcessActionHandler.processAction() |
void |
DeleteProcessActionHandler.processAction() |
void |
UpdateProcessActionHandler.processAction() |
Modifier and Type | Method and Description |
---|---|
protected void |
ChatRoomSource.doDeleteDataByItemIds(Collection<String> itemIds) |
void |
ChatRoomHistoryDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<?> source,
ITransaction transaction) |
void |
AddChatRoomProcessActionHandler.processAction() |
void |
EditChatRoomProcessActionHandler.processAction() |
void |
ParticipateProcessActionHandler.processAction() |
void |
ChatRoomHistoryInterface.render(IServiceInterfaceRenderRequest request,
IServiceInterfaceRenderResponse response) |
void |
ChatRoomParticipateInterface.render(IServiceInterfaceRenderRequest request,
IServiceInterfaceRenderResponse response) |
Constructor and Description |
---|
ChatRoomSource(Node sourceDefinitionNode,
ISourceContext sourceContext) |
Modifier and Type | Method and Description |
---|---|
protected IQueryValue |
CommentContentFilter.calculateFilterValue(Node filterNode) |
void |
CommentService.deserializeContent(ServiceInstanceDeserializationContext serviceInstanceDeserializationContext) |
protected void |
DeleteRelationCommentProcessActionHandler.doAction() |
IDataControlRequestHelpDefinition |
CurrentContentLocaleIdControl.getRequestHelpDefinition() |
TableSourceFieldMapping |
CommentContentLocaleField.getTableMapping(QueryBase queryBase) |
void |
CommentService.instanceSerialized(ServiceInstanceSerializationContext serviceInstanceSerializationContext) |
protected void |
DeleteRelationCommentProcessActionHandler.postDelete()
After deleting the information from database it calls
SetCommentTotalInfoProcessActionHandler.updateCommentTotal(String, String, lumis.util.ITransaction)
using the DeleteRelationCommentProcessActionHandler.targetContentLocaleIds obtained in #preDelete(QueryBase) . |
protected void |
DeleteRelationCommentProcessActionHandler.preDelete()
Before deleting the information from database,
obtain the affected targetContentLocaleIds, storing them in
DeleteRelationCommentProcessActionHandler.targetContentLocaleIds ,
so it is possible to do an update in lum_CommentTotal later. |
void |
SetCommentTotalInfoProcessActionHandler.processAction()
It gets targetContentLocaleId parameter and make a call for
SetCommentTotalInfoProcessActionHandler.updateCommentTotal(String, String, ITransaction) . |
void |
SetMetaDataInfoProcessActionHandler.processAction() |
void |
CommentListServiceInterface.render(IServiceInterfaceRenderRequest request,
IServiceInterfaceRenderResponse response) |
void |
CommentQuickListServiceInterface.render(IServiceInterfaceRenderRequest request,
IServiceInterfaceRenderResponse response) |
void |
CurrentContentLocaleIdControl.setRenderData() |
static void |
SetCommentTotalInfoProcessActionHandler.updateCommentTotal(String serviceInstanceId,
String targetContentLocaleId,
ITransaction transaction)
Updates the
lum_CommentTotal table entry for the
specified targetContentLocaleId and comment service instance. |
Modifier and Type | Method and Description |
---|---|
Response |
CommentItResource.addComment(Comment comment)
Adds a
Comment . |
static void |
CommentItMonitorUtil.collectAddComment(HttpServletRequest request,
Comment comment,
ITransaction transaction)
Collects the add comment event.
|
static void |
CommentItMonitorUtil.collectRemoveComment(HttpServletRequest request,
Comment comment,
ITransaction transaction)
Collects the remove comment event.
|
void |
CommentItResource.deleteComment(String commentId)
Delete the
Comment with the identifier |
Collection<ActivityPriority> |
CommentItActivityPrioritizer.generateActivityPriorities(Activity activity) |
Comment |
CommentItResource.getComment(String id)
Returns a
Comment by its identifier. |
CommentItResource.CommentsItemList |
CommentItResource.getCommentsItems(String serviceInstanceId,
List<String> itemIds,
Integer limit)
Get the newest
Comment objects of the specified items, organized in
CommentItResource.CommentsItem structures, up to the specified amount. |
IQueryFilter |
CommentItTextFilter.getQueryFilter(QueryField queryField,
IQueryValue queryValue) |
void |
CommentItService.instanceDeleted(SessionConfig sessionConfig,
ServiceInstanceConfig serviceInstanceConfig,
ITransaction transaction) |
void |
CommentItContentDeleteObserver.onEvent(IPortalEvent event) |
void |
CommentItService.postRegister(SessionConfig sessionConfig,
ServiceConfig serviceConfig,
ITransaction transaction) |
void |
CommentItService.postUnregister(SessionConfig sessionConfig,
ITransaction transaction) |
void |
DeleteCommentProcessActionHandler.processAction() |
Constructor and Description |
---|
CommentItMonitorUtil(boolean isAdd,
HttpServletRequest request,
String targetObjectName,
String targetObjectId,
String targetObjectServiceInstance,
String serviceInstanceId,
ITransaction transaction)
Creates a new instance.
|
Modifier and Type | Method and Description |
---|---|
protected IQueryValue |
CurrentCommunityIdFilter.calculateFilterValue(Node filterNode) |
protected IQueryValue |
MyCommunitiesChannelIdFilter.calculateFilterValue(Node filterNode) |
void |
CommunityResource.deleteCommunityMembership(String communityId,
String userId)
Deletes the membership of a user in a community.
|
void |
CommunityResource.deleteCommunityMembershipRequest(String communityId,
String userId)
Deletes a membership request in a community sent by a user.
|
void |
CommunityService.deserializeContent(ServiceInstanceDeserializationContext serviceInstanceDeserializationContext) |
protected void |
AddCommunityProcessActionHandler.doAction() |
protected void |
DeleteCommunityProcessActionHandler.doAction() |
protected void |
UpdateCommunityProcessActionHandler.doAction() |
lumis.service.community.CommunityResource.CommunityMembership |
CommunityResource.getCommunityMembership(String communityId,
String userId)
Returns information about the membership of a user in a community.
|
lumis.service.community.CommunityMembershipRequest |
CommunityResource.getCommunityMembershipRequest(String communityId,
String userId)
Returns information about the request of membership in a community sent by a user.
|
protected String |
CommunityTabularDataControl.getFieldHyperlink(TabularSource source,
ISourceData row,
String fieldId,
String compositePrimaryKey,
int rowIndex) |
void |
CommunityCurrentUserRoleDataProvider.loadData(SessionConfig sessionConfig,
Source<?> source,
ITransaction transaction) |
void |
CommunityMemberDataProvider.loadData(SessionConfig sessionConfig,
TableSource source,
ITransaction transaction) |
void |
CommunityMembershipRequestDataProvider.loadData(SessionConfig sessionConfig,
TableSource source,
ITransaction transaction) |
void |
AddMemberProcessActionHandler.processAction() |
void |
CommunityMemberProcessActionHandler.processAction() |
void |
CommunityMembershipRequestProcessActionHandler.processAction() |
void |
CommunityProcessActionHandler.processAction() |
void |
CommunityAdministratorAddServiceInterface.processAction(IServiceInterfaceActionRequest request,
IServiceInterfaceActionResponse response) |
void |
CommunityEditServiceInterface.processAction(IServiceInterfaceActionRequest request,
IServiceInterfaceActionResponse response) |
void |
CommunityMembershipRequestsServiceInterface.processAction(IServiceInterfaceActionRequest request,
IServiceInterfaceActionResponse response) |
void |
CommunityResource.processMembershipRequest(String communityId,
String userId,
CommunityResource.MembershipRequestAction action)
Processes an action on membership request.
|
void |
CommunityAdministratorAddServiceInterface.render(IServiceInterfaceRenderRequest request,
IServiceInterfaceRenderResponse response) |
void |
CommunityEditServiceInterface.render(IServiceInterfaceRenderRequest request,
IServiceInterfaceRenderResponse response) |
void |
CommunityMembershipRequestsServiceInterface.render(IServiceInterfaceRenderRequest request,
IServiceInterfaceRenderResponse response) |
void |
CommunityResource.requestCommunityMembership(String communityId)
Requests a membership in a community, by the current logged in user.
|
lumis.service.community.CommunityResource.CommunityMembership |
CommunityResource.updateCommunityMembership(String communityId,
String userId,
lumis.service.community.CommunityResource.CommunityMembership membership)
Updates information about the membership of a user in a community.
|
Modifier and Type | Method and Description |
---|---|
void |
ContactUsMailProcessActionHandler.processAction() |
void |
SetContactRequestCategoryNullProcessActionHandler.processAction() |
void |
SetContactRequestCategoryNullProcessActionHandler.updateCategoryMessages(String categoryContentId,
ITransaction transaction)
Update lum_ContactUs through the given message identifier.
|
Modifier and Type | Method and Description |
---|---|
void |
LanguageAssociableContentsDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<?> source,
ITransaction transaction) |
void |
LanguageAssociatedContentsDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<?> source,
ITransaction transaction) |
void |
LanguageProcessActionHandler.processAction() |
Modifier and Type | Method and Description |
---|---|
static Set<PreviewUtil.PreviewInformation> |
PreviewUtil.getServiceInstancePreviewPage(Collection<String> serviceInstanceIds,
SessionConfig sessionConfig,
DouiContext douiContext,
String contentSourceId,
ITransaction transaction)
Get a list of pages capable of previewing the content
|
void |
DeviceSkinDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<?> source,
ITransaction transaction) |
void |
PreviewPagesDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<?> source,
ITransaction transaction) |
void |
PreviewContentInterface.render(IServiceInterfaceRenderRequest request,
IServiceInterfaceRenderResponse response) |
void |
PreviewServiceInterface.render(IServiceInterfaceRenderRequest request,
IServiceInterfaceRenderResponse response) |
Modifier and Type | Method and Description |
---|---|
void |
PublishToPrincipalsProcessActionHandler.processAction() |
Modifier and Type | Method and Description |
---|---|
void |
PublishToServiceInstancesProcessActionHandler.processAction() |
Modifier and Type | Method and Description |
---|---|
void |
AutoLayoutPublishToSocialNetworksAdministrationListControl.buildSubControls() |
protected String |
AutoLayoutPublishToSocialNetworksAdministrationListControl.getAdminListButtonsControl()
Returns the Buttons controls.
|
protected String |
AutoLayoutPublishToSocialNetworksAdministrationListControl.getAdminListControl()
Returns the administration list.
|
protected String |
AutoLayoutPublishToSocialNetworksAdministrationListControl.getScriptControl()
Returns the scripts control.
|
void |
AutoLayoutPublishToSocialNetworksAdministrationListControl.init(Node controlDefinitionNode,
ControlContainer controlContainer,
IControl parentControl) |
void |
MessageMaxLengthDataProvider.loadData(SessionConfig sessionConfig,
TableSource source,
ITransaction transaction) |
void |
AvailableAccountsByServiceInstanceDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<?> source,
ITransaction transaction) |
void |
MessageDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<?> source,
ITransaction transaction) |
void |
PublishToSocialNetworksProcessActionHandler.processAction() |
void |
AdminSocialNetworkMessagesPostLoadProcessor.processSource(SessionConfig sessionConfig,
Source source,
Node parametersNode,
ITransaction transaction) |
void |
AutoLayoutPublishToSocialNetworksAdministrationListControl.setRenderData() |
Constructor and Description |
---|
MessageMaxLengthDataProvider() |
Modifier and Type | Method and Description |
---|---|
void |
EditContentSeoProcessActionHandler.processAction() |
Modifier and Type | Method and Description |
---|---|
void |
ContentVersionsDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<?> source,
ITransaction transaction) |
void |
VersionProcessActionHandler.processAction() |
void |
SelectVersionInterface.processAction(IServiceInterfaceActionRequest request,
IServiceInterfaceActionResponse response) |
void |
SelectVersionInterface.render(IServiceInterfaceRenderRequest request,
IServiceInterfaceRenderResponse response) |
Modifier and Type | Method and Description |
---|---|
List<FieldResume> |
SourceResumeDataProvider.getFields(Node sourceDefinitionNode,
ServiceConfig serviceConfig)
Returns all fields from source node XML.
|
void |
ContentWizardControllerHtml.handleRequest()
Write the response for request.
|
void |
SourceResumeDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<?> source,
ITransaction transaction) |
void |
ContentWizardDeleteProcessActionHandler.processAction() |
void |
EditFieldsServiceInterface.processAction(IServiceInterfaceActionRequest request,
IServiceInterfaceActionResponse response) |
void |
EditFieldsServiceInterface.render(IServiceInterfaceRenderRequest request,
IServiceInterfaceRenderResponse response) |
Constructor and Description |
---|
ContentWizardControllerHtml(HttpServletRequest request,
HttpServletResponse response,
PageContext pageContext) |
EditFieldsParams(ServletRequest request) |
Modifier and Type | Method and Description |
---|---|
void |
DocumentParentFilterControl.buildSubControls() |
IChannelChildProvider |
SelectDocumentServiceInstanceControl.createChannelChildProvider() |
protected void |
DocumentDeleteProcessActionHandler.deleteRelatedData(Collection<String> itemIdsTemp,
Node currentSourceDefinitionNode,
String foreignPrimaryKeyFieldId,
ITransaction transaction)
Includes the recursive deletion of the children of the selected items.
|
DocumentConfig |
DocumentManager.get(SessionConfig sessionConfig,
String documentId,
ITransaction transaction) |
DocumentConfig |
IDocumentManager.get(SessionConfig sessionConfig,
String documentId,
ITransaction transaction)
Returns the DocumentConfig for a document with the given id.
|
Collection<DocumentConfig> |
DocumentManager.getChildren(SessionConfig sessionConfig,
String serviceInstanceId,
String folderId,
int type,
ITransaction transaction) |
Collection<DocumentConfig> |
IDocumentManager.getChildren(SessionConfig sessionConfig,
String serviceInstanceId,
String folderId,
int type,
ITransaction transaction)
Returns the entries in the specified folder.
|
Collection<String> |
DocumentManager.getDocumentPublishToPrincipals(String parentFolderId) |
Collection<String> |
IDocumentManager.getDocumentPublishToPrincipals(String documentId)
Return a the list of principals for which the
document is published to. |
Collection<String> |
DocumentManager.getFolderIdsByParentAndName(SessionConfig sessionConfig,
String serviceInstanceId,
String parentFolderId,
String folderName,
ITransaction transaction) |
Collection<String> |
IDocumentManager.getFolderIdsByParentAndName(SessionConfig sessionConfig,
String serviceInstanceId,
String parentFolderId,
String folderName,
ITransaction transaction)
Returns the ids of the folders child of the given parent and with the given name.
|
String |
DocumentManager.getFolderPath(SessionConfig sessionConfig,
String folderId,
ITransaction transaction) |
String |
IDocumentManager.getFolderPath(SessionConfig sessionConfig,
String folderId,
ITransaction transaction)
Returns the virtual path to the folder.
|
void |
FCKSelectDocumentControllerHtml.handleRequest() |
void |
DocumentParentFilterControl.init(Node controlDefinitionNode,
ControlContainer controlContainer,
IControl parentControl) |
void |
DocumentFolderDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<?> source,
ITransaction transaction) |
void |
DocumentManager.moveDocument(SessionConfig sessionConfig,
String documentId,
String destFolderId,
ITransaction transaction) |
void |
IDocumentManager.moveDocument(SessionConfig sessionConfig,
String documentId,
String destFolderId,
ITransaction transaction)
Moves a document (or a folder) to another folder.
|
void |
CheckDuplicateFolderProcessActionHandler.processAction() |
void |
DocumentAddMultipleProcessActionHandler.processAction() |
void |
DocumentMoveProcessActionHandler.processAction() |
void |
DocumentSelectProcessActionHandler.processAction() |
void |
SelectRepositoryProcessActionHandler.processAction() |
void |
SelectRepositoryInterface.processAction(IServiceInterfaceActionRequest request,
IServiceInterfaceActionResponse response) |
void |
DocumentEditServiceInterface.render(IServiceInterfaceRenderRequest request,
IServiceInterfaceRenderResponse response) |
void |
SelectRepositoryInterface.render(IServiceInterfaceRenderRequest request,
IServiceInterfaceRenderResponse response) |
void |
DocumentParentFilterControl.setRenderData() |
void |
DocumentManager.updateDocumentHierarchyPublishTo(String documentId,
Collection<String> heritagePrincipalsId) |
void |
IDocumentManager.updateDocumentHierarchyPublishTo(String documentId,
Collection<String> heritagePrincipalsId)
Update the list of principals the
document is published to |
protected void |
DocumentAddMultipleProcessActionHandler.validateParameters(IMultiFileUploadParameter multiFileUploadParameter)
Validates the controls based on
IMultiFileUploadParameter
parameter, showing the correct error message if necessary. |
Constructor and Description |
---|
FCKSelectDocumentControllerHtml(HttpServletRequest request,
HttpServletResponse response,
PageContext pageContext) |
Modifier and Type | Method and Description |
---|---|
void |
DocumentPickerControl.buildSubControls() |
IResource |
DocumentPickerControl.getControlResource() |
void |
DocumentPickerControl.setRenderData() |
Modifier and Type | Method and Description |
---|---|
protected void |
DocumentDataType.deleteRelatedFile(ISourceField field,
SourcePreDeleteDataEvent event) |
String |
DocumentDataType.Data.getDisplayString(IRenderer renderer) |
protected Map<String,Object> |
DocumentDataType.Data.getJSONData()
Returns the render data in JSON format.
|
String |
DocumentDataType.Data.getRenderData(IRenderer renderer) |
TableSourceFieldMapping |
DocumentSourceField.getTableMapping(QueryBase queryBase) |
protected String |
DocumentDataType.Data.getXMLFragmentData(IRenderer renderer)
Returns the render data XML fragment.
|
Modifier and Type | Method and Description |
---|---|
void |
PublishHeritageProcessActionHandler.processAction() |
Modifier and Type | Method and Description |
---|---|
void |
DouiFieldsDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<?> source,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
protected abstract String |
AbstractServiceInstanceCustomPropertiesProcessActionHandler.getServiceInstanceId()
Get the service instance identifier to add the property to.
|
protected abstract String |
AbstractServiceInstanceCustomPropertiesDataProvider.getServiceInstanceId(Source<ISourceField> source)
Get the service instance identifier to get the property from.
|
void |
InterfaceInstanceCustomPropertiesDataProvider.loadData(SessionConfig sessionConfig,
Source<?> source,
ITransaction transaction) |
void |
AbstractServiceInstanceCustomPropertiesDataProvider.loadData(SessionConfig sessionConfig,
Source<ISourceField> source,
ITransaction transaction) |
void |
ServiceInstanceDependencyDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<?> source,
ITransaction transaction) |
void |
AbstractServiceInstanceCustomPropertiesProcessActionHandler.processAction() |
void |
InterfaceInstanceCustomPropertiesProcessActionHandler.processAction() |
Modifier and Type | Method and Description |
---|---|
void |
AddDynamicListSourceControl.buildSubControls() |
IDataControlRequestHelpDefinition |
AddDynamicListSourceControl.getRequestHelpDefinition() |
void |
AddDynamicListSourceControl.init(Node controlDefinitionNode,
ControlContainer controlContainer,
IControl parentControl) |
void |
AddItemActionHandler.processAction() |
void |
AddDynamicListSourceControl.setProcessActionHandlerParameters(IProcessActionHandler processActionHandler) |
void |
AddDynamicListSourceControl.setRenderData() |
Modifier and Type | Method and Description |
---|---|
IDataControlRequestHelpDefinition |
FieldsControl.getRequestHelpDefinition() |
void |
FieldsProcessActionHandler.processAction() |
void |
FieldsInterface.processAction(IServiceInterfaceActionRequest request,
IServiceInterfaceActionResponse response) |
void |
FieldsInterface.render(IServiceInterfaceRenderRequest request,
IServiceInterfaceRenderResponse response) |
void |
FieldsControl.setProcessActionHandlerParameters(IProcessActionHandler processActionHandler) |
void |
FieldsControl.setRenderData() |
Modifier and Type | Method and Description |
---|---|
void |
ClearImageEditionClock.doTick(SessionConfig sessionConfig,
ClockConfig clockConfig) |
void |
EditImageProcessActionHandler.processAction() |
Modifier and Type | Method and Description |
---|---|
boolean |
FilterUniqueIdValidator.doServerValidation() |
protected ValidationMessages |
FilterUniqueIdValidator.getDefaultMessages(String errorType) |
String |
FilterUniqueIdValidator.getScriptValidationFunctionImplementation() |
void |
CustomFiltersDataProvider.loadData(SessionConfig sessionConfig,
Source source,
ITransaction transaction) |
void |
FiltersInformationDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<?> source,
ITransaction transaction) |
void |
FiltersProcessActionHandler.processAction() |
void |
FiltersInterface.processAction(IServiceInterfaceActionRequest request,
IServiceInterfaceActionResponse response) |
void |
FilterableFieldsPostLoadProcessor.processSource(SessionConfig sessionConfig,
Source source,
Node parametersNode,
ITransaction transaction) |
void |
FiltersInterface.render(IServiceInterfaceRenderRequest request,
IServiceInterfaceRenderResponse response) |
void |
FiltersProcessActionHandler.updateCustomFilters() |
Modifier and Type | Method and Description |
---|---|
void |
HtmlEditProcessActionHandler.processAction() |
Modifier and Type | Method and Description |
---|---|
void |
HtmlTemplateCheckPermissionDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<?> source,
ITransaction transaction) |
void |
HtmlTemplateDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<?> source,
ITransaction transaction) |
void |
HtmlTemplateProcessActionHandler.processAction() |
Modifier and Type | Method and Description |
---|---|
void |
MaxRowsProcessActionHandler.processAction() |
void |
MaxRowsInterface.processAction(IServiceInterfaceActionRequest request,
IServiceInterfaceActionResponse response) |
void |
MaxRowsInterface.render(IServiceInterfaceRenderRequest request,
IServiceInterfaceRenderResponse response) |
Modifier and Type | Method and Description |
---|---|
void |
OrderByDataProvider.loadData(SessionConfig sessionConfig,
Source source,
ITransaction transaction) |
void |
OrderableFieldsDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<?> source,
ITransaction transaction) |
void |
OrderByActionHandler.processAction() |
void |
OrderByInterface.processAction(IServiceInterfaceActionRequest request,
IServiceInterfaceActionResponse response) |
void |
OrderByInterface.render(IServiceInterfaceRenderRequest request,
IServiceInterfaceRenderResponse response) |
Modifier and Type | Method and Description |
---|---|
void |
PositionFieldUpdateProcessActionHandler.init(Node processActionNode,
ProcessActionContainer processActionContainer) |
protected void |
PositionFieldOrderInterface.initDouiContext(DouiContext douiContext) |
void |
PositionFieldUpdateProcessActionHandler.processAction() |
void |
PositionFieldOrderInterface.processAction(IServiceInterfaceActionRequest request,
IServiceInterfaceActionResponse response) |
void |
PositionFieldOrderInterface.render(IServiceInterfaceRenderRequest request,
IServiceInterfaceRenderResponse response) |
void |
PositionFieldInterfaceHeaderControl.setRenderData() |
Modifier and Type | Method and Description |
---|---|
void |
CallerInterfaceInstancePreferencesDataProvider.loadData(SessionConfig sessionConfig,
Source<?> source,
ITransaction transaction) |
void |
CallerInterfaceInstancePreferencesProcessActionHandler.processAction() |
Modifier and Type | Method and Description |
---|---|
protected void |
PropertyBagProcessActionHandler.addRow() |
protected void |
PropertyBagProcessActionHandler.deleteRows(String primaryKeyFieldId,
Collection<String> rowsDeleted) |
protected IResource |
PropertyBagProcessActionHandler.getResource() |
void |
PropertyBagProcessActionHandler.init(Node processActionNode,
ProcessActionContainer processActionContainer) |
void |
InheritedPropertiesDataProvider.loadData(SessionConfig sessionConfig,
TableSource source,
ITransaction transaction) |
void |
LocalPropertiesDataProvider.loadData(SessionConfig sessionConfig,
TableSource source,
ITransaction transaction) |
protected void |
PropertyBagProcessActionHandler.updateRow() |
Modifier and Type | Method and Description |
---|---|
void |
PublisherFiltersAutoLayoutFieldsControl.buildSubControls() |
static Collection<ISourceField> |
PublisherFiltersAutoLayoutFieldsControl.getProperFields(Collection<? extends ISourceField> list)
Method that return a list of proper fields.
|
IDataControlRequestHelpDefinition |
PublisherFiltersAutoLayoutFieldsControl.getRequestHelpDefinition() |
protected Class<?> |
PublisherFiltersAutoLayoutFieldsControl.getValueClass() |
protected void |
PublisherFilterInterface.initDouiContext(DouiContext douiContext) |
void |
PublisherFiltersAutoLayoutFieldsControl.loadFromRequest() |
void |
PublisherFiltersProcessActionHandler.processAction() |
void |
PublisherFilterInterface.processAction(IServiceInterfaceActionRequest request,
IServiceInterfaceActionResponse response) |
void |
PublisherFilterSelectMetaDataContentInterface.processAction(IServiceInterfaceActionRequest request,
IServiceInterfaceActionResponse response) |
void |
PublisherFilterInterface.render(IServiceInterfaceRenderRequest request,
IServiceInterfaceRenderResponse response) |
void |
PublisherFilterSelectMetaDataContentInterface.render(IServiceInterfaceRenderRequest request,
IServiceInterfaceRenderResponse response) |
void |
PublisherFiltersAutoLayoutFieldsControl.setRenderData() |
static boolean |
PublisherFiltersAutoLayoutFieldsControl.validateDataType(ISourceField field)
Validates which field will be filtered by it data type
|
static boolean |
PublisherFiltersAutoLayoutFieldsControl.validateMetaDataField(ISourceField field)
Validates which field will be filtered by it meta data type
|
Modifier and Type | Method and Description |
---|---|
void |
UploadTempFilesDeleteClock.doTick(SessionConfig sessionConfig,
ClockConfig clockConfig) |
Modifier and Type | Class and Description |
---|---|
class |
UnresolvedVariableException
An exception thrown when a given variable couldn't be resolved.
|
Modifier and Type | Method and Description |
---|---|
IChannelChildProvider |
SelectEmailTemplateServiceInstanceControl.createChannelChildProvider() |
ISingleMail |
IEmailTemplate.format(IEmailTemplateVariableResolver variableResolver)
Returns the formated email.
|
IEmailTemplate |
IEmailTemplateManager.get(String id)
Returns the email template with the given identifier.
|
Collection<IEmailTemplate> |
IEmailTemplateManager.getByServiceInstance(String serviceInstanceId)
Returns the email templates of a given service instance.
|
void |
SelectRepositoryProcessActionHandler.processAction() |
void |
SendTestEmailProcessActionHandler.processAction() |
void |
SelectRepositoryInterface.processAction(IServiceInterfaceActionRequest request,
IServiceInterfaceActionResponse response) |
void |
SelectRepositoryInterface.render(IServiceInterfaceRenderRequest request,
IServiceInterfaceRenderResponse response) |
String |
IEmailTemplateVariableResolver.resolveVariable(String variableName)
Resolves the variable with the given name.
|
Modifier and Type | Method and Description |
---|---|
void |
EventCalendarDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<?> source,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
static String |
FormBuilderManager.formatMailingList(String mailingList,
PageWebResource pageWebResource)
Format the mailing list string into a JSONArray string.
|
static String |
FormBuilderManager.generateMailBody(String formId,
String userName,
String formTitle,
Answer answer,
PageWebResource pageWebResource)
Generate the HTML body of the e-mail to be sent as a notification when someone answers a form
|
static List<FormField> |
FormBuilderManager.getFormFields(String formId)
|
void |
AnswersAutoLayoutFieldsControl.init(Node controlDefinitionNode,
ControlContainer controlContainer,
IControl parentControl) |
void |
ShowAnswersAutoLayoutFieldsControl.init(Node controlDefinitionNode,
ControlContainer controlContainer,
IControl parentControl) |
static Collection<lumis.service.formbuilder.FormElement> |
FormBuilderManager.parseHtmlForm(String htmlFragment)
Returns a collection of
form elements from a HTML fragment, each element will be related to
input, select or textarea HTML tags that has a label related to it. |
void |
AddFormAnswerProcessActionHandler.processAction() |
void |
AddFormFieldProcessActionHandler.processAction() |
void |
AddFormProcessActionHandler.processAction() |
void |
FormBuilderAddContentProcessActionHandler.processAction() |
void |
FormBuilderValidateContentProcessActionHandler.processAction() |
void |
ProcessAnswerProcessActionHandler.processAction() |
void |
UpdateFormFieldProcessActionHandler.processAction() |
void |
UpdateFormProcessActionHandler.processAction() |
void |
IsFormPublishedPostLoadProcessor.processSource(SessionConfig sessionConfig,
Source source,
Node parametersNode,
ITransaction transaction) |
static void |
FormBuilderManager.validateFieldOptions(String formFieldOptionsJsonString,
int formFieldOptionsCount)
Validates the json for a field options.
|
static void |
FormBuilderManager.validateFormFieldType(FormField formField,
org.json.simple.JSONObject answersJson)
Validate Answers by formField type
|
Modifier and Type | Method and Description |
---|---|
void |
ForumDaoJdbc.decreasePostedMessages(String topicId,
ITransaction transaction)
Decrease the count of messages (by one) on the specified topic and it's forum.
|
void |
ForumDaoJdbc.decreasePostedTopics(String topicId,
ITransaction transaction)
Decrease the count of messages from the specified topic on it's forum.
|
ForumCategoryConfig |
ForumDaoJdbc.getCategory(String categoryId,
ITransaction transaction)
Gets the
ForumCategoryConfig for the specified categoryId. |
String |
ForumDaoJdbc.getContentIdByPrimaryKey(String primaryKeyValue)
Returns the contentId corresponding to the given primary key.
|
protected String |
ForumMessageListPostLoadProcessor.getEditButtonScript(String pkFieldName,
ISourceData row,
IServiceInterfaceUrl baseUrl) |
ForumConfig |
ForumDaoJdbc.getForum(String forumId,
ITransaction transaction) |
String |
ForumDaoJdbc.getForumIdByTopicId(String topicId,
ITransaction transaction) |
Collection<String> |
ForumDaoJdbc.getForumIdsByCategory(String categoryContentId,
ITransaction transaction) |
Collection<String> |
ForumDaoJdbc.getForumTopicIds(String forumContentId,
ITransaction transaction) |
String |
ForumDaoJdbc.getLastPostedMessageId(String topicContentId,
String excludedMessageId,
ITransaction transaction)
Returns the id of the last message posted on the specified topic.
|
String |
ForumDaoJdbc.getLastPostedTopicId(String forumContentId,
String excludedTopicId,
ITransaction transaction)
Returns the id of the last updated topic on the specified forum.
|
ForumMessageConfig |
ForumDaoJdbc.getMessage(String messageId,
ITransaction transaction)
Gets the
ForumMessageConfig for the specified message id. |
protected String |
ForumMessageListPostLoadProcessor.getQuoteButtonScript(String pkFieldName,
ISourceData row,
IServiceInterfaceUrl baseUrl) |
ForumTopicConfig |
ForumDaoJdbc.getTopic(String topicId,
ITransaction transaction)
Gets the
ForumTopicConfig for the specified topicId. |
protected void |
ForumButtonVisibilityControl.handleForumLockButtons(Node controlDefinitionNode,
String userId) |
protected void |
ForumButtonVisibilityControl.handleForumNewTopicButtons(Node controlDefinitionNode,
String currentUserId) |
protected void |
ForumButtonVisibilityControl.handleTopicLockButtons(Node controlDefinitionNode,
String userId) |
protected void |
ForumButtonVisibilityControl.handleTopicReplyButtons(Node controlDefinitionNode,
String userId) |
void |
ForumDaoJdbc.increasePostedMessages(String topicId,
ITransaction transaction)
Increase topic and forum's message counters.
|
void |
ForumDaoJdbc.increasePostedTopics(String topicId,
ITransaction transaction)
Increase the forum's topic counter.
|
void |
ForumDaoJdbc.increaseTopicViews(String topicId,
ITransaction transaction)
Increase the topic view counter.
|
static boolean |
ForumProcessActionHandler.isForumLocked(String forumId,
ITransaction transaction) |
static boolean |
ForumProcessActionHandler.isForumModerator(SessionConfig sessionConfig,
String forumId,
String currentUserId,
ITransaction transaction) |
static boolean |
ForumProcessActionHandler.isTopicLocked(String topicId,
ITransaction transaction) |
static boolean |
ForumProcessActionHandler.isTopicLocked(String topicId,
ITransaction transaction,
boolean checkForumLocked) |
void |
MessageListDataProvider.loadData(SessionConfig sessionConfig,
TableSource source,
ITransaction transaction) |
void |
ForumPathDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<?> source,
ITransaction transaction) |
void |
ForumMessageListInputHiddenControl.loadFromRequest() |
void |
ForumProcessActionHandler.processAction() |
protected void |
ForumProcessActionHandler.processAddMessage() |
protected void |
ForumProcessActionHandler.processAddTopic() |
protected void |
ForumProcessActionHandler.processDeleteCategory() |
protected void |
ForumProcessActionHandler.processDeleteMessage() |
protected void |
ForumProcessActionHandler.processDeleteTopic() |
protected void |
ForumProcessActionHandler.processEditMessage() |
protected void |
ForumProcessActionHandler.processLockForum() |
protected void |
ForumProcessActionHandler.processLockTopic() |
void |
ForumMessageEditPostLoadProcessor.processSource(SessionConfig sessionConfig,
Source source,
Node parametersNode,
ITransaction transaction) |
void |
ForumMessageListPostLoadProcessor.processSource(SessionConfig sessionConfig,
Source source,
Node parametersNode,
ITransaction transaction) |
void |
ForumMessageQuotePostLoadProcessor.processSource(SessionConfig sessionConfig,
Source source,
Node parametersNode,
ITransaction transaction) |
protected void |
ForumProcessActionHandler.processUnlockForum() |
protected void |
ForumProcessActionHandler.processUnlockTopic() |
protected void |
ForumButtonVisibilityControl.removeAllSubControls(Node controlDefinitionNode) |
void |
ForumDaoJdbc.setForumLastMessageInfo(String forumId,
String lastTopicUser,
Timestamp lastTopicDate,
ITransaction transaction)
Sets the forum's last message post date and user.
|
void |
ForumDaoJdbc.setForumState(String forumId,
int state,
ITransaction transaction) |
void |
ForumButtonVisibilityControl.setRenderData() |
void |
ForumMessageListPaginationControl.setRenderData() |
void |
TopicViewCounterControl.setRenderData() |
void |
ForumDaoJdbc.setTopicFirstMessage(String topicId,
String messageId,
ITransaction transaction)
Updates the topic's firstMessageId colum with the specified messageId.
|
void |
ForumDaoJdbc.setTopicLastMessageInfo(String topicId,
String lastMessageUser,
Timestamp lastMessageDate,
ITransaction transaction)
Sets the topic's last message post date and user.
|
void |
ForumDaoJdbc.setTopicState(String topicId,
int state,
ITransaction transaction)
Sets the topic state.
|
void |
ForumDaoJdbc.setTopicSubject(String topicId,
String subject,
ITransaction transaction)
Updates the topic subject.
|
boolean |
ForumService.usesWidgetRepository(ITransaction transaction) |
void |
ForumProcessActionHandler.validateHTMLContent(String html)
This method validate the HTML content sent by user.
|
Constructor and Description |
---|
MessageListDataProvider()
Contructor.
|
Modifier and Type | Method and Description |
---|---|
void |
OrderGlossaryListPostLoadProcessor.processSource(SessionConfig sessionConfig,
Source source,
Node parametersNode,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
protected String |
DomainScopeFilter.calculateFilterOperator(Node filterNode) |
protected IQueryValue |
DomainScopeFilter.calculateFilterValue(Node filterNode) |
void |
GroupProcessActionHandler.processAction() |
void |
PrefixRemovalPostLoadProcessor.processSource(SessionConfig sessionConfig,
Source source,
Node parametersNode,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
protected Object |
HierarchicalContentHtmlTextAreaControl.getDefaultValue() |
protected String |
HierarchicalTabularDataControl.getFieldHyperlink(TabularSource source,
ISourceData row,
String fieldId,
String compositePrimaryKey,
int rowIndex) |
protected String |
HierarchicalTabularDataControl.getRowOnClick(TabularSource<?> source,
ISourceData row,
String compositePrimaryKey,
int rowIndex)
Builds the java script to be added to the onClick of the hyperlink
|
void |
HierarchicalAddContentProcessActionHandler.processAction() |
void |
HierarchicalContentClearServiceCacheProcessActionHandler.processAction() |
void |
HierarchicalContentDeleteDataProcessActionHandler.processAction() |
void |
HierarchicalContentHierarchyValidationProcessActionHandler.processAction() |
void |
HierarchicalValidateContentProcessActionHandler.processAction() |
void |
BreadCrumbPostLoadProcessor.processSource(SessionConfig sessionConfig,
Source source,
Node parametersNode,
ITransaction transaction) |
void |
ContentChildrenPostLoadProcessor.processSource(SessionConfig sessionConfig,
Source source,
Node parametersNode,
ITransaction transaction) |
void |
ContentMenuPostLoadProcessor.processSource(SessionConfig sessionConfig,
Source source,
Node parametersNode,
ITransaction transaction) |
void |
SetParentNamePostLoadProcessor.processSource(SessionConfig sessionConfig,
Source source,
Node parametersNode,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
static String |
HtmlDataProvider.getHtmlData(SessionConfig sessionConfig,
ServiceInterfaceInstanceConfig interfaceInstanceConfig,
ITransaction transaction)
Returns the html data for a Html interface instance.
|
void |
DisplayHtml.instanceAdded(ServiceInterfaceInstanceConfig interfaceInstanceConfig,
ITransaction transaction) |
void |
HtmlDataProvider.loadData(SessionConfig sessionConfig,
Source source,
ITransaction transaction) |
void |
HtmlProcessActionHandler.processAction() |
void |
DisplayHtml.render(IServiceInterfaceRenderRequest request,
IServiceInterfaceRenderResponse response) |
boolean |
HtmlService.usesDocumentService(ITransaction transaction) |
boolean |
HtmlService.usesImageService(ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
void |
HtmlContentResource.addContentFromHolder(String serviceInstanceId,
String serviceInterfaceInstanceId,
String pageId,
String holderId)
Create HTML content if the HMTL service instance
has no content yet.
|
protected IServiceInterfaceUrl |
HtmlContentHyperLinkResolver.createUrl(SessionConfig sessionConfig,
HyperLinkConfig hyperLinkConfig,
String pageId,
ITransaction transaction) |
void |
HtmlContentDetailsInterface.render(IServiceInterfaceRenderRequest request,
IServiceInterfaceRenderResponse response)
Ajax to Html content resource when render service interface is called.
|
protected String |
HtmlContentHyperLinkResolver.resolveDestinationInterfaceId(SessionConfig sessionConfig,
HyperLinkConfig hyperLinkConfig,
ITransaction transaction) |
IServiceInterfaceUrl |
HtmlContentService.resolveHyperLink(SessionConfig sessionConfig,
HyperLinkConfig hyperLinkConfig,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
protected IResource |
URLAccessibilityEvaluationProcessActionHandler.getResource() |
void |
URLAccessibilityEvaluationControllerHtml.handleRequest() |
void |
URLAccessibilityEvaluationProcessActionHandler.processAction() |
Constructor and Description |
---|
URLAccessibilityEvaluationControllerHtml(HttpServletRequest request,
HttpServletResponse response) |
Modifier and Type | Method and Description |
---|---|
void |
HtmlInjector.init(String serviceInstanceId) |
protected List<HtmlInjectionConfig> |
HtmlInjectorsDataProvider.loadObjects(SessionConfig sessionConfig,
TabularSource<?> source,
ITransaction transaction) |
void |
HtmlInjectorEventObserver.onEvent(IPortalEvent event)
Clear cache of the Service Instance if is a lumis.service.htmlinjector
|
String |
HtmlInjector.process(String originalHtml,
IPageWebResourceRenderRequest pageWebResourceRenderRequest) |
Modifier and Type | Method and Description |
---|---|
Response |
LikeItResource.addLike(Like like)
Adds a
Like . |
static void |
LikeItMonitorUtil.collectDislike(HttpServletRequest request,
Like like,
ITransaction transaction)
Collects the event data.
|
static void |
LikeItMonitorUtil.collectLike(HttpServletRequest request,
Like like,
ITransaction transaction)
Collects the event data.
|
void |
LikeItResource.deleteLike(String likeId)
Delete the
Like with the identifier |
Like |
LikeItResource.getLike(String id)
Returns a
Like by its identifier. |
LikeItResource.LikesItemList |
LikeItResource.getLikesItems(String serviceInstanceId,
List<String> itemIds)
Get all
Like s of the specified items, organized in LikeItResource.LikesItem structures. |
void |
LikeItService.instanceDeleted(SessionConfig sessionConfig,
ServiceInstanceConfig serviceInstanceConfig,
ITransaction transaction) |
void |
LikeItContentDeleteObserver.onEvent(IPortalEvent event) |
Constructor and Description |
---|
LikeItMonitorUtil(boolean isLike,
HttpServletRequest request,
String targetObjectName,
String targetObjectId,
String targetObjectServiceInstance,
String serviceInstanceId,
ITransaction transaction)
Creates a new instance.
|
Modifier and Type | Method and Description |
---|---|
LinkCategoryConfig |
LinkDaoJdbc.getCategory(String bannerCategoryId,
ITransaction transaction) |
Collection<String> |
LinkDaoJdbc.getCategoryLinks(String linkCategoryId,
ITransaction transaction) |
static String |
LinkHyperlink.getHyperlink(ISourceData row,
String rowHyperlink,
String fieldHyperlink,
IURLFactory urlFactory)
Returns the hyperlink URL for a link source row.
|
protected String |
LinkTabularDataControl.getRowHyperlink(TabularSource source,
ISourceData row,
String compositePrimaryKey,
int rowIndex) |
void |
CheckCategoryDeleteProcessActionHandler.processAction() |
Modifier and Type | Method and Description |
---|---|
void |
LocaleProcessActionHandler.addOrUpdateCustomString() |
void |
LocaleProcessActionHandler.clearCache() |
void |
LocaleProcessActionHandler.deleteCustomString() |
void |
LocaleConfigProcessActionHandler.processAction() |
void |
LocaleProcessActionHandler.processAction() |
void |
LocaleProcessActionHandler.setLocale() |
void |
LocalePickerControl.setRenderData() |
Modifier and Type | Method and Description |
---|---|
protected String |
LoginInterface.getCustomMenu(SessionConfig sessionConfig,
ServiceInterfaceInstanceConfig config,
ITransaction transaction) |
protected String |
LogoutInterface.getCustomMenu(SessionConfig sessionConfig,
ServiceInterfaceInstanceConfig config,
ITransaction transaction) |
void |
LoginProcessActionHandler.processAction() |
void |
LoginInterface.render(IServiceInterfaceRenderRequest request,
IServiceInterfaceRenderResponse response) |
void |
LogoutInterface.render(IServiceInterfaceRenderRequest request,
IServiceInterfaceRenderResponse response) |
void |
LogoutOriginalWebResourcePathInputHiddenControl.setProcessActionHandlerParameters(IProcessActionHandler processActionHandler) |
void |
AccessErrorMessageTranslator.setRenderData() |
protected void |
LogoutOriginalWebResourcePathInputHiddenControl.setValueFromSource() |
Modifier and Type | Method and Description |
---|---|
protected void |
UserSubscriptionProcessActionHandler.doAction() |
void |
MailMarketingClock.doTick(SessionConfig sessionConfig,
ClockConfig clockConfig) |
void |
MailMarketingBulletinAddDataProcessActionHandler.processAction() |
void |
MailMarketingBulletinUpdateDataProcessActionHandler.processAction() |
void |
MailMarketingSendTestEmailProcessActionHandler.processAction() |
void |
UserCancelSubscriptionProcessActionHandler.processAction() |
void |
UserSubscriptionInterface.render(IServiceInterfaceRenderRequest request,
IServiceInterfaceRenderResponse response) |
void |
UserEmailVerifierControl.setRenderData() |
Modifier and Type | Method and Description |
---|---|
void |
MediaParentFilterControl.buildSubControls() |
IChannelChildProvider |
SelectMediaServiceInstanceControl.createChannelChildProvider() |
protected void |
MediaDeleteProcessActionHandler.deleteRelatedData(Collection<String> itemIdsTemp,
Node currentSourceDefinitionNode,
String foreignPrimaryKeyFieldId,
ITransaction transaction)
Includes the recursive deletion of the children of the selected items.
|
Media |
IMediaManager.get(String mediaId)
Returns the MediaConfig for a media with the given id.
|
Media |
MediaManager.get(String mediaId) |
Collection<Media> |
IMediaManager.getChildren(String serviceInstanceId,
String folderId,
int type)
Returns the entries in the specified folder.
|
Collection<Media> |
MediaManager.getChildren(String serviceInstanceId,
String folderId,
int type) |
Collection<String> |
IMediaManager.getFolderIdsByParentAndName(String serviceInstanceId,
String parentFolderId,
String folderName)
Returns the ids of the folders child of the given parent and with the given name.
|
Collection<String> |
MediaManager.getFolderIdsByParentAndName(String serviceInstanceId,
String parentFolderId,
String folderName) |
String |
IMediaManager.getFolderPath(String folderId)
Returns the virtual path to the folder.
|
String |
MediaManager.getFolderPath(String folderId) |
Collection<String> |
IMediaManager.getMediaPublishToPrincipals(String mediaId)
Return a the list of principals for which the
media is published to. |
Set<String> |
MediaManager.getMediaPublishToPrincipals(String parentFolderId) |
void |
FCKSelectMediaControllerHtml.handleRequest() |
void |
MediaParentFilterControl.init(Node controlDefinitionNode,
ControlContainer controlContainer,
IControl parentControl) |
void |
MediaFolderDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<?> source,
ITransaction transaction) |
void |
IMediaManager.moveMedia(String mediaId,
String destFolderId)
Moves a media (or a folder) to another folder.
|
void |
MediaManager.moveMedia(String mediaId,
String destFolderId) |
void |
CheckDuplicateFolderProcessActionHandler.processAction() |
void |
LoadMediasProcessActionHandler.processAction() |
void |
MediaAddMultipleProcessActionHandler.processAction()
Deprecated.
|
void |
MediaMoveProcessActionHandler.processAction() |
void |
MediaSelectProcessActionHandler.processAction() |
void |
ReprocessFileTransformation.processAction() |
void |
SelectRepositoryProcessActionHandler.processAction() |
void |
TransformFilesProcessActionHandler.processAction() |
void |
SelectRepositoryInterface.processAction(IServiceInterfaceActionRequest request,
IServiceInterfaceActionResponse response) |
void |
MediaInfoFetcherPostLoadProcessor.processSource(SessionConfig sessionConfig,
Source source,
Node parametersNode,
ITransaction transaction) |
void |
MediaStatusPostLoadProcessor.processSource(SessionConfig sessionConfig,
Source source,
Node parametersNode,
ITransaction transaction) |
void |
MediaEditServiceInterface.render(IServiceInterfaceRenderRequest request,
IServiceInterfaceRenderResponse response) |
void |
SelectRepositoryInterface.render(IServiceInterfaceRenderRequest request,
IServiceInterfaceRenderResponse response) |
void |
MediaParentFilterControl.setRenderData() |
void |
IMediaManager.updateMediaHierarchyPublishTo(String mediaId,
Collection<String> heritagePrincipalsId)
Update the list of principals the
media is published to |
void |
MediaManager.updateMediaHierarchyPublishTo(String mediaId,
Collection<String> heritagePrincipalsId) |
Constructor and Description |
---|
FCKSelectMediaControllerHtml(HttpServletRequest request,
HttpServletResponse response,
PageContext pageContext) |
MediaControllerJson(HttpServletRequest request,
HttpServletResponse response) |
Modifier and Type | Method and Description |
---|---|
void |
MediaPickerControl.buildSubControls() |
IResource |
MediaPickerControl.getControlResource() |
protected ServiceInstanceConfig |
MediaPickerControl.getMediaServiceInstance()
Returns the media service instance used to pick the media.
|
void |
MediaPickerControl.setRenderData() |
Modifier and Type | Method and Description |
---|---|
protected void |
MediaDataType.deleteRelatedFile(ISourceField field,
SourcePreDeleteDataEvent event) |
String |
MediaDataType.Data.getDisplayString(IRenderer renderer) |
protected Map<String,Object> |
MediaDataType.Data.getJSONData()
Returns the render data in JSON format.
|
String |
MediaDataType.Data.getRenderData(IRenderer renderer) |
TableSourceFieldMapping |
MediaSourceField.getTableMapping(QueryBase queryBase) |
protected String |
MediaDataType.Data.getXMLFragmentData(IRenderer renderer)
Returns the render data XML fragment.
|
Modifier and Type | Method and Description |
---|---|
void |
PublishHeritageProcessActionHandler.processAction() |
Modifier and Type | Method and Description |
---|---|
protected void |
MediaAddMultipleProcessActionHandler.addRow() |
protected void |
MediaAddMultipleProcessActionHandler.doAction() |
void |
MediaAddProcessActionHandler.processAction() |
void |
MediaApproveProcessActionHandler.processAction() |
void |
MediaReorderProcessActionHandler.processAction() |
void |
MediaUpdateProcessActionHandler.processAction() |
protected void |
MediaAddProcessActionHandler.processActionWithoutResponse() |
protected void |
MediaDeleteProcessActionHandler.processActionWithoutResponse() |
protected void |
MediaUpdateProcessActionHandler.processActionWithoutResponse() |
void |
MediaAlbumEscapeQuoteCharPostLoadProcessor.processSource(SessionConfig sessionConfig,
Source source,
Node parametersNode,
ITransaction transaction) |
void |
MediaPermalinkPostLoadProcessor.processSource(SessionConfig sessionConfig,
Source source,
Node parametersNode,
ITransaction transaction) |
protected void |
MediaAddMultipleProcessActionHandler.validateParameters(IMultiFileUploadParameter multiFileUploadParameter)
Validates the parameters, showing the correct error message if necessary.
|
Modifier and Type | Method and Description |
---|---|
protected Object |
NavigationHtmlTextAreaControl.getDefaultValue() |
protected void |
NavigationService.initializeServiceInstanceContent(SessionConfig sessionConfig,
ServiceInstanceConfig config,
ITransaction transaction)
Inserts a default entry, referencing the channel structure, if this
service instance has no data.
|
void |
NavigationService.instanceAdded(SessionConfig sessionConfig,
ServiceInstanceConfig config,
ITransaction transaction) |
void |
NavigationService.instanceDeserialized(ServiceInstanceDeserializationContext serviceInstanceDeserializationContext) |
void |
NavigationService.instanceDeserialized(SessionConfig sessionConfig,
String serviceInstanceId,
DeserializationConfig deserializationConfig,
Node node,
ITransaction transaction) |
void |
BreadCrumbPropertiesDataProvider.loadData(SessionConfig sessionConfig,
Source source,
ITransaction transaction) |
void |
BreadCrumbDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<?> source,
ITransaction transaction) |
void |
NavigationControl.loadFromRequest() |
void |
BreadCrumbPropertiesProcessActionHandler.processAction() |
void |
NavigationAddContentProcessActionHandler.processAction() |
void |
NavigationProcessActionHandler.processAction() |
void |
NavigationValidateContentProcessActionHandler.processAction() |
void |
ChannelTreeNavigationSource.setNavigationData(DouiContext douiContext,
ISourceData row,
Node dataNode) |
void |
INavigationSource.setNavigationData(DouiContext douiContext,
ISourceData row,
Node dataNode) |
void |
LinkNavigationSource.setNavigationData(DouiContext douiContext,
ISourceData row,
Node dataNode) |
protected void |
ChannelTreeNavigationSource.setPathIds(DouiContext douiContext) |
void |
NavigationControl.setRenderData() |
Modifier and Type | Method and Description |
---|---|
void |
CategoryDaoHib.addOrUpdate(Category bean,
ITransaction transaction) |
void |
ICategoryDao.addOrUpdate(Category bean,
ITransaction transaction) |
void |
IModelDao.addOrUpdate(Model model,
ITransaction transaction) |
void |
ModelDaoHib.addOrUpdate(Model model,
ITransaction transaction) |
void |
IScheduleDao.addOrUpdate(Schedule schedule,
ITransaction transaction)
Adds or updates a
Schedule |
void |
ScheduleDaoHib.addOrUpdate(Schedule schedule,
ITransaction transaction) |
void |
ISubscriptionDao.addOrUpdate(Subscription bean,
ITransaction transaction) |
void |
SubscriptionDaoHib.addOrUpdate(Subscription bean,
ITransaction transaction) |
boolean |
CategoryDaoHib.delete(String id,
ITransaction transaction) |
boolean |
ICategoryDao.delete(String id,
ITransaction transaction) |
boolean |
IModelDao.delete(String modelId,
ITransaction transaction) |
boolean |
IScheduleDao.delete(String scheduleId,
ITransaction transaction)
Deletes a
Schedule |
boolean |
ISubscriptionDao.delete(String id,
ITransaction transaction) |
boolean |
ModelDaoHib.delete(String modelId,
ITransaction transaction) |
boolean |
ScheduleDaoHib.delete(String scheduleId,
ITransaction transaction) |
boolean |
SubscriptionDaoHib.delete(String id,
ITransaction transaction) |
protected void |
UserSubscriptionProcessActionHandler.doAction() |
void |
NewsletterClock.doTick(SessionConfig sessionConfig,
ClockConfig clockConfig) |
void |
INewsletterManager.executeSchedules(SessionConfig sessionConfig,
ITransaction transaction) |
void |
NewsletterManager.executeSchedules(SessionConfig sessionConfig,
ITransaction scheduleTransaction) |
Category |
CategoryDaoHib.get(String id,
ITransaction transaction) |
Category |
ICategoryDao.get(String id,
ITransaction transaction) |
Model |
IModelDao.get(String modelId,
ITransaction transaction) |
Schedule |
IScheduleDao.get(String scheduleId,
ITransaction transaction)
Gets a
Schedule based on it's id. |
Subscription |
ISubscriptionDao.get(String id,
ITransaction transaction) |
Model |
ModelDaoHib.get(String modelId,
ITransaction transaction) |
Schedule |
ScheduleDaoHib.get(String scheduleId,
ITransaction transaction) |
Subscription |
SubscriptionDaoHib.get(String id,
ITransaction transaction) |
Collection<String> |
IScheduleDao.getActiveSchedules(String serviceInstanceId,
ITransaction transaction)
Get all active schedule objects
|
Collection<String> |
ScheduleDaoHib.getActiveSchedules(String serviceInstanceId,
ITransaction transaction) |
Collection<String> |
ISubscriptionDao.getByEmailFormat(String serviceInstanceId,
int emailFormat,
Locale locale,
ITransaction transaction) |
Collection<String> |
SubscriptionDaoHib.getByEmailFormat(String serviceInstanceId,
int emailFormat,
Locale locale,
ITransaction transaction) |
Collection<String> |
ISubscriptionDao.getCategoriesBySubscriptionId(String subscriptionId,
ITransaction transaction) |
Collection<String> |
SubscriptionDaoHib.getCategoriesBySubscriptionId(String subscriptionId,
ITransaction transaction) |
String |
NewsletterManager.getCategoryContent(SessionConfig sessionConfig,
String categoryId,
Date startDateTime,
Locale locale,
ITransaction transaction) |
List<String> |
CategoryDaoHib.getCategoryContentItemIds(Locale locale,
Category category,
Date startDateTime,
ITransaction transaction) |
List<String> |
ICategoryDao.getCategoryContentItemIds(Locale locale,
Category category,
Date startDateTime,
ITransaction transaction) |
Schedule |
IScheduleDao.getForProcess(String scheduleId)
Gets a Schedule object setting it's status to
Schedule#STATUS_PROCESSING . |
Schedule |
ScheduleDaoHib.getForProcess(String scheduleId) |
Collection<String> |
ISubscriptionDao.getIdsByServiceInstanceAndEmail(String serviceInstanceId,
String email,
Locale locale,
ITransaction transaction)
Returns the ids of the subscriptions for the given email in the specified
service instance id.
|
Collection<String> |
SubscriptionDaoHib.getIdsByServiceInstanceAndEmail(String serviceInstanceId,
String email,
Locale locale,
ITransaction transaction) |
void |
ContentInstantiatedServicesDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<?> source,
ITransaction transaction) |
void |
CancelPublicSubscriptionProcessActionHandler.processAction() |
void |
NewsletterModelAdminProcessActionHandler.processAction() |
void |
UserCancelSubscriptionProcessActionHandler.processAction() |
void |
IScheduleDao.releaseFromProcess(String scheduleId)
Set a schedule status from
Schedule#STATUS_PROCESSING to Schedule.STATUS_ENABLED . |
void |
ScheduleDaoHib.releaseFromProcess(String scheduleId) |
void |
UserSubscriptionInterface.render(IServiceInterfaceRenderRequest request,
IServiceInterfaceRenderResponse response) |
void |
UserEmailVerifierControl.setRenderData() |
Modifier and Type | Method and Description |
---|---|
void |
PageBlockRenderDataChangedObserver.onEvent(IPortalEvent event) |
void |
CheckUpdatePageSSIPropertyProcessActionHandler.processAction() |
void |
PageBlockViewInterface.render(IServiceInterfaceRenderRequest request,
IServiceInterfaceRenderResponse response) |
Modifier and Type | Method and Description |
---|---|
static void |
PagePersonalizationUtil.addNewWidgets(Collection<String> oldWidgetInstancesIds,
Collection<String> updateWidgetInstancesIds,
ISourceField field,
SourcePreUpdateDataEvent event)
Compare two list of widgets instances and process the widgets whom exists on the updated list and does not exist
on the other list.
|
IChannelChildProvider |
SelectPagePersonalizationServiceInstanceControl.createChannelChildProvider()
Defines the channel tree that allows the Widget Repository repository selection.
|
void |
PagePersonalizationService.deserializeContent(ServiceInstanceDeserializationContext serviceInstanceDeserializationContext) |
static String |
PagePersonalizationUtil.encodeHtmlEditorControl(String html)
Method that receives a html string, search for widget instance pattern and encode it with data.
|
static String |
PagePersonalizationUtil.getHolderContentId(String holderServiceInterfaceInstanceId,
String contentId)
Returns the identifier of the content the holder is personalized for.
|
void |
PagePersonalizationService.instanceDeleted(SessionConfig sessionConfig,
ServiceInstanceConfig config,
ITransaction transaction) |
void |
PagePersonalizationService.instanceSerialized(ServiceInstanceSerializationContext serviceInstanceSerializationContext) |
static boolean |
PagePersonalizationUtil.isHolderPersonalizedByContent(String holderInterfaceInstanceId)
Returns whether a widget holder is configured to be personalized by content.
|
void |
SelectRepositoryProcessActionHandler.processAction() |
void |
WidgetSelectProcessActionHandler.processAction() |
void |
SelectRepositoryInterface.processAction(IServiceInterfaceActionRequest request,
IServiceInterfaceActionResponse response) |
static void |
PagePersonalizationUtil.processWidgetInstaceInHtmlAdded(String html,
ISourceField field,
SourcePostAddDataEvent event)
Process the html field widget instance after it be added.
|
static void |
PagePersonalizationUtil.processWidgetInstaceInHtmlDelete(Collection<String> itemIds)
Process the html field widget instance to be deleted.
|
static void |
PagePersonalizationUtil.processWidgetInstaceInHtmlUpdate(String newHtml,
String originalHtml,
ISourceField field,
SourcePreUpdateDataEvent event)
Process the html field widget instance to be updated.
|
static void |
PagePersonalizationUtil.removeDeletedWidgets(Collection<String> oldWidgetInstancesIds,
Collection<String> updateWidgetInstancesIds)
Compare a list of old widgets and a updated list of widget instances and remove de widgets instances that does
not exists in the updated list.
|
void |
SelectRepositoryInterface.render(IServiceInterfaceRenderRequest request,
IServiceInterfaceRenderResponse response) |
static String |
PagePersonalizationUtil.renderWidgetInHtml(String html,
HttpServletRequest httpServletRequest,
IServiceInterfaceRenderRequest originalRenderRequest,
HttpServletResponse httpServletResponse)
Method that create a request to get html from a widget instance in a html content field and substitute the dummy
widget instance for his html content.
|
Modifier and Type | Method and Description |
---|---|
static void |
PPInterfaceInstanceToBeDeleted.cleanUp() |
ServiceInterfaceInstanceConfig |
Widget.getInterfaceInstance() |
void |
HolderWidgetInstance.moveTo(WidgetInstanceHolder destHolder,
int position)
Moves this widget instance to a holder at the specified position.
|
void |
WidgetInstance.remove() |
void |
WidgetInstanceHolder.remove() |
void |
Widget.setInterfaceInstanceId(String interfaceInstanceId) |
Modifier and Type | Method and Description |
---|---|
void |
DeleteCreatedOrphanInterfaceInstances.doTick(SessionConfig sessionConfig,
ClockConfig clockConfig) |
void |
DeleteOrphanWidgetInstanceHolders.doTick(SessionConfig sessionConfig,
ClockConfig clockConfig) |
void |
DeleteUnusedHtmlFieldWidgetInstance.doTick(SessionConfig sessionConfig,
ClockConfig clockConfig) |
Constructor and Description |
---|
PagePersonalizationControllerHtml(HttpServletRequest request,
HttpServletResponse response,
PageContext pageContext) |
Modifier and Type | Method and Description |
---|---|
IChannelChild |
ServiceInstanceProvider.getChannelChild(SessionConfig sessionConfig,
String childId,
ITransaction transaction) |
List<IChannelChild> |
ServiceInstanceProvider.getChannelsChildren(SessionConfig sessionConfig,
String parentChannelIds,
boolean hidePages,
boolean hidePageTemplates,
IResource resource,
Locale locale,
ITransaction transaction) |
List<IChannelChild> |
ServiceInstanceProvider.getChildrenData(SessionConfig sessionConfig,
String channelId,
int hideItems,
int hideItemTemplates,
IResource resource,
Locale locale,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
void |
ServiceInterfacePickerControl.buildSubControls() |
void |
InterfaceInstancePreviewControl.init(Node controlDefinitionNode,
ControlContainer controlContainer,
IControl parentControl) |
void |
InterfaceInstancePreviewControl.setRenderData() |
void |
InterfaceSelectionDropDownListControl.setRenderData() |
void |
PagePersonalizationWidgetUsedByControl.setRenderData() |
void |
ServiceInterfacePickerControl.setRenderData() |
Modifier and Type | Method and Description |
---|---|
void |
HolderServiceInterfaceDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<ITabularSourceField> source,
ITransaction transaction) |
void |
InstancesByServiceDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<ITabularSourceField> source,
ITransaction transaction) |
void |
InterfaceByServiceInstanceDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<ITabularSourceField> source,
ITransaction transaction) |
void |
ServiceInterfacesDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<ITabularSourceField> source,
ITransaction transaction) |
void |
ServicesDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<ITabularSourceField> source,
ITransaction transaction) |
void |
WidgetUsedByDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<ITabularSourceField> source,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
void |
WidgetContentInterfaceInstanceDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<?> source,
ITransaction transaction) |
void |
EditWidgetPostLoadProcessor.processSource(SessionConfig sessionConfig,
Source source,
Node parametersNode,
ITransaction transaction) |
void |
SelectWidgetPostLoadProcessor.processSource(SessionConfig sessionConfig,
Source source,
Node parametersNode,
ITransaction transaction) |
void |
WidgetListPostLoadProcessor.processSource(SessionConfig sessionConfig,
Source source,
Node parametersNode,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
void |
ActivateRevertDefaultConfigurationProcessActionHandler.processAction() |
void |
AddWidgetProcessActionHandler.processAction() |
void |
DeleteWidgetProcessActionHandler.processAction() |
void |
ResetPageProcessActionHandler.processAction() |
void |
SelectRootChannelProcessActionHandler.processAction() |
Modifier and Type | Method and Description |
---|---|
void |
WidgetListServiceInterface.render(IServiceInterfaceRenderRequest request,
IServiceInterfaceRenderResponse response) |
Modifier and Type | Method and Description |
---|---|
boolean |
PagePersonalizationInterfaceInstanceOwner.checkPermission(SessionConfig sessionConfig,
ServiceInterfaceInstanceConfig serviceInterfaceInstanceConfig,
ServiceInterfaceInstancePermission permission) |
Modifier and Type | Method and Description |
---|---|
void |
PagePersonalizationObserver.onEvent(IPortalEvent ev) |
void |
WidgetRenderDataChangedObserver.onEvent(IPortalEvent ev) |
Modifier and Type | Method and Description |
---|---|
static void |
PagePersonalizationSerializationManager.deserializeContent(ServiceInstanceDeserializationContext serviceInstanceDeserializationContext)
Deserialize content.
|
static void |
PagePersonalizationSerializationManager.serializeInterfaceInstances(ServiceInstanceSerializationContext serviceInstanceSerializationContext)
Serialize interface instances.
|
Modifier and Type | Method and Description |
---|---|
void |
PagePersonalizationManager.DeletedWidgetData.delete() |
String |
WidgetManipulationAction.doAction(HttpServletRequest request,
IPortalMode portalMode,
ITransaction transaction)
Performs necessary widget manipulation.
|
static Set<PagePersonalizationManager.DeletedWidgetData> |
PagePersonalizationManager.getDeletedWidgetsData(String serviceInstanceId) |
static Set<PagePersonalizationManager.DeletedWidgetData> |
PagePersonalizationManager.getDeletedWidgetsData(String[] widgetIds) |
static WidgetInstanceHolder |
PagePersonalizationManager.getOrGeneratePersonalizedHolder(String holderInterfaceInstanceId,
String userId,
String holderContentId)
Returns an existent personalized holder or generates a new one, copying the widget instances from the
corresponding default holder.
|
static WidgetInstanceHolder |
PagePersonalizationManager.getOrGenerateTemporaryHolder(String holderInterfaceInstanceId,
String holderContentId)
Returns an existent temporary holder or generates a new one, copying the widget instances from the corresponding
default holder.
|
Modifier and Type | Method and Description |
---|---|
protected IQueryValue |
ActivityDateFilter.calculateFilterValue(Node filterNode) |
void |
OldActivityCleanerClock.doTick(SessionConfig sessionConfig,
ClockConfig clockConfig) |
IQueryFilter |
ActivityDateFilter.getQueryFilter(QueryField queryField,
IQueryValue queryValue) |
void |
ChannelActivityProcessorDataProvider.loadData(SessionConfig sessionConfig,
TableSource source,
ITransaction transaction) |
void |
ServiceInstanceActivityProcessorDataProvider.loadData(SessionConfig sessionConfig,
TableSource source,
ITransaction transaction) |
void |
ActivitiesAgeLimitDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<?> source,
ITransaction transaction) |
void |
AddActivityProcessorProcessActionHandler.processAction() |
void |
DeleteActivityProcessActionHandler.processAction() |
void |
DeleteActivityProcessorProcessActionHandler.processAction() |
void |
SetActivitiesAgeLimitProcessActionHandler.processAction() |
void |
UpdateActivityProcessorProcessActionHandler.processAction() |
void |
ActivityPostLoadProcessor.processSource(SessionConfig sessionConfig,
Source source,
Node parametersNode,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
static AreaTagUsageConfig |
AreaTagsHelper.from(ProcessActionHandler<?> processActionHandler,
String appliedAreaTagsParameterName,
String inheritingAreaTagsParameterName)
Constructs a
AreaTagUsageConfig from the given ProcessActionHandler using the indicated parameters. |
void |
ParentItemAreaTagDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<ITabularSourceField> source,
ITransaction transaction) |
void |
AreaTagInheritedPostLoadProcessor.processSource(SessionConfig sessionConfig,
Source source,
Node parametersNode,
ITransaction transaction) |
void |
AreaTagsControl.setRenderData() |
Modifier and Type | Method and Description |
---|---|
void |
AuditEntryCleanerClock.doTick(SessionConfig sessionConfig,
ClockConfig clockConfig) |
protected void |
AuditConfigDataProvider.fillTabularData(TabularSource<?> source,
AuditConfig auditConfig)
Fill the tabular data with the audit configuration data.
|
protected String |
LinkToRuntimeTabularDataControl.getRowHyperlink(TabularSource source,
ISourceData row,
String compositePrimaryKey,
int rowIndex) |
void |
LinkToRuntimeTabularDataControl.init(Node controlDefinitionNode,
ControlContainer controlContainer,
IControl parentControl) |
void |
AuditConfigDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<?> source,
ITransaction transaction) |
void |
AuditConfigProcessActionHandler.processAction() |
void |
AuditProcessActionHandler.processAction() |
void |
StringReplacePostLoadProcessor.processSource(SessionConfig sessionConfig,
Source source,
Node parametersNode,
ITransaction transaction) |
protected void |
LinkToRuntimeTabularDataControl.readDefinition(Node controlDefinitionNode,
ControlContainer controlContainer,
IControl parentControl)
Reads the control configuration and sets the control attributes.
|
protected String |
StringReplacePostLoadProcessor.readParameterValue(String parameterName,
Node parametersNode)
Reads the value of a given parameter using its name.
|
protected void |
StringReplacePostLoadProcessor.replaceStrings(Source<?> source,
String fieldId,
String from,
String to)
Replace the from string by the to string in a field of a source.
|
Modifier and Type | Method and Description |
---|---|
void |
ContentPopularityDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<ITabularSourceField> source,
ITransaction transaction) |
void |
PopularityConfigDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<ITabularSourceField> source,
ITransaction transaction) |
void |
RecalculatePopularitiesProcessActionHandler.processAction() |
void |
UpdatePopularitiesConfigProcessActionHandler.processAction() |
Modifier and Type | Method and Description |
---|---|
String |
BuildResource.getInfo(HttpServletResponse response)
Get information (current version and strings) used to create buildInformation html
|
void |
BuildInformationInterface.processAction(IServiceInterfaceActionRequest request,
IServiceInterfaceActionResponse response)
Deprecated.
|
void |
BuildInformationInterface.render(IServiceInterfaceRenderRequest request,
IServiceInterfaceRenderResponse response)
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
void |
BusinessContextCacheUsageDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<?> source,
ITransaction transaction) |
void |
BusinessContextProcessActionHandler.processAction() |
void |
BusinessContextNamePostLoadProcessor.processSource(SessionConfig sessionConfig,
Source source,
Node parametersNode,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
QuerySelect |
CacheRuntimeDataProvider.buildQuerySelect(TableSource source,
ITransaction transaction) |
void |
CacheRuntimeDataProvider.loadData(SessionConfig sessionConfig,
TableSource source,
ITransaction transaction) |
void |
CacheProcessActionHandler.processAction() |
Constructor and Description |
---|
CacheRuntimeDataProvider() |
Modifier and Type | Method and Description |
---|---|
protected void |
ChannelInheritedPageTemplateControl.autoAddValidators() |
String |
ChannelLocaleResource.getGlobalLocales(HttpServletResponse response,
String hint)
Get global locales
|
void |
ChannelWebsiteChanceCheckControl.init(Node controlDefinitionNode,
ControlContainer controlContainer,
IControl parentControl) |
void |
ChannelFriendlyPathDataProvider.loadData(SessionConfig sessionConfig,
Source source,
ITransaction transaction) |
void |
BusinessContextDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<?> source,
ITransaction transaction) |
void |
ChannelLocalesDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<?> source,
ITransaction transaction) |
void |
ChannelModulesDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<?> source,
ITransaction transaction) |
void |
ChannelParentCssDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<?> source,
ITransaction transaction) |
void |
ParentChannelMetaTagDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<?> source,
ITransaction transaction) |
void |
ConfigureURLShortenerDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<? extends ITabularSourceField> source,
ITransaction transaction) |
void |
BusinessContexPropertyBagProcessAction.processAction() |
void |
ChannelProcessActionHandler.processAction() |
void |
ConfigureURLShortenerProcessActionHandler.processAction() |
void |
AddSubChannelInterface.processAction(IServiceInterfaceActionRequest request,
IServiceInterfaceActionResponse response) |
void |
EditSubChannelInterface.processAction(IServiceInterfaceActionRequest request,
IServiceInterfaceActionResponse response) |
void |
PortalPropertiesInterface.processAction(IServiceInterfaceActionRequest request,
IServiceInterfaceActionResponse response) |
void |
SubChannelsAdministrationInterface.processAction(IServiceInterfaceActionRequest request,
IServiceInterfaceActionResponse response) |
void |
ChannelPropertyBagPostLoadProcessor.processSource(SessionConfig sessionConfig,
Source source,
Node parametersNode,
ITransaction transaction) |
void |
GoogleAnalyticsInheritancePostLoadProcessor.processSource(SessionConfig sessionConfig,
Source source,
Node parametersNode,
ITransaction transaction) |
void |
AddSubChannelInterface.render(IServiceInterfaceRenderRequest request,
IServiceInterfaceRenderResponse response) |
void |
EditSubChannelInterface.render(IServiceInterfaceRenderRequest request,
IServiceInterfaceRenderResponse response) |
void |
PortalPropertiesInterface.render(IServiceInterfaceRenderRequest request,
IServiceInterfaceRenderResponse response) |
void |
SubChannelsAdministrationInterface.render(IServiceInterfaceRenderRequest request,
IServiceInterfaceRenderResponse response) |
void |
ChannelInheritedPageTemplateControl.setProcessActionHandlerParameters(IProcessActionHandler processActionHandler) |
void |
ChannelInheritedPageTemplateControl.setRenderData() |
void |
ChannelWebsiteChanceCheckControl.setRenderData() |
Modifier and Type | Method and Description |
---|---|
boolean |
ChannelAclControl.canInheritPermissions(ITransaction transaction) |
boolean |
ChannelAclProcessActionHandler.checkPermission() |
boolean |
ChannelAclControl.checkPermission(ITransaction transaction) |
AccessControlList |
ChannelAclControl.getAcl(ITransaction transaction) |
ChannelConfig |
ChannelAclControl.getChannel()
Returns the channel whose acl this control edits.
|
String |
ChannelAclControl.getDefaultPermission(ITransaction transaction) |
HashMap<Integer,Integer> |
ChannelAclProcessActionHandler.getInheritPermissionsMap() |
AccessControlList |
ChannelAclProcessActionHandler.getParentAcl() |
Node |
ChannelAclControl.getPermissionsNode(ITransaction transaction) |
void |
AdministrationInterface.processAction(IServiceInterfaceActionRequest request,
IServiceInterfaceActionResponse response) |
void |
AdministrationInterface.render(IServiceInterfaceRenderRequest request,
IServiceInterfaceRenderResponse response) |
void |
ChannelAclProcessActionHandler.updateAcl(AccessControlList acl) |
Constructor and Description |
---|
ChannelAclControl() |
ChannelAclProcessActionHandler() |
Modifier and Type | Method and Description |
---|---|
void |
ClockProcessActionHandler.processAction() |
void |
ClockProcessActionHandler.ResetClockState()
Reset the Clock State.
|
Modifier and Type | Method and Description |
---|---|
void |
ClusterMemberDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<?> source,
ITransaction transaction) |
protected List<IClusterConfig> |
ClusterConfigDataProvider.loadObjects(SessionConfig sessionConfig,
TabularSource source,
ITransaction transaction) |
void |
ClusterProcessActionHandler.processAction() |
Modifier and Type | Method and Description |
---|---|
Response |
CommandPaletteServiceResource.doReindexCommandPalette()
Schedule a reindex.
|
Response |
CommandPaletteServiceResource.getProcessInfo(String processId)
Returns information about a given process.
|
void |
CommandPalleteItemsDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<?> source,
ITransaction transaction) |
void |
CommandListPostLoadProcessor.processSource(SessionConfig sessionConfig,
Source source,
Node parametersNode,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
void |
ContentAnalyticsDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<?> source,
ITransaction transaction) |
void |
GoogleApiKeyDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<?> source,
ITransaction transaction) |
void |
ServiceInstanceAnalyticsDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<?> source,
ITransaction transaction) |
void |
ContentGoogleAnalyticsInterface.render(IServiceInterfaceRenderRequest request,
IServiceInterfaceRenderResponse response) |
void |
ServiceInstanceGoogleAnalyticsInterface.render(IServiceInterfaceRenderRequest request,
IServiceInterfaceRenderResponse response) |
Modifier and Type | Method and Description |
---|---|
void |
RegisterControlProcessActionHandler.processAction() |
void |
RegisterControlProcessActionHandler.registerControls() |
void |
RegisterControlProcessActionHandler.registerStandardControls() |
void |
RegisterControlProcessActionHandler.unregisterControls() |
Modifier and Type | Method and Description |
---|---|
void |
CssProcessActionHandler.processAction() |
Modifier and Type | Method and Description |
---|---|
protected String |
DeploymentProcessActionHandler.addNewModule() |
protected Object |
StatusFilter.convertFilterStandardValue(String value,
Node filterNode) |
protected void |
DeploymentProcessActionHandler.generateModuleMavenFiles(String modulePath,
IFile moduleAbsolutePath,
String moduleName,
String moduleId) |
IQueryFilter |
StatusFilter.getQueryFilter(QueryBase queryBase,
IParameters params) |
IQueryFilter |
VersionFilter.getQueryFilter(QueryBase queryBase,
IParameters params) |
void |
ComponentDetailsDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<?> source,
ITransaction transaction) |
void |
DeploymentFilesDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<?> source,
ITransaction transaction) |
void |
DeploymentSummaryDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<?> source,
ITransaction transaction) |
void |
EditableModulesDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<?> source,
ITransaction transaction) |
void |
ModuleDetailsDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<?> source,
ITransaction transaction) |
void |
DeploymentProcessActionHandler.processAction() |
void |
ComponentsPostLoadProcessor.processSource(SessionConfig sessionConfig,
Source source,
Node parametersNode,
ITransaction transaction) |
void |
LastDeploymentInformationPostLoadProcessor.processSource(SessionConfig sessionConfig,
Source source,
Node parametersNode,
ITransaction transaction) |
void |
ModulePostLoadProcessor.processSource(SessionConfig sessionConfig,
Source source,
Node parametersNode,
ITransaction transaction) |
void |
PackageHistoryPostLoadProcessor.processSource(SessionConfig sessionConfig,
Source source,
Node parametersNode,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
String |
ModuleEditorResource.areThemeFilesEditable(String moduleId) |
void |
ModuleEditorResource.createNewDirectory(String moduleId,
String filePath,
String dirName) |
void |
ModuleEditorResource.createNewFile(String moduleId,
String filePath,
String fileName) |
void |
ModuleEditorResource.deleteFile(String moduleId,
String filePath) |
Response |
ModuleEditorResource.downloadZip(String moduleId,
String folderPath) |
Response |
ModuleEditorResource.getFile(String moduleId,
String filePath) |
String |
ModuleEditorResource.getFileText(String moduleId,
String filePath) |
String |
ModuleEditorResource.getFolderChildren(String moduleId,
String folderPath) |
protected IFile |
ModuleEditorResource.getModuleDir(String moduleId) |
void |
ModuleEditorResource.renameFile(String moduleId,
String filePath,
String newFileName) |
void |
ModuleEditorResource.saveFileText(String moduleId,
String filePath,
String fileContent) |
String |
ModuleEditorResource.uploadFile(InputStream uploadedInputStream,
org.glassfish.jersey.media.multipart.FormDataContentDisposition fileDetail,
String moduleId,
String filePath) |
String |
ModuleEditorResource.uploadZip(InputStream uploadedInputStream,
org.glassfish.jersey.media.multipart.FormDataContentDisposition fileDetail,
String moduleId,
String filePath) |
Modifier and Type | Method and Description |
---|---|
void |
ServiceDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<?> source,
ITransaction transaction) |
void |
PortletDeploymentProcessActionHandler.processAction() |
Modifier and Type | Method and Description |
---|---|
protected void |
GenerateDocumentationProcessActionHandler.generateDocumentation() |
protected void |
GenerateDocumentationProcessActionHandler.generateDocumentationForLocale(Locale locale) |
void |
GenerateDocumentationProcessActionHandler.processAction() |
Modifier and Type | Method and Description |
---|---|
void |
EncryptTextProcessActionHandler.processAction() |
Modifier and Type | Method and Description |
---|---|
void |
UpdateMetadataProcessActionHandler.processAction()
Starts the thread that will updates the metadata of all files.
|
void |
DisplayFileInfosPostLoad.processSource(SessionConfig sessionConfig,
Source source,
Node parametersNode,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
void |
FileMacrotypeMappingProcessActionHandler.processAction() |
Modifier and Type | Method and Description |
---|---|
Collection<String> |
FileMimeTypeDaoJdbc.getIdByMimeType(String mimeType,
ITransaction transaction) |
void |
UniqueMimeTypeValidatorProcessActionHandler.processAction() |
Modifier and Type | Method and Description |
---|---|
protected IConverter |
FileSizeField.createConverter() |
protected String |
FileSystemTabularData.getFieldHyperlink(TabularSource source,
ISourceData row,
String fieldId,
String compositePrimaryKey,
int rowIndex) |
protected String |
FileSystemTabularData.getRowHyperlink(TabularSource source,
ISourceData row,
String compositePrimaryKey,
int rowIndex) |
void |
FileDownloadControllerHtml.handleRequest() |
void |
FileSystemDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<?> source,
ITransaction transaction) |
void |
DeleteProcessActionHandler.processAction() |
void |
FileSystemProcessActionHandler.processAction() |
Constructor and Description |
---|
FileDownloadControllerHtml(HttpServletRequest request,
HttpServletResponse response) |
Modifier and Type | Method and Description |
---|---|
abstract boolean |
GenericAclControl.canInheritPermissions(ITransaction transaction) |
abstract boolean |
GenericAclActionHandler.checkPermission() |
abstract boolean |
GenericAclProcessActionHandler.checkPermission() |
abstract boolean |
GenericAclControl.checkPermission(ITransaction transaction) |
abstract AccessControlList |
GenericAclControl.getAcl(ITransaction transaction) |
IResource |
GenericAclControl.getControlResource() |
abstract String |
GenericAclControl.getDefaultPermission(ITransaction transaction) |
abstract HashMap<Integer,Integer> |
GenericAclActionHandler.getInheritPermissionsMap() |
abstract HashMap<Integer,Integer> |
GenericAclProcessActionHandler.getInheritPermissionsMap() |
abstract AccessControlList |
GenericAclActionHandler.getParentAcl() |
abstract AccessControlList |
GenericAclProcessActionHandler.getParentAcl() |
abstract Node |
GenericAclControl.getPermissionsNode(ITransaction transaction) |
IDataControlRequestHelpDefinition |
GenericAclControl.getRequestHelpDefinition() |
protected void |
GenericAclActionHandler.processAclAction() |
void |
AddPrincipalProcessActionHandler.processAction() |
void |
GenericAclActionHandler.processAction() |
void |
GenericAclProcessActionHandler.processAction() |
void |
PrincipalPostLoadProcessor.processSource(SessionConfig sessionConfig,
Source source,
Node parametersNode,
ITransaction transaction) |
void |
GenericAclControl.setRenderData() |
abstract void |
GenericAclActionHandler.updateAcl(AccessControlList acl) |
abstract void |
GenericAclProcessActionHandler.updateAcl(AccessControlList acl) |
Constructor and Description |
---|
AddPrincipalProcessActionHandler() |
GenericAclActionHandler() |
GenericAclProcessActionHandler() |
Modifier and Type | Method and Description |
---|---|
protected IQueryValue |
DatabaseViewFormulaEntryFilter.calculateFilterValue(Node filterNode) |
void |
GroupConfigurationButtonField.convertRowToFieldData(ISourceData databaseRow,
ISourceData sourceRow) |
Object |
GroupConfigurationButtonField.getAssignedValue(QueryBase queryBase) |
QueryField |
GroupConfigurationButtonField.getDisplayQueryField(QueryBase queryBase) |
List<QueryAssignment> |
GroupConfigurationButtonField.getQueryAssignments(QueryInsert queryInsert,
IParameters parameters) |
List<QueryAssignment> |
GroupConfigurationButtonField.getQueryAssignments(QueryUpdate queryUpdate,
IParameters parameters) |
IQueryFilter |
GroupConfigurationButtonField.getQueryFilter(QueryBase queryBase,
TableSourceFilter filter) |
List<QuerySortOrder> |
GroupConfigurationButtonField.getQuerySortOrders(QueryBase queryBase,
String direction) |
TableSourceFieldMapping |
GroupConfigurationButtonField.getTableMapping(QueryBase queryBase) |
void |
GroupMembersDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<?> source,
ITransaction transaction) |
void |
MemberGroupsDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<?> source,
ITransaction transaction) |
protected List<DatabaseViewField> |
DatabaseViewFieldByGroupDataProvider.loadObjects(SessionConfig sessionConfig,
TabularSource<?> source,
ITransaction transaction) |
void |
DatabaseViewGroupProcessActionHandler.processAction() |
void |
GroupProcessActionHandler.processAction() |
void |
ConfigureDatabaseViewGroupServiceInterface.processAction(IServiceInterfaceActionRequest request,
IServiceInterfaceActionResponse response) |
void |
LocalGroupDouiInterface.processAction(IServiceInterfaceActionRequest request,
IServiceInterfaceActionResponse response) |
void |
MemberGroupsInterface.processAction(IServiceInterfaceActionRequest request,
IServiceInterfaceActionResponse response) |
void |
ConfigureDatabaseViewGroupServiceInterface.render(IServiceInterfaceRenderRequest request,
IServiceInterfaceRenderResponse response) |
void |
LocalGroupDouiInterface.render(IServiceInterfaceRenderRequest request,
IServiceInterfaceRenderResponse response) |
void |
MemberGroupsInterface.render(IServiceInterfaceRenderRequest request,
IServiceInterfaceRenderResponse response) |
Modifier and Type | Method and Description |
---|---|
boolean |
GroupAclControl.canInheritPermissions(ITransaction transaction) |
boolean |
GroupAclProcessActionHandler.checkPermission() |
boolean |
GroupAclControl.checkPermission(ITransaction transaction) |
AccessControlList |
GroupAclControl.getAcl(ITransaction transaction) |
String |
GroupAclControl.getDefaultPermission(ITransaction transaction) |
String |
GroupAclControl.getGroupLocalizedName()
Returns the localized name of the group whose acl this control edits.
|
AccessControlList |
GroupAclProcessActionHandler.getParentAcl() |
Node |
GroupAclControl.getPermissionsNode(ITransaction transaction) |
void |
AdministrationInterface.processAction(IServiceInterfaceActionRequest request,
IServiceInterfaceActionResponse response) |
void |
AdministrationInterface.render(IServiceInterfaceRenderRequest request,
IServiceInterfaceRenderResponse response) |
void |
GroupAclProcessActionHandler.updateAcl(AccessControlList acl) |
Constructor and Description |
---|
GroupAclControl() |
GroupAclProcessActionHandler() |
Modifier and Type | Method and Description |
---|---|
protected IQueryValue |
DatabaseViewFieldFilter.calculateFilterValue(Node filterNode) |
void |
GroupTypeConfigurationButtonField.convertRowToFieldData(ISourceData databaseRow,
ISourceData sourceRow) |
Object |
GroupTypeConfigurationButtonField.getAssignedValue(QueryBase queryBase) |
QueryField |
GroupTypeConfigurationButtonField.getDisplayQueryField(QueryBase queryBase) |
List<QueryAssignment> |
GroupTypeConfigurationButtonField.getQueryAssignments(QueryInsert queryInsert,
IParameters parameters) |
List<QueryAssignment> |
GroupTypeConfigurationButtonField.getQueryAssignments(QueryUpdate queryUpdate,
IParameters parameters) |
IQueryFilter |
GroupTypeConfigurationButtonField.getQueryFilter(QueryBase queryBase,
TableSourceFilter filter) |
List<QuerySortOrder> |
GroupTypeConfigurationButtonField.getQuerySortOrders(QueryBase queryBase,
String direction) |
TableSourceFieldMapping |
GroupTypeConfigurationButtonField.getTableMapping(QueryBase queryBase) |
void |
DatabaseViewAvailableFieldsDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<?> source,
ITransaction transaction) |
void |
DatabaseViewGroupTypeProcessActionHandler.processAction() |
void |
GroupTypeProcessActionHandler.processAction()
Processes actions for the portal administration group type service.
|
Modifier and Type | Method and Description |
---|---|
void |
HealthChecksDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<?> source,
ITransaction transaction) |
protected List<HealthCheckInfo> |
HealthChecksDataProvider.loadObjects(SessionConfig sessionConfig,
TabularSource<?> source,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
void |
ImportExportControllerHtml.handle()
Handles the request.
Accept the following parameters: m : required parameter to indicate which action is being requested.
|
void |
RestorePointsDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<?> source,
ITransaction transaction) |
void |
ExportProcessActionHandler.processAction() |
void |
ExportStructureProcessActionHandler.processAction() |
void |
ImportProcessActionHandler.processAction() |
Constructor and Description |
---|
ImportExportControllerHtml(HttpServletRequest request,
HttpServletResponse response)
Initializes a new instance with the given parameters.
|
StructureSyncControllerJson(HttpServletRequest request,
HttpServletResponse response) |
Modifier and Type | Method and Description |
---|---|
void |
ImportPrincipalsProcessActionHandler.processAction() |
void |
ReadPrincipalsProcessActionHandler.processAction() |
Modifier and Type | Method and Description |
---|---|
static Map<Integer,List<String>> |
StepsDataProvider.getStepsStatus(IProcess process)
Returns a map with steps status for a given process.
|
void |
StepDetailsDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<?> source,
ITransaction transaction) |
void |
StepsDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<?> source,
ITransaction transaction) |
void |
CustomInputHiddenControl.loadFromRequest() |
void |
CustomInputTextAreaControl.loadFromRequest() |
void |
DetailsProcessActionHandler.processAction() |
void |
RecoverProcessActionHandler.processAction() |
void |
ProcessPostLoadProcessor.processSource(SessionConfig sessionConfig,
Source source,
Node parametersNode,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
void |
AddInterface.processAction(IServiceInterfaceActionRequest request,
IServiceInterfaceActionResponse response) |
void |
EditInterface.processAction(IServiceInterfaceActionRequest request,
IServiceInterfaceActionResponse response) |
void |
AddInterface.render(IServiceInterfaceRenderRequest request,
IServiceInterfaceRenderResponse response) |
void |
EditInterface.render(IServiceInterfaceRenderRequest request,
IServiceInterfaceRenderResponse response) |
Modifier and Type | Method and Description |
---|---|
void |
LockProcessActionHandler.processAction() |
Modifier and Type | Method and Description |
---|---|
void |
MobileAppInputFileControl.init(Node controlDefinitionNode,
ControlContainer controlContainer,
IControl parentControl) |
void |
MobileAppInputFileControl.loadFromRequest() |
protected void |
MobileAppInputFileControl.setValueFromSource() |
Modifier and Type | Method and Description |
---|---|
void |
AddEditAppDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<ITabularSourceField> source,
ITransaction transaction) |
void |
AdminListAppDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<ITabularSourceField> source,
ITransaction transaction) |
void |
WebsiteBaseURLDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<ITabularSourceField> source,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
void |
MobileAppEditWebsitePostLoadProcessor.processSource(SessionConfig sessionConfig,
Source source,
Node parametersNode,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
IResource |
AddMobileAppProcessActionHandler.getStringResource() |
IResource |
EditMobileAppProcessActionHandler.getStringResource() |
void |
AddMobileAppProcessActionHandler.processAction() |
void |
DeleteMobileAppProcessActionHandler.processAction() |
void |
EditMobileAppProcessActionHandler.processAction() |
Modifier and Type | Method and Description |
---|---|
static Map<MobileAppConfig,IModule> |
MobileAppServiceUtil.findAppConfigPaths()
Find app configs in deployed modules.
|
static Map.Entry<MobileAppConfig,IModule> |
MobileAppServiceUtil.getAppConfigByAppCompositeId(String compositeId)
Returns the app config by the given composite id.
|
static String |
MobileAppServiceUtil.getAppURL(MobileAppConfig appConfig)
Returns the app access URL.
|
static MobileAppConfig |
MobileAppServiceUtil.getDefinitionFromPath(String path)
Returns the app config from the given path.
|
Modifier and Type | Method and Description |
---|---|
protected ISourceAddDataResult |
MonitorRequestRuleSource.doAddData(IParameters data) |
protected void |
MonitorRequestRuleSource.doDeleteDataByItemIds(Collection<String> itemIds) |
protected ISourceUpdateDataResult |
MonitorRequestRuleSource.doUpdateData(IParameters data) |
void |
UserAttributesOptionsDataProvider.loadData(SessionConfig sessionConfig,
TabularSource source,
ITransaction transaction) |
void |
AnonymizeAllUsersWithoutConsentProcessActionHandler.processAction() |
void |
MonitorConfigurationProcessActionHandler.processAction() |
void |
MonitorEventProcessActionHandler.processAction() |
void |
ReindexProcessActionHandler.processAction() |
void |
LoginPostLoadProcessor.processSource(SessionConfig sessionConfig,
Source source,
Node parametersNode,
ITransaction transaction) |
void |
MonitorConfigurationOptionPostLoadProcessor.processSource(SessionConfig sessionConfig,
Source source,
Node parametersNode,
ITransaction transaction) |
Constructor and Description |
---|
MonitorRequestRuleSource(Node sourceDefinitionNode,
ISourceContext sourceContext)
Creates a monitor request rule source.
|
Modifier and Type | Method and Description |
---|---|
void |
MonitoringDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<?> source,
ITransaction transaction) |
void |
DisableMonitoringProcessActionHandler.processAction() |
Modifier and Type | Method and Description |
---|---|
void |
ObserverProcessActionHandler.processAction() |
Modifier and Type | Method and Description |
---|---|
boolean |
PageAclControl.canInheritPermissions(ITransaction transaction) |
boolean |
PageAclProcessActionHandler.checkPermission() |
boolean |
PageAclControl.checkPermission(ITransaction transaction) |
AccessControlList |
PageAclControl.getAcl(ITransaction transaction) |
String |
PageAclControl.getDefaultPermission(ITransaction transaction) |
PageConfig |
PageAclControl.getPage()
Returns the page whose acl this control edits.
|
AccessControlList |
PageAclProcessActionHandler.getParentAcl() |
Node |
PageAclControl.getPermissionsNode(ITransaction transaction) |
void |
AdministrationInterface.processAction(IServiceInterfaceActionRequest request,
IServiceInterfaceActionResponse response) |
void |
AdministrationInterface.render(IServiceInterfaceRenderRequest request,
IServiceInterfaceRenderResponse response) |
void |
PageAclProcessActionHandler.updateAcl(AccessControlList acl) |
Constructor and Description |
---|
PageAclControl() |
PageAclProcessActionHandler() |
Modifier and Type | Method and Description |
---|---|
void |
PageCacheCleanupClock.doTick(SessionConfig sessionConfig,
ClockConfig clockConfig) |
protected void |
PageCacheProcessActionHandler.expirePageCaches(Collection<String> pageCacheIds)
Expires a collection of
PageCacheConfig s. |
protected String |
ValidatorButton.getValidationScript(Node onEventNode) |
void |
DefaultStartDateDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<?> source,
ITransaction transaction) |
void |
PageCacheProcessActionHandler.processAction() |
void |
PageCacheConfirmMessageControl.setRenderData() |
Modifier and Type | Method and Description |
---|---|
void |
PageLinkPriorityDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<?> source,
ITransaction transaction) |
void |
PageLinkURLsDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<? extends ITabularSourceField> source,
ITransaction transaction) |
void |
PageLinkWebsiteBaseURLsDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<? extends ITabularSourceField> source,
ITransaction transaction) |
void |
PageLinkProcessActionHandler.processAction() |
void |
PageLinkURLsFieldPostLoadProcessor.processSource(SessionConfig sessionConfig,
Source source,
Node parametersNode,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
boolean |
PageTemplateAclControl.canInheritPermissions(ITransaction transaction) |
boolean |
PageTemplateAclProcessActionHandler.checkPermission() |
boolean |
PageTemplateAclControl.checkPermission(ITransaction transaction) |
AccessControlList |
PageTemplateAclControl.getAcl(ITransaction transaction) |
String |
PageTemplateAclControl.getDefaultPermission(ITransaction transaction) |
PageConfig |
PageTemplateAclControl.getPage()
Returns the page template whose acl this control edits.
|
AccessControlList |
PageTemplateAclProcessActionHandler.getParentAcl() |
Node |
PageTemplateAclControl.getPermissionsNode(ITransaction transaction) |
void |
AdministrationInterface.processAction(IServiceInterfaceActionRequest request,
IServiceInterfaceActionResponse response) |
void |
AdministrationInterface.render(IServiceInterfaceRenderRequest request,
IServiceInterfaceRenderResponse response) |
void |
PageTemplateAclProcessActionHandler.updateAcl(AccessControlList acl) |
Constructor and Description |
---|
PageTemplateAclControl() |
PageTemplateAclProcessActionHandler() |
Modifier and Type | Method and Description |
---|---|
boolean |
PortalAclControl.canInheritPermissions(ITransaction transaction) |
boolean |
PortalAclProcessActionHandler.checkPermission() |
boolean |
PortalAclControl.checkPermission(ITransaction transaction) |
AccessControlList |
PortalAclControl.getAcl(ITransaction transaction) |
String |
PortalAclControl.getDefaultPermission(ITransaction transaction) |
AccessControlList |
PortalAclProcessActionHandler.getParentAcl() |
Node |
PortalAclControl.getPermissionsNode(ITransaction transaction) |
void |
AdministrationInterface.processAction(IServiceInterfaceActionRequest request,
IServiceInterfaceActionResponse response) |
void |
AdministrationInterface.render(IServiceInterfaceRenderRequest request,
IServiceInterfaceRenderResponse response) |
void |
PortalAclProcessActionHandler.updateAcl(AccessControlList acl) |
Constructor and Description |
---|
PortalAclControl() |
PortalAclProcessActionHandler() |
Modifier and Type | Method and Description |
---|---|
void |
QueueStatisticsDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<?> source,
ITransaction transaction) |
void |
DeleteQueueTaskProcessActionHandler.processAction() |
void |
ReprocessQueueTaskProcessActionHandler.processAction() |
Modifier and Type | Method and Description |
---|---|
void |
CreateProjectServiceInterface.processAction(IServiceInterfaceActionRequest request,
IServiceInterfaceActionResponse response) |
void |
CreateProjectServiceInterface.render(IServiceInterfaceRenderRequest request,
IServiceInterfaceRenderResponse response) |
Modifier and Type | Method and Description |
---|---|
protected ISourceAddDataResult |
CorsRulesSource.doAddData(IParameters data) |
protected void |
CorsRulesSource.doDeleteDataByItemIds(Collection<String> itemIds) |
protected ISourceUpdateDataResult |
CorsRulesSource.doUpdateData(IParameters data) |
Constructor and Description |
---|
CorsRulesSource(Node sourceDefinitionNode,
ISourceContext sourceContext) |
Modifier and Type | Method and Description |
---|---|
void |
ScheduleClearCacheProcessActionHandler.processAction() |
Modifier and Type | Method and Description |
---|---|
protected List<IMailConfig> |
MailConfigDataProvider.loadObjects(SessionConfig sessionConfig,
TabularSource source,
ITransaction transaction) |
void |
SendMailProcessActionHandler.processAction() |
Modifier and Type | Method and Description |
---|---|
void |
SelectImportFileControl.buildSubControls() |
protected ZipDirectory |
BaseImportLecProcessActionHandler.getLecZipDirectory()
returns the lec zip directory of the given import operation.
|
protected Class<String> |
SelectImportFileControl.getValueClass() |
void |
SerializationDataProvider.loadData(SessionConfig sessionConfig,
Source source,
ITransaction transaction) |
void |
ImportFileDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<?> source,
ITransaction transaction) |
void |
LecFilesDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<?> source,
ITransaction transaction) |
void |
SelectImportFileProcessActionHandler.processAction() |
void |
SerializationProcessActionHandler.processAction() |
void |
ImportExportInterface.processAction(IServiceInterfaceActionRequest request,
IServiceInterfaceActionResponse response) |
void |
SerializationProcessActionHandler.processExportAction() |
void |
SerializationProcessActionHandler.processImportAction() |
void |
ImportExportInterface.render(IServiceInterfaceRenderRequest request,
IServiceInterfaceRenderResponse response) |
void |
AdminMemberConditionalRenderControl.setRenderData() |
void |
SelectImportFileControl.setRenderData() |
Modifier and Type | Method and Description |
---|---|
protected IConverter |
EnviromentPropertiesControl.createConverter() |
IResource |
EnviromentPropertiesControl.getControlResource() |
protected Class<?> |
EnviromentPropertiesControl.getValueClass() |
void |
EnvironmentConfigurationDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<?> source,
ITransaction transaction) |
void |
EnvironmentTypesDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<?> source,
ITransaction transaction) |
void |
ServerConfigurationDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<?> source,
ITransaction transaction) |
void |
ConfigurationProcessActionHandler.processAction() |
void |
ServerConfigurationProcessActionHandler.processAction() |
protected void |
ServerConfigurationProcessActionHandler.processDeleteConfigurations()
Delete configurations.
|
protected void |
ConfigurationProcessActionHandler.processUpdateConfigurations()
Update configurations.
|
protected void |
ServerConfigurationProcessActionHandler.processUpdateConfigurations()
Update configurations.
|
void |
EnviromentPropertiesControl.setRenderData() |
Modifier and Type | Method and Description |
---|---|
protected Collection<ServiceConfig> |
ServiceSource.getServiceConfigs(SessionConfig sessionConfig,
ITransaction transaction)
Deprecated.
|
void |
ServiceSource.loadData(SessionConfig sessionConfig,
TabularSource<?> source,
ITransaction transaction)
Deprecated.
|
void |
DeploymentProcessActionHandler.processAction() |
void |
RegisterServiceProcessActionHandler.processAction() |
void |
AdminServicePostLoadProcessor.processSource(SessionConfig sessionConfig,
Source source,
Node parametersNode,
ITransaction transaction) |
void |
RegisterServiceProcessActionHandler.registerExistingServices() |
void |
RegisterServiceProcessActionHandler.registerNewService() |
void |
RegisterServiceProcessActionHandler.unregisterServices() |
Modifier and Type | Method and Description |
---|---|
boolean |
ServiceAclControl.canInheritPermissions(ITransaction transaction) |
boolean |
ServiceAclProcessActionHandler.checkPermission() |
boolean |
ServiceAclControl.checkPermission(ITransaction transaction) |
AccessControlList |
ServiceAclControl.getAcl(ITransaction transaction) |
String |
ServiceAclControl.getDefaultPermission(ITransaction transaction) |
AccessControlList |
ServiceAclProcessActionHandler.getParentAcl() |
Node |
ServiceAclControl.getPermissionsNode(ITransaction transaction) |
String |
ServiceAclControl.getServiceLocalizedName()
Returns the localized name of the service whose acl this control edits.
|
void |
AdministrationInterface.processAction(IServiceInterfaceActionRequest request,
IServiceInterfaceActionResponse response) |
void |
AdministrationInterface.render(IServiceInterfaceRenderRequest request,
IServiceInterfaceRenderResponse response) |
void |
ServiceAclProcessActionHandler.updateAcl(AccessControlList acl) |
Constructor and Description |
---|
ServiceAclControl() |
ServiceAclProcessActionHandler() |
Modifier and Type | Method and Description |
---|---|
void |
EditServiceInstanceTabbedControl.buildSubControls() |
protected Collection<ServiceConfig> |
ServiceInstanceAddDataProvider.getServiceConfigs(SessionConfig sessionConfig,
ITransaction transaction) |
void |
EditServiceInstanceServiceInstanceCustomPropertiesDataProvider.loadData(SessionConfig sessionConfig,
Source<ISourceField> source,
ITransaction transaction) |
void |
ExtractorCustomPropertiesDataProvider.loadData(SessionConfig sessionConfig,
Source<ISourceField> source,
ITransaction transaction) |
void |
BusinessContextForCacheDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<?> source,
ITransaction transaction) |
void |
AddTransformationParametersProcessActionHandler.processAction() |
void |
DouiRestInterfaceCachePropertiesProcessActionHandler.processAction() |
void |
EditTransformationParametersProcessActionHandler.processAction() |
void |
ImportContentServiceInstanceProcessActionHandler.processAction() |
void |
ServiceInstanceProcessActionHandler.processAction() |
void |
ServiceInstanceTransformationProcessActionHandler.processAction() |
void |
AddInterface.processAction(IServiceInterfaceActionRequest request,
IServiceInterfaceActionResponse response) |
void |
AddTransformationInterface.processAction(IServiceInterfaceActionRequest request,
IServiceInterfaceActionResponse response) |
void |
AdministrationInterface.processAction(IServiceInterfaceActionRequest request,
IServiceInterfaceActionResponse response) |
void |
EditInterface.processAction(IServiceInterfaceActionRequest request,
IServiceInterfaceActionResponse response) |
void |
FileManagementPropertiesInterface.processAction(IServiceInterfaceActionRequest request,
IServiceInterfaceActionResponse response) |
void |
ImportContentInterface.processAction(IServiceInterfaceActionRequest request,
IServiceInterfaceActionResponse response) |
void |
UsedByInterface.processAction(IServiceInterfaceActionRequest request,
IServiceInterfaceActionResponse response) |
void |
ExtendedPropertiesMenuXmlPostLoadProcessor.processSource(SessionConfig sessionConfig,
Source source,
Node parametersNode,
ITransaction transaction) |
void |
ExtendedPropertiesServicePostLoadProcessor.processSource(SessionConfig sessionConfig,
Source source,
Node parametersNode,
ITransaction transaction) |
void |
GoogleAnalyticsInheritancePostLoadProcessor.processSource(SessionConfig sessionConfig,
Source source,
Node parametersNode,
ITransaction transaction) |
void |
AddInterface.render(IServiceInterfaceRenderRequest request,
IServiceInterfaceRenderResponse response) |
void |
AddTransformationInterface.render(IServiceInterfaceRenderRequest request,
IServiceInterfaceRenderResponse response) |
void |
AdministrationInterface.render(IServiceInterfaceRenderRequest request,
IServiceInterfaceRenderResponse response) |
void |
EditInterface.render(IServiceInterfaceRenderRequest request,
IServiceInterfaceRenderResponse response) |
void |
EditTransformationInterface.render(IServiceInterfaceRenderRequest request,
IServiceInterfaceRenderResponse response) |
void |
FileManagementPropertiesInterface.render(IServiceInterfaceRenderRequest request,
IServiceInterfaceRenderResponse response) |
void |
ImportContentInterface.render(IServiceInterfaceRenderRequest request,
IServiceInterfaceRenderResponse response) |
void |
UsedByInterface.render(IServiceInterfaceRenderRequest request,
IServiceInterfaceRenderResponse response) |
void |
EditServiceInstanceTabbedControl.setRenderData() |
void |
ServiceInstanceUsedByControl.setRenderData() |
void |
BusinessContextForCacheAdvancedTabularDataControl.setValueFromSource() |
protected void |
LoadTransformationFromDataBaseControl.setValueFromSource(Source source) |
Modifier and Type | Method and Description |
---|---|
boolean |
ServiceInstanceAclControl.canInheritPermissions(ITransaction transaction) |
boolean |
ServiceInstanceAclProcessActionHandler.checkPermission() |
AccessControlList |
ServiceInstanceAclControl.getAcl(ITransaction transaction) |
String |
ServiceInstanceAclControl.getDefaultPermission(ITransaction transaction) |
HashMap<Integer,Integer> |
ServiceInstanceAclProcessActionHandler.getInheritPermissionsMap() |
AccessControlList |
ServiceInstanceAclProcessActionHandler.getParentAcl() |
Node |
ServiceInstanceAclControl.getPermissionsNode(ITransaction transaction) |
ServiceInstanceConfig |
ServiceInstanceAclControl.getServiceInstance()
Returns the service instance whose acl this control edits.
|
void |
ServiceInstanceAclControl.loadFromRequest() |
void |
AdministrationInterface.processAction(IServiceInterfaceActionRequest request,
IServiceInterfaceActionResponse response) |
void |
AdministrationInterface.render(IServiceInterfaceRenderRequest request,
IServiceInterfaceRenderResponse response) |
void |
ServiceInstanceAclProcessActionHandler.updateAcl(AccessControlList acl) |
Constructor and Description |
---|
ServiceInstanceAclProcessActionHandler() |
Modifier and Type | Method and Description |
---|---|
void |
WorkflowServiceInstanceAclProcessActionHandler.processAction() |
void |
WorkflowServiceInstanceAclControl.setRenderData() |
Constructor and Description |
---|
WorkflowServiceInstanceAclProcessActionHandler() |
Modifier and Type | Method and Description |
---|---|
void |
ServiceInterfaceHolder.instanceAdded(ServiceInterfaceInstanceConfig config,
ITransaction transaction) |
void |
DefaultCacheDataProvider.loadData(SessionConfig sessionConfig,
Source<?> source,
ITransaction transaction) |
void |
InterfaceHolderPropertiesDataProvider.loadData(SessionConfig sessionConfig,
Source source,
ITransaction transaction) |
void |
ServiceInterfaceInstancePropertiesDataProvider.loadData(SessionConfig sessionConfig,
Source source,
ITransaction transaction) |
void |
ServiceInterfaceNamesDataProvider.loadData(SessionConfig sessionConfig,
Source source,
ITransaction transaction) |
void |
BusinessContextForCacheDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<?> source,
ITransaction transaction) |
void |
CacheKeyGeneratorTypeDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<?> source,
ITransaction transaction) |
void |
ClassForCacheDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<?> source,
ITransaction transaction) |
void |
TimeoutToClearCacheDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<?> source,
ITransaction transaction) |
void |
InterfaceHolderPropertiesProcessActionHandler.processAction() |
void |
ServiceInterfaceInstancePropertiesProcessActionHandler.processAction() |
void |
InterfaceHolderPropertiesInterface.processAction(IServiceInterfaceActionRequest request,
IServiceInterfaceActionResponse response) |
void |
PropertiesInterface.processAction(IServiceInterfaceActionRequest request,
IServiceInterfaceActionResponse response) |
void |
CacheConfigurationPostLoadProcessor.processSource(SessionConfig sessionConfig,
Source source,
Node parametersNode,
ITransaction transaction) |
void |
InterfaceHolderPropertiesInterface.render(IServiceInterfaceRenderRequest request,
IServiceInterfaceRenderResponse response) |
void |
PropertiesInterface.render(IServiceInterfaceRenderRequest request,
IServiceInterfaceRenderResponse response) |
void |
ServiceInterfaceHolder.render(IServiceInterfaceRenderRequest request,
IServiceInterfaceRenderResponse response) |
void |
InterfaceInstanceInContextEditSupportControl.setRenderData() |
Modifier and Type | Method and Description |
---|---|
void |
RegisterMenuTypesProcessActionHandler.processAction() |
void |
RegisterMenuTypesProcessActionHandler.registerMenuTypes() |
void |
RegisterMenuTypesProcessActionHandler.registerStandardMenuTypes() |
void |
RegisterMenuTypesProcessActionHandler.unregisterMenuGroupType() |
void |
RegisterMenuTypesProcessActionHandler.unregisterMenuItemType() |
Modifier and Type | Method and Description |
---|---|
void |
ServiceSearchIndexDataProvider.loadData(SessionConfig sessionConfig,
Source source,
ITransaction transaction) |
void |
ForceToPublishSynonymsProcessActionHandler.processAction() |
Constructor and Description |
---|
DouiReindexerControllerXml(HttpServletRequest request,
HttpServletResponse response,
PageContext pageContext) |
Modifier and Type | Method and Description |
---|---|
void |
RegisterServiceTypesProcessActionHandler.processAction() |
void |
RegisterServiceTypesProcessActionHandler.registerServiceTypes() |
void |
RegisterServiceTypesProcessActionHandler.registerStandardServiceTypes() |
void |
RegisterServiceTypesProcessActionHandler.unregisterInterfaceType() |
void |
RegisterServiceTypesProcessActionHandler.unregisterServiceType() |
Modifier and Type | Method and Description |
---|---|
void |
SelectPageControl.buildSubControls() |
boolean |
RequiredValueWhenEnableControl.doServerValidation() |
IResource |
SelectPageControl.getControlResource() |
String |
RequiredValueWhenEnableControl.getScriptValidationFunctionImplementation() |
void |
SelectPageControl.init(Node controlDefinitionNode,
ControlContainer controlContainer,
IControl parentControl) |
void |
SelectChannelPageTreeControl.setRenderData() |
void |
SelectPageControl.setRenderData() |
Modifier and Type | Method and Description |
---|---|
void |
AddSocialNetworkProcessActionHandler.calculateDefaultProfileInformation()
Calculates the profile service instance for the standard social profile service.
|
void |
AddSocialNetworkProcessActionHandler.processAction() |
void |
ValuesValidatorProcessAction.processAction() |
Modifier and Type | Method and Description |
---|---|
void |
SocialNetworkServiceInstancesByServiceDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<?> source,
ITransaction transaction) |
void |
SocialNetworkServicesDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<?> source,
ITransaction transaction) |
void |
SocialNetworkDeclaredSourcesDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<? extends ITabularSourceField> source,
ITransaction transaction) |
void |
SocialNetworkSourceFieldsProvider.loadData(SessionConfig sessionConfig,
TabularSource<? extends ITabularSourceField> source,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
void |
EditSocialNetworkPostLoadProcessor.processSource(SessionConfig sessionConfig,
Source source,
Node parametersNode,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
void |
DeleteApplicationProcessActionHandler.processAction() |
Modifier and Type | Method and Description |
---|---|
void |
WebsiteChangeCheckControl.buildSubControls() |
boolean |
FriendlyIdValidationControl.doServerValidation() |
boolean |
RestShortNameValidationControl.doServerValidation() |
String |
WebsiteChangeCheckControl.getRenderData() |
String |
FriendlyIdValidationControl.getScriptValidationFunctionImplementation() |
String |
RestShortNameValidationControl.getScriptValidationFunctionImplementation() |
void |
WebsiteControllerHtml.handleRequest()
Handles the request.
|
void |
SelectChannelOrChannelTemplateControlWithCustomCallbackFunction.init(Node controlDefinitionNode,
ControlContainer controlContainer,
IControl parentControl) |
void |
WebsiteChangeCheckControl.init(Node controlDefinitionNode,
ControlContainer controlContainer,
IControl parentControl) |
void |
WebsiteChangeCheckControl.setRenderData() |
Constructor and Description |
---|
WebsiteControllerHtml(HttpServletRequest request,
HttpServletResponse response)
Creates a new instance with the given parameters.
|
Modifier and Type | Method and Description |
---|---|
static List<String> |
LayoutFileUtil.getHtmlFilesFromThemeByHint(String themeId,
String hintStr)
Get all html files from www or def directory in a given Theme.
|
static List<String> |
LayoutFileUtil.getHtmlFilesFromThemesByHint(String pageOrChannelType,
String channelId,
boolean inheritedTheme,
String appliedThemes,
String hint)
Get Html files from a list of themes applied and his inheritance themes
in a given channel or his parent, based on a given type
|
String |
LayoutFileResource.getLayoutFile(HttpServletResponse response,
String hint,
Integer maxResult,
String appliedThemes,
String inheritedTheme,
String channelId,
String pageOrChannelType)
Returns the list of Layout Files related to a specific theme.
|
void |
LayoutFileDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<?> source,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
boolean |
IStructureElement.add()
Adds this element.
|
boolean |
AddObjectAction.execute(lumis.service.portalmanagement.structureeditor.StructuralChangeContext context) |
boolean |
IAction.execute(lumis.service.portalmanagement.structureeditor.StructuralChangeContext context)
Executes the action.
|
String |
StructureEditorResource.getServices(HttpServletResponse response)
Returns the portal instantiable services.
|
void |
StructureEditorProcessActionHandler.processAction() |
void |
StructureEditorServiceInterface.processAction(IServiceInterfaceActionRequest request,
IServiceInterfaceActionResponse response) |
void |
StructureEditorServiceInterface.render(IServiceInterfaceRenderRequest request,
IServiceInterfaceRenderResponse response) |
boolean |
IStructureElement.update()
Update this element.
|
Modifier and Type | Method and Description |
---|---|
protected void |
MapDataProvider.buildTabularData(Map<?,?> mapData,
TabularSource<?> source)
Fill the TabularData from TabularSource using the information in the Map
|
Response |
SystemInfoResource.downloadSystemInfoZip()
Returns the system information zip.
|
void |
MapDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<?> source,
ITransaction transaction) |
protected Map<?,?> |
CachedPagesInformationDataProvider.obtainMapData(SessionConfig sessionConfig,
TabularSource<?> source,
ITransaction transaction) |
protected Map<?,?> |
ClusterInformationDataProvider.obtainMapData(SessionConfig sessionConfig,
TabularSource<?> source,
ITransaction transaction) |
protected Map<String,String> |
DatabaseInformationDataProvider.obtainMapData(SessionConfig sessionConfig,
TabularSource<?> source,
ITransaction transaction) |
protected Map<?,?> |
ElasticsearchInformationDataProvider.obtainMapData(SessionConfig sessionConfig,
TabularSource<?> source,
ITransaction transaction) |
protected Map<String,String> |
EnvironmentDataProvider.obtainMapData(SessionConfig sessionConfig,
TabularSource<?> source,
ITransaction transaction) |
protected Map<String,String> |
GeneralInformationDataProvider.obtainMapData(SessionConfig sessionConfig,
TabularSource<?> source,
ITransaction transaction) |
protected abstract Map<?,?> |
MapDataProvider.obtainMapData(SessionConfig sessionConfig,
TabularSource<?> source,
ITransaction transaction)
Provides the Map data for each specific implementation
|
protected Map<String,String> |
MemoryUseInformationDataProvider.obtainMapData(SessionConfig sessionConfig,
TabularSource<?> source,
ITransaction transaction) |
protected Map<?,?> |
PCGeneratorConfigInformationDataProvider.obtainMapData(SessionConfig sessionConfig,
TabularSource<?> source,
ITransaction transaction) |
protected Map<?,?> |
PageAccessInformationDataProvider.obtainMapData(SessionConfig sessionConfig,
TabularSource<?> source,
ITransaction transaction) |
protected Map<String,String> |
PageCacheCleanerInformationDataProvider.obtainMapData(SessionConfig sessionConfig,
TabularSource<?> source,
ITransaction transaction) |
protected Map<?,?> |
PageCacheGeneratorProfileInformationDataProvider.obtainMapData(SessionConfig sessionConfig,
TabularSource<?> source,
ITransaction transaction) |
protected Map<?,?> |
PageCacheQueueInformationDataProvider.obtainMapData(SessionConfig sessionConfig,
TabularSource<?> source,
ITransaction transaction) |
protected Map<String,String> |
PortalInformationDataProvider.obtainMapData(SessionConfig sessionConfig,
TabularSource<?> source,
ITransaction transaction) |
protected Map<String,String> |
SystemPropertiesDataProvider.obtainMapData(SessionConfig sessionConfig,
TabularSource<?> source,
ITransaction transaction) |
protected Map<String,String> |
ThreadInformationDataProvider.obtainMapData(SessionConfig sessionConfig,
TabularSource<?> source,
ITransaction transaction) |
void |
StringReplacePostLoadProcessor.processSource(SessionConfig sessionConfig,
Source source,
Node parametersNode,
ITransaction transaction) |
protected String |
StringReplacePostLoadProcessor.readParameterValue(String parameterName,
Node parametersNode)
Reads the value of a given parameter using its name.
|
protected void |
StringReplacePostLoadProcessor.replaceStrings(Source<?> source,
String fieldId,
String from,
String to)
Replace the from string by the to string in a field of a source.
|
Modifier and Type | Method and Description |
---|---|
void |
TestAutomationProcessActionHandler.processAction() |
void |
TestAdminPostLoadProcessor.processSource(SessionConfig sessionConfig,
Source source,
Node parametersNode,
ITransaction transaction) |
void |
TestGroupStatusPostLoadProcessor.processSource(SessionConfig sessionConfig,
Source source,
Node parametersNode,
ITransaction transaction) |
void |
TestStatusPostLoadProcessor.processSource(SessionConfig sessionConfig,
Source source,
Node parametersNode,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
static ThemeUsageConfig |
ThemeApplianceHelper.from(ProcessActionHandler<?> processActionHandler,
String appliedThemeIdsParameterName,
String inheritingThemeIdsParameterName)
Constructs a
ThemeUsageConfig from the given ProcessActionHandler using the indicated parameters. |
void |
EditableAppliedThemesDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<?> source,
ITransaction transaction) |
void |
ThemeAdministrationListDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<?> source,
ITransaction transaction) |
void |
AppliedEditableThemesDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<ITabularSourceField> source,
ITransaction transaction) |
void |
ParentItemThemeDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<ITabularSourceField> source,
ITransaction transaction) |
protected List<Object> |
ThemeAdministrationListDataProvider.loadObjects(SessionConfig sessionConfig,
TabularSource<?> source,
ITransaction transaction) |
void |
ThemeProcessActionHandler.processAction() |
void |
ThemeAdministrationListPostLoadProcessor.processSource(SessionConfig sessionConfig,
Source source,
Node parametersNode,
ITransaction transaction) |
void |
ThemeInheritedPostLoadProcessor.processSource(SessionConfig sessionConfig,
Source source,
Node parametersNode,
ITransaction transaction) |
void |
ThemeNamePostLoadProcessor.processSource(SessionConfig sessionConfig,
Source source,
Node parametersNode,
ITransaction transaction) |
void |
ThemeUsagePostLoadProcessor.processSource(SessionConfig sessionConfig,
Source source,
Node parametersNode,
ITransaction transaction) |
void |
ThemeAdministrationPropertyPage.render(IServiceInterfaceRenderRequest request,
IServiceInterfaceRenderResponse response) |
Modifier and Type | Method and Description |
---|---|
String |
ThemeEditorResource.areThemeFilesEditable(String themeId) |
void |
ThemeEditorResource.createNewDirectory(String themeId,
String filePath,
String dirName) |
void |
ThemeEditorResource.createNewFile(String themeId,
String filePath,
String fileName) |
void |
ThemeEditorResource.deleteFile(String themeId,
String filePath) |
String |
ThemeEditorResource.deletePageHolder(String pageId,
String pageHolderName) |
Response |
ThemeEditorResource.downloadZip(String themeId,
String folderPath) |
protected List<ITheme> |
ThemeEditorResource.getEditableThemes(PageConfig page,
ITransaction transaction) |
String |
ThemeEditorResource.getEditableThemes(String pageId) |
String |
ThemeEditorResource.getEditTheme(HttpServletRequest req,
HttpServletResponse resp) |
Response |
ThemeEditorResource.getFile(String themeId,
String filePath) |
String |
ThemeEditorResource.getFileText(String themeId,
String filePath) |
String |
ThemeEditorResource.getFolderChildren(String themeId,
String folderPath) |
String |
ThemeEditorResource.getPageBlockInfo(String pageId,
String pageBlockPath,
int pageBlockPathParents) |
String |
ThemeEditorResource.getPageHolderInfo(String pageId,
String pageHolderPath) |
String |
ThemeEditorResource.insertPageBlock(String pageId,
String pageBlockPath,
int pageBlockPathParents,
String pageBlockName,
String pageBlockReference,
String selectedPageBlock) |
String |
ThemeEditorResource.insertPageHolder(String pageId,
String pageHolderPath,
String pageHolderName) |
String |
ThemeEditorResource.isPageLayoutFileEditable(String pageId) |
void |
ThemeEditorResource.renameFile(String themeId,
String filePath,
String newFileName) |
void |
ThemeEditorResource.saveFileText(String themeId,
String filePath,
String fileContent) |
String |
ThemeEditorResource.uploadFile(InputStream uploadedInputStream,
org.glassfish.jersey.media.multipart.FormDataContentDisposition fileDetail,
String themeId,
String filePath) |
String |
ThemeEditorResource.uploadZip(InputStream uploadedInputStream,
org.glassfish.jersey.media.multipart.FormDataContentDisposition fileDetail,
String themeId,
String filePath) |
Modifier and Type | Method and Description |
---|---|
void |
UpgradeCheckClock.doTick(SessionConfig sessionConfig,
ClockConfig clockConfig) |
Response |
UpgradeResource.downloadVersionUpgrade(String userMail,
String productVersion)
Endpoint to download the LumisXP upgrade version.
|
IDataControlRequestHelpDefinition |
LicenseTypeInputHiddenControl.getRequestHelpDefinition() |
void |
LicenseTypeInputHiddenControl.init(Node controlDefinitionNode,
ControlContainer controlContainer,
IControl parentControl) |
void |
VersionNumberInputHiddenControl.init(Node controlDefinitionNode,
ControlContainer controlContainer,
IControl parentControl) |
Response |
UpgradeResource.initUpgrade(String userMail,
String productVersion,
String productDownloadId)
Endpoint to start the LumisXP upgrade.
|
void |
UpgradePortalProcessActionHandler.processAction() |
Modifier and Type | Method and Description |
---|---|
protected ISourceAddDataResult |
UserAttributesSource.doAddData(IParameters data) |
protected void |
UserAttributesSource.doDeleteDataByItemIds(Collection<String> itemIds) |
protected ISourceUpdateDataResult |
UserAttributesSource.doUpdateData(IParameters data) |
void |
UserEnvironmentConfigurationDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<?> source,
ITransaction transaction) |
void |
UserProcessActionHandler.processAction() |
void |
LocalUserDouiInterface.processAction(IServiceInterfaceActionRequest request,
IServiceInterfaceActionResponse response) |
void |
LocalUserDouiInterface.render(IServiceInterfaceRenderRequest request,
IServiceInterfaceRenderResponse response) |
Constructor and Description |
---|
UserAttributesSource(Node sourceDefinitionNode,
ISourceContext sourceContext)
Creates a user attribute source.
|
Modifier and Type | Method and Description |
---|---|
void |
ExpirationTimeCacheUnitsOptionsDataProvider.loadData(SessionConfig sessionConfig,
T source,
ITransaction transaction) |
void |
UpdateConfigurationProcessActionHandler.processAction() |
Modifier and Type | Method and Description |
---|---|
protected void |
WebFileReplicationProcessActionHandler.addWebFileReplication()
Adds a replication.
|
void |
SelectChannelControl.buildSubControls() |
void |
WebFileReplicationProcessActionHandler.processAction() |
void |
WebFileReplicationPropertiesControl.setRenderData() |
protected void |
WebFileReplicationProcessActionHandler.updateWebFileReplication()
Updates a replication.
|
Modifier and Type | Method and Description |
---|---|
void |
WebResourceRedirectionDataProvider.loadData(SessionConfig sessionConfig,
TableSource source,
ITransaction transaction) |
void |
WebResourceServiceProcessActionHandler.processAction() |
void |
WebResourcePostLoadProcessor.processSource(SessionConfig sessionConfig,
Source source,
Node parametersNode,
ITransaction transaction) |
Constructor and Description |
---|
WebResourceRedirectionDataProvider() |
Modifier and Type | Method and Description |
---|---|
void |
SelectWebsiteChannelControl.buildSubControls() |
void |
WebsitePriorityDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<? extends ITabularSourceField> source,
ITransaction transaction) |
void |
SetWebsiteNameFromChannelControl.loadFromRequest() |
void |
WebsiteProcessActionHandler.processAction() |
void |
AddWebsiteServiceInterface.processAction(IServiceInterfaceActionRequest request,
IServiceInterfaceActionResponse response) |
void |
EditWebsiteServiceInterface.processAction(IServiceInterfaceActionRequest request,
IServiceInterfaceActionResponse response) |
void |
WebsitePostLoadProcessor.processSource(SessionConfig sessionConfig,
Source source,
Node parametersNode,
ITransaction transaction) |
void |
AddWebsiteServiceInterface.render(IServiceInterfaceRenderRequest request,
IServiceInterfaceRenderResponse response) |
void |
EditWebsiteServiceInterface.render(IServiceInterfaceRenderRequest request,
IServiceInterfaceRenderResponse response) |
void |
WebsiteProcessActionHandler.updateWebsiteURLs(Website originalWebsite,
HashMap<String,WebsiteProcessActionHandler.BaseURL> BaseURLsMapToUpdate,
List<WebsiteProcessActionHandler.BaseURL> baseURLsToAdd,
WebsiteProcessActionHandler.BaseURL mainNonSecureBaseURL,
WebsiteProcessActionHandler.BaseURL mainSecureBaseURL)
Updates the web site URLs based on given parameters.
|
Modifier and Type | Method and Description |
---|---|
void |
XslCacheDataProvider.loadData(SessionConfig sessionConfig,
TableSource source,
ITransaction transaction) |
void |
XslCacheProcessActionHandler.processAction() |
Constructor and Description |
---|
XslCacheDataProvider() |
Modifier and Type | Method and Description |
---|---|
static List<String> |
StyleEditorUtil.getAppliedThemes(String serviceInterfaceInstanceId,
ITransaction transaction)
Get the applied themes for this interface.
|
String |
XsltEditorResource.getControls(String xmlData) |
String |
XsltEditorResource.getControlXML(String xmlData,
String controlId) |
String |
XsltEditorResource.getInsertMarkers(String xmlData,
String serviceInterfaceInstanceId,
String selectedInterfaceStyleId) |
String |
XsltEditorResource.getJsonFromXml(String xmlData) |
IDataControlRequestHelpDefinition |
XslEditorControl.getRequestHelpDefinition() |
void |
XslFileDataProvider.loadData(SessionConfig sessionConfig,
Source source,
ITransaction transaction) |
void |
ScriptingPermissionDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<ITabularSourceField> source,
ITransaction transaction) |
void |
ServiceInstancesDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<ITabularSourceField> source,
ITransaction transaction) |
void |
XslFileManageListDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<ITabularSourceField> source,
ITransaction transaction) |
void |
XslFileEditorControl.loadFromRequest() |
void |
XslEditorProcessActionHandler.processAction() |
void |
AddPropertiesXslInterface.processAction(IServiceInterfaceActionRequest request,
IServiceInterfaceActionResponse response) |
void |
XslEditorInterface.processAction(IServiceInterfaceActionRequest request,
IServiceInterfaceActionResponse response) |
protected void |
XslEditorProcessActionHandler.processAddAction() |
protected void |
XslEditorProcessActionHandler.processDelete() |
protected void |
XslEditorProcessActionHandler.processDeleteFromTheme() |
protected void |
XslEditorProcessActionHandler.processSaveToTheme() |
void |
InterfaceInstanceStyleNamePostLoadProcessor.processSource(SessionConfig sessionConfig,
Source source,
Node parametersNode,
ITransaction transaction) |
void |
StyleDependencyPostLoadProcessor.processSource(SessionConfig sessionConfig,
Source source,
Node parametersNode,
ITransaction transaction) |
void |
AddPropertiesXslInterface.render(IServiceInterfaceRenderRequest request,
IServiceInterfaceRenderResponse response) |
void |
XslEditorInterface.render(IServiceInterfaceRenderRequest request,
IServiceInterfaceRenderResponse response) |
void |
XsltResultControllerHtml.renderPage() |
protected void |
XsltResultControllerHtml.renderPageUserMode(ITransaction portalTransaction) |
protected void |
XsltResultControllerHtml.setPageMode(ITransaction portalTransaction) |
void |
XslEditorControl.setProcessActionHandlerParameters(IProcessActionHandler processActionHandler) |
void |
InputTextProxyControl.setRenderData() |
void |
RenderActionOnLoadScriptControl.setRenderData() |
void |
XslEditorControl.setRenderData() |
void |
XslFileEditorControl.setRenderData() |
void |
InputTextProxyControl.setValue(Object value) |
protected void |
LazySourceDropDownListControl.setValueFromSource(Source source) |
protected void |
XsltResultControllerHtml.setWebResource(ITransaction transaction)
Sets
PresentationControllerHtml.webResource with the web resource instance for the
current request. |
Constructor and Description |
---|
XsltResultControllerHtml(HttpServletRequest request,
HttpServletResponse response,
PageContext pageContext) |
Modifier and Type | Method and Description |
---|---|
void |
PrintProcessActionHandler.processAction() |
Modifier and Type | Method and Description |
---|---|
void |
PrivacyTermManager.acceptAllPurposesOfPrivacyTerm(String serviceInstanceId,
String sourceIp) |
void |
PrivacyTermManager.changeProcessPurpose(String serviceInstanceId) |
static void |
PrivacyTermManager.clearUserConsentCache(String groupId,
ITransaction transaction)
Clear the user consent cache of the given group identifier in the given transaction after commit.
|
List<String> |
PrivacyTermManager.getPrivacyProcessPurposes(ServiceInstanceConfig analyticsServiceInstance) |
boolean |
PrivacyTermManager.hasUserConsentedForDependentServiceInstance(ServiceInstanceConfig dependentServiceInstance,
String monitorUserId) |
boolean |
PrivacyTermManager.isAllPurposesOfPrivacyTermAccepted(String serviceInstanceId) |
void |
ProcessPurpose.preRemove()
Delete all user consent of this process purpose.
|
void |
PrivacyTermManager.revokeConsentOfAllPurposesOfPrivacyTerm(String serviceInstanceId) |
Modifier and Type | Method and Description |
---|---|
IContentTableSourceAddDataResult |
PrivacyTermSource.addData(Object data) |
protected IQueryValue |
DependentServiceInstanceIdFilter.calculateFilterValue(Node filterNode) |
protected void |
PrivacyTermSource.doDeleteDataByItemIds(Collection<String> itemIds) |
protected void |
ProcessPurposeSource.doDeleteDataByItemIds(Collection<String> itemIds) |
void |
ChangeProcessPurposeProcessActionHandler.processAction() |
void |
UpdatePrivacyTermRepositoryProcessActionHandler.processAction() |
void |
SelectRepositoryInterface.processAction(IServiceInterfaceActionRequest request,
IServiceInterfaceActionResponse response) |
void |
PrivacyTermSourcePostLoadProcessor.processSource(SessionConfig sessionConfig,
Source source,
Node parametersNode,
ITransaction transaction) |
void |
SelectRepositoryInterface.render(IServiceInterfaceRenderRequest request,
IServiceInterfaceRenderResponse response) |
IContentTableSourceUpdateDataResult |
PrivacyTermSource.updateData(Object data,
ContentTableSource.LockStrategy lockStrategy) |
Constructor and Description |
---|
PrivacyTermSource(Node sourceDefinitionNode,
ISourceContext sourceContext) |
ProcessPurposeSource(Node sourceDefinitionNode,
ISourceContext sourceContext)
This class' constructor.
|
Modifier and Type | Method and Description |
---|---|
IQueryFilter |
QuestionnaireListFilter.getQueryFilter(QueryBase queryBase,
IParameters params) |
void |
AnswersAutoLayoutFieldsControl.init(Node controlDefinitionNode,
ControlContainer controlContainer,
IControl parentControl) |
void |
ShowAnswersAutoLayoutFieldsControl.init(Node controlDefinitionNode,
ControlContainer controlContainer,
IControl parentControl) |
void |
UserField.init(Source source,
Node fieldNode) |
void |
QuestionTableDataProvider.loadData(SessionConfig sessionConfig,
TableSource source,
ITransaction transaction) |
void |
AddQuestionaireAnswerProcessActionHandler.processAction() |
void |
AddQuestionaireProcessActionHandler.processAction() |
void |
DeleteQuestionnaireProcessActionHandler.processAction() |
void |
UpdateQuestionaireProcessActionHandler.processAction() |
Constructor and Description |
---|
QuestionSource(Node sourceDefinitionNode,
ISourceContext sourceContext) |
QuestionTableDataProvider() |
Modifier and Type | Method and Description |
---|---|
protected IQueryValue |
CurrentDayDateFilter.calculateFilterValue(Node filterNode) |
protected IQueryValue |
NextDayDateFilter.calculateFilterValue(Node filterNode) |
protected Object |
ScheduleDateTimePickerControl.getDefaultValue() |
protected Object |
ScheduleStartDateTimePickerControl.getDefaultValue() |
String |
ResourcesDataType.Data.getDisplayString(IRenderer renderer)
Returns the display string, as defined in
ResourceDataType.Data#getDisplayString(IRenderer) ,
of each Resource in this Resources data, separated by comma. |
String |
ResourcesDataType.Data.getRenderData(IRenderer renderer) |
boolean |
ResourceValidatorProcessActionHandler.isNameInUse(String contentName,
String serviceInstanceId,
String itemId)
Indicates if a name is in use by another resource.
|
void |
ResourceValidatorProcessActionHandler.processAction()
If the name is in use by another resource in same service instance, throws an exception.
|
void |
RoomDeleteValidatorProcessActionHandler.processAction() |
void |
ScheduleValidatorProcessActionHandler.processAction() |
Modifier and Type | Method and Description |
---|---|
void |
IRssManager.generateRssXmlFile(SessionConfig sessionConfig,
RssConfig rssConfig,
String oldPath,
ITransaction transaction)
Generate the Rss Xml File
|
void |
RssManager.generateRssXmlFile(SessionConfig sessionConfig,
RssConfig rssConfig,
String oldPath,
ITransaction transaction) |
RssConfig |
IRssManager.get(SessionConfig sessionConfig,
String id,
ITransaction transaction)
Returns the RssConfig for a Rss with the given id.
|
RssConfig |
RssManager.get(SessionConfig sessionConfig,
String id,
ITransaction transaction) |
RssConfig |
IRssDao.get(String id,
ITransaction transaction)
Get the Rss
|
RssConfig |
RssDao.get(String id,
ITransaction transaction) |
Set<String> |
IRssDao.getIdsByRssServiceInstanceId(String rssServiceInstanceId,
ITransaction transaction)
Returns the
RSS ids by the RSS service instance identifier. |
Set<String> |
RssDao.getIdsByRssServiceInstanceId(String rssServiceInstanceId,
ITransaction transaction) |
Collection<String> |
IRssManager.getIdsByServiceInstanceId(SessionConfig sessionConfig,
String serviceInstanceId,
ITransaction transaction)
Get the Rss ids by the Service Instance Id
|
Collection<String> |
RssManager.getIdsByServiceInstanceId(SessionConfig sessionConfig,
String serviceInstanceId,
ITransaction transaction) |
Collection<String> |
IRssDao.getIdsByServiceInstanceId(String serviceInstanceId,
ITransaction transaction)
Get the Rss ids by the Service Instance Id
|
Collection<String> |
RssDao.getIdsByServiceInstanceId(String serviceInstanceId,
ITransaction transaction) |
Collection<RssResultRow> |
IRssDao.getResults(RssConfig rssConfig,
ITransaction transaction)
Get the results of the Rss Xml file
|
Collection<RssResultRow> |
RssDao.getResults(RssConfig rssConfig,
ITransaction transaction) |
protected String |
RssManager.getSourceFieldValue(Node sourceNode,
String fieldId,
String fieldType,
String errorMessage,
boolean stored,
boolean showError) |
void |
IRssManager.instanceDeleted(SessionConfig sessionConfig,
ServiceInstanceConfig serviceInstance,
ITransaction transaction)
Removes the public files from the website.
|
void |
RssManager.instanceDeleted(SessionConfig sessionConfig,
ServiceInstanceConfig serviceInstance,
ITransaction transaction) |
void |
RssService.instanceDeleted(SessionConfig sessionConfig,
ServiceInstanceConfig serviceInstance,
ITransaction transaction) |
void |
IRssManager.instanceMoved(SessionConfig sessionConfig,
ServiceInstanceConfig serviceInstance,
IPortalBaseFolder oldBaseFolder,
IPortalBaseFolder newBaseFolder,
ITransaction transaction)
Moves the public files from the old
base folder to the new one. |
void |
RssManager.instanceMoved(SessionConfig sessionConfig,
ServiceInstanceConfig serviceInstance,
IPortalBaseFolder oldBaseFolder,
IPortalBaseFolder newBaseFolder,
ITransaction transaction) |
void |
RssService.instanceMoved(SessionConfig sessionConfig,
ServiceInstanceConfig serviceInstance,
IPortalBaseFolder oldWebRootFolder,
IPortalBaseFolder newWebRootFolder,
ITransaction transaction) |
void |
IRssManager.instanceMoved(SessionConfig sessionConfig,
ServiceInstanceConfig serviceInstance,
IWebsite oldWebsite,
IWebsite newWebsite,
ITransaction transaction)
Moves the public files from the old website to the new one.
|
void |
RssManager.instanceMoved(SessionConfig sessionConfig,
ServiceInstanceConfig serviceInstance,
IWebsite oldWebsite,
IWebsite newWebsite,
ITransaction transaction) |
void |
RssService.instanceMoved(SessionConfig sessionConfig,
ServiceInstanceConfig serviceInstance,
IWebsite oldWebsite,
IWebsite newWebsite,
ITransaction transaction) |
void |
RssObserver.onEvent(IPortalEvent ev) |
protected void |
RssManager.prepare(RssConfig rssConfig,
ITransaction transaction)
Prepare data and validate to insert in table
|
void |
RssProcessActionHandler.processAction() |
protected void |
RssProcessActionHandler.processAddOrUpdateRssAction() |
protected void |
RssProcessActionHandler.processDeleteRssXmlAction() |
protected void |
RssProcessActionHandler.processGenerateRssXmlAction() |
protected String |
RssManager.processHeader(String header) |
void |
RssPostLoadProcessor.processSource(SessionConfig sessionConfig,
Source source,
Node parametersNode,
ITransaction transaction) |
void |
RssObserver.GenerateRssXmlTask.run() |
boolean |
IRssDao.validateUniqueFilePath(String filePath,
String notIncludingRssId,
ITransaction transaction)
Verify if already exist a path specified to another RSS
|
boolean |
IRssManager.validateUniqueFilePath(String filePath,
String notIncludingRssId,
ITransaction transaction)
Verify if already exist a path specified to another RSS
|
boolean |
RssDao.validateUniqueFilePath(String filePath,
String notIncludingRssId,
ITransaction transaction) |
boolean |
RssManager.validateUniqueFilePath(String filePath,
String notIncludingRssId,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
protected Object |
SearchOrderByDropDownListControl.getDefaultValue() |
void |
SearchFacetPropertiesDataProvider.loadData(SessionConfig sessionConfig,
Source source,
ITransaction transaction) |
void |
SearchPropertiesDataProvider.loadData(SessionConfig sessionConfig,
Source source,
ITransaction transaction) |
void |
BoostSearchDataProvider.loadData(SessionConfig sessionConfig,
T source,
ITransaction transaction) |
void |
SearchQueryInputText.loadFromRequest() |
void |
BoostSearchProcessActionHandler.processAction() |
void |
SearchFacetPropertiesProcessActionHandler.processAction() |
void |
SearchPropertiesProcessActionHandler.processAction() |
void |
SearchPropertiesInterfaces.processAction(IServiceInterfaceActionRequest request,
IServiceInterfaceActionResponse response) |
void |
SearchPropertiesInterfaces.render(IServiceInterfaceRenderRequest request,
IServiceInterfaceRenderResponse response) |
Modifier and Type | Method and Description |
---|---|
void |
PopularityClock.doTick(SessionConfig sessionConfig,
ClockConfig clockConfig) |
static void |
PopularityClock.updateContentPopularities()
Updates the contents' popularities in big data.
|
Modifier and Type | Method and Description |
---|---|
protected IQueryValue |
SynonymWordFilter.calculateFilterValue(Node filterNode) |
protected ISourceAddDataResult |
SynonymTableSource.doAddData(IParameters data) |
protected void |
SynonymTableSource.doDeleteDataByItemIds(Collection<String> itemIds) |
void |
SynonymClock.doTick(SessionConfig sessionConfig,
ClockConfig clockConfig) |
protected ISourceUpdateDataResult |
SynonymTableSource.doUpdateData(IParameters data) |
Constructor and Description |
---|
SynonymTableSource(Node sourceDefinitionNode,
ISourceContext sourceContext) |
Modifier and Type | Method and Description |
---|---|
void |
SendToFriendControllerHtml.handleLinkRequest() |
void |
SendToFriendMailProcessActionHandler.processAction() |
Constructor and Description |
---|
SendToFriendControllerHtml(HttpServletRequest request,
HttpServletResponse response) |
Modifier and Type | Method and Description |
---|---|
static URL |
SeoServiceUtil.getCanonicalUrl(String pageId,
Locale locale)
|
static String |
SeoServiceUtil.getPageDescription(String pageId,
Locale locale)
|
static String |
SeoServiceUtil.getPageSocialDescription(String pageId,
Locale locale)
|
static String |
SeoServiceUtil.getPageSocialImageFileId(String pageId,
Locale locale)
|
static String |
SeoServiceUtil.getPageSocialTitle(String pageId,
Locale locale)
|
static String |
SeoServiceUtil.getPageTitle(String pageId,
Locale locale)
|
static String |
SeoServiceUtil.getPageTitlePattern(String pageId,
Locale locale)
Returns the page title pattern for the given page and locale.
|
static String |
SeoServiceUtil.getUrlPathByChannelId(String channelId,
Locale locale)
|
static String |
SeoServiceUtil.getUrlPathByPageId(String pageId,
Locale locale)
Returns the url path for the specified
PageConfig#getId( page) SeoRule if defined. |
Modifier and Type | Method and Description |
---|---|
void |
AddSeoRuleProcessActionHandler.processAction() |
void |
SeoAfterCommitProcesActionHandler.processAction() |
void |
SetValuesProcessActionHandler.processAction() |
Modifier and Type | Method and Description |
---|---|
void |
RobotsTxtDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<?> source,
ITransaction transaction) |
void |
RobotsTxtServedUrlsDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<?> source,
ITransaction transaction) |
void |
RobotsTxtSitemapNameProcessActionHandler.processAction() |
void |
RobotsTxtUserAgentNameProcessActionHandler.processAction() |
Modifier and Type | Method and Description |
---|---|
void |
SitemapClock.doTick(SessionConfig sessionConfig,
ClockConfig clockConfig) |
static void |
SitemapManager.generateSiteMap(String serviceInstanceId,
ITransaction transaction)
Given a service instance id, this method renders the sitemap.xml files in the
lumisdata/shared/data/sitempafiles directory.
|
void |
GenerateSitemapProcessActionHandler.processAction() |
String |
SitemapResource.viewSitemap(HttpServletRequest request,
HttpServletResponse response,
String serviceInstanceId)
Redirects to the serviceinstance sitemap.
|
Modifier and Type | Method and Description |
---|---|
protected IServiceInterfaceUrl |
SimpleContentHyperLinkResolver.createUrl(SessionConfig sessionConfig,
HyperLinkConfig hyperLinkConfig,
String pageId,
ITransaction transaction) |
protected String |
SimpleContentHyperLinkResolver.resolveDestinationInterfaceId(SessionConfig sessionConfig,
HyperLinkConfig hyperLinkConfig,
ITransaction transaction) |
IServiceInterfaceUrl |
SimpleContentService.resolveHyperLink(SessionConfig sessionConfig,
HyperLinkConfig hyperLinkConfig,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
protected SearchQuery |
SingleBlogTagListDataProvider.getBaseQuery(TabularSource source) |
Modifier and Type | Method and Description |
---|---|
static List<ISearchHit> |
SmartContentUtil.chooseSearchByInterfaceType(SessionConfig sessionConfig,
String interfaceType,
TabularSource<?> source,
ITransaction transaction)
Choose a method use for an specific interface.
|
static List<ISearchHit> |
SmartContentUtil.getInterestingContent(SessionConfig sessionConfig,
TabularSource<?> source,
ITransaction transaction)
Get contents that must be interesting for user by running a query on elasticSearch.
|
static List<ISearchHit> |
SmartContentUtil.getLastContentNotRead(SessionConfig sessionConfig,
TabularSource<?> source,
ITransaction transaction)
Get last contents that wasn't read by me.
|
static List<ISearchHit> |
SmartContentUtil.getLastContentRead(SessionConfig sessionConfig,
TabularSource<?> source,
ITransaction transaction)
Get last contents read by me, by running a query on elasticSearch.
|
static List<ISearchHit> |
SmartContentUtil.getMostLikedOrCommentedOrViewsRecommendedContents(SessionConfig sessionConfig,
TabularSource<?> source,
String type,
ITransaction transaction)
Get most like, commented or viewed recommend contents.
|
static List<ISearchHit> |
SmartContentUtil.getMostLikedOrCommnentedOrViewsContents(SessionConfig sessionConfig,
TabularSource<?> source,
String type,
ITransaction transaction)
Get most like, commented or viewed contents.
|
static List<ISearchHit> |
SmartContentUtil.getRecommendToMe(SessionConfig sessionConfig,
TabularSource<?> source,
ITransaction transaction)
Get contents recommend to me by running a query on elasticSearch.
|
static SearchFieldClause |
SmartContentUtil.getStartTimeFrameFieldClause(SessionConfig sessionConfig,
Source<?> source,
ITransaction transaction)
Returns the field clause that filters by the start of the time frame.
|
void |
SearchScopeStandardLabel.init(Node controlDefinitionNode,
ControlContainer controlContainer,
IControl parentControl) |
Modifier and Type | Method and Description |
---|---|
void |
SearchScopeDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<?> source,
ITransaction transaction) |
void |
ServiceInstancesDataGridDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<?> source,
ITransaction transaction) |
void |
SmartContentDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<?> source,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
void |
SearchScopeProcessActionHandler.processAction() |
Modifier and Type | Method and Description |
---|---|
void |
SocialNetworkIntegrationService.instanceDeleted(SessionConfig sessionConfig,
ServiceInstanceConfig config,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
void |
ApplicationAccountProcessActionHandler.processAction() |
void |
MessageProcessActionHandler.processAction() |
void |
SelectAccountServiceInstanceProcessActionHandler.processAction() |
void |
SocialNetworkAuthenticationProcessActionHandler.processAction() |
void |
SocialNetworkCallbackProcessActionHandler.processAction() |
void |
SocialNetworkFacebookPublicationTokenProcessActionHandler.processAction() |
void |
SocialNetworkAccountAddPropertyPage.render(IServiceInterfaceRenderRequest request,
IServiceInterfaceRenderResponse response) |
Modifier and Type | Method and Description |
---|---|
IDataControlRequestHelpDefinition |
AccountServiceInstancePaneControl.getRequestHelpDefinition() |
void |
SelectAccountServiceInstanceAdvancedTabularDataControl.loadFromRequest() |
protected void |
SelectAccountServiceInstanceAdvancedTabularDataControl.setDefaultValue() |
void |
AccountServiceInstancePaneControl.setRenderData()
Set the render data.
|
Modifier and Type | Method and Description |
---|---|
void |
SocialNetworkAccountAddFacebookProfileDataProvider.loadData(SessionConfig sessionConfig,
Source<?> source,
ITransaction transaction) |
void |
ServiceInstancePublishingToSocialNetworksDataProvider.loadData(SessionConfig sessionConfig,
TableSource source,
ITransaction transaction) |
Constructor and Description |
---|
ServiceInstancePublishingToSocialNetworksDataProvider() |
Modifier and Type | Method and Description |
---|---|
void |
SocialNetworkNamePostLoadProcessor.processSource(SessionConfig sessionConfig,
Source source,
Node parametersNode,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
void |
MicroblogService.instanceDeleted(SessionConfig sessionConfig,
ServiceInstanceConfig serviceInstanceConfig,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
void |
PostManager.removePostWithDependencies(Post post)
Method that deletes an user post and all related data, i.e., associated entities
attached to it (Comments, PostAttachments, Hashtags)
|
Modifier and Type | Method and Description |
---|---|
String |
URLGenerator.generateHashtagLink(DouiContext douiContext,
String hashtag,
String serviceInstanceId,
ITransaction transaction)
Method that generates the hashtag hyperlink for the correct 'view hashtag results' interface instance.
|
String |
URLGenerator.processHashtagsAndURLs(String analyzedText,
DouiContext douiContext,
String serviceInstanceId,
ITransaction transaction)
This method is responsible to analyze and process embbeded URLs and hashtags present in a String.
|
Modifier and Type | Method and Description |
---|---|
IDataControlRequestHelpDefinition |
CommentAreaListControl.getRequestHelpDefinition() |
void |
CommentAreaListControl.setRenderData() |
void |
FollowButtonControl.setRenderData() |
Modifier and Type | Method and Description |
---|---|
void |
HashOccurencesDataProvider.loadData(SessionConfig sessionConfig,
Source source,
ITransaction transaction) |
void |
NetworkPostsDataProvider.loadData(SessionConfig sessionConfig,
Source source,
ITransaction transaction) |
void |
HashtagPostsDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<ITabularSourceField> source,
ITransaction transaction) |
void |
SocialProfileDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<ITabularSourceField> source,
ITransaction transaction) |
void |
WallPostsDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<ITabularSourceField> source,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
void |
MicroblogPortalObserver.onEvent(IPortalEvent event) |
Modifier and Type | Method and Description |
---|---|
void |
CommentsListPostLoadProcessor.processSource(SessionConfig sessionConfig,
Source source,
Node parametersNode,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
void |
MicroblogHashProcessActionHandler.analyzePost(String postId,
String post)
This method analyzes a post content in order to extract possible embedded
hashtags and persist them.
|
void |
MicroblogUserFollowsProcessActionHandler.doInsert(String followedUserId,
String socialNetworkId,
String serviceInstanceId)
Does the insert process, i.e., a user follow-process.
|
void |
MicroblogUserFollowsProcessActionHandler.doRemove(String followedUserId,
String socialNetworkId,
String serviceInstanceId)
Does the remove process, i.e., a user unfollow-process.
|
void |
MicroblogAttachmentsProcessActionHandler.processAction() |
void |
MicroblogCommentProcessActionHandler.processAction() |
void |
MicroblogHashProcessActionHandler.processAction() |
void |
MicroblogPostsProcessActionHandler.processAction() |
void |
MicroblogUserFollowsProcessActionHandler.processAction() |
Modifier and Type | Method and Description |
---|---|
void |
SocialProfileDataProvider.loadData(SessionConfig sessionConfig,
TableSource source,
ITransaction transaction) |
void |
SocialProfilePortalObserver.onEvent(IPortalEvent event) |
void |
SocialProfileUpdateProcessActionHandler.processAction() |
Constructor and Description |
---|
SocialProfileDataProvider()
Default constructor.
|
Modifier and Type | Method and Description |
---|---|
protected void |
GenericServiceInstancesTagListDataProvider.addSearchAggregation(SearchQuery query,
T source)
Adds the search aggregation on the given
search query . |
IChannelChildProvider |
SelectTagServiceInstanceControl.createChannelChildProvider()
Defines the channel tree that allows the tag repository selection.
|
void |
UnusedTagsCleanerClock.doTick(SessionConfig sessionConfig,
ClockConfig clockConfig) |
protected SearchQuery |
GenericServiceInstancesTagListDataProvider.getBaseQuery(T source)
Returns the base search query.
|
protected String |
GenericServiceInstancesTagListDataProvider.getCountSourceFieldId(T source)
Returns the count source field identifier.
|
protected Collection<String> |
GenericServiceInstancesTagListDataProvider.getFilterServiceInstaceIds(T source)
Returns the filter service instance identifiers.
|
protected Collection<String> |
TagServiceInstanceTagListDataProvider.getFilterServiceInstaceIds(T source) |
protected int |
GenericServiceInstancesTagListDataProvider.getMaxRows(T source)
Returns the maximum number of rows to be returned in source.
|
protected ServiceInstanceConfig |
GenericServiceInstancesTagListDataProvider.getOwnServiceInstance(T source)
Returns the own service instance.
|
protected String |
GenericServiceInstancesTagListDataProvider.getSearchAggregationId(T source)
Returns the search aggregation identifier to be used on search.
|
protected String |
GenericServiceInstancesTagListDataProvider.getTagSourceFieldId(T source)
Returns the tag source field identifier.
|
void |
TagService.instanceDeleted(SessionConfig sessionConfig,
ServiceInstanceConfig config,
ITransaction transaction) |
void |
GenericServiceInstancesTagListDataProvider.loadData(SessionConfig sessionConfig,
T source,
ITransaction transaction) |
protected void |
GenericServiceInstancesTagListDataProvider.populateRow(IMultiBucketAggregationResult.IBucket<Serializable> bucket,
ISourceData row,
T source)
Populates the given row of the given source with the given
bucket of search aggregation result. |
protected void |
GenericServiceInstancesTagListDataProvider.populateSource(T source,
Map<String,IAggregationResult> aggregations,
SearchQuery query)
Populates the given source with the given aggregations.
|
void |
SelectRepositoryProcessActionHandler.processAction() |
void |
SelectRepositoryInterface.processAction(IServiceInterfaceActionRequest request,
IServiceInterfaceActionResponse response) |
void |
SelectRepositoryInterface.render(IServiceInterfaceRenderRequest request,
IServiceInterfaceRenderResponse response) |
protected void |
GenericServiceInstancesTagListDataProvider.sortSource(T source,
SearchQuery query)
Sorts the given source.
|
Modifier and Type | Method and Description |
---|---|
void |
UFrameServiceInterface.render(IServiceInterfaceRenderRequest request,
IServiceInterfaceRenderResponse response)
Method that enables a uFrame div.
|
Modifier and Type | Method and Description |
---|---|
void |
UserProcessActionHandler.processAction() |
Modifier and Type | Method and Description |
---|---|
String |
UserLinkResource.getUserLinks(String strlogins,
String serviceInstanceId)
Given an array of logins, returns a json array with all users meta informaiton.
|
Modifier and Type | Method and Description |
---|---|
void |
UserPostResource.deletePost(String postContentId)
Deletes an user post by it's contentId and all related activities.
|
protected void |
UserPostDeleteProcessActionHandler.doAction() |
void |
UserPostResource.edit(HttpServletResponse response,
String userPostContentId,
String pageId)
Redirects to the edit post page.
|
Collection<ActivityPriority> |
UserPostActivityPrioritizer.generateActivityPriorities(Activity activity) |
String |
UserPostResource.getUrlMetaInformation(String url)
Given a url returns the meta information extracted from the url.
|
void |
UserPostContentPublicationUpdateObserver.onEvent(IPortalEvent event) |
void |
PostEditProcessActionHandler.processAction() |
Modifier and Type | Method and Description |
---|---|
Date |
VoteDaoJdbc.getVoteLogDate(String questionId,
String userId,
ITransaction transaction) |
List<VoteOptionConfig> |
VoteDaoJdbc.getVoteOptions(String voteQuestionId,
ITransaction transaction)
Returns the options for a vote question.
|
VoteQuestionConfig |
VoteDaoJdbc.getVoteQuestion(String voteQuestionId,
ITransaction transaction) |
void |
VoteProcessActionHandler.processAction() |
void |
VoteOptionPostLoadProcessor.processSource(SessionConfig sessionConfig,
Source source,
Node parametersNode,
ITransaction transaction) |
void |
VotePercentCalculatorPostLoadProcessor.processSource(SessionConfig sessionConfig,
Source source,
Node parametersNode,
ITransaction transaction) |
String |
VoteDaoJdbc.registerVote(String voteQuestionId,
String userId,
ITransaction transaction) |
void |
VoteDaoJdbc.registerVoteOption(String optionId,
String voteLogId,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
void |
WebPageParameterDataProvider.loadData(SessionConfig sessionConfig,
Source source,
ITransaction transaction) |
void |
WebPageProcessActionHandler.processAction() |
void |
WebPage.render(IServiceInterfaceRenderRequest request,
IServiceInterfaceRenderResponse response) |
Modifier and Type | Class and Description |
---|---|
class |
WebServiceViewerException |
Modifier and Type | Method and Description |
---|---|
void |
WebServiceViewerConfigurationDataProvider.loadData(SessionConfig sessionConfig,
Source source,
ITransaction transaction) |
void |
WebServiceViewerParametersDataProvider.loadData(SessionConfig sessionConfig,
Source source,
ITransaction transaction) |
void |
WebServiceViewerConfigurationProcessActionHandler.processAction() |
void |
WebServiceViewerParametersProcessActionHandler.processAction() |
void |
WebServiceViewer.render(IServiceInterfaceRenderRequest request,
IServiceInterfaceRenderResponse response) |
protected String |
WebServiceViewer.scrubResponseText(String responseText,
IServiceInterfaceRenderRequest request,
IServiceInterfaceRenderResponse response) |
Modifier and Type | Method and Description |
---|---|
void |
WebsiteFilesResource.createNewDirectory(String websiteFilesId,
String filePath,
String dirName)
Creates a new dirctory in website.
|
void |
WebsiteFilesResource.createNewFile(String websiteFilesId,
String filePath,
String fileName)
Creates a new text file in the given website.
|
void |
WebsiteFilesResource.deleteFile(String websiteFilesId,
String filePath)
Deletes a file in a webiste
|
Response |
WebsiteFilesResource.downloadZip(String websiteFilesId,
String folderPath)
Download a zipped version of a given directory in the website.
|
Response |
WebsiteFilesResource.getFile(String websiteFilesId,
String filePath)
Returns the content of a requested file.
|
String |
WebsiteFilesResource.getFolderChildren(String websiteFilesId,
String folderPath)
returns the children files and folders given a website and root path.
|
protected IFile |
WebsiteFilesResource.getWebsiteFilesDir(String websiteFilesId)
Returns a file object that represents website files root folder.
|
void |
WebsiteFilesResource.renameFile(String websiteFilesId,
String filePath,
String newFileName)
Renames a file in the website
|
void |
WebsiteFilesResource.saveFileText(String websiteFilesId,
String filePath,
String fileContent)
Saves file text to the given website.
|
String |
WebsiteFilesResource.uploadFile(InputStream uploadedInputStream,
org.glassfish.jersey.media.multipart.FormDataContentDisposition fileDetail,
String websiteFilesId,
String filePath)
Uploads a file to the given directory.
|
String |
WebsiteFilesResource.uploadZip(InputStream uploadedInputStream,
org.glassfish.jersey.media.multipart.FormDataContentDisposition fileDetail,
String websiteFilesId,
String filePath)
Uploads a zip file to the destination website.
|
Modifier and Type | Method and Description |
---|---|
void |
WikiViewArticlePaneControl.buildSubControls()
Build the sub-controls depending on if the article is a wanted article
or a normal article.
|
void |
FCKSelectArticleControllerHtml.handleRequest()
Redirects to a page with the specified interface.
|
protected void |
WikiService.initializeServiceInstanceContent(SessionConfig sessionConfig,
ServiceInstanceConfig serviceInstanceConfig,
ITransaction transaction)
Creates the wiki main article, if the service instance has no content.
|
void |
WikiService.instanceAdded(SessionConfig sessionConfig,
ServiceInstanceConfig serviceInstanceConfig,
ITransaction transaction)
When a wiki service instance is added, the main wiki article is
automatically created.
|
void |
WikiService.instanceDeserialized(ServiceInstanceDeserializationContext serviceInstanceDeserializationContext) |
void |
WikiService.instanceDeserialized(SessionConfig sessionConfig,
String serviceInstanceId,
DeserializationConfig deserializationConfig,
Node node,
ITransaction transaction) |
void |
WikiContentVersionDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<?> source,
ITransaction transaction) |
void |
LinkTranslatorProcessActionHandler.processAction() |
void |
NewArticleLinkProcessActionHandler.processAction()
Calls the JavaScript
callbackFunction providing the article title and URL. |
void |
SetMainArticleProcessActionHandler.processAction() |
void |
ValidateArticleDeletionProcessActionHandler.processAction() |
void |
ValidateArticleTitleProcessActionHandler.processAction()
If the title is in use by other version, throws an exception.
|
void |
WikiArticleSelectProcessActionHandler.processAction()
Calls the JavaScript
callbackFunction providing the title and URL of the
selected wiki article. |
protected void |
ContentIdHolderControl.setValueFromSource(Source source) |
boolean |
WikiService.usesWidgetRepository(ITransaction transaction) |
Constructor and Description |
---|
FCKSelectArticleControllerHtml(HttpServletRequest request,
HttpServletResponse response,
PageContext pageContext) |
Modifier and Type | Method and Description |
---|---|
void |
SelectServiceInstanceWorkflowDataProvider.loadData(SessionConfig sessionConfig,
Source source,
ITransaction transaction) |
void |
WorkflowSendToUsersDataProvider.loadData(SessionConfig sessionConfig,
Source source,
ITransaction transaction) |
void |
SelectPrincipalProcessActionHandler.processAction() |
void |
SelectWorkflowServiceInstanceProcessActionHandler.processAction() |
void |
WorkflowProcessActionHandler.processAction() |
void |
SelectWorkflowInterface.processAction(IServiceInterfaceActionRequest request,
IServiceInterfaceActionResponse response) |
void |
SelectWorkflowInterface.render(IServiceInterfaceRenderRequest request,
IServiceInterfaceRenderResponse response) |
Modifier and Type | Method and Description |
---|---|
String |
RemotePortletManagementManager.clonePortlet(String portletHandle)
Clones a portlet.
|
String |
RemotePortletManagementManagerV1.clonePortlet(String portletHandle) |
String |
RemotePortletManagementManagerV2.clonePortlet(String portletHandle) |
String |
IPortletServiceManager.clonePortlet(String portletHandle,
String displayName)
Clones a portlet.
|
String |
PortletServiceManager.clonePortlet(String portletHandle,
String friendlyName) |
String |
IPortletServiceManager.getDescriptionFromPortlet(String portletHandle)
Returns the description from portlet.
|
String |
PortletServiceManager.getDescriptionFromPortlet(String portletHandle) |
String |
RemotePortletManagementManager.getDescriptionFromPortlet(String portletHandle)
Returns the description from portlet.
|
String |
RemotePortletManagementManagerV1.getDescriptionFromPortlet(String portletHandle) |
String |
RemotePortletManagementManagerV2.getDescriptionFromPortlet(String portletHandle) |
com.sun.portal.wsrp.common.stubs.v2.PortletDescription |
IPortletServiceManager.getPortletDescription(String portletHandle)
Returns the portlet description.
|
com.sun.portal.wsrp.common.stubs.v2.PortletDescription |
PortletServiceManager.getPortletDescription(String portletHandle) |
com.sun.portal.wsrp.common.stubs.v2.PortletDescription |
RemotePortletManagementManager.getPortletDescription(String portletHandle)
Returns the PortletDescription for the given portletHandle.
|
com.sun.portal.wsrp.common.stubs.v2.PortletDescription |
RemotePortletManagementManagerV1.getPortletDescription(String portletHandle) |
com.sun.portal.wsrp.common.stubs.v2.PortletDescription |
RemotePortletManagementManagerV2.getPortletDescription(String portletHandle) |
String |
IPortletServiceManager.getPortletName(String portletHandle)
Returns the portlet name.
|
String |
PortletServiceManager.getPortletName(String portletHandle) |
String |
RemotePortletManagementManager.getPortletName(String portletHandle)
Returns the portlet display name.
|
String |
RemotePortletManagementManagerV1.getPortletName(String portletHandle) |
String |
RemotePortletManagementManagerV2.getPortletName(String portletHandle) |
Properties |
IPortletServiceManager.getPortletProperties(String portletHandle)
Returns the portlet properties.
|
Properties |
PortletServiceManager.getPortletProperties(String portletHandle) |
Properties |
RemotePortletManagementManager.getPortletProperties(String portletHandle)
Returns the portlet properties.
|
Properties |
RemotePortletManagementManagerV1.getPortletProperties(String portletHandle) |
Properties |
RemotePortletManagementManagerV2.getPortletProperties(String portletHandle) |
String |
RemotePortletManagementManager.getPortletPropertyDescription(String portletHandle,
String propertyName)
Returns the portlet property description.
|
String |
RemotePortletManagementManagerV1.getPortletPropertyDescription(String portletHandle,
String propertyName) |
String |
RemotePortletManagementManagerV2.getPortletPropertyDescription(String portletHandle,
String propertyName) |
static IPortletServiceManager |
PortletServiceManagerFactory.getPortletServiceManager(String producerEntityId)
Returns an instance of a PortletServiceManager.
|
RemotePortletManagementManager |
RemoteServiceManagerFactory.getRemotePortletManagementManager(ProducerEntityImpl producerEntity)
Retrieves the RemotePortletManagmentManager for the given producerEntity.
|
void |
WSRPConsumerService.instanceDeleted(SessionConfig sessionConfig,
ServiceInstanceConfig serviceInstanceConfig,
ITransaction transaction) |
void |
RemotePortletServiceInterface.processAction(IServiceInterfaceActionRequest interfaceRequest,
IServiceInterfaceActionResponse interfaceResponse) |
void |
IPortletServiceManager.removeClone(String portletHandle)
Removes the clone.
|
void |
PortletServiceManager.removeClone(String portletHandle) |
void |
RemotePortletManagementManager.removeClone(String portletHandle)
Removes the clone.
|
void |
RemotePortletManagementManagerV1.removeClone(String portletHandle) |
void |
RemotePortletManagementManagerV2.removeClone(String portletHandle) |
void |
RemotePortletServiceInterface.render(IServiceInterfaceRenderRequest request,
IServiceInterfaceRenderResponse response) |
void |
IPortletServiceManager.setPortletProperties(String portletHandle,
Properties properties)
Sets the portlet properties.
|
void |
PortletServiceManager.setPortletProperties(String portletHandle,
Properties properties) |
void |
RemotePortletManagementManager.setPortletProperties(String portletHandle,
Properties properties)
Sets the portlet properties.
|
void |
RemotePortletManagementManagerV1.setPortletProperties(String portletHandle,
Properties properties) |
void |
RemotePortletManagementManagerV2.setPortletProperties(String portletHandle,
Properties properties) |
Modifier and Type | Method and Description |
---|---|
void |
ConsumerConfigurationInterfaceVerificationControl.buildSubControls() |
void |
RemotePortletConfigurationInterfaceControl.buildSubControls() |
protected void |
MapDataProvider.buildTabularData(Map<?,?> mapData,
TabularSource<?> source)
Fill the TabularData from TabularSource using the information in the Map
|
protected String |
ClonedPortletUsePostLoadProcessor.getFormat(Node parametersNode)
Returns the format to be parsed.
|
protected String |
ClonePortletPostLoadProcessor.getPortletCloneName(SessionConfig sessionConfig,
String originalName,
Source<?> source,
ITransaction transaction)
Returns the portlet clone processed name.
|
protected String |
LinkToRuntimeTabularDataControl.getRowOnClick(TabularSource<?> source,
ISourceData row,
String compositePrimaryKey,
int rowIndex) |
void |
ConsumerConfigurationInterfaceDropDownListControl.init(Node controlDefinitionNode,
ControlContainer controlContainer,
IControl parentControl) |
void |
LinkToRuntimeTabularDataControl.init(Node controlDefinitionNode,
ControlContainer controlContainer,
IControl parentControl) |
void |
MapDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<?> source,
ITransaction transaction) |
void |
ClonedPortletDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<ITabularSourceField> source,
ITransaction transaction) |
void |
ProducerDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<ITabularSourceField> source,
ITransaction transaction) |
void |
RemotePortletConfigurationInterfaceDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<ITabularSourceField> source,
ITransaction transaction) |
protected abstract Map<?,?> |
MapDataProvider.obtainMapData(SessionConfig sessionConfig,
TabularSource<?> source,
ITransaction transaction)
Provides the Map data for each specific implementation
|
protected Map<?,?> |
PropertiesDataProvider.obtainMapData(SessionConfig sessionConfig,
TabularSource<?> source,
ITransaction transaction) |
void |
ClonePortletProcessActionHandler.processAction() |
void |
ConsumerConfigurationInterfaceProcessActionHandler.processAction() |
void |
RemotePortletConfigurationInterfaceProcessActionHandler.processAction() |
void |
RemoveCloneProcessActionHandler.processAction()
ProcessAction to remove unwanted cloned portlets.
|
protected void |
ClonedPortletUsePostLoadProcessor.processRow(ISourceData row,
String format,
Source<?> source,
SessionConfig sessionConfig,
ITransaction transaction)
Process a single row.
|
protected void |
ClonePortletPostLoadProcessor.processRow(SessionConfig sessionConfig,
ISourceData row,
Source<?> source,
ITransaction transaction)
Process a single row.
|
void |
ClonePortletPostLoadProcessor.processSource(SessionConfig sessionConfig,
Source source,
Node parametersNode,
ITransaction transaction) |
void |
ClonedPortletUsePostLoadProcessor.processSource(SessionConfig sessionConfig,
Source source,
Node parametersNode,
ITransaction transaction) |
protected void |
LinkToRuntimeTabularDataControl.readDefinition(Node controlDefinitionNode,
ControlContainer controlContainer,
IControl parentControl)
Reads the control configuration and sets the control attributes.
|
Modifier and Type | Method and Description |
---|---|
static String |
ProducerEntityManagerFactory.getProducerEntityId(SessionConfig sessionConfig,
String serviceInstanceId,
ITransaction transaction)
Returns the producerEntityId configured for the specified service instance.
|
Modifier and Type | Method and Description |
---|---|
void |
WSRPCheckBoxListControl.buildSubControls()
Deprecated.
|
boolean |
ServiceInterfaceInstanceOwner.checkPermission(SessionConfig sessionConfig,
ServiceInterfaceInstanceConfig serviceInterfaceInstanceConfig,
ServiceInterfaceInstancePermission permission) |
protected String |
ProducerAdminListTabularDataControl.getFieldHyperlink(TabularSource source,
ISourceData row,
String fieldId,
String compositePrimaryKey,
int rowIndex) |
protected int |
RegistrationManagementInterfaceDataProvider.getTotalRows(SessionConfig sessionConfig,
TabularSource source,
ITransaction transaction) |
void |
ProducerConfigurationInterfaceVersionDropDownListControl.init(Node controlDefinitionNode,
ControlContainer controlContainer,
IControl parentControl) |
void |
WSRPCheckBoxListControl.init(Node controlDefinitionNode,
ControlContainer controlContainer,
IControl parentControl)
Deprecated.
|
void |
ProducerService.instanceDeleted(SessionConfig sessionConfig,
ServiceInstanceConfig config,
ITransaction transaction) |
void |
ClonedPortletsListDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<ITabularSourceField> source,
ITransaction transaction) |
void |
PortletModesDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<ITabularSourceField> source,
ITransaction transaction) |
void |
ProducerAdministrationListDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<ITabularSourceField> source,
ITransaction transaction) |
void |
ProducerConfigurationInterfaceDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<ITabularSourceField> source,
ITransaction transaction) |
void |
WindowStatesDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<ITabularSourceField> source,
ITransaction transaction) |
void |
WSRPCheckBoxListControl.loadFromRequest()
Deprecated.
|
protected List<lumis.service.wsrp.producer.RemoteConsumerRegistration> |
RegistrationManagementInterfaceDataProvider.loadObjects(SessionConfig sessionConfig,
TabularSource source,
ITransaction transaction) |
void |
ServiceInterfaceInstanceDeleteObserver.onEvent(IPortalEvent event) |
void |
EditLifetimeProcessActionHandler.processAction() |
void |
OutbandRegistrationInterfaceProcessActionHandler.processAction() |
void |
ProducerAddInterfaceInstanceProcessActionHandler.processAction() |
void |
ProducerAdministrationListDeleteProcessActionHandler.processAction() |
void |
ProducerConfigurationInterfaceProcessActionHandler.processAction() |
void |
RegistrationAdministrationListDeleteProcessActionHandler.processAction() |
void |
ProducerAdministrationListAddButtonControl.setRenderData() |
void |
WSRPCheckBoxListControl.setRenderData()
Deprecated.
|
protected void |
WSRPCheckBoxListControl.setValueFromSource()
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
ISocialNetwork |
ISocialNetworkManager.getSocialNetworkByChannelId(String channelId)
Get an instance of
ISocialProfileConfig based in
ChannelConfig identifier. |
ISocialNetwork |
ISocialNetworkManager.getSocialNetworkByServiceInstanceId(String serviceInstanceId)
Get an instance of
ISocialProfileConfig based in
ServiceInstanceConfig identifier. |
Modifier and Type | Method and Description |
---|---|
ISocialProfile |
ISocialProfileManager.getSocialProfileById(String userId,
ISocialNetwork socialNetwork)
Get an instance of
ISocialProfile based in Social Profile
identifier. |
ISocialProfile |
ISocialProfileProvider.getSocialProfileInformationById(String userId)
Finds the social profile information by the given user id.
|
List<ISocialProfile> |
ISocialProfileProvider.getSocialProfileInformationsByKeyword(String keyword)
Finds the social profile information based on a given keyword.
|
List<ISocialProfile> |
ISocialProfileManager.getSocialProfilesByKeyword(String userId,
ISocialNetwork socialNetwork)
Get a list of
ISocialProfile list of profiles identifier
existing. |
Modifier and Type | Class and Description |
---|---|
class |
ApplicationAccountDisableException
Exception that represents a social network
account or social network application disable.
|
Modifier and Type | Method and Description |
---|---|
String |
ISocialNetworkConnector.buildAuthenticationURL(String callbackURL,
SocialNetworkApplication application,
Map<String,Object> stored)
Builds the Authentication URL for the social network.
|
void |
ISocialNetworkConnector.callback(String returnedValue,
SocialNetworkAccount account,
Map<String,Object> stored)
Executes the callback after application/account authorization.
|
String |
SocialNetworkMessageStatus.getTranslatedString()
Returns the translated string.
|
String |
ISocialNetworkConnector.publish(SocialNetworkMessage message)
Calls the social network's publish method (varies according to network).
|
void |
ISocialNetworkConnector.remove(SocialNetworkMessage message)
Calls the social network's remove method (varies according to network) if
there is one.
|
void |
SocialNetworkMessage.reprocess()
Adds the message back to the queue if there was a problem during
processing in the queue.
|
String |
ISocialNetworkConnector.update(SocialNetworkMessage message)
Calls the social network's update method (varies according to network) if
there is one.
|
Modifier and Type | Method and Description |
---|---|
void |
AbstractMessageAction.AfterRollbackSetErrorStatus.afterRollback() |
void |
MessagePublisher.run()
Low level method that uses ISocialNetworkConnector to publish a message
to the social network.
|
void |
MessageRemover.run()
Low level method that uses ISocialNetworkConnector to remove a message to
the social network.
|
void |
MessageUpdater.run()
Low level method that uses ISocialNetworkConnector to update a message to
the social network.
|
Modifier and Type | Method and Description |
---|---|
String |
FacebookConnector.buildAuthenticationURL(String callbackURL,
SocialNetworkApplication application,
Map<String,Object> stored) |
String |
TwitterConnector.buildAuthenticationURL(String callbackURL,
SocialNetworkApplication application,
Map<String,Object> store) |
void |
FacebookConnector.callback(String returnedValue,
SocialNetworkAccount account,
Map<String,Object> stored) |
void |
TwitterConnector.callback(String returnedValue,
SocialNetworkAccount account,
Map<String,Object> stored) |
com.restfb.Connection<com.restfb.types.Account> |
FacebookConnector.getProfileAccounts(SocialNetworkAccount account)
Get all available accounts for the currently logged in user.
|
String |
FacebookConnector.publish(SocialNetworkMessage message) |
String |
TwitterConnector.publish(SocialNetworkMessage message) |
void |
FacebookConnector.remove(SocialNetworkMessage message) |
void |
TwitterConnector.remove(SocialNetworkMessage message) |
String |
FacebookConnector.update(SocialNetworkMessage message) |
String |
TwitterConnector.update(SocialNetworkMessage message) |
Modifier and Type | Class and Description |
---|---|
class |
UpgradeException
An exception used to represent an exception during upgrade.
|
Modifier and Type | Method and Description |
---|---|
BuildConfig |
IUpgradeManager.executeNextPendingBuild(SessionConfig sessionConfig,
ITransaction transaction)
Executes the next pending build.
|
BuildConfig |
UpgradeManager.executeNextPendingBuild(SessionConfig sessionConfig,
ITransaction transaction) |
Node |
DropTableIfExistsStepHandler.executeStep(SessionConfig sessionConfig,
Node stepNode,
ITransaction transaction) |
Node |
IStepHandler.executeStep(SessionConfig sessionConfig,
Node stepNode,
ITransaction transaction)
Executes a step in the upgrade process.
|
Node |
RegisterServiceStepHandler.executeStep(SessionConfig sessionConfig,
Node stepNode,
ITransaction transaction) |
Node |
RunSqlStepHandler.executeStep(SessionConfig sessionConfig,
Node stepNode,
ITransaction transaction) |
BuildConfig |
IUpgradeDao.getCurrentBuildInfo(ITransaction transaction) |
BuildConfig |
IUpgradeManager.getCurrentBuildInfo(ITransaction transaction)
Get the current build information
|
BuildConfig |
UpgradeDaoJdbc.getCurrentBuildInfo(ITransaction transaction) |
BuildConfig |
UpgradeManager.getCurrentBuildInfo(ITransaction transaction) |
String |
IUpgradeManager.getNextBuild(String userSessionId,
String buildNumber,
String buildSequence,
ITransaction transaction)
Deprecated.
this method may change during a future refactor.
|
String |
UpgradeManager.getNextBuild(String userSessionId,
String buildNumber,
String buildSequence,
ITransaction transaction) |
void |
IUpgradeManager.markUpgradesDone(SessionConfig sessionConfig,
ITransaction transaction)
Marks all pending upgrades as done.
|
void |
UpgradeManager.markUpgradesDone(SessionConfig sessionConfig,
ITransaction transaction) |
void |
UpgradeControllerHtml.rebuildLumisAdministration() |
void |
IUpgradeManager.rebuildLumisAdministration(SessionConfig sessionConfig) |
void |
UpgradeManager.rebuildLumisAdministration(SessionConfig sessionConfig) |
void |
IUpgradeDao.runSql(String sql,
ITransaction transaction) |
void |
UpgradeDaoJdbc.runSql(String sql,
ITransaction transaction) |
void |
IUpgradeDao.setBuildStatus(BuildConfig currentBuild,
String buildStatus,
String userResponse,
String userId,
ITransaction transaction) |
void |
UpgradeDaoJdbc.setBuildStatus(BuildConfig currentBuild,
String buildStatus,
String userResponse,
String userId,
ITransaction transaction) |
void |
IUpgradeManager.setBuildStatus(SessionConfig sessionConfig,
BuildConfig buildConfig,
String buildStatus,
String userResponse,
ITransaction transaction)
Deprecated.
this method may change during a future refactor.
|
void |
UpgradeManager.setBuildStatus(SessionConfig sessionConfig,
BuildConfig buildConfig,
String buildStatus,
String userResponse,
ITransaction transaction) |
Constructor and Description |
---|
BuildConfig(Node buildNode)
Creates a BuildConfig initializing its properties from the given
build xml node.
|
UpgradeControllerHtml(HttpServletRequest request,
HttpServletResponse response,
PageContext pageContext) |
Modifier and Type | Method and Description |
---|---|
Node |
ConsolidateFileContentLocaleIds.executeStep(SessionConfig sessionConfig,
Node stepNode,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
Node |
AdjustWidgetInterfaceInstances.executeStep(SessionConfig sessionConfig,
Node stepNode,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
Node |
CreateWidgetInstances.executeStep(SessionConfig sessionConfig,
Node stepNode,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
Node |
CheckFilePathSize.executeStep(SessionConfig sessionConfig,
Node stepNode,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
Node |
UpdatePageTitleFieldXml.executeStep(SessionConfig sessionConfig,
Node stepNode,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
Node |
DeleteMigreMeUrlShortener.executeStep(SessionConfig sessionConfig,
Node stepNode,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
Node |
AddUserAttributes.executeStep(SessionConfig sessionConfig,
Node stepNode,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
Node |
AddMonUserFromPortalUser.executeStep(SessionConfig sessionConfig,
Node stepNode,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
Node |
WrongFKIndexCorrection.executeStep(SessionConfig sessionConfig,
Node stepNode,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
Node |
CreateLinkInUserSegmentationToPrincipal.executeStep(SessionConfig sessionConfig,
Node stepNode,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
Node |
DropServiceInstanceDepConstraints.executeStep(SessionConfig sessionConfig,
Node stepNode,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
Node |
ConvertUserAttributesToArray.executeStep(SessionConfig sessionConfig,
Node stepNode,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
Node |
AdjustFormBuilderOptionsStep.executeStep(SessionConfig sessionConfig,
Node stepNode,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
Node |
UpdateMonitorUserId.executeStep(SessionConfig sessionConfig,
Node stepNode,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
Node |
RemoveReadOnlyDashBoardLines.executeStep(SessionConfig sessionConfig,
Node stepNode,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
Node |
UpdateUserIdentifierFromDePackage.executeStep(SessionConfig sessionConfig,
Node stepNode,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
Node |
AdjustForumMessageContent.executeStep(SessionConfig sessionConfig,
Node stepNode,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
Node |
ParseForumCitationFormat.executeStep(SessionConfig sessionConfig,
Node stepNode,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
Node |
AdjustWebsiteRootPathsELs.executeStep(SessionConfig sessionConfig,
Node stepNode,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
Node |
CreateChannelSummaryPage.executeStep(SessionConfig sessionConfig,
Node stepNode,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
Node |
ConvertFormBuilderOptions.executeStep(SessionConfig sessionConfig,
Node stepNode,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
Node |
MakeColumnNullableOrNot.executeStep(SessionConfig sessionConfig,
Node stepNode,
ITransaction transaction) |
Node |
RunSqlIfNecessary.executeStep(SessionConfig sessionConfig,
Node stepNode,
ITransaction transaction) |
Modifier and Type | Class and Description |
---|---|
class |
EnumException |
Modifier and Type | Method and Description |
---|---|
static PortalException |
XmlUtil.createPortalException(SAXException e)
Creates a PortalException based on the given SAXException.
|
Modifier and Type | Method and Description |
---|---|
static void |
CookieUtil.addLumisUserCookies(HttpServletRequest request,
HttpServletResponse response)
Adds lumis user information cookies.
|
static void |
CookieUtil.addLumisUserCookies(IServiceInterfaceRequest request,
IServiceInterfaceResponse response)
Adds lumis user information cookies.
|
static Node |
XmlUtil.addNode(Node xmlParentNode,
String xpathExpressionParentNode,
String newNodeName) |
static Node |
XmlUtil.addNodeFromXmlString(Node node,
String xmlString) |
boolean |
ITransaction.addObserver(ITransactionObserver observer)
Adds an observer for this transaction.
|
static Element |
XmlUtil.addTextNode(Node xmlParentNode,
String newNodeName,
String newNodeText) |
static Element |
XmlUtil.addTextNode(Node xmlParentNode,
String xpathExpressionParentNode,
String newNodeName,
String newNodeText) |
static Node[] |
XmlUtil.addTextNodes(Node xmlParentNode,
String newNodesName,
String[] newNodesValue) |
R |
IBiFunction.apply(T t,
U u)
Applies this function to the given arguments.
|
static File |
FileUtil.createDir(String dirPath,
boolean clearIfExists) |
static File |
FileUtil.createFile(String filePath) |
static FileOutputStream |
FileUtil.createFileOutputStream(String filePath) |
protected abstract Transformer |
AbstractSqlGenerator.createTransformer(String sourcePath)
Returns the transformer for the given stylesheet path.
|
protected Transformer |
SqlGenerator.createTransformer(String sourcePath) |
static <T> void |
CollectionExecutor.execute(Collection<T> collection,
CollectionExecutor.IIterationCommand<T> command)
Executes a command on the collection.
|
void |
CollectionExecutor.execute(CollectionExecutor.IIterationCommand<T> command)
Executes a command on the collection in this executor.
|
void |
CollectionExecutor.IIterationCommand.execute(List<T> subItems)
Method call to execute a list of items, that is a sub-list of the
original collection to be processed.
|
static Locale |
LocaleUtil.fromRequest(HttpServletRequest request) |
static Locale |
LocaleUtil.fromString(String locale)
Returns the locale represented by the given string.
|
static Locale |
LocaleUtil.FromString(String locale)
Deprecated.
since 8.1.0 replaced by
LocaleUtil.fromString(String) . |
static String |
JdbcUtil.generateInlineInClause(String fieldName,
Collection<String> values)
Generates a SQL IN statement for a field.
|
String |
AbstractSqlGenerator.generateSql(Document databaseXml,
DatabaseType dbType)
Generates the sql according to the given database definition for the specified database type.
|
String |
AbstractSqlGenerator.generateSql(Document databaseXml,
String dbType) |
static String |
PortalUtil.getCookie(String name,
HttpServletRequest request)
Given a cookie name, the cookie value if exists in the request object is
returned.
|
static Document |
XmlUtil.getDocument(File xmlFile) |
static Document |
XmlUtil.getDocument(IFile xmlFile)
Returns the
Document associated with the given file. |
static Document |
XmlUtil.getDocument(String xmlString) |
static int[] |
PermissionXmlUtil.getImpliedPermissions(String permissions) |
static Node |
XmlUtil.getOrCreateNode(String path,
Node parentNode) |
static DocumentBuilder |
XmlUtil.getXmlDocumentBuilder() |
static Document |
XmlUtil.getXMLDocumentFromString(String xml)
Deprecated.
since 4.2.0 replaced by
XmlUtil.getDocument(String) . |
static String |
XmlUtil.getXmlString(Element element) |
static String |
XmlUtil.getXmlString(Node node)
Returns the xml string representation for a node.
|
static Node |
XmlUtil.importIntoNewDocument(Node originalNode)
Clones a node, and adopts it into a new document.
|
static String |
TextUtil.joinStringCollectionUserFriendly(List<String> listItems)
Build a list, separating terms with the locale-defined separator.
|
static void |
XmlUtil.mergeAttributes(Node destinationNode,
Node sourceNode,
boolean replace) |
static void |
XmlUtil.mergeElements(Node destinationNode,
Node sourceNode,
boolean replace)
Merges the children elements from a node to another.
|
static boolean |
XmlUtil.nodeExists(String xpathExpression,
Node sourceNode) |
long |
StopWatch.pause() |
static String |
JdbcUtil.prepareQueryParameter(String parameter) |
static void |
ScriptPathUtil.processNodes(String basePath,
Node parentNode,
ScriptPathUtil.ProcessEntry... entries)
Process the given
entries using the given node as the base node and the base path for relativizing script paths. |
long |
StopWatch.read() |
static boolean |
XmlUtil.readAttributeBoolean(String attributeName,
Node node) |
static boolean |
XmlUtil.readAttributeBoolean(String attributeName,
Node node,
boolean valueForNull) |
static int |
XmlUtil.readAttributeInt(String attributeName,
Node node,
int valueForNull)
Returns the attribute integer value in the given node.
|
static String |
XmlUtil.readAttributeOrNodeString(Node node,
String fieldName) |
static String |
XmlUtil.readAttributeOrNodeString(Node node,
String fieldName,
String valueForNull) |
static String |
XmlUtil.readAttributeString(String attributeName,
Node node) |
static String |
XmlUtil.readAttributeString(String attributeName,
Node node,
String valueForNull) |
static boolean |
XmlUtil.readNodeBoolean(String xpathExpression,
Node sourceNode,
boolean valueForNull) |
static int |
XmlUtil.readNodeInt(String xpathExpression,
Node sourceNode,
int valueForNull) |
static Integer |
XmlUtil.readNodeInteger(String xpathExpression,
Node sourceNode,
Integer valueForNull) |
static String[] |
XmlUtil.readNodesString(String xpathExpression,
Node sourceNode) |
static String |
XmlUtil.readNodeString(String xpathExpression,
Node sourceNode) |
static String |
XmlUtil.readNodeString(String xpathExpression,
Node sourceNode,
String valueForNull) |
boolean |
ITransaction.removeObserver(ITransactionObserver observer)
Removes an observer for this transaction.
|
static void |
XmlUtil.replaceChildNode(String childNodeName,
Node node,
String xmlString) |
void |
StopWatch.reset() |
void |
IRunnable.run()
Runs some code.
|
static Node[] |
XmlUtil.selectNodes(String childNameQuery,
Node parentNode) |
static Node |
XmlUtil.selectSingleNode(String childNameQuery,
Node parentNode) |
void |
StopWatch.start() |
long |
StopWatch.stop() |
T |
ISupplier.supply()
Returns the supplied value.
|
void |
StopWatch.unpause() |
static void |
TextUtil.writeFile(String filename,
String content,
String charset,
boolean append) |
static Node |
XmlUtil.writeNodeString(String xpathExpression,
Node sourceNode,
String nodeValue) |
Constructor and Description |
---|
AbstractSqlGenerator() |
SqlGenerator() |
Modifier and Type | Method and Description |
---|---|
boolean |
IItemFilter.accept(T value)
Verify if a given value is acceptable by this filter
|
static <V> List<V> |
Lists.filter(List<V> original,
IItemFilter<V> filter)
Returns a list filtered by the current
IItemFilter |
static <V> Set<V> |
Sets.filter(Set<V> original,
IItemFilter<V> filter)
Returns a set filtered by the current
IItemFilter |
static <Type> String |
Collections.stringify(Collection<Type> collection,
IStringify<Type> stringify)
Creates a string representation of the given collection, using its values.
|
static <Type> String |
Collections.stringify(Collection<Type> collection,
String separator,
IStringify<Type> stringify)
Creates a string representation of the given collection, using its values.
|
static <Type> String |
Collections.stringify(Collection<Type> collection,
String prefix,
String suffix,
boolean includePrefixAndSuffixOnlyIfCollectionNotEmpty,
String separator,
IStringify<Type> stringify)
Creates a string representation of the given collection, using its values.
|
static <Type> String |
Collections.stringify(Collection<Type> collection,
String prefix,
String suffix,
String separator,
IStringify<Type> stringify)
Creates a string representation of the given collection, using its values.
|
static <K,V> String |
Maps.stringify(Map<K,V> map,
String separator,
IStringify<Map.Entry<K,V>> stringify)
Creates a string representation of the given map, using its
entries as values. |
static <K,V> String |
Maps.stringify(Map<K,V> map,
String prefix,
String suffix,
boolean includePrefixAndSuffixOnlyIfMapNotEmpty,
String separator,
IStringify<Map.Entry<K,V>> stringify)
Creates a string representation of the given map, using its
entries as values. |
static <K,V> String |
Maps.stringify(Map<K,V> map,
String prefix,
String suffix,
String separator,
IStringify<Map.Entry<K,V>> stringify)
Creates a string representation of the given map, using its
entries as values. |
String |
DummyStringfy.stringify(T object) |
String |
IStringify.stringify(Type object)
Converts a given object in a string representation.
|
static <From,To> Collection<To> |
Collections.transform(Collection<From> original,
Transformer<From,To> transformer)
Returns a new collection using the given transformer to transform the items.
|
To |
Transformer.transform(From from)
Returns the transformed object.
|
static <From,To> List<To> |
Lists.transform(List<From> list,
Transformer<From,To> transformer)
Returns a new
List using the given transformer to transform the original elements into the new ones. |
Modifier and Type | Class and Description |
---|---|
class |
ParseException
Exception for parsing operations.
|
Modifier and Type | Method and Description |
---|---|
int |
IQueryStatement.executeUpdate()
Execute the update or delete query statement.
|
String |
IQueryAdapter.getCreateTableScript(QueryCreateTable queryCreateTable,
ITransaction transaction) |
IQueryStatement |
IQueryAdapter.getDeleteStatement(QueryDelete queryUpdate,
ITransaction transaction) |
IQueryStatement |
IQueryAdapter.getInsertStatement(QueryInsert queryInsert,
ITransaction transaction) |
IQueryStatement |
IQueryAdapter.getSelectCountStatement(QuerySelect querySelect,
ITransaction transaction) |
IQueryStatement |
IQueryAdapter.getSelectStatement(QuerySelect querySelect,
ITransaction transaction) |
Object |
IQueryStatement.getSingleResult()
Return a single instance that matches
the query, or null if the query returns no results.
|
int |
IQueryStatement.getTotalRowCount()
Returns the total number of rows (ignoring
IQueryStatement.setMaxResults(int) ) available. |
IQueryStatement |
IQueryAdapter.getUpdateStatement(QueryUpdate queryUpdate,
ITransaction transaction) |
List |
IQueryStatement.list()
Return the query results as a List.
|
Modifier and Type | Method and Description |
---|---|
protected IQueryStatement |
QueryAdapterHibernate.generateQueryStatementFromSQL(QueryBase query,
String sql,
String sqlForCount,
boolean resultSetScrollable,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
protected IQueryStatement |
GenericQueryAdapterJdbc.generateQueryStatementFromSQL(QueryBase queryBase,
String sql,
String sqlWithoutOrderBy,
boolean resultSetScrollable,
ITransaction transaction) |
String |
GenericQueryAdapterJdbc.getCreateTableScript(QueryCreateTable queryCreateTable,
ITransaction transaction) |
IQueryStatement |
GenericQueryAdapterJdbc.getDeleteStatement(QueryDelete queryDelete,
ITransaction transaction) |
IQueryStatement |
GenericQueryAdapterJdbc.getInsertStatement(QueryInsert queryInsert,
ITransaction transaction) |
IQueryStatement |
GenericQueryAdapterJdbc.getSelectCountStatement(QuerySelect query,
ITransaction transaction) |
IQueryStatement |
GenericQueryAdapterJdbc.getSelectStatement(QuerySelect query,
ITransaction transaction) |
IQueryStatement |
GenericQueryAdapterJdbc.getUpdateStatement(QueryUpdate queryUpdate,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
protected String |
AclManager.add(AccessControlList parentAcl,
HashMap<Integer,Integer> permissionsMap,
int[] implies,
ITransaction transaction) |
void |
AccessControlDaoJdbc.add(AccessControlList acl,
ITransaction transaction) |
void |
AclManager.add(AccessControlList acl,
ITransaction transaction) |
void |
IAccessControlDao.add(AccessControlList acl,
ITransaction transaction)
Add the ACL (Access Control List).
|
void |
IAclManager.add(AccessControlList acl,
ITransaction transaction) |
void |
AccessControlDaoJdbc.addAclEntry(String parentAclId,
AccessControlEntry aclEntry,
ITransaction transaction) |
void |
IAccessControlDao.addAclEntry(String parentAclId,
AccessControlEntry aclEntry,
ITransaction transaction)
Add the ACL entry.
|
void |
AclManager.addOrUpdate(AccessControlList acl,
ITransaction transaction) |
void |
IAclManager.addOrUpdate(AccessControlList acl,
ITransaction transaction) |
boolean |
AclManager.checkPermission(SessionConfig sessionConfig,
String itemId,
IPermission permission,
ITransaction transaction) |
boolean |
IAclManager.checkPermission(SessionConfig sessionConfig,
String itemId,
IPermission permission,
ITransaction transaction)
Verify if the permission is valid for the sessionConfig's user.
|
boolean |
AclManager.checkPermission(SessionConfig sessionConfig,
String userId,
String itemId,
IPermission permission,
ITransaction transaction)
For the given principalId, all the groups that the principal is member of
(recursively) are collected and permission is calculated on this
collection.
|
boolean |
IAclManager.checkPermission(SessionConfig sessionConfig,
String userId,
String itemId,
IPermission permission,
ITransaction transaction)
Verify if the permission if valid for the specified userId.
|
boolean |
AccessControlList.checkPermission(String principalId,
IPermission permission)
Checks if the specified principal has access to the given
permission.
|
protected void |
AclManager.checkRequiredPermissionsInternal(AccessControlList acl)
Checks if the required permissions were given for someone.
|
protected void |
AclManager.cleanupInvalidData(AccessControlList acl) |
void |
AclManager.clearCache(ITransaction transaction) |
void |
IAclManager.clearCache(ITransaction transaction)
Clears all ACL cache.
|
void |
AccessControlDaoJdbc.delete(String aclId,
ITransaction transaction) |
void |
AclManager.delete(String aclId,
ITransaction transaction) |
void |
IAccessControlDao.delete(String aclId,
ITransaction transaction)
Delete the ACL entry.
|
void |
IAclManager.delete(String aclId,
ITransaction transaction)
Deletes an acl.
|
void |
AccessControlDaoJdbc.deleteAclEntry(String aclId,
String principalId,
ITransaction transaction) |
void |
IAccessControlDao.deleteAclEntry(String aclId,
String principalId,
ITransaction transaction)
Delete the ACL entry.
|
void |
AccessControlDaoJdbc.deleteAclEntryByPrincipalId(String principalId,
ITransaction transaction) |
void |
AclManager.deleteAclEntryByPrincipalId(String principalId,
ITransaction transaction) |
void |
IAccessControlDao.deleteAclEntryByPrincipalId(String principalId,
ITransaction transaction)
Delete the ACL list for the specified principal.
|
void |
IAclManager.deleteAclEntryByPrincipalId(String principalId,
ITransaction transaction)
Delete ACL entries in all ACLs for the specified principal.
|
void |
AccessControlDaoJdbc.deleteInheritingEntriesWithoutParent(ITransaction transaction) |
void |
IAccessControlDao.deleteInheritingEntriesWithoutParent(ITransaction transaction)
Deletes all inheriting ACL entries that does not have a parent to
inherit from.
|
protected void |
AccessControlEntry.deserialize(Node aclEntryNode) |
void |
AccessControlList.deserialize(Node accessControlListNode) |
protected void |
Permissions.deserialize(Node permissionsNode) |
String |
AclManager.deserialize(SessionConfig sessionConfig,
DeserializationConfig deserializationConfig,
Node accessControlListNode,
boolean onlyAddSimpleAcls,
ITransaction transaction) |
String |
IAclManager.deserialize(SessionConfig sessionConfig,
DeserializationConfig deserializationConfig,
Node accessControlListNode,
boolean onlyAddSimpleAcls,
ITransaction transaction) |
boolean |
AccessControlDaoJdbc.exists(String aclId,
ITransaction transaction) |
boolean |
AclManager.exists(String aclId,
ITransaction transaction) |
boolean |
IAccessControlDao.exists(String aclId,
ITransaction transaction) |
boolean |
IAclManager.exists(String aclId,
ITransaction transaction) |
abstract AccessControlList |
AclManager.get(SessionConfig sessionConfig,
String id,
ITransaction transaction) |
AccessControlList |
GenericAclManager.get(SessionConfig sessionConfig,
String id,
ITransaction transaction) |
AccessControlList |
AccessControlDaoJdbc.get(String aclId,
ITransaction transaction) |
AccessControlList |
IAccessControlDao.get(String aclId,
ITransaction transaction)
Get the ACL (Access Control List).
|
protected AccessControlEntry[] |
AccessControlDaoJdbc.getAclEntries(String aclId,
ITransaction transaction) |
Collection<String> |
AccessControlDaoJdbc.getAclIdsByPrincipalId(String principalId,
ITransaction transaction) |
Collection<String> |
IAccessControlDao.getAclIdsByPrincipalId(String principalId,
ITransaction transaction)
Get the ACL list for the specified principal.
|
protected abstract AccessControlList |
AclManager.getAclInternal(SessionConfig sessionConfig,
String itemId,
ITransaction transaction) |
protected AccessControlList |
GenericAclManager.getAclInternal(SessionConfig sessionConfig,
String itemId,
ITransaction transaction) |
Collection<String> |
AccessControlDaoJdbc.getIdsByParentId(String parentId,
ITransaction transaction) |
Collection<String> |
IAccessControlDao.getIdsByParentId(String parentId,
ITransaction transaction)
Return the Ids of the ACLs that has the given parentId.
|
static <T extends Enum<T>> |
Permissions.getImplies(Class<T> permissionsEnumClass) |
protected abstract int |
AclManager.getRequiredPermissions() |
protected int |
GenericAclManager.getRequiredPermissions() |
static <T extends IPermission> |
Permissions.getRequiredPermissions(Class<T> permissionsEnumClass) |
void |
GenericAclManager.removeAclEntriesByPrincipalId(SessionConfig sessionConfig,
String principalId,
ITransaction transaction) |
void |
IGenericAclManager.removeAclEntriesByPrincipalId(SessionConfig sessionConfig,
String principalId,
ITransaction transaction) |
void |
AclManager.removeFromCache(String aclId,
ITransaction transaction) |
void |
IAclManager.removeFromCache(String aclId,
ITransaction transaction)
Allows removal of cached items
|
void |
AccessControlList.serialize(AccessControlList accessControlList,
OutputStream outputStream) |
void |
AclManager.serialize(SessionConfig sessionConfig,
String securableId,
OutputStream outputStream,
ITransaction transaction) |
void |
IAclManager.serialize(SessionConfig sessionConfig,
String securableId,
OutputStream outputStream,
ITransaction transaction) |
void |
AccessControlDaoJdbc.update(AccessControlList acl,
ITransaction transaction) |
protected void |
AclManager.update(AccessControlList acl,
ITransaction transaction) |
void |
IAccessControlDao.update(AccessControlList acl,
ITransaction transaction)
Update the ACL (Access Control List).
|
Modifier and Type | Method and Description |
---|---|
protected void |
AclSerializationManager.analyzeExternalDependencies(SerializationContext serializationContext,
ISerializationMessageConfigNodeBuilder serializationMessageConfigNodeBuilder,
AccessControlList dependentAccessControlList) |
protected AccessControlListSerializableConfig |
AclSerializationManager.createSerializableConfig(SerializationContext serializationContext,
AccessControlList accessControlList,
AccessControlListSerializableConfig.AclType aclType,
String objectId) |
void |
AclSerializationManager.deserialize(DeserializationContext deserializationContext,
AccessControlListSerializableConfig accessControlListSerializableConfig) |
void |
IAclSerializationManager.deserialize(DeserializationContext deserializationContext,
AccessControlListSerializableConfig accessControlListSerializableConfig)
Deserialize an access control list.
|
boolean |
AclSerializationManager.persistConfig(DeserializationContext deserializationContext,
Object config,
boolean firstPersistence) |
abstract AccessControlListSerializableConfig |
AclSerializationManager.serialize(SerializationContext serializationContext,
String securableId) |
AccessControlListSerializableConfig |
IAclSerializationManager.serialize(SerializationContext serializationContext,
String securableId)
Serialize an access control list.
|
LumisXP 12.3.0.200408 - Copyright © 2006–2020 Lumis EIP Tecnologia da Informação LTDA. All Rights Reserved.