jobdetailconfig.java

来自「这个是使用java开发的一个平台」· Java 代码 · 共 85 行

JAVA
85
字号
/*
 * Created on 2005-8-17
 *
 * TODO To change the template for this generated file go to
 * Window - Preferences - Java - Code Style - Code Templates
 */
package com.exp.fcl.scheduler.config;

import java.util.Properties;

/**
 * @author Administrator
 * 
 * TODO To change the template for this generated type comment go to Window -
 * Preferences - Java - Code Style - Code Templates
 */
public class JobDetailConfig {
    protected String jobName;

    protected String groupName;

    protected String targetClass;

    protected Properties targetProps;

    /**
     * @return Returns the groupName.
     */
    public String getGroupName() {
        return groupName;
    }

    /**
     * @param groupName
     *            The groupName to set.
     */
    public void setGroupName(String groupName) {
        this.groupName = groupName;
    }

    /**
     * @return Returns the jobName.
     */
    public String getJobName() {
        return jobName;
    }

    /**
     * @param jobName
     *            The jobName to set.
     */
    public void setJobName(String jobName) {
        this.jobName = jobName;
    }

    /**
     * @return Returns the targetClass.
     */
    public String getTargetClass() {
        return targetClass;
    }

    /**
     * @param targetClass
     *            The targetClass to set.
     */
    public void setTargetClass(String targetClass) {
        this.targetClass = targetClass;
    }

    /**
     * @return Returns the targetProps.
     */
    public Properties getTargetProps() {
        return targetProps;
    }

    /**
     * @param targetProps
     *            The targetProps to set.
     */
    public void setTargetProps(Properties targetProps) {
        this.targetProps = targetProps;
    }
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?