]> git.argeo.org Git - lgpl/argeo-commons.git/blob - sandbox/runtime/org.argeo.sandbox.jackrabbit/src/main/java/SecondHop.java
[maven-release-plugin] prepare release argeo-commons-0.3.0
[lgpl/argeo-commons.git] / sandbox / runtime / org.argeo.sandbox.jackrabbit / src / main / java / SecondHop.java
1 /*
2 * Copyright (C) 2010 Mathieu Baudier <mbaudier@argeo.org>
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17 import javax.jcr.Repository;
18 import javax.jcr.Session;
19 import javax.jcr.SimpleCredentials;
20 import javax.jcr.Node;
21 import org.apache.jackrabbit.core.TransientRepository;
22
23 /**
24 * Second hop example. Stores, retrieves, and removes example content.
25 */
26 public class SecondHop {
27
28 /**
29 * The main entry point of the example application.
30 *
31 * @param args command line arguments (ignored)
32 * @throws Exception if an error occurs
33 */
34 public static void main(String[] args) throws Exception {
35 Repository repository = new TransientRepository();
36 Session session = repository.login(
37 new SimpleCredentials("username", "password".toCharArray()));
38 try {
39 Node root = session.getRootNode();
40
41 // Store content
42 Node hello = root.addNode("hello");
43 Node world = hello.addNode("world");
44 world.setProperty("message", "Hello, World!");
45 session.save();
46
47 // Retrieve content
48 Node node = root.getNode("hello/world");
49 System.out.println(node.getPath());
50 System.out.println(node.getProperty("message").getString());
51
52 // Remove content
53 root.getNode("hello").remove();
54 session.save();
55 } finally {
56 session.logout();
57 }
58 }
59
60 }