Examples of RetentionType


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
Copyright © 2018 www.massapi.com. 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.