001 /**
002 * Licensed to the Apache Software Foundation (ASF) under one or more
003 * contributor license agreements. See the NOTICE file distributed with
004 * this work for additional information regarding copyright ownership.
005 * The ASF licenses this file to You under the Apache License, Version 2.0
006 * (the "License"); you may not use this file except in compliance with
007 * the License. You may obtain a copy of the License at
008 *
009 * http://www.apache.org/licenses/LICENSE-2.0
010 *
011 * Unless required by applicable law or agreed to in writing, software
012 * distributed under the License is distributed on an "AS IS" BASIS,
013 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
014 * See the License for the specific language governing permissions and
015 * limitations under the License.
016 */
017 package org.apache.camel.management.mbean;
018
019 import java.util.concurrent.TimeUnit;
020
021 import org.apache.camel.CamelContext;
022 import org.apache.camel.api.management.ManagedResource;
023 import org.apache.camel.api.management.mbean.ManagedSchedulePollConsumerMBean;
024 import org.apache.camel.impl.ScheduledPollConsumer;
025
026 /**
027 * @version
028 */
029 @ManagedResource(description = "Managed Scheduled Polling Consumer")
030 public class ManagedScheduledPollConsumer extends ManagedConsumer implements ManagedSchedulePollConsumerMBean {
031 private final ScheduledPollConsumer consumer;
032
033 public ManagedScheduledPollConsumer(CamelContext context, ScheduledPollConsumer consumer) {
034 super(context, consumer);
035 this.consumer = consumer;
036 }
037
038 public ScheduledPollConsumer getConsumer() {
039 return consumer;
040 }
041
042 public long getDelay() {
043 return getConsumer().getDelay();
044 }
045
046 public void setDelay(long delay) {
047 getConsumer().setDelay(delay);
048 }
049
050 public long getInitialDelay() {
051 return getConsumer().getInitialDelay();
052 }
053
054 public void setInitialDelay(long initialDelay) {
055 getConsumer().setInitialDelay(initialDelay);
056 }
057
058 public boolean isUseFixedDelay() {
059 return getConsumer().isUseFixedDelay();
060 }
061
062 public void setUseFixedDelay(boolean useFixedDelay) {
063 getConsumer().setUseFixedDelay(useFixedDelay);
064 }
065
066 public String getTimeUnit() {
067 return getConsumer().getTimeUnit().name();
068 }
069
070 public void setTimeUnit(String timeUnit) {
071 getConsumer().setTimeUnit(TimeUnit.valueOf(timeUnit));
072 }
073 }