#Stormpath is Joining Okta We are incredibly excited to announce that Stormpath is joining forces with Okta. Please visit the Migration FAQs for a detailed look at what this means for Stormpath users.
We're available to answer all questions at support@stormpath.com.
Copyright © 2013-2016 Stormpath, Inc. and contributors. This project is open-source via the Apache 2.0 License.
The stormpath-shiro
plugin allows an Apache Shiro-enabled application
use the Stormpath User Management & Authentication service for all authentication and access control needs.
Pairing Shiro with Stormpath gives you a full application security system complete with immediate user account support, authentication, account registration and password reset workflows, password security and more - with little to no coding on your part.
Usage documentation is in the wiki.
This project requires Maven 3 to build.
Run the following from a command prompt:
mvn install
Install sphinx: pip install sphinx
or using virtualenv:
pushd extensions/servlet/docs
virtualenv docs
source docs/bin/activate
pip install -r requirements.txt
popd
Then run:
mvn install -Pdocs -Psphinx-docs
Clone the https://github.com/stormpath/stormpath-framework-tck project and run mvn clean install -P\!run-ITs
Then run mvn install -Prun-TCK
- Upgraded Shiro dependency to latest release candidate: 1.4.0-RC2
- Upgraded Stormpath SDK dependency to latest released version: 1.1.4
- Moved Shiro specific code to the Apache Shiro Repository
- Moved default configuration to stormpath-shiro.ini
- Default configuration now disables Shiro's session tracking (using stateless JWTs in place)
- Added JAX-RS example
- Added Dropwizard + AngularJS example
- Fixed validation problem in web-fragment.xml
- Upgraded Stormpath SDK dependency to latest released version: 1.1.1
- Corrected Spring test dependencies scope
- Spring modules now correctly set the
EventBus
instance on theSecurityManager
- Upgraded Shiro dependency to latest stable release of 1.3.2
- Upgraded Stormpath SDK dependency to latest released version: 1.0.4
- Added
stormpath-shiro-servlet-plugin
to automatically configure Shiro to use a Stormpath realm and use Stormpath login UI out of the box - Added spring-boot starters for both web and non-web applications, see
stormpath-shiro-spring-boot-starter
andstormpath-shiro-spring-boot-web-starter
- Added examples for core, servlet, spring-boot, and spring-boot-web extensions.
- Upgraded Shiro dependency to latest stable release of 1.2.3
- Upgraded Stormpath SDK dependency to latest released version: 1.0.RC2
- Issue 6: Fixed bug that prevented Authentication data to be removed from cache after a successful logout.
- Upgraded Stormpath SDK dependency to latest stable release of 0.9.1
- Added Permission support! It is now possible to assign Shiro permissions to Stormpath Accounts or Groups by leveraging Stormpath's newly released CustomData feature. You can add and remove permission to an Account or Group by modifying that account or group's CustomData resource. For example:
Account account = getAccount(); //lookup account
//edit the permisssions assigned to the Account:
new CustomDataPermissionsEditor(account.getCustomData())
.append("user:1234:edit")
.append("document:*")
.remove("printer:*:print");
//persist the account's permission changes:
account.save();
The same CustomDataPermissionsEditor
can be used to assign permissions to Groups as well, and assumes 'transitive association': any permissions assigned to a Group are also 'inherited' to the Accounts in the Group.
In other words, an account's total assigned permissions are any permissions assigned directly to the account, plus, all of the permissions assigned to any Group that contains the account.
The CustomDataPermissionsEditor
will save the permissions as a JSON list in the CustomData resource, under the default apacheShiroPermissions
field name, for example:
{
... any other of your own custom data properties ...,
"apacheShiroPermissions": [
"perm1",
"perm2",
...,
"permN"
]
}
If you would like to change the default field name, you can call the setFieldName
method:
new CustomDataPermissionsEditor(account.getCustomData())
.setFieldName("whateverYouWantHere")
.append("user:1234:edit")
.append("document:*")
.remove("printer:*:print");
But you'll also need to update your ApplicationRealm
's configuration to reflect the new name so it can function - the realm reads the same CustomData
field, so they must be identical to ensure both read and write scenarios access the same field. For example, if using shiro.ini
:
stormpathRealm.groupPermissionResolver.customDataFieldName = whateverYouWantHere
stormpathRealm.accountPermissionResolver.customDataFieldName = whateverYouWantHere
- The
ApplicationRealm
implementation now has a defaultgroupPermissionResolver
andaccountPermissionResolver
properties that leverage respective group or accountCustomData
to support permissions as described above. Prior to this 0.5.0 release, there were no default implementations of these properties - you had to implement the interfaces yourself to support permissions. Now Permissions are built in by default (although you could still provide your own custom implementations if you have custom needs of course).
- Upgraded Stormpath SDK dependency to latest stable release of 0.8.1
- Added CacheManager/Cache bridging support. This allows the Stormpath SDK to use the same caching mechanism that you're already using for Shiro, simplifying cache configuration/setup. For example:
[main]
cacheManager = my.shiro.CacheManagerImplementation
securityManager.cacheManager = $cacheManager
# Stormpath integration:
stormpathClient = com.stormpath.shiro.client.ClientFactory
# etc...
stormpathClient.cacheManager = $cacheManager
If for some reason you don't want the Stormpath SDK to use Shiro's caching mechanism, you can configure the stormpathCacheManager
property (instead of the expected Shiro-specific cacheManager
property), which accepts a com.stormpath.sdk.cache.CacheManager
instance instead:
# ...
stormpathCacheManager = my.com.stormpath.sdk.cache.CacheManagerImplementation
# etc...
stormpathClient.stormpathCacheManager = $stormpathCacheManager
But note this approach requires you to set-up/configure two separate caching mechanisms.
See ClientFactory setCacheManager
and setStormpathCacheManager
JavaDoc for more.
0.3.1 is a minor dependency fix: the Stormpath Java SDK dependency has been upgraded to reflect its latest 0.8.0 release. This is the only change - no additional features/changes have been made otherwise.