Class AbstractCollectionFormInjector<T>

    • Constructor Detail

      • AbstractCollectionFormInjector

        protected AbstractCollectionFormInjector​(Class collectionType,
                                                 Class genericType,
                                                 String prefix,
                                                 Pattern pattern,
                                                 ResteasyProviderFactory factory)
        Creates an injector to inject a collection.
        Parameters:
        collectionType - The type of collection to return.
        genericType - The type of elements in the collection.
        prefix - prefix
        pattern - The pattern that a field name should follow to be a part of this collection. The first group in the pattern must be the index.
        factory - provider factory
    • Method Detail

      • inject

        public Object inject​(HttpRequest request,
                             HttpResponse response,
                             boolean unwrapAsync)
        Inject inside the context of an HTTP request. Wraps the request in a Creates a collection instance and fills it with content by using the super implementation.
        Specified by:
        inject in interface ValueInjector
        Overrides:
        inject in class PrefixedFormInjector
        Parameters:
        request - http request
        response - http response
        unwrapAsync - unwrap async
        Returns:
        object
      • createInstance

        protected abstract T createInstance​(Class collectionType)
        Creates an instance of the collection type.
        Parameters:
        collectionType - collection type
        Returns:
        object instance of type T
      • addTo

        protected abstract void addTo​(T collection,
                                      String key,
                                      Object value)
        Adds the item to the collection.
        Parameters:
        collection - collection
        key - key
        value - value