Class ConfigMetadata

  • All Implemented Interfaces:
    java.io.Serializable, scala.Equals, scala.Product, scala.Serializable

    public class ConfigMetadata
    extends java.lang.Object
    implements scala.Product, scala.Serializable
    Holds metadata information about config server

    param: 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 at repoPath

    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()  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
      • Methods inherited from interface scala.Equals

        canEqual, equals
      • Methods inherited from interface scala.Product

        productArity, productElement, productIterator, productPrefix
    • Constructor Detail

      • ConfigMetadata

        public ConfigMetadata​(java.lang.String repoPath,
                              java.lang.String annexPath,
                              java.lang.String annexMinFileSize,
                              java.lang.String maxConfigFileSize)
    • 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 class java.lang.Object