/** * 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.jclouds; import org.apache.camel.Consumer; import org.apache.camel.Processor; import org.apache.camel.Producer; import org.jclouds.compute.ComputeService; public class JcloudsComputeEndpoint extends JcloudsEndpoint { private ComputeService computeService; private String imageId; private String locationId; private String hardwareId; private String operation; private String nodeState; private String nodeId; private String group; private String user; public JcloudsComputeEndpoint(String uri, JcloudsComponent component, ComputeService computeService) { super(uri, component); this.computeService = computeService; } @Override public Producer createProducer() throws Exception { return new JcloudsComputeProducer(this, computeService); } @Override public Consumer createConsumer(Processor processor) { throw new UnsupportedOperationException("Consumer not supported for JcloudsComputeEndpoint!"); } public String getImageId() { return imageId; } public void setImageId(String imageId) { this.imageId = imageId; } public String getLocationId() { return locationId; } public void setLocationId(String locationId) { this.locationId = locationId; } public String getHardwareId() { return hardwareId; } public void setHardwareId(String hardwareId) { this.hardwareId = hardwareId; } public String getOperation() { return operation; } public void setOperation(String operation) { this.operation = operation; } public String getNodeState() { return nodeState; } public void setNodeState(String nodeState) { this.nodeState = nodeState; } public String getNodeId() { return nodeId; } public void setNodeId(String nodeId) { this.nodeId = nodeId; } public String getGroup() { return group; } public void setGroup(String group) { this.group = group; } public String getUser() { return user; } public void setUser(String user) { this.user = user; } }