(empty log message)
@@ -47,38 +47,30 @@ | ||
47 | 47 | * @throws Exception 例外 |
48 | 48 | */ |
49 | 49 | public void afterPropertiesSet() throws Exception {} |
50 | - | |
51 | - /** | |
52 | - * ストアドを実行し、実行結果リストを取得します。 | |
53 | - * @param id ストアドID | |
54 | - * @param parameters ストアド引数情報オブジェクト | |
55 | - * @return ストアド実行結果リスト | |
56 | - * @throws SQLException SQL例外 | |
57 | - */ | |
50 | + | |
51 | + /** | |
52 | + * {@inheritDoc} | |
53 | + */ | |
54 | + @Override | |
58 | 55 | public Object queryForObject(String id, Parameters parameters) throws SQLException { |
59 | 56 | execute(id, parameters); |
60 | 57 | return super.getResult(getStoredType(id).getResult()); |
61 | 58 | } |
62 | - | |
63 | - /** | |
64 | - * ストアドを実行し、実行結果オブジェクトを取得します。 | |
65 | - * @param id ストアドID | |
66 | - * @param parameters ストアド引数情報オブジェクト | |
67 | - * @return ストアド事項結果オブジェクト | |
68 | - * @throws SQLException SQL例外 | |
69 | - */ | |
59 | + | |
60 | + /** | |
61 | + * {@inheritDoc} | |
62 | + */ | |
63 | + @Override | |
70 | 64 | @SuppressWarnings("unchecked") |
71 | 65 | public List queryForList(String id, Parameters parameters) throws SQLException { |
72 | 66 | execute(id, parameters); |
73 | 67 | return getResults(getStoredType(id).getResult()); |
74 | 68 | } |
75 | - | |
76 | - /** | |
77 | - * ストアドを実行します。 | |
78 | - * @param id ストアドID | |
79 | - * @param parameters ストアド引数情報オブジェクト | |
80 | - * @throws SQLException SQL例外 | |
81 | - */ | |
69 | + | |
70 | + /** | |
71 | + * {@inheritDoc} | |
72 | + */ | |
73 | + @Override | |
82 | 74 | public void execute(String id, Parameters parameters) throws SQLException { |
83 | 75 | execute(getStoredType(id), parameters); |
84 | 76 | } |