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

io.mosip.registration.dao.LocationDAO Maven / Gradle / Ivy

package io.mosip.registration.dao;

import java.util.List;

import io.mosip.registration.entity.Location;

/**
 * This class is used to fetch all the locations present in the {@link Location} table.
 * 
 * @author Brahmananda Reddy
 *
 */
public interface LocationDAO {
	/**
	 * This method is used to fetch all the locations from {@link Location} table.
	 * 
	 * @return the list of locations
	 */

	List getLocations();

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy