org.infinispan.remoting.MIMECacheEntry Maven / Gradle / Ivy
package org.infinispan.remoting;
import java.io.Serializable;
import java.util.Arrays;
/**
* Wrapper object for entries that arrive via RESTful PUT/POST interface.
* @author Michael Neale
* @since 4.0
*/
public class MIMECacheEntry implements Serializable {
private static final long serialVersionUID = -7857224258673285445L;
/**
* The MIME Content type
* value, for example application/octet-stream.
* Often used in HTTP headers.
*/
public String contentType;
/**
* The payload. The actual form of the contents depends on the contentType field.
* Will be String data if the contentType is application/json, application/xml or text/*
*/
public byte[] data;
public MIMECacheEntry() {}
public MIMECacheEntry(String contentType, byte[] data) {
this.contentType = contentType;
this.data = data;
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (!(o instanceof MIMECacheEntry)) return false;
MIMECacheEntry that = (MIMECacheEntry) o;
return !(contentType != null ? !contentType.equals(that.contentType) : that.contentType != null) && Arrays.equals(data, that.data);
}
@Override
public int hashCode() {
return 31 * (contentType != null ? contentType.hashCode() : 0) + (data != null ? Arrays.hashCode(data) : 0);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy