Skip to content

Commit 4d6848c

Browse files
authored
Fix Javadoc warning in integration test (#2484)
1 parent c63248a commit 4d6848c

File tree

1 file changed

+35
-5
lines changed

1 file changed

+35
-5
lines changed

integration-test/src/main/java/com/scalar/db/api/DistributedStorageAdminImportTableIntegrationTestBase.java

Lines changed: 35 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -210,29 +210,59 @@ public void importTable_ForImportedTable_ShouldPutThenGetCorrectly() throws Exec
210210
/** This interface defines test data for running import table related integration tests. */
211211
public interface TestData {
212212

213-
/** Returns true if the table is supported for import, false otherwise */
213+
/**
214+
* Returns true if the table is supported for import, false otherwise
215+
*
216+
* @return true if the table is supported for import, false otherwise
217+
*/
214218
boolean isImportableTable();
215219

216-
/** Returns the table name */
220+
/**
221+
* Returns the table name
222+
*
223+
* @return the table name
224+
*/
217225
String getTableName();
218226

219-
/** Returns the columns for which the data type should be overridden when importing the table */
227+
/**
228+
* Returns the columns for which the data type should be overridden when importing the table
229+
*
230+
* @return the columns for which the data type should be overridden when importing the table
231+
*/
220232
Map<String, DataType> getOverrideColumnsType();
221233

222234
/*
223235
* Returns the expected table metadata of the imported table
236+
* @return the expected table metadata of the imported table
224237
*/
225238
TableMetadata getTableMetadata();
226239

227-
/** Returns a sample Insert operation for the table */
240+
/**
241+
* Returns a sample Insert operation for the table
242+
*
243+
* @param namespace the namespace of the table
244+
* @param table the table name
245+
* @return a sample Insert operation
246+
*/
228247
Insert getInsert(String namespace, String table);
229248

230-
/** Returns a sample Put operation for the table */
249+
/**
250+
* Returns a sample Put operation for the table
251+
*
252+
* @param namespace the namespace of the table
253+
* @param table the table name
254+
* @return a sample Put operation
255+
*/
231256
Put getPut(String namespace, String table);
232257

233258
/**
234259
* Returns a Get operation to retrieve the record inserted with {@link #getPut(String, String)}
235260
* or {@link #getInsert(String, String)}
261+
*
262+
* @param namespace the namespace of the table
263+
* @param table the table name
264+
* @return a Get operation to retrieve the record inserted with {@link #getPut(String, String)}
265+
* or {@link #getInsert(String, String)}
236266
*/
237267
Get getGet(String namespace, String table);
238268
}

0 commit comments

Comments
 (0)