Uses of Class
com.atlassian.crowd.model.application.RemoteAddress
Package
Description
-
Uses of RemoteAddress in com.atlassian.crowd.acceptance.tests.cluster.testutil
Modifier and TypeMethodDescriptionint
TestkitClient.createApplication
(String namePassword, List<TestkitClient.AppDirMapping> directoryMappings, Set<RemoteAddress> remoteAddresses) -
Uses of RemoteAddress in com.atlassian.crowd.dao.application
Modifier and TypeMethodDescriptionvoid
ApplicationDAO.addRemoteAddress
(long applicationId, RemoteAddress remoteAddress) Associates a remote address to the given application.void
ApplicationDAOHibernate.addRemoteAddress
(long applicationId, RemoteAddress remoteAddress) void
ApplicationDAO.removeRemoteAddress
(long applicationId, RemoteAddress remoteAddress) Dissociates the given remote address from the given application.void
ApplicationDAOHibernate.removeRemoteAddress
(long applicationId, RemoteAddress remoteAddress) -
Uses of RemoteAddress in com.atlassian.crowd.event.application
Modifier and TypeMethodDescriptionApplicationRemoteAddressAddedEvent.getRemoteAddress()
ApplicationRemoteAddressRemovedEvent.getRemoteAddress()
ModifierConstructorDescriptionApplicationRemoteAddressAddedEvent
(Application application, RemoteAddress remoteAddress) ApplicationRemoteAddressRemovedEvent
(Application application, RemoteAddress remoteAddress) -
Uses of RemoteAddress in com.atlassian.crowd.event.listener.mapper.util
-
Uses of RemoteAddress in com.atlassian.crowd.manager.application
Modifier and TypeMethodDescriptionvoid
ApplicationManager.addRemoteAddress
(Application application, RemoteAddress remoteAddress) Will add a remote address to the current applicationvoid
ApplicationManagerGeneric.addRemoteAddress
(Application application, RemoteAddress remoteAddress) void
ApplicationManager.removeRemoteAddress
(Application application, RemoteAddress remoteAddress) Will remove the passed in RemoteAddress from the applicationvoid
ApplicationManagerGeneric.removeRemoteAddress
(Application application, RemoteAddress remoteAddress) -
Uses of RemoteAddress in com.atlassian.crowd.model.application
Modifier and TypeMethodDescriptionApplication.getRemoteAddresses()
Returns the whitelist of addresses allowed to connect to Crowd as the application.ApplicationImpl.getRemoteAddresses()
Deprecated.ImmutableApplication.getRemoteAddresses()
Modifier and TypeMethodDescriptionvoid
ApplicationImpl.setRemoteAddresses
(Set<RemoteAddress> remoteAddresses) Deprecated.ImmutableApplication.Builder.setRemoteAddresses
(Set<RemoteAddress> remoteAddresses) ModifierConstructorDescriptionprotected
ApplicationImpl
(String name, long id, ApplicationType type, String description, PasswordCredential credential, boolean active, Map<String, String> attributes, List<DirectoryMapping> directoryMappings, Set<RemoteAddress> remoteAddresses, Set<Webhook> webhooks, Date createdDate, Date updatedDate) Deprecated.ImmutableApplication
(Long id, String name, ApplicationType type, String description, PasswordCredential passwordCredential, boolean permanent, boolean active, Map<String, String> attributes, List<DirectoryMapping> directoryMappings, Set<RemoteAddress> remoteAddresses, Set<Webhook> webhooks, boolean lowercaseOutput, boolean aliasingEnabled, Date createdDate, Date updatedDate) Deprecated. -
Uses of RemoteAddress in com.atlassian.crowd.plugin.rest.util
Modifier and TypeMethodDescriptionstatic RemoteAddress
ApplicationEntityTranslator.toRemoteAddress
(RemoteAddressEntity remoteAddressEntity) Translates from aRemoteAddressEntity
to aRemoteAddress
.Modifier and TypeMethodDescriptionstatic Set<RemoteAddress>
ApplicationEntityTranslator.toRemoteAddresses
(RemoteAddressEntitySet remoteAddressEntities) Translates from aRemoteAddressEntitySet
to a set ofRemoteAddress
.Modifier and TypeMethodDescriptionstatic RemoteAddressEntity
ApplicationEntityTranslator.toRemoteAddressEntity
(RemoteAddress remoteAddress, URI baseUri) Translate from aRemoteAddress
to aRemoteAddressEntity
.Modifier and TypeMethodDescriptionstatic RemoteAddressEntitySet
ApplicationEntityTranslator.toRemoteAddressEntities
(Set<RemoteAddress> remoteAddresses, URI baseUri) Translate from a set ofRemoteAddress
es toRemoteAddressEntitySet
. -
Uses of RemoteAddress in com.atlassian.crowd.test.matchers
Modifier and TypeMethodDescriptionApplicationMatcher.withRemoteAddressesMatching
(org.hamcrest.Matcher<Set<RemoteAddress>> remoteAddressesMatcher) Builds a new specialised matcher to match on remote addresses; the returned matcher will only match if all this matcher's non-remote-address constraints are matched AND the given matcher matches the application's remote addresses.ApplicationMatcher.withRemoteAddressOf
(Set<RemoteAddress> remoteAddresses) Builds a new specialised matcher to match the given application remote addresses exactly; the returned matcher will only match if all this matcher's non-remote-address constraints are matched AND the given set is equal to the application's remote addresses.
ImmutableApplication.Builder
instead.