001/* 002 * Copyright (c) 2009 The openGion Project. 003 * 004 * Licensed under the Apache License, Version 2.0 (the "License"); 005 * you may not use this file except in compliance with the License. 006 * You may obtain a copy of the License at 007 * 008 * http://www.apache.org/licenses/LICENSE-2.0 009 * 010 * Unless required by applicable law or agreed to in writing, software 011 * distributed under the License is distributed on an "AS IS" BASIS, 012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, 013 * either express or implied. See the License for the specific language 014 * governing permissions and limitations under the License. 015 */ 016package org.opengion.plugin.query; 017 018import org.opengion.fukurou.system.DateSet; // 6.4.2.0 (2016/01/29) 019// import org.opengion.hayabusa.db.DBConstValue; 020 021/** 022 * データベース登録時に、固定値カラムの設定を行う情報を管理するクラスです。 023 * このクラスは、GrowingMIS Ver6用の管理クラスです。 024 * 具体的には、 025 * 作成日時 DYSET 026 * 作成PG PGSET 027 * 作成親PG PGPSET 028 * 作成社員 USRSET 029 * 更新日時 DYUPD 030 * 更新PG PGUPD 031 * 更新親PG PGPUPD 032 * 更新社員 USRUPD 033 * などの情報を、INSERT、UPDATE の状況に応じて提供します。 034 * INSERT には、すべての情報(XXUPD)にも値をセットします。 035 * これは、UPDATE された日付や時刻で、一覧検索できるようにする為で、 036 * null にしておくと、IS NULL で問い合わせる必要があります。 037 * INSERT データだけ取出す場合は、WHERE DYSET = DYUPD とします。 038 * また、物理SEQは、SEQxxxx(xxxxはテーブル名)形式のカラム名とし、 039 * 値は、SEQxxxxS01.NEXTVAL とします。 040 * 041 * コンストラクターでは、テーブル名、ユーザーID,画面ID を受け取ります。 042 * 登録時刻は、このオブジェクトが生成された時間を通常は使用します。 043 * テーブル名を渡すのは、ワークなど、テーブル単位に処理するカラムが 044 * 異なるので、それへの対応です。 045 * 処理が簡素化できるように、ルールを規定すべきです。 046 * 047 * @og.rev 5.5.1.8 (2012/04/17) 新規追加 048 * @og.rev 6.9.9.0 (2018/08/20) GJ → NOFGJ に変更 049 * @og.rev 8.5.6.1 (2024/03/29) AbstractDBConstValue を継承して使用します。 050 * @og.group データ登録 051 * 052 * @version 5.5 053 * @author Kazuhiko Hasegawa 054 * @since JDK7.0, 055 */ 056// public class DBConstValue_NOFGJ implements DBConstValue { 057public class DBConstValue_NOFGJ extends AbstractDBConstValue { 058 /** このプログラムのVERSION文字列を設定します。 {@value} */ 059 private static final String VERSION = "8.5.6.1 (2024/03/29)" ; 060 061 private static final String[] MSTR_INSKEYS = { "DYSET","PGSET","PGPSET","USRSET","DYUPD","PGUPD","PGPUPD","USRUPD" }; 062 063 private static final String[] MSTR_UPDKEYS = { "DYUPD","PGUPD","PGPUPD","USRUPD" }; 064 065// // 8.5.6.1 (2024/03/29) AbstractDBConstValue を継承して使用します。 066// private static final String[] ZERO = new String[0] ; 067// 068// private String[] insKeys = ZERO; 069// private String[] insVals = ZERO; 070// 071// private String[] updKeys = ZERO; 072// private String[] updVals = ZERO; 073 074 /** 075 * デフォルトコンストラクター 076 * 077 * @og.rev 6.4.2.0 (2016/01/29) PMD refactoring. Each class should declare at least one constructor. 078 */ 079 public DBConstValue_NOFGJ() { super(); } // これも、自動的に呼ばれるが、空のメソッドを作成すると警告されるので、明示的にしておきます。 080 081 /** 082 * 初期化情報を設定します。 083 * 084 * @og.rev 6.4.2.0 (2016/01/29) DateSet.getDate( String ) を利用するように修正します。 085 * @og.rev 8.5.6.1 (2024/03/29) abstract なのは、pgamen 引数付きの init メソッドです。 086 * 087 * @param table テーブル名 088 * @param user ユーザーID 089 * @param gamen 画面ID 090 */ 091 @Override // DBConstValue 092// public void init( final String table, final String user, final String gamen ) { 093 public void init( final String table, final String user, final String gamen, final String pgamen ) { 094 if( isUseClm( table ) ) { 095 final String userID = "'" + user + "'"; 096 final String gamenID = "'" + gamen + "'"; 097 final String timestamp = "'" + DateSet.getDate( "yyyyMMddHHmmss" ) + "'" ; // 6.4.2.0 (2016/01/29) 098 099 insKeys = MSTR_INSKEYS; 100 insVals = new String[] { 101 timestamp // DYSET 102 ,gamenID // PGSET 103 ,gamenID // PGPSET 104 ,userID // USRSET 105 ,timestamp // DYUPD 106 ,gamenID // PGUPD 107 ,gamenID // PGPUPD 108 ,userID // USRUPD 109 }; 110 111 updKeys = MSTR_UPDKEYS; 112 updVals = new String[] { 113 timestamp // DYUPD 114 ,gamenID // PGUPD 115 ,gamenID // PGPUPD 116 ,userID // USRUPD 117 }; 118 } 119 } 120 121// /** 122// * インサートする場合のキー配列を返します。 123// * 124// * 指定の値がなければ、長さゼロ配列を返します。 125// * 126// * @og.rev 8.5.6.1 (2024/03/29) AbstractDBConstValue を継承して使用します。 127// * 128// * @return インサートする場合のキー配列(非null) 129// * @og.rtnNotNull 130// */ 131// @Override // DBConstValue 132// public String[] getInsertKeys() { 133// return insKeys.clone(); 134// } 135 136// /** 137// * インサートする場合の値配列を返します。 138// * 139// * 指定の値がなければ、長さゼロ配列を返します。 140// * 141// * @og.rev 8.5.6.1 (2024/03/29) AbstractDBConstValue を継承して使用します。 142// * 143// * @return インサートする場合のキー配列(非null) 144// * @og.rtnNotNull 145// */ 146// @Override // DBConstValue 147// public String[] getInsertVals() { 148// return insVals.clone(); 149// } 150 151// /** 152// * アップデートする場合のキー配列を返します。 153// * 154// * 指定の値がなければ、長さゼロ配列を返します。 155// * 156// * @og.rev 8.5.6.1 (2024/03/29) AbstractDBConstValue を継承して使用します。 157// * 158// * @return アップデートする場合のキー配列(非null) 159// * @og.rtnNotNull 160// */ 161// @Override // DBConstValue 162// public String[] getUpdateKeys() { 163// return updKeys.clone(); 164// } 165 166// /** 167// * アップデートする場合の値配列を返します。 168// * 169// * 指定の値がなければ、長さゼロ配列を返します。 170// * 171// * @og.rev 8.5.6.1 (2024/03/29) AbstractDBConstValue を継承して使用します。 172// * 173// * @return アップデートする場合のキー配列(非null) 174// * @og.rtnNotNull 175// */ 176// @Override // DBConstValue 177// public String[] getUpdateVals() { 178// return updVals.clone(); 179// } 180 181// /** 182// * デリート(論理削除) する場合のキー配列を返します。 183// * 184// * 指定の値がなければ、長さゼロ配列を返します。 185// * 186// * @og.rev 6.3.9.0 (2015/11/06) Returning 'ZERO' may expose an internal array.(PMD) 187// * @og.rev 8.5.6.1 (2024/03/29) AbstractDBConstValue を継承して使用します。 188// * 189// * @return デリートする場合のキー配列(非null) 190// * @og.rtnNotNull 191// */ 192// @Override // DBConstValue 193// public String[] getLogicalDeleteKeys() { 194// return ZERO.clone(); // 6.3.9.0 (2015/11/06) Returning 'ZERO' may expose an internal array.(PMD) 195// } 196 197// /** 198// * デリート(論理削除) する場合の値配列を返します。 199// * 200// * 指定の値がなければ、長さゼロ配列を返します。 201// * 202// * @og.rev 6.3.9.0 (2015/11/06) Returning 'ZERO' may expose an internal array.(PMD) 203// * @og.rev 8.5.6.1 (2024/03/29) AbstractDBConstValue を継承して使用します。 204// * 205// * @return デリートする場合のキー配列(非null) 206// * @og.rtnNotNull 207// */ 208// @Override // DBConstValue 209// public String[] getLogicalDeleteVals() { 210// return ZERO.clone(); // 6.3.9.0 (2015/11/06) Returning 'ZERO' may expose an internal array.(PMD) 211// } 212 213// /** 214// * カラムを返すかどうかを決めるロジック 215// * 216// * テーブル名が存在していれば、利用可能と判断します。 217// * これは、履歴テーブルなど、この処理を使わない場合に、 218// * テーブル名から判定する場合に使います。現時点では、履歴テーブルは 219// * フレームワーク側で変更するのではなく、トリガ等による自動収集と 220// * しますので、判定対象としていません。 221// * 222// * @og.rev 8.5.6.1 (2024/03/29) AbstractDBConstValue を継承して使用します。 223// * 224// * @param table テーブル名 225// * 226// * @return カラムを返すかどうか(true:カラムを生成/false:カラムは生成しない) 227// */ 228// private boolean isUseClm( final String table ) { 229// // 7.2.9.5 (2020/11/28) PMD:Consider simply returning the value vs storing it in local variable 'XXXX' 230// return table != null && table.length() > 0 ; 231//// final boolean flag = table != null && table.length() > 0 ; 232// 233//// return flag ; 234// } 235}