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.column; 017 018import org.opengion.hayabusa.db.AbstractEditor; 019import org.opengion.hayabusa.db.CellEditor; 020import org.opengion.hayabusa.db.DBColumn; 021import org.opengion.fukurou.util.XHTMLTag; 022 023/** 024 * UPLOAD エディターは、ファイルアップロードを行う場合に使用する編集用クラスです。 025 * 026 * ファイルアップロードで、行ごとに指定できる機能を追加します。 027 * 新しいファイルを、カラム名_NEW で指定することで、事前に指定されたファイル名に 028 * 強制変更後にアップロード可能です。 029 * つまり、inputタグのtype="file" で指定するカラム名(例:file)と、対応する 030 * 新ファイル名(例:file_NEW) を作成し、新ファイル名 を hidden 等で渡します。 031 * さらに、form の送信先は、forward.jsp ではなく、実際に処理したい画面に直接 032 * 送信します。これは、ファイルアップロードが、enctype="multipart/form-data" 033 * のため、forward.jsp で処理できない為です。 034 * ちなみに、ORACLEの場合、カラム名にFILE は使えません。これは予約語になっています。 035 * 下記サンプルJSP(34CheckIn2)でも、UFILE にしています。 036 * 037 * カラムの表示に必要な属性は、DBColumn オブジェクト より取り出します。 038 * このクラスは、DBColumn オブジェクト毎に1つ作成されます。 039 * 040 * @og.rev 3.8.6.0 (2006/09/29) 新規追加 041 * 042 * @og.group データ編集 043 * 044 * @version 4.0 045 * @author Kazuhiko Hasegawa 046 * @since JDK5.0, 047 */ 048public class Editor_UPLOAD extends AbstractEditor { 049 /** このプログラムのVERSION文字列を設定します。 {@value} */ 050 private static final String VERSION = "4.0.0.0 (2005/08/31)" ; 051 052 /** 053 * デフォルトコンストラクター。 054 * このコンストラクターで、基本オブジェクトを作成します。 055 * 056 * @og.rev 3.1.1.1 (2003/04/03) 各オブジェクトから自分のインスタンスを返すファクトリメソッドを追加。 057 * 058 */ 059 public Editor_UPLOAD() { super(); } // これも、自動的に呼ばれるが、空のメソッドを作成すると警告されるので、明示的にしておきます。 060 061 /** 062 * DBColumnオブジェクトを指定したprivateコンストラクター。 063 * 064 * @param clm DBColumnオブジェクト 065 */ 066 private Editor_UPLOAD( final DBColumn clm ) { 067 super( clm ); 068 attributes.set( "type" ,"file" ); 069 tagBuffer.add( XHTMLTag.inputAttri( attributes ) ); 070 } 071 072 /** 073 * 各オブジェクトから自分のインスタンスを返します。 074 * 自分自身をキャッシュするのか、新たに作成するのかは、各サブクラスの実装に 075 * まかされます。 076 * 077 * @param clm DBColumnオブジェクト 078 * 079 * @return CellEditorオブジェクト 080 * @og.rtnNotNull 081 */ 082 public CellEditor newInstance( final DBColumn clm ) { 083 return new Editor_UPLOAD( clm ); 084 } 085}