Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 8 of 8 for GetObjectTags (0.05 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. src/main/java/org/codelibs/fess/storage/StorageClient.java

        /**
         * Gets tags/metadata for an object.
         *
         * @param objectName the name/path of the object
         * @return map of tag key-value pairs
         */
        Map<String, String> getObjectTags(String objectName);
    
        /**
         * Sets tags/metadata for an object.
         *
         * @param objectName the name/path of the object
         * @param tags the tags to set
         */
    Created: Sat Dec 20 09:19:18 GMT 2025
    - Last Modified: Sat Dec 13 02:21:17 GMT 2025
    - 2.8K bytes
    - Click Count (0)
  2. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/storage/StorageClient.java

         */
        protected Tags getObjectTags(final String bucketName, final String path) {
            if (StringUtil.isEmpty(path)) {
                return null;
            }
    
            try {
                final GetObjectTagsArgs args = GetObjectTagsArgs.builder().bucket(bucketName).object(path).build();
                return minioClient.getObjectTags(args);
            } catch (final ErrorResponseException e) {
    Created: Sat Dec 20 11:21:39 GMT 2025
    - Last Modified: Mon Nov 24 03:59:47 GMT 2025
    - 20K bytes
    - Click Count (2)
  3. src/main/java/org/codelibs/fess/app/web/admin/storage/AdminStorageAction.java

         * @return map of tag key-value pairs
         * @throws StorageException if retrieving tags fails
         */
        public static Map<String, String> getObjectTags(final String objectName) {
            try (StorageClient client = StorageClientFactory.createClient()) {
                return client.getObjectTags(objectName);
            } catch (final Exception e) {
                throw new StorageException("Failed to get tags from " + objectName, e);
            }
    Created: Sat Dec 20 09:19:18 GMT 2025
    - Last Modified: Sat Dec 13 02:21:17 GMT 2025
    - 22.1K bytes
    - Click Count (0)
  4. src/main/java/org/codelibs/fess/storage/S3StorageClient.java

                    logger.debug("Failed to list objects in {}", bucket, e);
                }
            }
    
            return items;
        }
    
        @Override
        public Map<String, String> getObjectTags(final String objectName) {
            try {
                final GetObjectTaggingRequest request = GetObjectTaggingRequest.builder().bucket(bucket).key(objectName).build();
    Created: Sat Dec 20 09:19:18 GMT 2025
    - Last Modified: Sat Dec 13 02:21:17 GMT 2025
    - 10.9K bytes
    - Click Count (0)
  5. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/s3/S3Client.java

                                + maxLength + " byte. The url is " + filePath);
                    }
                }
    
                if (includeContent) {
                    final Map<String, String> objectTags = getObjectTags(bucketName, path);
                    if (objectTags != null) {
                        objectTags.forEach(responseData::addMetaData);
                    }
                    if (headObject.contentLength() < maxCachedContentSize) {
    Created: Sat Dec 20 11:21:39 GMT 2025
    - Last Modified: Thu Dec 11 08:38:29 GMT 2025
    - 21.4K bytes
    - Click Count (0)
  6. cmd/erasure-sets.go

    	er := s.getHashedSet(object)
    	return er.DeleteObjectTags(ctx, bucket, object, opts)
    }
    
    // GetObjectTags - get object tags from an existing object
    func (s *erasureSets) GetObjectTags(ctx context.Context, bucket, object string, opts ObjectOptions) (*tags.Tags, error) {
    	er := s.getHashedSet(object)
    	return er.GetObjectTags(ctx, bucket, object, opts)
    }
    
    // TransitionObject - transition object content to target tier.
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Fri Aug 29 02:39:48 GMT 2025
    - 37K bytes
    - Click Count (1)
  7. cmd/object-api-interface.go

    	DecomTieredObject(context.Context, string, string, FileInfo, ObjectOptions) error
    
    	// ObjectTagging operations
    	PutObjectTags(context.Context, string, string, string, ObjectOptions) (ObjectInfo, error)
    	GetObjectTags(context.Context, string, string, ObjectOptions) (*tags.Tags, error)
    	DeleteObjectTags(context.Context, string, string, ObjectOptions) (ObjectInfo, error)
    }
    
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Sun Sep 28 20:59:21 GMT 2025
    - 17.5K bytes
    - Click Count (0)
  8. cmd/object-handlers.go

    		return
    	}
    
    	opts, err := getOpts(ctx, r, bucket, object)
    	if err != nil {
    		writeErrorResponse(ctx, w, toAPIError(ctx, err), r.URL)
    		return
    	}
    
    	ot, err := objAPI.GetObjectTags(ctx, bucket, object, opts)
    	if err != nil {
    		// if object/version is not found locally, but exists on peer site - proxy
    		// the tagging request to peer site. The response to client will
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Sun Sep 28 20:59:21 GMT 2025
    - 120.6K bytes
    - Click Count (0)
Back to Top