All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.ctrip.framework.apollo.PropertiesCompatibleConfigFile Maven / Gradle / Ivy

The newest version!
package com.ctrip.framework.apollo;

import java.util.Properties;

/**
 * Config files that are properties compatible, e.g. yaml
 *
 * @since 1.3.0
 */
public interface PropertiesCompatibleConfigFile extends ConfigFile {

  /**
   * @return the properties form of the config file
   *
   * @throws RuntimeException if the content could not be transformed to properties
   */
  Properties asProperties();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy