All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.google.sitebricks.persist.redis.Parameter Maven / Gradle / Ivy

package com.google.sitebricks.persist.redis;

import javax.persistence.Entity;
import javax.persistence.Id;

/**
 * @author [email protected] (Dhanji R. Prasanna)
 */
@Entity
public class Parameter {
  @Id
  public final String name;
  public final String value;

  public Parameter(String name, String value) {
    this.name = name;
    this.value = value;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy