Package org.switchyard.component.camel.quartz.model.v1

Source Code of org.switchyard.component.camel.quartz.model.v1.V1CamelQuartzBindingModel

/*
* Copyright 2013 Red Hat Inc. and/or its affiliates and other contributors.
*
* Licensed 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.switchyard.component.camel.quartz.model.v1;

import java.net.URI;
import java.text.DateFormat;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.List;

import org.apache.camel.util.UnsafeUriCharactersEncoder;
import org.switchyard.component.camel.common.QueryString;
import org.switchyard.component.camel.common.model.v1.V1BaseCamelBindingModel;
import org.switchyard.component.camel.quartz.model.CamelQuartzBindingModel;
import org.switchyard.config.Configuration;
import org.switchyard.config.model.Descriptor;

/**
* Configuration binding for quartz.
*
* @author Lukasz Dywicki
*/
public class V1CamelQuartzBindingModel extends V1BaseCamelBindingModel
    implements CamelQuartzBindingModel {

    private static final String NAME = "name";
    private static final String CRON = "cron";
    private static final String STATEFUL = "stateful";
    private static final String START_TIME = "trigger.startTime";
    private static final String END_TIME = "trigger.endTime";
    private static final String TIMEZONE = "trigger.timeZone";
    private static final String REPEAT_COUNT = "trigger.repeatCount";
    private static final String REPEAT_INTERVAL = "trigger.repeartInterval";

    // Used for dateTime fields
    private static final String DATE_FORMAT_STRING = "yyyy-MM-dd'T'HH:mm:ss";

    /**
     * Create a new CamelQuartzBindingModel.
     * @param namespace namespace
     */
    public V1CamelQuartzBindingModel(String namespace) {
        super(QUARTZ, namespace);

        setModelChildrenOrder(NAME, CRON, STATEFUL, START_TIME, END_TIME, TIMEZONE);
    }

    /**
     * Create a V1CamelQuartzBindingModel from the specified configuration and descriptor.
     *
     * @param config The switchyard configuration instance.
     * @param desc The switchyard descriptor instance.
     */
    public V1CamelQuartzBindingModel(Configuration config, Descriptor desc) {
        super(config, desc);
    }

    @Override
    public String getTimerName() {
        return getConfig(NAME);
    }

    @Override
    public V1CamelQuartzBindingModel setTimerName(String name) {
        return setConfig(NAME, name);
    }

    @Override
    public String getCron() {
        return getConfig(CRON);
    }

    @Override
    public V1CamelQuartzBindingModel setCron(String cron) {
        return setConfig(CRON, cron);
    }

    @Override
    public Boolean isStateful() {
        return getBooleanConfig(STATEFUL);
    }

    @Override
    public V1CamelQuartzBindingModel setStateful(Boolean stateful) {
        return setConfig(STATEFUL, stateful);
    }

    @Override
    public Date getStartTime() {
        DateFormat startTimeFormat = new SimpleDateFormat(DATE_FORMAT_STRING);
        return getDateConfig(START_TIME, startTimeFormat);
    }

    @Override
    public V1CamelQuartzBindingModel setStartTime(Date startTime) {
        DateFormat startTimeForamt = new SimpleDateFormat(DATE_FORMAT_STRING);
        return setConfig(START_TIME, startTimeForamt.format(startTime));
    }

    @Override
    public Date getEndTime() {
        DateFormat endTimeFormat = new SimpleDateFormat(DATE_FORMAT_STRING);
        return getDateConfig(END_TIME, endTimeFormat);
    }

    @Override
    public V1CamelQuartzBindingModel setEndTime(Date endTime) {
        DateFormat endTimeFormat = new SimpleDateFormat(DATE_FORMAT_STRING);
        return setConfig(END_TIME, endTimeFormat.format(endTime));
    }

    @Override
    public String getTimeZone() {
        return getConfig(TIMEZONE);
    }

    @Override
    public V1CamelQuartzBindingModel setTimeZone(String timeZone) {
        return setConfig(TIMEZONE, timeZone);
    }

    @Override
    public Integer getRepeatCount() {
        return getIntegerConfig(REPEAT_COUNT);
    }

    @Override
    public V1CamelQuartzBindingModel setRepeatCount(Integer repeatCount) {
        return setConfig(REPEAT_COUNT, repeatCount);
    }

    @Override
    public Long getRepeatInterval() {
        return getLongConfig(REPEAT_INTERVAL);
    }

    @Override
    public V1CamelQuartzBindingModel setRepeatInterval(Long repeatInterval) {
        return setConfig(REPEAT_INTERVAL, repeatInterval);
    }

    @Override
    public URI getComponentURI() {
        Configuration modelConfiguration = getModelConfiguration();
        List<Configuration> children = modelConfiguration.getChildren();

        String baseUri = QUARTZ + "://" + getTimerName();

        QueryString queryStr = new QueryString();
        traverseConfiguration(children, queryStr, NAME);

        return URI.create(UnsafeUriCharactersEncoder.encode(baseUri + queryStr.toString()));
    }

}
TOP

Related Classes of org.switchyard.component.camel.quartz.model.v1.V1CamelQuartzBindingModel

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.