Fcrepo webapp plus optional fcrepo dependencies. This project builds a custom-configured fcrepo webapp war file that includes extra dependencies and configuration options. An integration test exists to perform a basic deployment test only and may be useful just for identifying syntax errors in configuration file updates or third party library version incompatibilities.
The default maven build profile does not include audit or authorization support.
mvn install
This maven build profile bundles WebAC authorization module to the fcrepo webapp. The configuration files are found in src/webac.
mvn install -P webac
There is also a Quick Start with WebAC guide on the Fedora 4 wiki that guides you through the basic steps of creating and updating WebAC access control lists, and protecting resources with those ACLs.
The fcrepo-webapp-plus includes a single spring XML configuration file fcrepo-config.xml
, it is suggested to make a copy of this file and use the system property fcrepo.spring.configuration
to point to your customized version.
JAVA_OPTS="${JAVA_OPTS} -Dfcrepo.spring.configuration=file:/path/to/fcrepo-config.xml"
You must also specify the fcrepo.modeshape.configuration
system property to point to a valid respository configuration file. You can find several example repository.json files here
Basic Authentication is configured for the webac profile only at this time. To choose a different method, update the same web.xml deployment descriptor for the webapp in question, being aware that this may break the single integration test.
You must also configure the authorization package as described below.
The fcrepo-audit capability is included in fcrepo-webapp-plus by default.
You must enable it (un-comment it) in your fcrepo-config.xml
file.
<!-- **************************
AUDIT
publish audit events to JMS
************************** -->
<!--
<bean class="org.fcrepo.audit.InternalAuditor"/>
-->
To achieve this functionality, simply enable the form of authorization you prefer and also include the audit capability in the same fcrepo-config.xml
.
Audit capability can be packaged with any of the authentication options.