Class StringConfiguration

  • All Implemented Interfaces:
    BasicConfiguration
    Direct Known Subclasses:
    XMLStringConfiguration

    public class StringConfiguration
    extends Object
    implements BasicConfiguration
    A simple wrapper for a configuration represented as a String. The configuration can be in any of the supported formats: XML, JSON, and YAML.
    Since:
    14.0
    Author:
    Tristan Tarrant
    • Constructor Detail

      • StringConfiguration

        public StringConfiguration​(String string)
    • Method Detail

      • toStringConfiguration

        public String toStringConfiguration​(String name)
        Description copied from interface: BasicConfiguration
        Converts this configuration to a string-based representation. The name of the configuration in the will be the one supplied in the argument. The string must be in one of the supported formats (XML, JSON, YAML).
        Specified by:
        toStringConfiguration in interface BasicConfiguration
        Returns:
        a String containing the representation of an Infinispan configuration using the Infinispan schema in one of the supported formats (XML, JSON, YAML).