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
|
protected void |
ChatControllerXml.approveMessage(Node methodNode,
ITransaction transaction) |
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.
|
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.
|
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 |
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 |
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) |
Modifier and Type | Method and Description |
---|---|
void |
AutoLayoutCategorizationAssociationControl.CategorizationTermNamePostLoadProcessor.processSource(SessionConfig sessionConfig,
Source source,
Node parametersNode,
ITransaction transaction) |
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 |
---|---|
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 |
---|---|
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.
|
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.
|
Constructor and Description |
---|
MetaDataController(IProcessActionHandler processActionHandler,
ContentTableSource source,
ITransaction transaction)
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
protected boolean |
ContentGenericListServiceInterface.addDefaultHyperLinks(Node serviceInterfaceDouiDefinitionNode,
Node serviceDouiDefinitionNode,
ITransaction transaction) |
protected IServiceInterfaceUrl |
ContentHyperLinkResolver.createUrl(SessionConfig sessionConfig,
HyperLinkConfig hyperLinkConfig,
String pageId,
ITransaction transaction) |
void |
ContentService.deleteContent(SessionConfig sessionConfig,
ServiceInstanceConfig config,
ITransaction transaction) |
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) |
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(SessionConfig sessionConfig,
String serviceInstanceId,
DeserializationConfig deserializationConfig,
Node node,
ITransaction transaction) |
void |
ContentService.instanceSerialized(SessionConfig sessionConfig,
String serviceInstanceId,
OutputStream outputStream,
ITransaction transaction) |
void |
ContentService.postRegister(SessionConfig sessionConfig,
ServiceConfig serviceConfig,
ITransaction transaction) |
void |
ContentService.preUnregister(SessionConfig sessionConfig,
ITransaction transaction) |
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) |
IServiceInterfaceUrl |
ContentService.resolveHyperLink(SessionConfig sessionConfig,
HyperLinkConfig hyperLinkConfig,
ITransaction transaction) |
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) |
Modifier and Type | Method and Description |
---|---|
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) |
protected void |
ContentServiceSerializationManager.serializeContentMetaData(String query,
String tableName,
ServiceInstanceSerializationContext serviceInstanceSerializationContext,
lumis.content.service.serialization.ContentServiceSerializationManager.ContentSerializableConfig contentConfig,
String serviceInstanceId,
ITransaction transaction) |
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 |
ContentNamePostLoadProcessor.processSource(SessionConfig sessionConfig,
Source source,
Node parametersNode,
ITransaction transaction) |
Modifier and Type | Field and Description |
---|---|
protected ITransaction |
ContentMetaDataController.transaction |
Modifier and Type | Method and Description |
---|---|
QuerySelect |
ContentTableDataProvider.buildQuerySelect(TableSource source,
ITransaction transaction) |
QueryBuilder |
ContentTableDataProvider.createQueryBuilder(IParameters parameters,
TableSource source,
ITransaction transaction) |
protected void |
ContentTableDeleteDataProcessActionHandler.deleteRelatedData(Collection<String> itemIds,
Node currentSourceDefinitionNode,
String foreignPrimaryKeyFieldId,
ITransaction transaction)
Deprecated.
|
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.
|
LegacyContentMetaDataController(IProcessActionHandler processActionHandler,
ContentTableSource source,
ITransaction transaction)
Deprecated.
|
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 | Method and Description |
---|---|
boolean |
IWorkflowManager.autoArchivePublishedContent(ContentLocale contentLocale,
ITransaction transaction)
Used for the automatic content archiving process.
|
boolean |
WorkflowManager.autoArchivePublishedContent(ContentLocale contentLocale,
ITransaction transaction) |
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 |
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 |
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.
|
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) |
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 |
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 |
---|
WorkflowActionExecutedEvent(SessionConfig sessionConfig,
ContentLocale contentLocale,
ContentWorkflowMetaData originalContentWorkflowMetaData,
ContentWorkflowMetaData updatedContentWorkflowMetaData,
ITransaction transaction) |
WorkflowController(IParameters parameters,
ContentTableSource source,
ITransaction transaction) |
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.
|
protected void |
WorkflowSendMailActionHandler.prepareMailObject(SessionConfig sessionConfig,
IMultipleMail mail,
ITransaction transaction)
Method created for classes that extend this action handler to customize the mail sent.
|
void |
WorkflowSendMailActionHandler.preProcessAction(SessionConfig sessionConfig,
ContentLocale contentLocale,
WorkflowTransitionConfig transition,
ContentWorkflowMetaData newWorkflowMetaData,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
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.
|
void |
DouiManager.register(SessionConfig sessionConfig,
String douiConfigPath,
ITransaction transaction) |
void |
IDouiManager.register(SessionConfig sessionConfig,
String douiConfigPath,
ITransaction transaction) |
void |
DouiManager.unregister(SessionConfig sessionConfig,
String serviceId,
ITransaction transaction) |
void |
IDouiManager.unregister(SessionConfig sessionConfig,
String serviceId,
ITransaction transaction) |
Constructor and Description |
---|
DouiContext(IServiceInterfaceRequest request,
IServiceInterfaceResponse response,
ITransaction transaction) |
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) |
Modifier and Type | Method and Description |
---|---|
void |
ControlDaoJdbc.addOrUpdate(ControlConfig definition,
ITransaction daoTransaction) |
void |
IControlDao.addOrUpdate(ControlConfig definition,
ITransaction daoTransaction) |
void |
ControlDaoJdbc.delete(String controlId,
ITransaction daoTransaction) |
void |
IControlDao.delete(String controlId,
ITransaction daoTransaction) |
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) |
protected String |
Control.getScriptActionValidation(Node[] actionNodes,
String formName,
ITransaction portalTransaction) |
protected String |
ValidatorControl.getScriptSetMessages(ITransaction portalTransaction) |
protected String |
ValidatorControl.getScriptSetMessages(String errorType,
ITransaction portalTransaction) |
protected String |
ValidatorControl.getScriptSetMessages(ValidationMessages validationMessages,
ITransaction portalTransaction) |
void |
ControlManager.registerControls(SessionConfig sessionConfig,
String controlTypesDefinitionPath,
ITransaction transaction) |
void |
IControlManager.registerControls(SessionConfig sessionConfig,
String controlTypesDefinitionPath,
ITransaction transaction) |
void |
ControlManager.unregisterControl(SessionConfig sessionConfig,
String controlType,
ITransaction transaction) |
void |
IControlManager.unregisterControl(SessionConfig sessionConfig,
String controlType,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
protected void |
MultiFileUploadControllerHtml.checkForFileUpload(ITransaction transaction)
Checks for upload.
|
Modifier and Type | Method and Description |
---|---|
protected void |
ServiceInstancePrincipalsByPermissionDataProvider.addPrincipal(SessionConfig sessionConfig,
String principalId,
List<PrincipalConfig> principalsPreviouslyIncluded,
String serviceInstanceId,
IPermission p,
ITransaction transaction) |
void |
ServiceInstancePrincipalsByPermissionDataProvider.loadData(SessionConfig sessionConfig,
Source source,
ITransaction transaction) |
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 |
---|---|
protected void |
DouiControlControllerXml.register(Node methodNode,
ITransaction portalTransaction) |
protected void |
DouiControllerXml.register(Node methodNode,
ITransaction portalTransaction) |
protected void |
DouiSourceControllerXml.register(Node methodNode,
ITransaction portalTransaction) |
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) |
Modifier and Type | Field and Description |
---|---|
protected ITransaction |
ProcessActionHandler.transaction |
Modifier and Type | Method and Description |
---|---|
void |
IProcessActionDao.addOrUpdate(ProcessActionConfig definition,
ITransaction daoTransaction) |
void |
ProcessActionDaoJdbc.addOrUpdate(ProcessActionConfig definition,
ITransaction daoTransaction) |
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) |
void |
IProcessActionManager.registerProcessActions(SessionConfig sessionConfig,
String processActionTypesDefinitionPath,
ITransaction transaction) |
void |
ProcessActionManager.registerProcessActions(SessionConfig sessionConfig,
String processActionTypesDefinitionPath,
ITransaction transaction) |
void |
IProcessActionManager.unregisterProcessAction(SessionConfig sessionConfig,
String processActionType,
ITransaction transaction) |
void |
ProcessActionManager.unregisterProcessAction(SessionConfig sessionConfig,
String processActionType,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
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 Set<String> |
SearchDataProvider.getSearchFieldIds(SessionConfig sessionConfig,
SearchSource searchSource,
ITransaction transaction)
Returns the search fields identifiers.
|
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. |
protected ServiceInstanceConfig |
SearchDataProvider.getSearchServiceInstance(SessionConfig sessionConfig,
SearchSource searchSource,
ITransaction transaction)
Returns the search service instance.
|
protected List<SearchQuerySort> |
SearchDataProvider.getSearchSorts(SessionConfig sessionConfig,
SearchSource searchSource,
ServiceInstanceConfig searchServiceInstanceConfig,
ITransaction transaction)
Returns the search's
sorts . |
protected ISearchQueryFilter |
SearchDataProvider.getTargetObjectsSourceFilter(SearchSource source,
ITransaction transaction)
Returns the target objects source id filter.
|
protected String |
SearchDataProvider.getUserQuery(SessionConfig sessionConfig,
SearchSource searchSource,
ITransaction transaction)
Returns the user query to be used in search.
|
void |
SearchDataProvider.loadData(SessionConfig sessionConfig,
SearchSource searchSource,
ITransaction transaction) |
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.
|
Modifier and Type | Method and Description |
---|---|
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 |
DouiGenericListServiceInterface.addDefaultHyperLinks(Node serviceInterfaceDouiDefinitionNode,
Node serviceDouiDefinitionNode,
ITransaction transaction) |
protected boolean |
DouiServiceInterface.addDefaultHyperLinks(Node serviceInterfaceDouiDefinitionNode,
Node serviceDouiDefinitionNode,
ITransaction transaction) |
protected boolean |
DouiServiceInterface.addDetailsHyperLink(Node serviceInterfaceDouiDefinitionNode,
Node serviceDouiDefinitionNode,
ITransaction transaction) |
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.
|
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) |
Node |
DouiServiceInterface.getMenu(SessionConfig sessionConfig,
ServiceInterfaceInstanceConfig config,
ITransaction transaction) |
String |
DouiServiceInterface.getRepositoryMenus(SessionConfig sessionConfig,
ServiceInterfaceInstanceConfig config,
ITransaction transaction) |
void |
DouiService.instanceAdded(SessionConfig sessionConfig,
ServiceInstanceConfig config,
ITransaction transaction) |
void |
DouiService.instanceDeleted(SessionConfig sessionConfig,
ServiceInstanceConfig config,
ITransaction transaction) |
void |
DouiService.postRegister(SessionConfig sessionConfig,
ServiceConfig serviceConfig,
ITransaction transaction) |
void |
DouiService.preUnregister(SessionConfig sessionConfig,
ITransaction transaction) |
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) |
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 |
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.
|
Constructor and Description |
---|
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 |
---|---|
void |
ISourceDao.addOrUpdate(SourceConfig definition,
ITransaction daoTransaction) |
void |
SourceDaoJdbc.addOrUpdate(SourceConfig definition,
ITransaction daoTransaction) |
QuerySelect |
ITableDataProvider.buildQuerySelect(TableSource source,
ITransaction transaction) |
QueryBuilder |
ITableDataProvider.createQueryBuilder(IParameters parameters,
TableSource source,
ITransaction transaction) |
void |
ISourceDao.delete(String sourceId,
ITransaction daoTransaction) |
void |
SourceDaoJdbc.delete(String sourceId,
ITransaction daoTransaction) |
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) |
static Class<? extends IDataProvider> |
DataProviderFactory.getDataProviderClass(Node sourceDefinition,
ITransaction transaction) |
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.
|
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 |
ISourceManager.registerSources(SessionConfig sessionConfig,
String sourceTypesDefinitionPath,
ITransaction transaction) |
void |
SourceManager.registerSources(SessionConfig sessionConfig,
String sourceTypesDefinitionPath,
ITransaction transaction) |
void |
ISourceManager.unregisterSource(SessionConfig sessionConfig,
String sourceType,
ITransaction transaction) |
void |
SourceManager.unregisterSource(SessionConfig sessionConfig,
String sourceType,
ITransaction transaction) |
Constructor and Description |
---|
SourceContext(SessionConfig sessionConfig,
ServiceInstanceConfig serviceInstanceConfig,
ITransaction transaction)
Creates a source context that does not belongs to a doui context.
|
Modifier and Type | Method and Description |
---|---|
static String |
FileDataType.FileDataParser.extract(SessionConfig sessionConfig,
FileConfig fileConfig,
ITransaction transaction) |
static String |
FileDataType.FileDataParser.extract(SessionConfig sessionConfig,
String fileId,
ITransaction transaction) |
static String |
FilesDataType.FilesDataParser.extract(SessionConfig sessionConfig,
String filesId,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
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 | Field and Description |
---|---|
protected ITransaction |
QueryBuilder.transaction |
Modifier and Type | Method and Description |
---|---|
QuerySelect |
TableDataProvider.buildQuerySelect(TableSource source,
ITransaction transaction) |
QueryBuilder |
TableDataProvider.createQueryBuilder(IParameters parameters,
TableSource source,
ITransaction transaction) |
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.
|
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) |
Node |
ITableDao.getTotalInfo(QuerySelect querySelect,
ITransaction transaction) |
Node |
TableDaoJdbc.getTotalInfo(QuerySelect querySelect,
ITransaction transaction) |
void |
TableDataProvider.loadData(SessionConfig sessionConfig,
TableSource source,
ITransaction transaction) |
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. |
Constructor and Description |
---|
QueryBuilder(IParameters parameters,
TableSource source,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
Node |
UnregisterControlTypeStepHandler.executeStep(SessionConfig sessionConfig,
Node stepNode,
ITransaction transaction) |
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) |
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 |
---|---|
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.
|
Modifier and Type | Method and Description |
---|---|
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.
|
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.
|
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() . |
void |
LoginControllerHtml.handleLogin(ITransaction transaction) |
void |
LoginControllerHtml.handleLogout(ITransaction transaction) |
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) . |
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.
|
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 |
---|
SessionEvent(SessionConfig sessionConfig,
Collection<SessionConfig> sessions,
ITransaction transaction) |
SessionExpiredEvent(SessionConfig sessionConfig,
Collection<SessionConfig> sessions,
ITransaction transaction) |
SessionLoginEvent(SessionConfig sessionConfig,
Collection<SessionConfig> sessions,
ITransaction transaction) |
SessionLogoutEvent(SessionConfig sessionConfig,
Collection<SessionConfig> sessions,
ITransaction transaction) |
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.
|
void |
CacheManager.deleteCacheConfig(SessionConfig sessionConfig,
ICacheConfig cacheConfig,
ITransaction transaction) |
void |
ICacheManager.deleteCacheConfig(SessionConfig sessionConfig,
ICacheConfig cacheConfig,
ITransaction transaction)
Deletes a cacheConfig from persistence.
|
ICacheConfig |
CacheManager.getCacheConfig(SessionConfig sessionConfig,
String cacheConfigId,
ITransaction transaction) |
ICacheConfig |
ICacheManager.getCacheConfig(SessionConfig sessionConfig,
String cacheConfigId,
ITransaction transaction)
Returns a persistent cacheConfig instance.
|
void |
PortalCache.remove(String key,
ITransaction transaction)
Removes an entry from the cache now and after the given transaction
ends.
|
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.
|
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.
|
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) |
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) |
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.
|
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.
|
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) . |
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.
|
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.
|
boolean |
ChannelManager.keyExists(SessionConfig sessionConfig,
Object configKey,
Object config,
ITransaction transaction) |
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 |
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 |
---|
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.
|
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) |
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 |
---|---|
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. |
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 |
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.
|
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.
|
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 |
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(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) |
Modifier and Type | Method and Description |
---|---|
IClusterConfig |
JGroupsClusterManager.getClusterConfig(ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
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.
|
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.
|
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 |
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.
|
Modifier and Type | Interface and Description |
---|---|
interface |
ITransactionHibernate
The transaction interface for when the transaction is backed up by hibernate.
|
Modifier and Type | Class and Description |
---|---|
class |
TransactionHibernate
Implements a transaction object
|
Modifier and Type | Method and Description |
---|---|
protected void |
GenericHibernateManualUpdateDao.add(T bean,
ITransaction transaction)
Adds the bean to the persistence layer.
|
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. |
protected List<T> |
GenericHibernateDao.findByCriteria(ITransaction transaction,
org.hibernate.criterion.Criterion... criterions)
Utility find method for subclasses.
|
protected List<T> |
GenericHibernateManualUpdateDao.findByCriteria(ITransaction transaction,
org.hibernate.criterion.Criterion... criterions)
Convenience method for subclasses.
|
protected List<T> |
GenericHibernateDao.findByCriteria(ITransaction transaction,
org.hibernate.criterion.Criterion[] criterions,
org.hibernate.criterion.Order[] orders)
Utility find method for subclasses.
|
protected List<T> |
GenericHibernateManualUpdateDao.findByCriteria(ITransaction transaction,
org.hibernate.criterion.Criterion[] criterions,
org.hibernate.criterion.Order[] orders)
Convenience method for subclasses.
|
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.
|
protected void |
GenericHibernateManualUpdateDao.setReadOnly(ITransaction transaction,
Collection<T> beans)
Sets a collection of beans to read-only state.
|
protected void |
GenericHibernateManualUpdateDao.update(T bean,
ITransaction transaction) |
Modifier and Type | Interface and Description |
---|---|
interface |
ITransactionJdbc
JDBC based Transaction Interface
|
Modifier and Type | Interface and Description |
---|---|
interface |
ITransactionJPA
The transaction interface for when the transaction is backed up by JPA.
|
Modifier and Type | Method and Description |
---|---|
static void |
DeploymentUtil.createChannelComponent(String name,
String channelId,
String exportToPath,
IModule module,
IFile componentDefinitionFile,
ITransaction transaction) |
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.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 |
BaseNotificationConfig.setTransaction(ITransaction transaction)
Deprecated.
|
void |
IPortalEventManager.updateObserver(SessionConfig sessionConfig,
ObserverConfig observerConfig,
ITransaction transaction)
Updates an observer configuration in persistence.
|
void |
PortalEventManager.updateObserver(SessionConfig sessionConfig,
ObserverConfig observerConfig,
ITransaction transaction) |
Constructor and Description |
---|
AbstractTransactionalPortalEvent(SessionConfig sessionConfig,
ITransaction transaction) |
BaseNotificationConfig(SessionConfig sessionConfig,
ITransaction transaction)
Deprecated.
|
Constructor and Description |
---|
PersistenceEvent(SessionConfig sessionConfig,
Class<?> entityClass,
Collection<?> entities,
boolean before,
ITransaction transaction) |
PostAddEvent(SessionConfig sessionConfig,
Class<?> entityClass,
Collection<?> entities,
ITransaction transaction) |
PostAddEvent(SessionConfig sessionConfig,
Class<?> entityClass,
Object entity,
ITransaction transaction) |
PostDeleteEvent(SessionConfig sessionConfig,
Class<?> entityClass,
Collection<?> entities,
ITransaction transaction) |
PostDeleteEvent(SessionConfig sessionConfig,
Class<?> entityClass,
Object entity,
ITransaction transaction) |
PostLoadEvent(SessionConfig sessionConfig,
Class<?> entityClass,
Collection<?> entities,
ITransaction transaction) |
PostLoadEvent(SessionConfig sessionConfig,
Class<?> entityClass,
Object entity,
ITransaction transaction) |
PostUpdateEvent(SessionConfig sessionConfig,
Class<?> entityClass,
List<?> oldEntities,
List<?> entities,
ITransaction transaction) |
PostUpdateEvent(SessionConfig sessionConfig,
Class<?> entityClass,
Object oldEntity,
Object entity,
ITransaction transaction) |
PreAddEvent(SessionConfig sessionConfig,
Class<?> entityClass,
Collection<?> entities,
ITransaction transaction) |
PreAddEvent(SessionConfig sessionConfig,
Class<?> entityClass,
Object entity,
ITransaction transaction) |
PreDeleteEvent(SessionConfig sessionConfig,
Class<?> entityClass,
Collection<?> entities,
ITransaction transaction) |
PreDeleteEvent(SessionConfig sessionConfig,
Class<?> entityClass,
Object entity,
ITransaction transaction) |
PreLoadEvent(SessionConfig sessionConfig,
Class<?> entityClass,
Collection<?> entities,
ITransaction transaction) |
PreLoadEvent(SessionConfig sessionConfig,
Class<?> entityClass,
Object entity,
ITransaction transaction) |
PreUpdateEvent(SessionConfig sessionConfig,
Class<?> entityClass,
List<?> oldEntities,
List<?> newEntities,
ITransaction transaction) |
PreUpdateEvent(SessionConfig sessionConfig,
Class<?> entityClass,
Object oldEntity,
Object entity,
ITransaction transaction) |
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.
|
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.
|
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 |
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 |
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
|
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 |
GroupManager.addOrUpdate(SessionConfig sessionConfig,
GroupConfig groupConfig,
ITransaction transaction) |
void |
IGroupManager.addOrUpdate(SessionConfig sessionConfig,
GroupConfig groupConfig,
ITransaction transaction) |
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.deleteGroupType(SessionConfig sessionConfig,
String groupTypeId,
ITransaction transaction) |
void |
IGroupManager.deleteGroupType(SessionConfig sessionConfig,
String groupTypeId,
ITransaction transaction)
Deletes 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.
|
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.
|
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.
|
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 |
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.
|
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.
|
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) |
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 |
---|---|
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.
|
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.
|
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.
|
Modifier and Type | Method and Description |
---|---|
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 |
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
|
void |
ILocalizationManager.updateCustomString(SessionConfig sessionConfig,
CustomStringConfig customStringConfig,
ITransaction transaction)
Update a specified Custom String
|
void |
LocalizationManager.updateCustomString(SessionConfig sessionConfig,
CustomStringConfig customStringConfig,
ITransaction transaction) |
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 |
---|---|
void |
IMonitorManagerSPI.initializeMonitoringData(ITransaction transaction,
boolean forceEventProcess)
Method called during portal database initialization to populate the
monitoring related data.
|
Modifier and Type | Method and Description |
---|---|
void |
MonitorManager.initializeMonitoringData(ITransaction transaction,
boolean forceEventProcess) |
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) |
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.
|
protected void |
PageControllerXml.clearPageCache(ITransaction portalTransaction) |
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) |
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 |
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) |
protected void |
PageControllerXml.deleteOrphanInterfaces(ITransaction portalTransaction) |
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) |
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 |
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) |
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) |
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.
|
boolean |
IPageDao.hasDependentPages(String pageTemplateId,
ITransaction transaction) |
boolean |
PageDaoHib.hasDependentPages(String pageTemplateId,
ITransaction transaction) |
boolean |
PageManager.keyExists(SessionConfig sessionConfig,
Object configKey,
Object config,
ITransaction transaction) |
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 |
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) |
protected void |
PageControllerXml.updatePageLayout(ITransaction portalTransaction) |
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 |
---|
PageRenderDataChangedEvent(SessionConfig sessionConfig,
Collection<PageConfig> pagesChanged,
ITransaction transaction) |
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) |
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) |
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 | 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) |
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.
|
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) |
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 |
---|---|
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) |
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) |
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) |
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 |
---|---|
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.
|
Modifier and Type | Method and Description |
---|---|
protected ITransaction |
PresentationControllerHtml.processActionIfRequired(ITransaction portalTransaction)
Checks to see if an action is to be processed.
|
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.
|
protected void |
PresentationControllerHtml.prepareForPageRendering(ITransaction portalTransaction)
Performs any initialization required before page rendering.
|
protected ITransaction |
PresentationControllerHtml.processActionIfRequired(ITransaction portalTransaction)
Checks to see if an action is to be processed.
|
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.
|
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.setWebResource(ITransaction transaction)
Sets
PresentationControllerHtml.webResource with the web resource instance for the
current request. |
protected AccessError |
PresentationControllerHtml.validatePageAccess(ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
protected ServiceInterfaceInstanceConfig |
AbstractPageBodyMiddleComponent.getServiceInterfaceInstanceConfigForRendering(String serviceInterfaceInstanceId,
ITransaction transaction)
Returns the Interface instance config to be rendered.
|
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 |
---|---|
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) |
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) |
boolean |
PrincipalManager.keyExists(SessionConfig sessionConfig,
Object configKey,
Object config,
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 |
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 |
---|---|
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 |
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) |
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) |
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 |
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 |
---|---|
void |
ISendMailDao.addMailToSendQueue(IMultipleMail mail,
String queueId,
ITransaction transaction)
Adds an mail to the send queue.
|
void |
ISendMailDao.addMailToSendQueue(ISingleMail mail,
String queueId,
ITransaction transaction)
Adds an mail to the send queue.
|
void |
ISendMailDao.deleteMail(String mailId,
ITransaction transaction)
Deletes the whole mail structure, including the body, attachments, destinations.
|
void |
ISendMailDao.deleteMailBody(String mailId,
ITransaction transaction)
Deletes the whole mail's body, including the body message and the attachments.
|
void |
ISendMailDao.deleteMailDestination(String mailDestinationId,
ITransaction transaction)
Deletes the mail destination.
|
IMailConfig |
ISendMailDao.getMailConfig(ITransaction transaction)
Returns the IMailConfig containing the configurations for sending e-mails.
|
void |
ISendMailDao.setMailConfig(IMailConfig mailConfig,
ITransaction transaction)
Sets the IMailConfig containing the configurations for sending e-mails.
|
Modifier and Type | Method and Description |
---|---|
void |
SendMailDaoHib.addMailToSendQueue(IMultipleMail mail,
String queueId,
ITransaction transaction) |
void |
SendMailDaoHib.addMailToSendQueue(ISingleMail mail,
String queueId,
ITransaction transaction) |
void |
SendMailDaoHib.deleteMail(String mailId,
ITransaction transaction) |
void |
SendMailDaoHib.deleteMailBody(String mailId,
ITransaction transaction) |
void |
SendMailDaoHib.deleteMailDestination(String mailDestinationId,
ITransaction transaction) |
IMailConfig |
SendMailDaoHib.getMailConfig(ITransaction transaction) |
void |
SendMailDaoHib.setMailConfig(IMailConfig mailConfig,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
void |
SmtpMailSender.sendMail(SessionConfig sessionConfig,
ISingleMail mail,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
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) |
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) |
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) |
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) |
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) |
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.setTransaction(ITransaction transaction) |
void |
DeserializationContext.setTransaction(ITransaction transaction) |
void |
ExternalDependencyLocalizer.setTransaction(ITransaction transaction) |
void |
SerializationContext.setTransaction(ITransaction transaction) |
Constructor and Description |
---|
BaseSerializationContext(SessionConfig sessionConfig,
ITransaction transaction,
String rootChannelId,
IDirectory directory,
boolean progressEnabled,
boolean includeContent) |
DeserializationContext(SessionConfig sessionConfig,
ITransaction transaction,
String rootChannelId,
IDirectory directory,
boolean createNewIds,
boolean updateIfElementExists,
boolean importAsChild,
boolean deleteExistingElements,
boolean simulation,
DeserializationContext.ExistingStyleAction existingStyleAction,
boolean progressEnabled,
boolean includeContent) |
ExternalDependencyLocalizer(SessionConfig sessionConfig,
ITransaction transaction) |
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 |
---|---|
boolean |
IConfigKeyChecker.keyExists(SessionConfig sessionConfig,
Object configKey,
Object config,
ITransaction transaction)
Checks if configId matches an already persisted object
|
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.
|
boolean |
IServiceDao.delete(String serviceId,
ITransaction transaction)
Delete the service.
|
boolean |
ServiceDaoHib.delete(String serviceId,
ITransaction transaction) |
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) |
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(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 |
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(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.
|
boolean |
ServiceManager.keyExists(SessionConfig sessionConfig,
Object configKey,
Object config,
ITransaction transaction) |
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 |
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 |
---|
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) |
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 |
---|---|
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 | Method and Description |
---|---|
ITransaction |
ServiceContainer.processServiceInterfaceInstanceAction(ServiceContainerActionRequest actionRequest,
ServiceContainerActionResponse actionResponse,
ITransaction portalTransaction)
Processes the action for a service interface instance.
|
Modifier and Type | Method and Description |
---|---|
protected String |
ServiceContainer.getAccessDeniedOutput(ServiceContainerRenderRequest renderRequest,
ITransaction portalTransaction) |
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 |
ServiceContainerUrl.getWindowOpen(ITransaction transaction)
Deprecated.
since 8.2.0 replaced by
ServiceContainerUrl.getOpenScript(IServiceInterfaceRequest, String, ITransaction) |
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.
|
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 |
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) |
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) |
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) |
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<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) |
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 |
ServiceInstanceManager.keyExists(SessionConfig sessionConfig,
Object configKey,
Object config,
ITransaction transaction) |
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 |
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) |
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) |
ServiceInstancePermissions |
IServiceInstanceAclManager.getPermissions(SessionConfig sessionConfig,
String serviceId,
ITransaction transaction) |
ServiceInstancePermissions |
ServiceInstanceAclManager.getPermissions(SessionConfig sessionConfig,
String serviceId,
ITransaction transaction) |
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) |
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) |
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) |
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) |
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) |
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) |
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
|
boolean |
ServiceInterfaceManager.keyExists(SessionConfig sessionConfig,
Object configKey,
Object config,
ITransaction transaction) |
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 |
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 |
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) |
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) |
protected void |
ServiceInterfaceListControllerXml.getServiceInterfaceList(Node methodNode,
ITransaction portalTransaction) |
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) |
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) |
Modifier and Type | Method and Description |
---|---|
static void |
ServiceInterfaceStyleDao.addOrUpdate(ServiceInterfaceStyleConfig serviceInterfaceStyleConfig,
ITransaction daoTransaction) |
static void |
ServiceInterfaceStyleDao.addStyleCacheConfig(StyleCacheConfig styleCacheConfig,
ITransaction transaction) |
static void |
ServiceInterfaceStyleDao.delete(String serviceInterfaceStyleId,
String serviceInterfaceId,
ITransaction daoTransaction) |
static void |
ServiceInterfaceStyleDao.deleteStyleCacheConfig(String fileName,
ITransaction transaction) |
static ServiceInterfaceStyleConfig |
ServiceInterfaceStyleDao.get(String serviceInterfaceStyleId,
String serviceInterfaceId,
ITransaction daoTransaction) |
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) |
static StyleCacheConfig |
ServiceInterfaceStyleDao.getStyleCacheConfig(String fileName,
ITransaction transaction) |
static ServiceInterfaceStyleConfig |
ServiceInterfaceStyleDao.getWidgetStyle(String serviceInterfaceId,
ITransaction transaction) |
static void |
ServiceInterfaceStyleDao.updateStyleCacheConfig(StyleCacheConfig styleCacheConfig,
ITransaction transaction) |
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 | 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
|
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.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) |
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.
|
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) |
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) |
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) |
String |
IServiceInterfaceInstanceManager.getTitle(ServiceInterfaceInstanceConfig serviceInterfaceInstanceConfig,
ITransaction transaction)
Returns the title for a service interface instance.
|
String |
ServiceInterfaceInstanceManager.getTitle(ServiceInterfaceInstanceConfig serviceInterfaceInstanceConfig,
ITransaction transaction) |
boolean |
ServiceInterfaceInstanceManager.isDerivedFromTemplate(SessionConfig sessionConfig,
ServiceInterfaceInstanceConfig serviceInterfaceInstanceConfig,
ITransaction transaction)
Verify whether service interface instance is derived from a channel template or page template.
|
boolean |
ServiceInterfaceInstanceManager.keyExists(SessionConfig sessionConfig,
Object configKey,
Object config,
ITransaction transaction) |
protected void |
ServiceInterfaceInstanceControllerXml.refreshInterfaceInstance(Node methodNode,
ITransaction portalTransaction) |
protected void |
ServiceInterfaceInstanceControllerHtml.renderOutput(ServiceContainerRenderRequest renderRequest,
ServiceContainerRenderResponse renderResponse,
Map<String,String> originalMap,
ITransaction portalTransaction) |
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) |
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 |
---|
ServiceInterfaceInstanceRenderDataChangedEvent(SessionConfig sessionConfig,
Collection<ServiceInterfaceInstanceConfig> interfaceInstancesChanged,
ITransaction transaction) |
Modifier and Type | Interface and Description |
---|---|
interface |
ITransaction
Represents a transaction that offers persistence access.
|
Modifier and Type | Interface and Description |
---|---|
interface |
ITransactionSPI
The transaction interface used internally by the portal framework.
|
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) |
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) |
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) |
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 |
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) |
Modifier and Type | Method and Description |
---|---|
static SessionConfig |
WebServiceUtil.getSessionConfig(String sessionId,
ITransaction transaction)
Get a
SessionConfig object for a sessionId. |
Modifier and Type | Method and Description |
---|---|
void |
WebsiteManager.moveServiceInstanceFiles(String serviceInstanceId,
IWebsite newWebsite,
IWebsite oldWebsite,
ITransaction transaction)
Moves the service instance files from the old website to the new one.
|
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) |
Modifier and Type | Method and Description |
---|---|
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) |
void |
ActivityStreamService.postRegister(SessionConfig sessionConfig,
ServiceConfig serviceConfig,
ITransaction transaction) |
void |
ActivityStreamService.postUnregister(SessionConfig sessionConfig,
ITransaction transaction) |
void |
ActivityPostLoadProcessor.processSource(SessionConfig sessionConfig,
Source source,
Node parametersNode,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
Collection<String> |
AlbumDaoJdbc.getAlbumPhotos(String albumId,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
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(SessionConfig sessionConfig,
String serviceInstanceId,
DeserializationConfig deserializationConfig,
Node node,
ITransaction transaction) |
void |
AnalyticsService.instanceSerialized(SessionConfig sessionConfig,
String serviceInstanceId,
OutputStream outputStream,
ITransaction transaction) |
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 |
---|---|
void |
ExpirationTimeCacheUnitsOptionsDataProvider.loadData(SessionConfig sessionConfig,
T source,
ITransaction transaction) |
void |
UserSegmentationFieldsCSVDataProvider.loadData(SessionConfig sessionConfig,
T source,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
void |
AssociationDataProvider.loadData(SessionConfig sessionConfig,
Source source,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
QueryBuilder |
LastContentsDataProvider.createQueryBuilder(IParameters parameters,
TableSource source,
ITransaction transaction) |
QueryBuilder |
WorkFlowStatusDataProvider.createQueryBuilder(IParameters parameters,
TableSource source,
ITransaction transaction) |
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(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) |
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 |
---|---|
protected void |
BannerLogger.generateLogURI(HttpServletRequest request,
StringBuilder logOutput,
SessionConfig sessionConfig,
PageConfig pageConfig,
ITransaction transaction) |
BannerConfig |
BannerDaoJdbc.get(String bannerId,
ITransaction transaction) |
BannerCategoryConfig |
BannerDaoJdbc.getCategory(String bannerCategoryId,
ITransaction transaction) |
Collection<String> |
BannerDaoJdbc.getCategoryBanners(String bannerCategoryId,
ITransaction transaction) |
void |
BannerPropertiesDataProvider.loadData(SessionConfig sessionConfig,
Source<?> source,
ITransaction transaction) |
void |
BannerDataProvider.loadData(SessionConfig sessionConfig,
TableSource source,
ITransaction transaction) |
protected void |
BannerController.renderOutput(ServiceContainerRenderRequest renderRequest,
ServiceContainerRenderResponse renderResponse,
Map<String,String> originalMap,
ITransaction portalTransaction) |
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 |
---|---|
ColRequestConfig |
ColDaoJdbc.getRequest(String requestId,
ITransaction transaction) |
ColRequestConfig |
ColDaoJdbc.getRequestByConversationId(String conversationId,
ITransaction transaction) |
void |
CheckAttendingHoursDataProvider.loadData(SessionConfig sessionConfig,
Source source,
ITransaction transaction) |
void |
ColDaoJdbc.updateRequest(ColRequestConfig requestConfig,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
void |
AssociatedTermsDataProvider.loadData(SessionConfig sessionConfig,
Source source,
ITransaction transaction) |
void |
TermContentsDataProvider.loadData(SessionConfig sessionConfig,
Source source,
ITransaction transaction) |
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) |
Modifier and Type | Method and Description |
---|---|
void |
ChannelGeneratorDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<?> source,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
void |
ChatRoomHistoryDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<?> source,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
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 |
---|---|
void |
CommentItService.instanceDeleted(SessionConfig sessionConfig,
ServiceInstanceConfig serviceInstanceConfig,
ITransaction transaction) |
void |
CommentItService.postRegister(SessionConfig sessionConfig,
ServiceConfig serviceConfig,
ITransaction transaction) |
void |
CommentItService.postUnregister(SessionConfig sessionConfig,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
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) |
Modifier and Type | Method and Description |
---|---|
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) |
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) |
Modifier and Type | Method and Description |
---|---|
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 |
AdminSocialNetworkMessagesPostLoadProcessor.processSource(SessionConfig sessionConfig,
Source source,
Node parametersNode,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
void |
ContentVersionsDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<?> source,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
void |
SourceResumeDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<?> source,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
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.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 |
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.
|
Modifier and Type | Method and Description |
---|---|
void |
DouiFieldsDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<?> source,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
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) |
Modifier and Type | Method and Description |
---|---|
void |
CustomFiltersDataProvider.loadData(SessionConfig sessionConfig,
Source source,
ITransaction transaction) |
void |
FiltersInformationDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<?> source,
ITransaction transaction) |
void |
FilterableFieldsPostLoadProcessor.processSource(SessionConfig sessionConfig,
Source source,
Node parametersNode,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
void |
HtmlTemplateCheckPermissionDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<?> source,
ITransaction transaction) |
void |
HtmlTemplateDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<?> source,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
void |
OrderByDataProvider.loadData(SessionConfig sessionConfig,
Source source,
ITransaction transaction) |
void |
OrderableFieldsDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<?> source,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
void |
CallerInterfaceInstancePreferencesDataProvider.loadData(SessionConfig sessionConfig,
Source<?> source,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
void |
InheritedPropertiesDataProvider.loadData(SessionConfig sessionConfig,
TableSource source,
ITransaction transaction) |
void |
LocalPropertiesDataProvider.loadData(SessionConfig sessionConfig,
TableSource source,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
void |
EventCalendarDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<?> source,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
void |
IsFormPublishedPostLoadProcessor.processSource(SessionConfig sessionConfig,
Source source,
Node parametersNode,
ITransaction transaction) |
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. |
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. |
ForumTopicConfig |
ForumDaoJdbc.getTopic(String topicId,
ITransaction transaction)
Gets the
ForumTopicConfig for the specified topicId. |
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 |
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) |
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 |
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) |
Modifier and Type | Method and Description |
---|---|
void |
OrderGlossaryListPostLoadProcessor.processSource(SessionConfig sessionConfig,
Source source,
Node parametersNode,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
void |
PrefixRemovalPostLoadProcessor.processSource(SessionConfig sessionConfig,
Source source,
Node parametersNode,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
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) |
boolean |
HtmlService.usesDocumentService(ITransaction transaction) |
boolean |
HtmlService.usesImageService(ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
protected IServiceInterfaceUrl |
HtmlContentHyperLinkResolver.createUrl(SessionConfig sessionConfig,
HyperLinkConfig hyperLinkConfig,
String pageId,
ITransaction transaction) |
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 List<HtmlInjectionConfig> |
HtmlInjectorsDataProvider.loadObjects(SessionConfig sessionConfig,
TabularSource<?> source,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
void |
LikeItService.instanceDeleted(SessionConfig sessionConfig,
ServiceInstanceConfig serviceInstanceConfig,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
LinkCategoryConfig |
LinkDaoJdbc.getCategory(String bannerCategoryId,
ITransaction transaction) |
Collection<String> |
LinkDaoJdbc.getCategoryLinks(String linkCategoryId,
ITransaction transaction) |
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) |
Modifier and Type | Method and Description |
---|---|
protected void |
MediaDeleteProcessActionHandler.deleteRelatedData(Collection<String> itemIdsTemp,
Node currentSourceDefinitionNode,
String foreignPrimaryKeyFieldId,
ITransaction transaction)
Includes the recursive deletion of the children of the selected items.
|
void |
MediaFolderDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<?> source,
ITransaction transaction) |
void |
MediaInfoFetcherPostLoadProcessor.processSource(SessionConfig sessionConfig,
Source source,
Node parametersNode,
ITransaction transaction) |
void |
MediaStatusPostLoadProcessor.processSource(SessionConfig sessionConfig,
Source source,
Node parametersNode,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
void |
MediaAlbumEscapeQuoteCharPostLoadProcessor.processSource(SessionConfig sessionConfig,
Source source,
Node parametersNode,
ITransaction transaction) |
void |
MediaPermalinkPostLoadProcessor.processSource(SessionConfig sessionConfig,
Source source,
Node parametersNode,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
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(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) |
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) |
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) |
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) |
Modifier and Type | Method and Description |
---|---|
void |
PagePersonalizationService.instanceDeleted(SessionConfig sessionConfig,
ServiceInstanceConfig config,
ITransaction transaction) |
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 |
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 |
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 |
ActivityPostLoadProcessor.processSource(SessionConfig sessionConfig,
Source source,
Node parametersNode,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
void |
ParentItemAreaTagDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<ITabularSourceField> source,
ITransaction transaction) |
void |
AreaTagInheritedPostLoadProcessor.processSource(SessionConfig sessionConfig,
Source source,
Node parametersNode,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
void |
AuditConfigDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<?> source,
ITransaction transaction) |
void |
StringReplacePostLoadProcessor.processSource(SessionConfig sessionConfig,
Source source,
Node parametersNode,
ITransaction transaction) |
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) |
Modifier and Type | Method and Description |
---|---|
void |
BusinessContextCacheUsageDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<?> source,
ITransaction transaction) |
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) |
Modifier and Type | Method and Description |
---|---|
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 |
ChannelPropertyBagPostLoadProcessor.processSource(SessionConfig sessionConfig,
Source source,
Node parametersNode,
ITransaction transaction) |
void |
GoogleAnalyticsInheritancePostLoadProcessor.processSource(SessionConfig sessionConfig,
Source source,
Node parametersNode,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
boolean |
ChannelAclControl.canInheritPermissions(ITransaction transaction) |
boolean |
ChannelAclControl.checkPermission(ITransaction transaction) |
AccessControlList |
ChannelAclControl.getAcl(ITransaction transaction) |
String |
ChannelAclControl.getDefaultPermission(ITransaction transaction) |
Node |
ChannelAclControl.getPermissionsNode(ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
void |
ChannelPathDataProvider.loadData(SessionConfig sessionConfig,
TableSource source,
ITransaction transaction) |
void |
ChannelTemplatePostLoadProcessor.processSource(SessionConfig sessionConfig,
Source source,
Node parametersNode,
ITransaction transaction) |
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) |
Modifier and Type | Method and Description |
---|---|
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) |
Modifier and Type | Method and Description |
---|---|
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 |
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 |
---|---|
void |
ServiceDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<?> source,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
void |
DisplayFileInfosPostLoad.processSource(SessionConfig sessionConfig,
Source source,
Node parametersNode,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
Collection<String> |
FileMimeTypeDaoJdbc.getIdByMimeType(String mimeType,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
void |
FileSystemDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<?> source,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
abstract boolean |
GenericAclControl.canInheritPermissions(ITransaction transaction) |
abstract boolean |
GenericAclControl.checkPermission(ITransaction transaction) |
abstract AccessControlList |
GenericAclControl.getAcl(ITransaction transaction) |
abstract String |
GenericAclControl.getDefaultPermission(ITransaction transaction) |
abstract Node |
GenericAclControl.getPermissionsNode(ITransaction transaction) |
void |
PrincipalPostLoadProcessor.processSource(SessionConfig sessionConfig,
Source source,
Node parametersNode,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
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) |
Modifier and Type | Method and Description |
---|---|
boolean |
GroupAclControl.canInheritPermissions(ITransaction transaction) |
boolean |
GroupAclControl.checkPermission(ITransaction transaction) |
AccessControlList |
GroupAclControl.getAcl(ITransaction transaction) |
String |
GroupAclControl.getDefaultPermission(ITransaction transaction) |
Node |
GroupAclControl.getPermissionsNode(ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
void |
DatabaseViewAvailableFieldsDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<?> source,
ITransaction transaction) |
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 |
RestorePointsDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<?> source,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
void |
StepDetailsDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<?> source,
ITransaction transaction) |
void |
StepsDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<?> source,
ITransaction transaction) |
void |
ProcessPostLoadProcessor.processSource(SessionConfig sessionConfig,
Source source,
Node parametersNode,
ITransaction transaction) |
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 |
---|---|
ITransaction |
AddMobileAppProcessActionHandler.getTransaction() |
ITransaction |
EditMobileAppProcessActionHandler.getTransaction() |
Modifier and Type | Method and Description |
---|---|
void |
UserAttributesOptionsDataProvider.loadData(SessionConfig sessionConfig,
TabularSource source,
ITransaction transaction) |
void |
LoginPostLoadProcessor.processSource(SessionConfig sessionConfig,
Source source,
Node parametersNode,
ITransaction transaction) |
void |
MonitorConfigurationOptionPostLoadProcessor.processSource(SessionConfig sessionConfig,
Source source,
Node parametersNode,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
void |
MonitoringDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<?> source,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
void |
PagePropertyBagPostLoadProcessor.processSource(SessionConfig sessionConfig,
Source source,
Node parametersNode,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
boolean |
PageAclControl.canInheritPermissions(ITransaction transaction) |
boolean |
PageAclControl.checkPermission(ITransaction transaction) |
AccessControlList |
PageAclControl.getAcl(ITransaction transaction) |
String |
PageAclControl.getDefaultPermission(ITransaction transaction) |
Node |
PageAclControl.getPermissionsNode(ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
void |
DefaultStartDateDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<?> source,
ITransaction transaction) |
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 |
PageLinkURLsFieldPostLoadProcessor.processSource(SessionConfig sessionConfig,
Source source,
Node parametersNode,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
void |
PageTemplatePostLoadProcessor.processSource(SessionConfig sessionConfig,
Source source,
Node parametersNode,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
boolean |
PageTemplateAclControl.canInheritPermissions(ITransaction transaction) |
boolean |
PageTemplateAclControl.checkPermission(ITransaction transaction) |
AccessControlList |
PageTemplateAclControl.getAcl(ITransaction transaction) |
String |
PageTemplateAclControl.getDefaultPermission(ITransaction transaction) |
Node |
PageTemplateAclControl.getPermissionsNode(ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
boolean |
PortalAclControl.canInheritPermissions(ITransaction transaction) |
boolean |
PortalAclControl.checkPermission(ITransaction transaction) |
AccessControlList |
PortalAclControl.getAcl(ITransaction transaction) |
String |
PortalAclControl.getDefaultPermission(ITransaction transaction) |
Node |
PortalAclControl.getPermissionsNode(ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
void |
QueueStatisticsDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<?> source,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
protected List<IMailConfig> |
MailConfigDataProvider.loadObjects(SessionConfig sessionConfig,
TabularSource source,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
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) |
Modifier and Type | Method and Description |
---|---|
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) |
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 |
AdminServicePostLoadProcessor.processSource(SessionConfig sessionConfig,
Source source,
Node parametersNode,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
boolean |
ServiceAclControl.canInheritPermissions(ITransaction transaction) |
boolean |
ServiceAclControl.checkPermission(ITransaction transaction) |
AccessControlList |
ServiceAclControl.getAcl(ITransaction transaction) |
String |
ServiceAclControl.getDefaultPermission(ITransaction transaction) |
Node |
ServiceAclControl.getPermissionsNode(ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
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 |
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) |
Modifier and Type | Method and Description |
---|---|
boolean |
ServiceInstanceAclControl.canInheritPermissions(ITransaction transaction) |
boolean |
ServiceInstanceAclControl.checkPermission(ITransaction transaction) |
AccessControlList |
ServiceInstanceAclControl.getAcl(ITransaction transaction) |
String |
ServiceInstanceAclControl.getDefaultPermission(ITransaction transaction) |
Node |
ServiceInstanceAclControl.getPermissionsNode(ITransaction transaction) |
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 |
CacheConfigurationPostLoadProcessor.processSource(SessionConfig sessionConfig,
Source source,
Node parametersNode,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
void |
ServiceSearchIndexDataProvider.loadData(SessionConfig sessionConfig,
Source source,
ITransaction transaction) |
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 |
LayoutFileDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<?> source,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
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) |
Modifier and Type | Method and Description |
---|---|
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 |
---|---|
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 |
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) |
Modifier and Type | Method and Description |
---|---|
protected List<ITheme> |
ThemeEditorResource.getEditableThemes(PageConfig page,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
void |
UserEnvironmentConfigurationDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<?> source,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
void |
ExpirationTimeCacheUnitsOptionsDataProvider.loadData(SessionConfig sessionConfig,
T source,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
void |
WebResourceRedirectionDataProvider.loadData(SessionConfig sessionConfig,
TableSource source,
ITransaction transaction) |
void |
WebResourcePostLoadProcessor.processSource(SessionConfig sessionConfig,
Source source,
Node parametersNode,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
void |
WebsitePriorityDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<? extends ITabularSourceField> source,
ITransaction transaction) |
void |
WebsitePostLoadProcessor.processSource(SessionConfig sessionConfig,
Source source,
Node parametersNode,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
void |
XslCacheDataProvider.loadData(SessionConfig sessionConfig,
TableSource source,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
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 |
InterfaceInstanceStyleNamePostLoadProcessor.processSource(SessionConfig sessionConfig,
Source source,
Node parametersNode,
ITransaction transaction) |
void |
StyleDependencyPostLoadProcessor.processSource(SessionConfig sessionConfig,
Source source,
Node parametersNode,
ITransaction transaction) |
protected void |
XsltResultControllerHtml.renderPageUserMode(ITransaction portalTransaction) |
protected void |
XsltResultControllerHtml.setPageMode(ITransaction portalTransaction) |
protected void |
XsltResultControllerHtml.setWebResource(ITransaction transaction)
Sets
PresentationControllerHtml.webResource with the web resource instance for the
current request. |
Modifier and Type | Method and Description |
---|---|
void |
PrivacyTermSourcePostLoadProcessor.processSource(SessionConfig sessionConfig,
Source source,
Node parametersNode,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
void |
QuestionTableDataProvider.loadData(SessionConfig sessionConfig,
TableSource source,
ITransaction transaction) |
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) |
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) |
protected void |
RssManager.prepare(RssConfig rssConfig,
ITransaction transaction)
Prepare data and validate to insert in table
|
void |
RssPostLoadProcessor.processSource(SessionConfig sessionConfig,
Source source,
Node parametersNode,
ITransaction transaction) |
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 |
---|---|
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) |
Modifier and Type | Method and Description |
---|---|
void |
RobotsTxtDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<?> source,
ITransaction transaction) |
void |
RobotsTxtServedUrlsDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<?> source,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
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.
|
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 |
---|---|
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.
|
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 |
SocialNetworkIntegrationService.instanceDeleted(SessionConfig sessionConfig,
ServiceInstanceConfig config,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
void |
SocialNetworkAccountAddFacebookProfileDataProvider.loadData(SessionConfig sessionConfig,
Source<?> source,
ITransaction transaction) |
void |
ServiceInstancePublishingToSocialNetworksDataProvider.loadData(SessionConfig sessionConfig,
TableSource source,
ITransaction transaction) |
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 |
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 |
CommentsListPostLoadProcessor.processSource(SessionConfig sessionConfig,
Source source,
Node parametersNode,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
void |
SocialProfileDataProvider.loadData(SessionConfig sessionConfig,
TableSource source,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
void |
TagService.instanceDeleted(SessionConfig sessionConfig,
ServiceInstanceConfig config,
ITransaction transaction) |
void |
GenericServiceInstancesTagListDataProvider.loadData(SessionConfig sessionConfig,
T source,
ITransaction transaction) |
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 |
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) |
Modifier and Type | Method and Description |
---|---|
void |
WebServiceViewerConfigurationDataProvider.loadData(SessionConfig sessionConfig,
Source source,
ITransaction transaction) |
void |
WebServiceViewerParametersDataProvider.loadData(SessionConfig sessionConfig,
Source source,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
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(SessionConfig sessionConfig,
String serviceInstanceId,
DeserializationConfig deserializationConfig,
Node node,
ITransaction transaction) |
void |
WikiContentVersionDataProvider.loadData(SessionConfig sessionConfig,
TabularSource<?> source,
ITransaction transaction) |
boolean |
WikiService.usesWidgetRepository(ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
void |
SelectServiceInstanceWorkflowDataProvider.loadData(SessionConfig sessionConfig,
Source source,
ITransaction transaction) |
void |
WorkflowSendToUsersDataProvider.loadData(SessionConfig sessionConfig,
Source source,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
void |
WSRPConsumerService.instanceDeleted(SessionConfig sessionConfig,
ServiceInstanceConfig serviceInstanceConfig,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
protected String |
ClonePortletPostLoadProcessor.getPortletCloneName(SessionConfig sessionConfig,
String originalName,
Source<?> source,
ITransaction transaction)
Returns the portlet clone processed name.
|
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) |
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) |
Modifier and Type | Method and Description |
---|---|
protected int |
RegistrationManagementInterfaceDataProvider.getTotalRows(SessionConfig sessionConfig,
TabularSource source,
ITransaction transaction) |
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) |
protected List<lumis.service.wsrp.producer.RemoteConsumerRegistration> |
RegistrationManagementInterfaceDataProvider.loadObjects(SessionConfig sessionConfig,
TabularSource source,
ITransaction transaction) |
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 |
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) |
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 | Method and Description |
---|---|
ITransaction |
ITransaction.getByConnectionId(String id)
Returns an
ITransaction that represents the same transaction but
that returns the connection with the given id as default. |
Modifier and Type | Method and Description |
---|---|
protected void |
NavigationLogger.generateLogURI(HttpServletRequest request,
StringBuilder logOutput,
SessionConfig sessionConfig,
PageConfig pageConfig,
ITransaction transaction) |
void |
INavigationLogger.logAccess(HttpServletRequest request,
SessionConfig sessionConfig,
PageConfig pageConfig,
ITransaction transaction)
Logs an entry in the navigation log with the access information relative to the given request.
|
void |
NavigationLogger.logAccess(HttpServletRequest request,
SessionConfig sessionConfig,
PageConfig pageConfig,
ITransaction transaction) |
Modifier and Type | Method and Description |
---|---|
String |
IQueryAdapter.getCreateTableScript(QueryCreateTable queryCreateTable,
ITransaction transaction) |
IQueryStatement |
IQueryAdapter.getDeleteStatement(QueryDelete queryUpdate,
ITransaction transaction) |
IQueryStatement |
IQueryAdapter.getInsertStatement(QueryInsert queryInsert,
ITransaction transaction) |
static IQueryAdapter |
QueryAdapterFactory.getQueryAdapter(ITransaction transaction) |
IQueryStatement |
IQueryAdapter.getSelectCountStatement(QuerySelect querySelect,
ITransaction transaction) |
IQueryStatement |
IQueryAdapter.getSelectStatement(QuerySelect querySelect,
ITransaction transaction) |
IQueryStatement |
IQueryAdapter.getUpdateStatement(QueryUpdate queryUpdate,
ITransaction transaction) |
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.
|
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.
|
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.
|
boolean |
AclManager.keyExists(SessionConfig sessionConfig,
Object configKey,
Object config,
ITransaction transaction) |
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 |
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).
|
LumisXP 12.3.0.200408 - Copyright © 2006–2020 Lumis EIP Tecnologia da Informação LTDA. All Rights Reserved.