Package csw.config.models
Class ConfigFileInfo
- java.lang.Object
-
- csw.config.models.ConfigFileInfo
-
- All Implemented Interfaces:
java.io.Serializable
,scala.Equals
,scala.Product
public class ConfigFileInfo extends java.lang.Object implements scala.Product, java.io.Serializable
Contains information about a config file stored in the config serviceparam: path the path of file sitting in config service param: id the ConfigId representing unique id of the file param: comment the comment end user wants to provide while committing the file in config service
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ConfigFileInfo(java.nio.file.Path path, ConfigId id, java.lang.String author, java.lang.String comment)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
author()
java.lang.String
comment()
ConfigId
id()
java.nio.file.Path
path()
-
-
-
Constructor Detail
-
ConfigFileInfo
public ConfigFileInfo(java.nio.file.Path path, ConfigId id, java.lang.String author, java.lang.String comment)
-
-
Method Detail
-
path
public java.nio.file.Path path()
-
id
public ConfigId id()
-
author
public java.lang.String author()
-
comment
public java.lang.String comment()
-
-