📄 crondata.java
字号:
/*****************************************************************************//* Software Testing Automation Framework (STAF) *//* (C) Copyright IBM Corp. 2002 *//* *//* This software is licensed under the Common Public License (CPL) V1.0. *//*****************************************************************************/package com.ibm.staf.service.cron;import java.util.*;public class CronData implements java.io.Serializable{ // This class is only used for registration data that was saved using // versions of the Cron service prior to 3.2.0. CronData1 will be used // by Cron V3.2.0+. String fOriginMachine; String fMachine; boolean fPythonMachine = true; String fService; boolean fPythonService = true; String fRequest; boolean fPythonRequest = true; String fPrepare; Vector fMinute = new Vector(); Vector fHour = new Vector(); Vector fDay = new Vector(); Vector fMonth = new Vector(); Vector fWeekday = new Vector(); public CronData() { super(); } public CronData(String originMachine, String machine, boolean pythonMachine, String service, boolean pythonService, String request, boolean pythonRequest, String prepare, Vector minute, Vector hour, Vector day, Vector month, Vector weekday) { this.fOriginMachine = originMachine; this.fMachine = machine; this.fPythonMachine = pythonMachine; this.fService = service; this.fPythonService = pythonService; this.fRequest = request; this.fPythonRequest = pythonRequest; this.fPrepare = prepare; this.fMinute = minute; this.fHour = hour; this.fDay = day; this.fMonth = month; this.fWeekday = weekday; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -