- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for GcsStorageClient (0.29 sec)
-
src/main/java/org/codelibs/fess/storage/GcsStorageClient.java
/** * Google Cloud Storage client implementation. */ public class GcsStorageClient implements StorageClient { private static final Logger logger = LogManager.getLogger(GcsStorageClient.class); private final Storage storage; private final String bucket; /** * Creates a new GcsStorageClient instance. * * @param projectId the GCS project ID * @param bucket the bucket nameRegistered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 13 02:21:17 UTC 2025 - 10.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/storage/StorageClientFactory.java
} } else { type = parseStorageType(typeStr); } switch (type) { case GCS: return new GcsStorageClient(fessConfig.getStorageProjectId(), bucket, endpoint, fessConfig.getStorageCredentialsPath()); case S3: case S3_COMPAT: default:Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 20 05:56:45 UTC 2025 - 4.2K bytes - Viewed (0)