SLING 4606 move validation from contrib to /

git-svn-id: https://svn.apache.org/repos/asf/sling/trunk@1672647 13f79535-47bb-0310-9956-ffa450edef68
15 files changed
tree: 29d02fb558946a432796f0de0f742383ac1c7843
  1. src/
  2. pom.xml
  3. README.md
README.md

How To Run the Examples

  1. Start a Sling launchpad

  2. Install the org.apache.sling.validation.api and org.apache.sling.validation.core bundles:

    cd ../api
    mvn clean package sling:install
    cd ../core
    mvn clean package sling:install
    cd ../examples
    mvn clean package sling:install
    

Invalid POST request

curl -u admin:admin -Fsling:resourceType=/apps/validationdemo/components/user -Fusername=johnsmith -FfirstName=John204 -FlastName=Smith http://127.0.0.1:8080/content/validationdemo/users/johnsmith.modify.html

Check that the resource has not been modified at http://127.0.0.1:8080/content/validationdemo/users/johnsmith.html.

Valid POST request

curl -u admin:admin -Fsling:resourceType=/apps/validationdemo/components/user -Fusername=johnsmith -FfirstName=Johnny -FlastName=Bravo http://127.0.0.1:8080/content/validationdemo/users/johnsmith.modify.html

Check that the resource has been modified at http://127.0.0.1:8080/content/validationdemo/users/johnsmith.html.