Package csw.config.models
Class ConfigMetadata
- java.lang.Object
-
- csw.config.models.ConfigMetadata
-
- All Implemented Interfaces:
java.io.Serializable
,scala.Equals
,scala.Product
public class ConfigMetadata extends java.lang.Object implements scala.Product, java.io.Serializable
Holds metadata information about config serverparam: repoPath the path of the repository created on config server param: annexPath the path of the repository created to store large files on config server param: annexMinFileSize the minimum size of the file (lower limit) which qualifies it to be considered as large file and store it in repository located at
annexPath
param: maxConfigFileSize the maximum size of file (upper limit) which qualifies it to be considered as non-large file and store it in repository located atrepoPath
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ConfigMetadata(java.lang.String repoPath, java.lang.String annexPath, java.lang.String annexMinFileSize, java.lang.String maxConfigFileSize)
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description java.lang.String
annexMinFileSize()
java.lang.String
annexPath()
abstract static R
apply(T1 v1, T2 v2, T3 v3, T4 v4)
java.lang.String
maxConfigFileSize()
java.lang.String
repoPath()
java.lang.String
toString()
-
-
-
Method Detail
-
apply
public abstract static R apply(T1 v1, T2 v2, T3 v3, T4 v4)
-
repoPath
public java.lang.String repoPath()
-
annexPath
public java.lang.String annexPath()
-
annexMinFileSize
public java.lang.String annexMinFileSize()
-
maxConfigFileSize
public java.lang.String maxConfigFileSize()
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
-