Package com.linkedin.databus.bootstrap.common.BootstrapCleanerStaticConfig

Examples of com.linkedin.databus.bootstrap.common.BootstrapCleanerStaticConfig.RetentionType


    @Override
    public RetentionStaticConfig build() throws InvalidConfigException
    {
      try
      {
        RetentionType type = RetentionType.valueOf(retentionType);
        return new RetentionStaticConfig(type, retentionQuantity);
      } catch (Exception ex) {
        throw new InvalidConfigException(ex);
      }
    }
View Full Code Here

TOP

Related Classes of com.linkedin.databus.bootstrap.common.BootstrapCleanerStaticConfig.RetentionType

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.