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

net.encomendaz.services.TrackingService Maven / Gradle / Ivy

There is a newer version: 1.0.2
Show newest version
/*
 * EncomendaZ
 * 
 * Copyright (c) 2011, EncomendaZ .
 * All rights reserved.
 * 
 * EncomendaZ is free software; you can redistribute it and/or modify it
 * under the terms of the GNU Lesser General Public License as published
 * by the Free Software Foundation; either version 3 of the License.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, see 
 * or write to the Free Software Foundation, Inc., 51 Franklin Street,
 * Fifth Floor, Boston, MA  02110-1301, USA.
 */
package net.encomendaz.services;

import static net.encomendaz.services.Response.MEDIA_TYPE;
import static net.encomendaz.services.Tracking.SERVICE_PATH;

import java.util.List;

import javax.ws.rs.Consumes;
import javax.ws.rs.GET;
import javax.ws.rs.Path;
import javax.ws.rs.QueryParam;

import net.encomendaz.services.Response;
import net.encomendaz.services.Tracking;

@Path(SERVICE_PATH)
@Consumes(MEDIA_TYPE)
public interface TrackingService {

	@GET
	Response> search(@QueryParam("id") String id);

	@GET
	Response> search(@QueryParam("id") String id, @QueryParam("start") Integer start);

	@GET
	Response> search(@QueryParam("id") String id, @QueryParam("start") Integer start,
			@QueryParam("end") Integer end);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy