├── LICENSE ├── README.md ├── lib ├── authCodeGrant.js ├── authorise.js ├── claimsCollection.js ├── error.js ├── grant.js ├── login.js ├── permissionRegistration.js ├── policyCreation.js ├── resourcesetAuthorise.js ├── resourcesetDelete.js ├── resourcesetRead.js ├── resourcesetRegistration.js ├── resourcesetUpdate.js ├── runner.js ├── token.js └── umaserver.js ├── models └── memory │ ├── Readme.md │ └── model.js ├── package.json ├── test ├── authCodeGrant.js ├── authorise.js ├── claimsCollection.js ├── error.js ├── errorHandler.js ├── grant.authorization_code.js ├── grant.client_credentials.js ├── grant.extended.js ├── grant.js ├── grant.password.js ├── grant.refresh_token.js ├── lockdown.js ├── permissionRegistration.js ├── policyCreation.js ├── resourcesetAuthorise.js ├── resourcesetDelete.js ├── resourcesetRead.js ├── resourcesetRegistration.js └── resourcesetUpdate.js └── uma.js /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atricore/node-uma/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atricore/node-uma/HEAD/README.md -------------------------------------------------------------------------------- /lib/authCodeGrant.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atricore/node-uma/HEAD/lib/authCodeGrant.js -------------------------------------------------------------------------------- /lib/authorise.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atricore/node-uma/HEAD/lib/authorise.js -------------------------------------------------------------------------------- /lib/claimsCollection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atricore/node-uma/HEAD/lib/claimsCollection.js -------------------------------------------------------------------------------- /lib/error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atricore/node-uma/HEAD/lib/error.js -------------------------------------------------------------------------------- /lib/grant.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atricore/node-uma/HEAD/lib/grant.js -------------------------------------------------------------------------------- /lib/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atricore/node-uma/HEAD/lib/login.js -------------------------------------------------------------------------------- /lib/permissionRegistration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atricore/node-uma/HEAD/lib/permissionRegistration.js -------------------------------------------------------------------------------- /lib/policyCreation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atricore/node-uma/HEAD/lib/policyCreation.js -------------------------------------------------------------------------------- /lib/resourcesetAuthorise.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atricore/node-uma/HEAD/lib/resourcesetAuthorise.js -------------------------------------------------------------------------------- /lib/resourcesetDelete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atricore/node-uma/HEAD/lib/resourcesetDelete.js -------------------------------------------------------------------------------- /lib/resourcesetRead.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atricore/node-uma/HEAD/lib/resourcesetRead.js -------------------------------------------------------------------------------- /lib/resourcesetRegistration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atricore/node-uma/HEAD/lib/resourcesetRegistration.js -------------------------------------------------------------------------------- /lib/resourcesetUpdate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atricore/node-uma/HEAD/lib/resourcesetUpdate.js -------------------------------------------------------------------------------- /lib/runner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atricore/node-uma/HEAD/lib/runner.js -------------------------------------------------------------------------------- /lib/token.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atricore/node-uma/HEAD/lib/token.js -------------------------------------------------------------------------------- /lib/umaserver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atricore/node-uma/HEAD/lib/umaserver.js -------------------------------------------------------------------------------- /models/memory/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atricore/node-uma/HEAD/models/memory/Readme.md -------------------------------------------------------------------------------- /models/memory/model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atricore/node-uma/HEAD/models/memory/model.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atricore/node-uma/HEAD/package.json -------------------------------------------------------------------------------- /test/authCodeGrant.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atricore/node-uma/HEAD/test/authCodeGrant.js -------------------------------------------------------------------------------- /test/authorise.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atricore/node-uma/HEAD/test/authorise.js -------------------------------------------------------------------------------- /test/claimsCollection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atricore/node-uma/HEAD/test/claimsCollection.js -------------------------------------------------------------------------------- /test/error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atricore/node-uma/HEAD/test/error.js -------------------------------------------------------------------------------- /test/errorHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atricore/node-uma/HEAD/test/errorHandler.js -------------------------------------------------------------------------------- /test/grant.authorization_code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atricore/node-uma/HEAD/test/grant.authorization_code.js -------------------------------------------------------------------------------- /test/grant.client_credentials.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atricore/node-uma/HEAD/test/grant.client_credentials.js -------------------------------------------------------------------------------- /test/grant.extended.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atricore/node-uma/HEAD/test/grant.extended.js -------------------------------------------------------------------------------- /test/grant.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atricore/node-uma/HEAD/test/grant.js -------------------------------------------------------------------------------- /test/grant.password.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atricore/node-uma/HEAD/test/grant.password.js -------------------------------------------------------------------------------- /test/grant.refresh_token.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atricore/node-uma/HEAD/test/grant.refresh_token.js -------------------------------------------------------------------------------- /test/lockdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atricore/node-uma/HEAD/test/lockdown.js -------------------------------------------------------------------------------- /test/permissionRegistration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atricore/node-uma/HEAD/test/permissionRegistration.js -------------------------------------------------------------------------------- /test/policyCreation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atricore/node-uma/HEAD/test/policyCreation.js -------------------------------------------------------------------------------- /test/resourcesetAuthorise.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atricore/node-uma/HEAD/test/resourcesetAuthorise.js -------------------------------------------------------------------------------- /test/resourcesetDelete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atricore/node-uma/HEAD/test/resourcesetDelete.js -------------------------------------------------------------------------------- /test/resourcesetRead.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atricore/node-uma/HEAD/test/resourcesetRead.js -------------------------------------------------------------------------------- /test/resourcesetRegistration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atricore/node-uma/HEAD/test/resourcesetRegistration.js -------------------------------------------------------------------------------- /test/resourcesetUpdate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atricore/node-uma/HEAD/test/resourcesetUpdate.js -------------------------------------------------------------------------------- /uma.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atricore/node-uma/HEAD/uma.js --------------------------------------------------------------------------------