RequestRideService.java :  » UnTagged » green-plate » mobi » greenplate » client » service » Android Open Source

Android Open Source » UnTagged » green plate 
green plate » mobi » greenplate » client » service » RequestRideService.java
package mobi.greenplate.client.service;

import java.util.List;
import mobi.greenplate.client.domain.RequestRide;
import mobi.greenplate.client.domain.User;

public class RequestRideService {

    public void delete(Long id) {
        throw new UnsupportedOperationException();
    }

    public RequestRide save(RequestRide requestRide, User requester) {
        throw new UnsupportedOperationException();
    }

    public RequestRide findById(Long id) {
        throw new UnsupportedOperationException();
    }    

    public List<RequestRide> findAll(int firstResult, int maxResult) {
        throw new UnsupportedOperationException();
    }   

    public List<RequestRide> findByRequester(int firstResult, int maxResult, Long requesterId) {
        throw new UnsupportedOperationException();
    }   

    public List<RequestRide> findByStartAddress(int firstResult, int maxResult, Long startAddressId) {
        throw new UnsupportedOperationException();
    }   

    public List<RequestRide> findByEndAddress(int firstResult, int maxResult, Long endAddressId) {
        throw new UnsupportedOperationException();
    }
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.