Skip to content

Commit

Permalink
Merge pull request #159 from futures/move-configs
Browse files Browse the repository at this point in the history
relocating JSON configs to align with dependency tree
Resolves: https://www.pivotaltracker.com/story/show/61135712
  • Loading branch information
Andrew Woods committed Nov 20, 2013
2 parents 760b842 + d896529 commit 34aab66
Show file tree
Hide file tree
Showing 20 changed files with 46 additions and 5 deletions.
Expand Up @@ -15,11 +15,8 @@
"security" : {
"anonymous" : {
"roles" : ["readonly","readwrite","admin"],
"useOnFailedLogin" : false
},
"providers" : [
{ "classname" : "org.fcrepo.http.commons.session.BypassSecurityServletAuthenticationProvider" }
]
"useOnFailedLogin" : true
}
},
"node-types" : ["fedora-node-types.cnd"]
}
22 changes: 22 additions & 0 deletions fcrepo-kernel/src/test/resources/config/testing/repository.json
@@ -0,0 +1,22 @@
{
"name" : "repo",
"jndiName" : "",
"workspaces" : {
"predefined" : [],
"default" : "default",
"allowCreation" : true
},
"storage" : {
"binaryStorage" : {
"type" : "transient",
"minimumBinarySizeInBytes" : 1
}
},
"security" : {
"anonymous" : {
"roles" : ["readonly","readwrite","admin"],
"useOnFailedLogin" : true
}
},
"node-types" : ["fedora-node-types.cnd"]
}
22 changes: 22 additions & 0 deletions fcrepo-rss/src/test/resources/config/testing/repository.json
@@ -0,0 +1,22 @@
{
"name" : "repo",
"jndiName" : "",
"workspaces" : {
"predefined" : [],
"default" : "default",
"allowCreation" : true
},
"storage" : {
"binaryStorage" : {
"type" : "transient",
"minimumBinarySizeInBytes" : 1
}
},
"security" : {
"anonymous" : {
"roles" : ["readonly","readwrite","admin"],
"useOnFailedLogin" : true
}
},
"node-types" : ["fedora-node-types.cnd"]
}

0 comments on commit 34aab66

Please sign in to comment.