Interface Resource

    • Method Detail

      • create

        static Resource create​(URI uri)
        Load resource from URI provided. Note that the loading is lazy - this method opens the stream, but byte are ready only once you call bytes() and other content retrieval-methods.
        Parameters:
        uri - Resource location
        Returns:
        resource instance
      • create

        static Resource create​(URI uri,
                               Proxy proxy)
        Load resource from URI provided with an explicit proxy server. Note that the loading is lazy - this method opens the stream, but byte are ready only once you call bytes() and other content retrieval-methods.
        Parameters:
        uri - Resource location
        proxy - HTTP proxy to use when accessing the URI
        Returns:
        resource instance
      • create

        static Resource create​(String resourcePath)
        Load resource from classpath. Note that the loading is lazy - this method opens the stream, but byte are ready only once you call bytes() and other content retrieval-methods.
        Parameters:
        resourcePath - classpath path
        Returns:
        resource instance
      • create

        static Resource create​(Path fsPath)
        Load resource from file system. Note that the loading is lazy - this method opens the stream, but byte are ready only once you call bytes() and other content retrieval-methods.
        Parameters:
        fsPath - path of file system
        Returns:
        resource instance
      • create

        static Resource create​(String description,
                               byte[] bytes)
        Load resource from binary content.
        Parameters:
        description - description of this resource (e.g. "keystore")
        bytes - raw bytes of this resource
        Returns:
        resource instance
      • create

        static Resource create​(String description,
                               String string)
        Load resource from text content (e.g. this must not be base64 - use create(String, byte[]) for binary).
        Parameters:
        description - description of this resource (e.g. "JWK-private")
        string - string content of this resource, will be transformed to bytes using UTF-8 encoding
        Returns:
        resource instance
      • create

        static Resource create​(String description,
                               InputStream inputStream)
        Load resource from binary content from an input stream, using Resource.Source.UNKNOWN type.
        Parameters:
        description - description of this resource (e.g. "keystore")
        inputStream - input stream to raw bytes of this resource
        Returns:
        resource instance
      • create

        static Resource create​(Config resourceConfig)
        Loads the resource from appropriate location based on configuration. Keys supported (in this order):
        • path: File system path
        • resource-path: Class-path resource
        • url: URL to resource
        • content: actual content (base64 encoded bytes)
        • content-plain: actual content (string)
        • use-proxy: set to false not to go through a proxy; will only use proxy if it is defined used "proxy-host" and optional "proxy-port" (defaults to 80); ignored unless URL is used
        Parameters:
        resourceConfig - configuration current node must be the node containing the location of the resource, by convention in helidon, this should be on key named resource
        Returns:
        a resource ready to load from one of the locations
        Throws:
        ConfigException - in case this config does not define a resource configuration
      • create

        @Deprecated(since="2.0.0",
                    forRemoval=true)
        static Optional<Resource> create​(Config config,
                                         String prefix)
        Deprecated, for removal: This API element is subject to removal in a future version.
        since 2.0.0 use create(io.helidon.config.Config) instead (and change the configuration to use .resource.type instead of prefixes
        Support for old API and configuration.
        Parameters:
        config - configuration
        prefix - prefix of the resource
        Returns:
        resource if configured
      • stream

        InputStream stream()
        Get an input stream to this resource. If this method is called first, you actually get "THE" stream to the resource and there will be no buffering done. Once this happens, you cannot call any other method on this instance. If you create the resource with byte content (e.g. from string), the content will be pre-buffered. If you first call another method (such as bytes(), or explicitly buffer this resource cacheBytes(), you will get a new input stream to the buffered bytes and may call this method multiple times.
        Returns:
        input stream ready to read bytes
        Throws:
        IllegalStateException - in case the stream was already provided in previous call and was not buffered
      • bytes

        byte[] bytes()
        Get bytes of this resource. Buffers the resource bytes in memory.
        Returns:
        bytes of this resource
        Throws:
        IllegalStateException - in case the stream was already provided in previous call and was not buffered
      • string

        String string()
        Get string content of this resource. Buffers the resource bytes in memory.
        Returns:
        string content of this instance, using UTF-8 encoding to decode bytes
        Throws:
        IllegalStateException - in case the stream was already provided in previous call and was not buffered
      • string

        String string​(Charset charset)
        Get string content of this resource. Buffers the resource bytes in memory.
        Parameters:
        charset - Character set (encoding) to use to decode bytes
        Returns:
        string content of this instance, using your encoding to decode bytes
        Throws:
        IllegalStateException - in case the stream was already provided in previous call and was not buffered
      • sourceType

        Resource.Source sourceType()
        Type of this resource, depends on the original source.
        Returns:
        type
      • location

        String location()
        Location (or description) of this resource, depends on original source. Depending on source, this may be:
        Returns:
        location of this resource (or other description of where it comes from)
      • cacheBytes

        void cacheBytes()
        Caches the resource bytes in memory, so they can be repeatedly accessed. Be VERY careful with all methods that cache the bytes, as this may cause a memory issue!