org.apache.camel.component.jcr.JcrProducer Maven / Gradle / Ivy
/**
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.camel.component.jcr;
import javax.jcr.LoginException;
import javax.jcr.Node;
import javax.jcr.RepositoryException;
import javax.jcr.Session;
import javax.jcr.Value;
import org.apache.camel.Exchange;
import org.apache.camel.TypeConverter;
import org.apache.camel.impl.DefaultExchange;
import org.apache.camel.impl.DefaultProducer;
public class JcrProducer extends DefaultProducer {
public JcrProducer(JcrEndpoint jcrEndpoint) throws LoginException,
RepositoryException {
super(jcrEndpoint);
}
public void process(Exchange exchange) throws Exception {
Session session = openSession();
try {
Node base = getBaseNode(session);
Node node = base.addNode(getNodeName(exchange));
TypeConverter converter = exchange.getContext().getTypeConverter();
for (String key : exchange.getProperties().keySet()) {
Value value = converter.convertTo(Value.class, exchange
.getProperty(key));
node.setProperty(key, value);
}
node.addMixin("mix:referenceable");
session.save();
exchange.getOut().setBody(node.getUUID());
} finally {
if (session != null && session.isLive()) {
session.logout();
}
}
}
private String getNodeName(Exchange exchange) {
if (exchange.getProperty(JcrComponent.NODE_NAME) != null) {
return exchange.getProperty(JcrComponent.NODE_NAME).toString();
}
return exchange.getExchangeId();
}
private Node getBaseNode(Session session) throws Exception {
Node baseNode = session.getRootNode();
for (String node : getJcrEndpoint().getBase().split("/")) {
baseNode = baseNode.addNode(node);
}
return baseNode;
}
protected Session openSession() throws LoginException, RepositoryException {
return getJcrEndpoint().getRepository().login(getJcrEndpoint().getCredentials());
}
private JcrEndpoint getJcrEndpoint() {
JcrEndpoint endpoint = (JcrEndpoint) getEndpoint();
return endpoint;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy