- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for StorageURLConnection (0.07 sec)
-
fess-crawler/src/test/java/org/codelibs/fess/net/protocol/storage/HandlerTest.java
Handler handler = new Handler(); URLConnection conn = handler.openConnection(url); assertTrue(conn instanceof Handler.StorageURLConnection); Handler.StorageURLConnection storageConn = (Handler.StorageURLConnection) conn; // Use reflection to access private fields for testing assertEquals("mybucket", getField(storageConn, "bucketName"));
Registered: 2025-12-20 11:21 - Last Modified: 2025-12-11 08:38 - 14.4K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/net/protocol/storage/Handler.java
* * @param u The URL to open a connection to * @return A new StorageURLConnection instance * @throws IOException If the connection cannot be opened */ @Override protected URLConnection openConnection(final URL u) throws IOException { return new StorageURLConnection(u); } /** * StorageURLConnection is a URL connection implementation for accessing storage objects.Registered: 2025-12-20 11:21 - Last Modified: 2025-11-20 08:52 - 11.1K bytes - Viewed (0)