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

com.redis.spring.batch.memcached.MemcachedEntry Maven / Gradle / Ivy

The newest version!
package com.redis.spring.batch.memcached;

import java.util.Arrays;
import java.util.Objects;

public class MemcachedEntry {

	private String key;
	private byte[] value;
	private int expiration;

	public String getKey() {
		return key;
	}

	public void setKey(String key) {
		this.key = key;
	}

	public byte[] getValue() {
		return value;
	}

	public void setValue(byte[] value) {
		this.value = value;
	}

	/**
	 * Expiration POSIX time in seconds for this key.
	 */
	public int getExpiration() {
		return expiration;
	}

	public void setExpiration(int expiration) {
		this.expiration = expiration;
	}

	@Override
	public int hashCode() {
		final int prime = 31;
		int result = 1;
		result = prime * result + Arrays.hashCode(value);
		result = prime * result + Objects.hash(expiration, key);
		return result;
	}

	@Override
	public boolean equals(Object obj) {
		if (this == obj)
			return true;
		if (obj == null)
			return false;
		if (getClass() != obj.getClass())
			return false;
		MemcachedEntry other = (MemcachedEntry) obj;
		return expiration == other.expiration && Objects.equals(key, other.key) && Arrays.equals(value, other.value);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy