/** * 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.core.xml; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlRootElement; import org.apache.camel.model.IdentifiedType; import org.apache.camel.spi.Metadata; /** * Used for export a service using Spring Remoting to hide the network call using an interface. * * @version */ @Metadata(label = "spring,configuration") @XmlRootElement(name = "export") public class CamelServiceExporterDefinition extends IdentifiedType { @XmlAttribute(required = true) private String uri; @XmlAttribute private String serviceRef; @XmlAttribute private Class<?> serviceInterface; @XmlAttribute private String camelContextId; public String getUri() { return uri; } /** * Camel endpoint uri to use a remote transport when calling the service */ public void setUri(String uri) { this.uri = uri; } public String getServiceRef() { return serviceRef; } /** * Reference to the service name to lookup in the registry. */ public void setServiceRef(String serviceRef) { this.serviceRef = serviceRef; } public Class<?> getServiceInterface() { return serviceInterface; } /** * Java interfaces to use as facade for the service to be exported */ public void setServiceInterface(Class<?> serviceInterface) { this.serviceInterface = serviceInterface; } public String getCamelContextId() { return camelContextId; } /** * The id of the CamelContext to use, if there is multiple CamelContext in the same JVM. */ public void setCamelContextId(String camelContextId) { this.camelContextId = camelContextId; } }