From 93210fd4f8c53e3d0a0c0de18709cb3d9def175b Mon Sep 17 00:00:00 2001 From: Bill Burke Date: Fri, 17 Jan 2014 10:33:17 -0500 Subject: [PATCH] remove wildfly-demo --- examples/wildfly-demo/testrealm.json | 105 --------------------------- 1 file changed, 105 deletions(-) delete mode 100755 examples/wildfly-demo/testrealm.json diff --git a/examples/wildfly-demo/testrealm.json b/examples/wildfly-demo/testrealm.json deleted file mode 100755 index 7f39c9adc8..0000000000 --- a/examples/wildfly-demo/testrealm.json +++ /dev/null @@ -1,105 +0,0 @@ -{ - "realm": "demo", - "enabled": true, - "tokenLifespan": 3000, - "accessCodeLifespan": 10, - "accessCodeLifespanUserAction": 6000, - "sslNotRequired": true, - "registrationAllowed": false, - "social": false, - "updateProfileOnInitialSocialLogin": false, - "privateKey": "MIICXAIBAAKBgQCrVrCuTtArbgaZzL1hvh0xtL5mc7o0NqPVnYXkLvgcwiC3BjLGw1tGEGoJaXDuSaRllobm53JBhjx33UNv+5z/UMG4kytBWxheNVKnL6GgqlNabMaFfPLPCF8kAgKnsi79NMo+n6KnSY8YeUmec/p2vjO2NjsSAVcWEQMVhJ31LwIDAQABAoGAfmO8gVhyBxdqlxmIuglbz8bcjQbhXJLR2EoS8ngTXmN1bo2L90M0mUKSdc7qF10LgETBzqL8jYlQIbt+e6TH8fcEpKCjUlyq0Mf/vVbfZSNaVycY13nTzo27iPyWQHK5NLuJzn1xvxxrUeXI6A2WFpGEBLbHjwpx5WQG9A+2scECQQDvdn9NE75HPTVPxBqsEd2z10TKkl9CZxu10Qby3iQQmWLEJ9LNmy3acvKrE3gMiYNWb6xHPKiIqOR1as7L24aTAkEAtyvQOlCvr5kAjVqrEKXalj0Tzewjweuxc0pskvArTI2Oo070h65GpoIKLc9jf+UA69cRtquwP93aZKtW06U8dQJAF2Y44ks/mK5+eyDqik3koCI08qaC8HYq2wVl7G2QkJ6sbAaILtcvD92ToOvyGyeE0flvmDZxMYlvaZnaQ0lcSQJBAKZU6umJi3/xeEbkJqMfeLclD27XGEFoPeNrmdx0q10Azp4NfJAY+Z8KRyQCR2BEG+oNitBOZ+YXF9KCpH3cdmECQHEigJhYg+ykOvr1aiZUMFT72HU0jnmQe2FVekuG+LJUt2Tm7GtMjTFoGpf0JwrVuZN39fOYAlo+nTixgeW7X8Y=", - "publicKey": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCrVrCuTtArbgaZzL1hvh0xtL5mc7o0NqPVnYXkLvgcwiC3BjLGw1tGEGoJaXDuSaRllobm53JBhjx33UNv+5z/UMG4kytBWxheNVKnL6GgqlNabMaFfPLPCF8kAgKnsi79NMo+n6KnSY8YeUmec/p2vjO2NjsSAVcWEQMVhJ31LwIDAQAB", - "requiredCredentials": [ "password" ], - "requiredApplicationCredentials": [ "password" ], - "requiredOAuthClientCredentials": [ "password" ], - "users" : [ - { - "username" : "bburke@redhat.com", - "enabled": true, - "attributes" : { - "email" : "bburke@redhat.com" - }, - "credentials" : [ - { "type" : "password", - "value" : "password" } - ] - } - ], - "roles": [ - { - "name": "user", - "description": "User privileges" - }, - { - "name": "admin", - "description": "Administrator privileges" - } - ], - "roleMappings": [ - { - "username": "bburke@redhat.com", - "roles": ["user"] - } - ], - "scopeMappings": [ - { - "username": "third-party", - "roles": ["user"] - }, - { - "username": "customer-portal", - "roles": ["user"] - }, - { - "username": "product-portal", - "roles": ["user"] - } - - ], - "applications": [ - { - "name": "customer-portal", - "enabled": true, - "adminUrl": "http://localhost:8080/customer-portal", - "credentials": [ - { - "type": "password", - "value": "password" - } - ] - }, - { - "name": "product-portal", - "enabled": true, - "adminUrl": "http://localhost:8080/product-portal", - "credentials": [ - { - "type": "password", - "value": "password" - } - ] - } - ], - "oauthClients": [ - { - "name": "third-party", - "enabled": true, - "credentials": [ - { - "type": "password", - "value": "password" - } - ] - } - ], - "applicationRoleMappings": { - "account": [ - { - "username": "bburke@redhat.com", - "roles": ["manage-account"] - } - ] - } - -}