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

com.inteligr8.solr.model.ActionResponse Maven / Gradle / Ivy

The newest version!
package com.inteligr8.solr.model;

import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonProperty.Access;

@JsonIgnoreProperties(ignoreUnknown = true)
public class ActionResponse extends BaseResponse {
	
	@JsonProperty(access = Access.READ_ONLY)
	private T action;
	
	public T getAction() {
		return action;
	}
	
	protected void setAction(T action) {
		this.action = action;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy