ar.com.zauber.leviathan.scrapper.utils.ContextualResponse Maven / Gradle / Ivy
The newest version!
/**
* Copyright (c) 2009-2015 Zauber S.A.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package ar.com.zauber.leviathan.scrapper.utils;
import org.apache.commons.lang.Validate;
/**
* Clase que engloba una respuesta y un contexto que gener? dicha respuesta para
* poder pasar esa respuesta en una cadena de proceso de manera que tenga todo
* para poder interpretarlo.
*
* @param La clase que tiene el contexto de la respuesta.
* @param La respuesta en si.
*
* @author Marcelo Turrin
* @since Sep 9, 2010
*/
public class ContextualResponse {
private final C context;
private final R response;
/**
* Creates the ContextualResponse.
*
* @param context
* @param response
*/
public ContextualResponse(final C context, final R response) {
super();
Validate.notNull(context);
Validate.notNull(response);
this.context = context;
this.response = response;
}
/** retorna el contexto de la respuesta */
public final C getContext() {
return context;
}
/** la respuesta en si */
public final R getResponse() {
return response;
}
}