/layers-store/src/main/java/org/ala/layers/dao/TabulationDAO.java
Java | 35 lines | 8 code | 8 blank | 19 comment | 0 complexity | 2c549fb17d4f8ee3426467a1be7f8f01 MD5 | raw file
1/************************************************************************** 2 * Copyright (C) 2010 Atlas of Living Australia 3 * All Rights Reserved. 4 * 5 * The contents of this file are subject to the Mozilla Public 6 * License Version 1.1 (the "License"); you may not use this file 7 * except in compliance with the License. You may obtain a copy of 8 * the License at http://www.mozilla.org/MPL/ 9 * 10 * Software distributed under the License is distributed on an "AS 11 * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or 12 * implied. See the License for the specific language governing 13 * rights and limitations under the License. 14 ***************************************************************************/ 15 16package org.ala.layers.dao; 17 18import java.util.List; 19import org.ala.layers.dto.Tabulation; 20 21/** 22 * DAO for the Field object 23 * 24 * @author ajay 25 */ 26public interface TabulationDAO { 27 28 public List<Tabulation> getTabulation(String fid1, String fid2, String wkt); 29 30 public List<Tabulation> getTabulationSingle(String fid, String wkt); 31 32 public List<Tabulation> listTabulations(); 33 34 35}