Uses of Class
org.craftercms.studio.api.v1.exception.security.AuthenticationException
Packages that use AuthenticationException
Package
Description
-
Uses of AuthenticationException in org.craftercms.studio.api.v1.service.content
Methods in org.craftercms.studio.api.v1.service.content that throw AuthenticationExceptionModifier and TypeMethodDescriptionbooleanContentService.pullFromRemote(String siteId, String remoteName, String remoteBranch) Pull from remote repositorybooleanContentService.pushToRemote(String siteId, String remoteName, String remoteBranch) Push content to remote repository -
Uses of AuthenticationException in org.craftercms.studio.api.v1.service.deployment
Methods in org.craftercms.studio.api.v1.service.deployment that throw AuthenticationExceptionModifier and TypeMethodDescriptionbooleanDeploymentService.enablePublishing(String site, boolean enabled) Enable/Disable publishing for given site -
Uses of AuthenticationException in org.craftercms.studio.api.v2.service.content
Methods in org.craftercms.studio.api.v2.service.content that throw AuthenticationExceptionModifier and TypeMethodDescriptionbooleanContentService.deleteContent(String siteId, String path, String submissionComment) Delete content for given path.booleanContentService.deleteContent(String siteId, List<String> paths, String submissionComment) Delete content for given paths.voidContentTypeService.deleteContentType(String siteId, String contentType, boolean deleteDependencies) Deletes all files related to a given content-type -
Uses of AuthenticationException in org.craftercms.studio.api.v2.service.content.internal
Methods in org.craftercms.studio.api.v2.service.content.internal that throw AuthenticationExceptionModifier and TypeMethodDescriptionvoidContentTypeServiceInternal.deleteContentType(String siteId, String contentType, boolean deleteDependencies) Deletes all files related to a given content-type -
Uses of AuthenticationException in org.craftercms.studio.api.v2.service.dashboard
Methods in org.craftercms.studio.api.v2.service.dashboard that throw AuthenticationExceptionModifier and TypeMethodDescriptionDashboardService.getContentExpired(String siteId, int offset, int limit) Get content that expiredDashboardService.getContentExpiring(String siteId, ZonedDateTime dateFrom, ZonedDateTime dateTo, int offset, int limit) Get content that is expiring -
Uses of AuthenticationException in org.craftercms.studio.api.v2.service.security
Methods in org.craftercms.studio.api.v2.service.security that throw AuthenticationExceptionModifier and TypeMethodDescriptionGroupService.addGroupMembers(long groupId, List<Long> userIds, List<String> usernames) Add users to the groupUserService.changePassword(String username, String current, String newPassword) User changes passwordGroupService.createGroup(long orgId, String groupName, String groupDescription, boolean externallyManaged) Create groupUserService.createUser(User user) voidGroupService.deleteGroup(List<Long> groupIds) Delete group(s)voidUserService.deleteUsers(List<Long> userIds, List<String> usernames) UserService.enableUsers(List<Long> userIds, List<String> usernames, boolean enabled) UserService.getCurrentUser()UserService.getCurrentUserSiteRoles(String site) UserService.getCurrentUserSites()voidGroupService.removeGroupMembers(long groupId, List<Long> userIds, List<String> usernames) Remove users from the groupGroupService.updateGroup(long orgId, Group group) Update groupvoidUserService.updateUser(User user) -
Uses of AuthenticationException in org.craftercms.studio.api.v2.service.security.internal
Methods in org.craftercms.studio.api.v2.service.security.internal that throw AuthenticationExceptionModifier and TypeMethodDescriptionUserServiceInternal.getCurrentUser()Returns the current authenticated user -
Uses of AuthenticationException in org.craftercms.studio.api.v2.service.ui
Methods in org.craftercms.studio.api.v2.service.ui that throw AuthenticationExceptionModifier and TypeMethodDescriptionUiService.getActiveEnvironment()Returns the active environment.UiService.getGlobalMenu()Returns the global menu items available to the current user. -
Uses of AuthenticationException in org.craftercms.studio.controller.rest.v2
Methods in org.craftercms.studio.controller.rest.v2 with parameters of type AuthenticationExceptionModifier and TypeMethodDescriptionExceptionHandlers.handleAuthenticationException(javax.servlet.http.HttpServletRequest request, AuthenticationException e) Methods in org.craftercms.studio.controller.rest.v2 that throw AuthenticationExceptionModifier and TypeMethodDescriptionGroupsController.addGroupMembers(int groupId, AddGroupMembers addGroupMembers) Add group members APIUsersController.changePassword(@Valid ChangePasswordRequest changePasswordRequest) GroupsController.createGroup(@Valid Group group) Create group APIUsersController.createUser(@Valid CreateUserRequest user) Create user APIConfigurationController.deleteContentType(@Valid ConfigurationController.DeleteContentTypeRequest request) GroupsController.deleteGroups(List<Long> groupIds) Delete group APIUsersController.deleteUsers(List<@NotNull Long> userIds, List<@NotBlank String> usernames) Delete users APIUsersController.disableUsers(@Valid EnableUsers enableUsers) Disable users APIUsersController.enableUsers(@Valid EnableUsers enableUsers) Enable users APIUiController.getActiveEnvironment()DashboardController.getContentExpired(String siteId, @javax.validation.constraints.PositiveOrZero int offset, @javax.validation.constraints.PositiveOrZero int limit) DashboardController.getContentExpiring(String siteId, ZonedDateTime dateFrom, ZonedDateTime dateTo, @javax.validation.constraints.PositiveOrZero int offset, @javax.validation.constraints.PositiveOrZero int limit) UsersController.getCurrentUser()Get current authenticated user APIUsersController.getCurrentUserSiteRoles(@NotBlank String site) Get the roles in a site of the current authenticated user APIUsersController.getCurrentUserSites(@javax.validation.constraints.PositiveOrZero int offset, @javax.validation.constraints.PositiveOrZero int limit) Get the sites of the current authenticated user APIUiController.getGlobalMenu()GroupsController.removeGroupMembers(int groupId, List<Long> userIds, List<@NotBlank String> usernames) Remove group members APIContentController.rename(@Valid RenameRequestBody renameRequestBody) SearchController.search(String siteId, @Valid SearchParams params) GroupsController.updateGroup(@Valid UpdateGroupRequest updateRequest) Update group APIUsersController.updateUser(@Valid UpdateUserRequest user) Update user API -
Uses of AuthenticationException in org.craftercms.studio.impl.v1.service.content
Methods in org.craftercms.studio.impl.v1.service.content that throw AuthenticationExceptionModifier and TypeMethodDescriptionbooleanContentServiceImpl.pullFromRemote(String siteId, String remoteName, String remoteBranch) booleanContentServiceImpl.pushToRemote(String siteId, String remoteName, String remoteBranch) -
Uses of AuthenticationException in org.craftercms.studio.impl.v1.service.deployment
Methods in org.craftercms.studio.impl.v1.service.deployment that throw AuthenticationExceptionModifier and TypeMethodDescription@javax.validation.Valid booleanDeploymentServiceImpl.enablePublishing(String site, boolean enabled) -
Uses of AuthenticationException in org.craftercms.studio.impl.v2.service.content
Methods in org.craftercms.studio.impl.v2.service.content that throw AuthenticationExceptionModifier and TypeMethodDescriptionbooleanContentServiceImpl.deleteContent(String siteId, String path, String submissionComment) booleanContentServiceImpl.deleteContent(String siteId, List<String> paths, String submissionComment) voidContentTypeServiceImpl.deleteContentType(String siteId, String contentType, boolean deleteDependencies) Deletes all files related to a given content-type -
Uses of AuthenticationException in org.craftercms.studio.impl.v2.service.content.internal
Methods in org.craftercms.studio.impl.v2.service.content.internal that throw AuthenticationExceptionModifier and TypeMethodDescriptionvoidContentTypeServiceInternalImpl.deleteContentType(String siteId, String contentType, boolean deleteDependencies) -
Uses of AuthenticationException in org.craftercms.studio.impl.v2.service.dashboard
Methods in org.craftercms.studio.impl.v2.service.dashboard that throw AuthenticationExceptionModifier and TypeMethodDescriptionDashboardServiceImpl.getContentExpired(String siteId, int offset, int limit) DashboardServiceImpl.getContentExpiring(String siteId, ZonedDateTime dateFrom, ZonedDateTime dateTo, int offset, int limit) -
Uses of AuthenticationException in org.craftercms.studio.impl.v2.service.security
Methods in org.craftercms.studio.impl.v2.service.security that throw AuthenticationExceptionModifier and TypeMethodDescriptionGroupServiceImpl.addGroupMembers(long groupId, List<Long> userIds, List<String> usernames) UserServiceImpl.changePassword(String username, String current, String newPassword) GroupServiceImpl.createGroup(long orgId, String groupName, String groupDescription, boolean externallyManaged) UserServiceImpl.createUser(User user) voidGroupServiceImpl.deleteGroup(List<Long> groupIds) voidUserServiceImpl.deleteUsers(List<Long> userIds, List<String> usernames) UserServiceImpl.enableUsers(List<Long> userIds, List<String> usernames, boolean enabled) UserServiceImpl.getCurrentUser()UserServiceImpl.getCurrentUserSiteRoles(String site) UserServiceImpl.getCurrentUserSites()voidGroupServiceImpl.removeGroupMembers(long groupId, List<Long> userIds, List<String> usernames) GroupServiceImpl.updateGroup(long orgId, Group group) voidUserServiceImpl.updateUser(User user) -
Uses of AuthenticationException in org.craftercms.studio.impl.v2.service.security.internal
Methods in org.craftercms.studio.impl.v2.service.security.internal that throw AuthenticationException -
Uses of AuthenticationException in org.craftercms.studio.impl.v2.service.ui
Methods in org.craftercms.studio.impl.v2.service.ui that throw AuthenticationExceptionModifier and TypeMethodDescriptionUiServiceImpl.getActiveEnvironment()UiServiceImpl.getGlobalMenu()