Add support for nested type of query parameter
[smart-dao.git] / smart-exim / smart-exim-api / src / test / java / com / smartitengineering / exim / impl / data / IResourceImpl.java
blobd125cd64d87e9e05bb1732ef9a7929b464ffffbe
1 /*
2 * This is a common dao with basic CRUD operations and is not limited to any
3 * persistent layer implementation
5 * Copyright (C) 2008 Imran M Yousuf (imyousuf@smartitengineering.com)
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 3 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19 package com.smartitengineering.exim.impl.data;
21 import java.text.ParseException;
22 import java.util.Collection;
23 import java.util.List;
24 import java.util.Map;
25 import java.util.Set;
27 /**
29 * @author imyousuf
31 public class IResourceImpl implements IResource {
33 public int getResourceId() {
34 throw new UnsupportedOperationException("Not supported yet.");
37 public List<Integer> getList() {
38 throw new UnsupportedOperationException("Not supported yet.");
41 public Set<Long> getSet() {
42 throw new UnsupportedOperationException("Not supported yet.");
45 public Collection<Double> getCollection() {
46 throw new UnsupportedOperationException("Not supported yet.");
49 public Map<String, Float> getMap() {
50 throw new UnsupportedOperationException("Not supported yet.");
53 public Number[] getArray() {
54 throw new UnsupportedOperationException("Not supported yet.");
57 public boolean isValid() {
58 throw new UnsupportedOperationException("Not supported yet.");
61 public String format() {
62 throw new UnsupportedOperationException("Not supported yet.");
65 public void parse(String value)
66 throws ParseException {
67 throw new UnsupportedOperationException("Not supported yet.");