Package org.springframework.data.gemfire

Examples of org.springframework.data.gemfire.DataPolicyConverter


   * @see com.gemstone.gemfire.cache.DataPolicy
   * @see #setDataPolicy(com.gemstone.gemfire.cache.DataPolicy)
   * @deprecated use setDataPolicy(:DataPolicy) instead.
   */
  public void setDataPolicyName(String dataPolicyName) {
    final DataPolicy resolvedDataPolicy = new DataPolicyConverter().convert(dataPolicyName);
    Assert.notNull(resolvedDataPolicy, String.format("Data Policy '%1$s' is invalid.", dataPolicyName));
    setDataPolicy(resolvedDataPolicy);
  }
View Full Code Here

TOP

Related Classes of org.springframework.data.gemfire.DataPolicyConverter

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.