Class CacheJdbcType

    • Constructor Detail

      • CacheJdbcType

        public CacheJdbcType()
        Create data transfer object for given cache type metadata.
      • CacheJdbcType

        public CacheJdbcType​(JdbcType jdbcType)
        Create data transfer object for given cache type metadata.
        Parameters:
        jdbcType - JDBC type.
    • Method Detail

      • list

        public static List<CacheJdbcType> list​(javax.cache.configuration.Factory factory)
        Parameters:
        factory - Store factory to extract JDBC types info.
        Returns:
        Data transfer object for cache type metadata configurations.
      • getDatabaseSchema

        public String getDatabaseSchema()
        Returns:
        Schema name in database.
      • getDatabaseTable

        public String getDatabaseTable()
        Returns:
        Table name in database.
      • getKeyType

        public String getKeyType()
        Returns:
        Key class used to store key in cache.
      • getValueType

        public String getValueType()
        Returns:
        Value class used to store value in cache.