• R/O
  • SSH
  • HTTPS

Commit

Tags
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

Commit MetaInfo

Revision1717 (tree)
Time2018-08-29 22:38:25
Authort_nakayama1971

Log Message

(empty log message)

Change Summary

Incremental Difference

--- trunk/framework/fwBatch/src/batch/base/Batch.java (revision 1716)
+++ trunk/framework/fwBatch/src/batch/base/Batch.java (revision 1717)
@@ -35,7 +35,7 @@
3535 *
3636 * @param val バッチパラメタ
3737 */
38- public abstract void setBatchParameter(BatchParameter val);
38+ void setBatchParameter(BatchParameter val);
3939
4040 /**
4141 * バッチ処理メソッド。
@@ -43,7 +43,7 @@
4343 * @param args パラメタ
4444 * @return 処理結果
4545 */
46- public abstract int perform(String... args);
46+ int perform(String... args);
4747
4848 /**
4949 * バッチ処理名称取得メソッド。
@@ -50,7 +50,7 @@
5050 *
5151 * @return 処理名称
5252 */
53- public abstract String getBatchName();
53+ String getBatchName();
5454
5555 /**
5656 * メッセージ取得
@@ -57,7 +57,7 @@
5757 *
5858 * @return メッセージ
5959 */
60- public abstract String getMessage();
60+ String getMessage();
6161
6262 /**
6363 * ファイルリスト取得
@@ -64,5 +64,5 @@
6464 *
6565 * @return ファイルリスト
6666 */
67- public abstract List<Pair<String, String>> getOutputFiles();
67+ List<Pair<String, String>> getOutputFiles();
6868 }
--- trunk/framework/fwBatch/src/batch/base/BatchParameter.java (revision 1716)
+++ trunk/framework/fwBatch/src/batch/base/BatchParameter.java (revision 1717)
@@ -19,7 +19,7 @@
1919 *
2020 * @return ジョブ番号
2121 */
22- public abstract long getJobSeq();
22+ long getJobSeq();
2323
2424 /**
2525 * ジョブ詳細番号取得
@@ -26,7 +26,7 @@
2626 *
2727 * @return ジョブ詳細番号
2828 */
29- public abstract int getJobDtlSeq();
29+ int getJobDtlSeq();
3030
3131 /**
3232 * IPアドレス取得
@@ -33,7 +33,7 @@
3333 *
3434 * @return IPアドレス
3535 */
36- public abstract String getIp();
36+ String getIp();
3737
3838 /**
3939 * プロセスID取得
@@ -40,7 +40,7 @@
4040 *
4141 * @return プロセスID
4242 */
43- public abstract long getPid();
43+ long getPid();
4444
4545 /**
4646 * ユーザID取得
@@ -47,7 +47,7 @@
4747 *
4848 * @return ユーザID
4949 */
50- public abstract String getUid();
50+ String getUid();
5151
5252 /**
5353 * ジョブ名取得
@@ -54,7 +54,7 @@
5454 *
5555 * @return ジョブ名
5656 */
57- public abstract String getJobName();
57+ String getJobName();
5858
5959 /**
6060 * 処理開始日時設定
@@ -61,7 +61,7 @@
6161 *
6262 * @param val 処理開始日時
6363 */
64- public abstract void setDateTime(Timestamp val);
64+ void setDateTime(Timestamp val);
6565
6666 /**
6767 * 処理開始日時取得
@@ -68,7 +68,7 @@
6868 *
6969 * @return 処理開始日時
7070 */
71- public abstract Timestamp getDateTime();
71+ Timestamp getDateTime();
7272
7373 /**
7474 * オンライン引数設定
@@ -77,7 +77,7 @@
7777 * @param datetime 開始日時
7878 * @return 設定正常終了の場合 true を返す。
7979 */
80- public abstract boolean setupOnline(String name, Timestamp datetime);
80+ boolean setupOnline(String name, Timestamp datetime);
8181
8282 /**
8383 * コマンドライン引数設定
@@ -84,7 +84,7 @@
8484 *
8585 * @param args 引数
8686 */
87- public abstract void setCommandParameter(String... args);
87+ void setCommandParameter(String... args);
8888
8989 /**
9090 * パラメタ取得
@@ -91,5 +91,5 @@
9191 *
9292 * @return 処理後引数
9393 */
94- public abstract String[] getParameter();
94+ String[] getParameter();
9595 }
--- trunk/framework/fwBatch/src/batch/base/BatchProcessor.java (revision 1716)
+++ trunk/framework/fwBatch/src/batch/base/BatchProcessor.java (revision 1717)
@@ -14,7 +14,7 @@
1414 * @param args 引数
1515 * @return 処理結果
1616 */
17- public abstract int preprocess(String... args);
17+ int preprocess(String... args);
1818
1919 /**
2020 * 実処理
@@ -22,7 +22,7 @@
2222 * @param args 引数
2323 * @return 処理結果
2424 */
25- public abstract int process(String... args);
25+ int process(String... args);
2626
2727 /**
2828 * 後処理
@@ -30,5 +30,5 @@
3030 * @param exitCode 実行結果
3131 * @return 処理結果
3232 */
33- public abstract int postprocess(int exitCode);
33+ int postprocess(int exitCode);
3434 }
--- trunk/framework/fwBatch/src/batch/controller/JobManager.java (revision 1716)
+++ trunk/framework/fwBatch/src/batch/controller/JobManager.java (revision 1717)
@@ -19,5 +19,5 @@
1919 * @param jobseq ジョブ連番
2020 * @throws RemoteException リモート例外
2121 */
22- public abstract void cancel(long jobseq) throws RemoteException;
22+ void cancel(long jobseq) throws RemoteException;
2323 }
--- trunk/framework/fwBatch/src/batch/status/JobDetailStatus.java (revision 1716)
+++ trunk/framework/fwBatch/src/batch/status/JobDetailStatus.java (revision 1717)
@@ -19,7 +19,7 @@
1919 * @param dseq バッチ連番
2020 * @return ジョブ詳細管理状態リスト
2121 */
22- public abstract JobDetail getJobDetail(Connection conn, long seq, int dseq);
22+ JobDetail getJobDetail(Connection conn, long seq, int dseq);
2323
2424 /**
2525 * ジョブ詳細管理状態取得
@@ -28,7 +28,7 @@
2828 * @param seq ジョブ連番
2929 * @return ジョブ詳細管理状態リスト
3030 */
31- public abstract List<JobDetail> selectJobDetails(Connection conn, long seq);
31+ List<JobDetail> selectJobDetails(Connection conn, long seq);
3232
3333 /**
3434 * ジョブ詳細管理更新
@@ -41,7 +41,7 @@
4141 * @param time 日時
4242 * @return 更新レコード数
4343 */
44- public abstract int updateJobDetail(
44+ int updateJobDetail(
4545 Connection conn, long seq, int dseq, String msg, JobState status, Timestamp time);
4646
4747 /**
@@ -54,8 +54,7 @@
5454 * @param time 日時
5555 * @return バッチシーケンス番号
5656 */
57- public abstract int insertJobDetail(
58- Connection conn, long seq, long pid, String name, Timestamp time);
57+ int insertJobDetail(Connection conn, long seq, long pid, String name, Timestamp time);
5958
6059 /**
6160 * ジョブ詳細管理削除
@@ -64,5 +63,5 @@
6463 * @param seq ジョブ連番
6564 * @return 削除件数
6665 */
67- public abstract int deleteJobDetail(Connection conn, long seq);
66+ int deleteJobDetail(Connection conn, long seq);
6867 }
--- trunk/framework/fwBatch/src/batch/status/JobFileStatus.java (revision 1716)
+++ trunk/framework/fwBatch/src/batch/status/JobFileStatus.java (revision 1717)
@@ -21,7 +21,7 @@
2121 * @param fseq ファイル連番
2222 * @return レコード情報
2323 */
24- public abstract JobFile getJobFile(Connection conn, long jseq, int dseq, int fseq);
24+ JobFile getJobFile(Connection conn, long jseq, int dseq, int fseq);
2525
2626 /**
2727 * ファイル管理レコード取得
@@ -32,7 +32,7 @@
3232 * @param fseq ファイル連番
3333 * @return レコード情報
3434 */
35- public abstract JobFile getJobFileWithLock(Connection conn, long jseq, int dseq, int fseq);
35+ JobFile getJobFileWithLock(Connection conn, long jseq, int dseq, int fseq);
3636
3737 /**
3838 * ファイル管理レコードリスト取得
@@ -41,7 +41,7 @@
4141 * @param jseq ジョブ連番
4242 * @return レコードリスト
4343 */
44- public abstract List<JobFile> selectJobFiles(Connection conn, long jseq);
44+ List<JobFile> selectJobFiles(Connection conn, long jseq);
4545
4646 /**
4747 * ファイル管理レコード更新
@@ -54,8 +54,7 @@
5454 * @param size ファイルサイズ
5555 * @return 更新件数
5656 */
57- public abstract int updateJobFile(
58- Connection conn, long jseq, int dseq, int fseq, int count, long size);
57+ int updateJobFile(Connection conn, long jseq, int dseq, int fseq, int count, long size);
5958
6059 /**
6160 * ファイル管理削除
@@ -64,7 +63,7 @@
6463 * @param jseq ジョブ連番
6564 * @return 削除件数
6665 */
67- public abstract int deleteJobFile(Connection conn, long jseq);
66+ int deleteJobFile(Connection conn, long jseq);
6867
6968 /**
7069 * ファイル管理レコード新規作成
@@ -73,7 +72,7 @@
7372 * @param jfile ジョブファイル
7473 * @return 作成件数
7574 */
76- public abstract int insertJobFile(Connection conn, JobFile jfile);
75+ int insertJobFile(Connection conn, JobFile jfile);
7776
7877 /**
7978 * バッチ生成ファイル追加
@@ -84,8 +83,7 @@
8483 * @param list 作成ファイルリスト
8584 * @return 作成レコード数
8685 */
87- public abstract int setFiles(
88- Connection conn, long jseq, int dtlno, List<Pair<String, String>> list);
86+ int setFiles(Connection conn, long jseq, int dtlno, List<Pair<String, String>> list);
8987
9088 /**
9189 * ファイル削除
@@ -94,7 +92,7 @@
9492 * @param jseq ジョブ連番
9593 * @return 処理結果数
9694 */
97- public abstract int deleteFiles(Connection conn, long jseq);
95+ int deleteFiles(Connection conn, long jseq);
9896
9997 /**
10098 * ファイル管理テーブルダウンロード回数更新
@@ -105,5 +103,5 @@
105103 * @param fseq ファイル連番
106104 * @return 取得項目値
107105 */
108- public abstract JobFile countUpDownload(Connection conn, long jseq, int dseq, int fseq);
106+ JobFile countUpDownload(Connection conn, long jseq, int dseq, int fseq);
109107 }
--- trunk/framework/fwBatch/src/batch/status/JobMasterInfo.java (revision 1716)
+++ trunk/framework/fwBatch/src/batch/status/JobMasterInfo.java (revision 1717)
@@ -15,7 +15,7 @@
1515 * @param conn コネクション
1616 * @return リスト
1717 */
18- public abstract List<JobMaster> getJobMasterInfoAll(Connection conn);
18+ List<JobMaster> getJobMasterInfoAll(Connection conn);
1919
2020 /**
2121 * ジョブ情報取得
@@ -24,5 +24,5 @@
2424 * @param jobid ジョブID
2525 * @return ジョブ情報
2626 */
27- public abstract JobMaster getJobMasterInfo(Connection conn, String jobid);
27+ JobMaster getJobMasterInfo(Connection conn, String jobid);
2828 }
--- trunk/framework/fwBatch/src/batch/status/JobStatus.java (revision 1716)
+++ trunk/framework/fwBatch/src/batch/status/JobStatus.java (revision 1717)
@@ -20,7 +20,7 @@
2020 * @param ts タイムスタンプ
2121 * @return ジョブ管理テーブル情報
2222 */
23- public abstract List<Job> getJobListByTimestamp(Connection conn, String hostId, Timestamp ts);
23+ List<Job> getJobListByTimestamp(Connection conn, String hostId, Timestamp ts);
2424
2525 /**
2626 * ジョブ管理状態取得
@@ -30,8 +30,7 @@
3030 * @param sts ステータス
3131 * @return ジョブ管理テーブル情報
3232 */
33- public abstract List<Job> getJobListByStatus(
34- Connection conn, String hostId, EnumSet<JobState> sts);
33+ List<Job> getJobListByStatus(Connection conn, String hostId, EnumSet<JobState> sts);
3534
3635 /**
3736 * ジョブ管理テーブル項目取得(排他)
@@ -40,7 +39,7 @@
4039 * @param seq ジョブ連番
4140 * @return ジョブ管理テーブル情報
4241 */
43- public abstract Job getJobWithLock(Connection conn, long seq);
42+ Job getJobWithLock(Connection conn, long seq);
4443
4544 /**
4645 * ジョブ管理テーブル項目取得
@@ -49,7 +48,7 @@
4948 * @param seq ジョブ連番
5049 * @return 取得項目値
5150 */
52- public abstract Job getJob(Connection conn, long seq);
51+ Job getJob(Connection conn, long seq);
5352
5453 /**
5554 * ジョブ管理レコード作成
@@ -58,7 +57,7 @@
5857 * @param job ジョブ管理
5958 * @return 採番された番号
6059 */
61- public abstract long insertJob(Connection conn, Job job);
60+ long insertJob(Connection conn, Job job);
6261
6362 /**
6463 * ジョブ管理状態更新
@@ -70,8 +69,7 @@
7069 * @param sts ステータス
7170 * @return 更新レコード数
7271 */
73- public abstract int updateJobStatus(
74- Connection conn, long seq, String host, String msg, JobState sts);
72+ int updateJobStatus(Connection conn, long seq, String host, String msg, JobState sts);
7573
7674 /**
7775 * ジョブ管理レコード削除
@@ -80,5 +78,5 @@
8078 * @param seq ジョブ連番
8179 * @return 削除件数
8280 */
83- public abstract int deleteJob(Connection conn, long seq);
81+ int deleteJob(Connection conn, long seq);
8482 }