diff --git a/src/main/java/cz/zcu/kiv/eegdatabase/data/dao/SimpleTemplateDao.java b/src/main/java/cz/zcu/kiv/eegdatabase/data/dao/SimpleTemplateDao.java new file mode 100644 index 00000000..a25a3abc --- /dev/null +++ b/src/main/java/cz/zcu/kiv/eegdatabase/data/dao/SimpleTemplateDao.java @@ -0,0 +1,108 @@ +package cz.zcu.kiv.eegdatabase.data.dao; + +import cz.zcu.kiv.eegdatabase.data.pojo.Template; + +import java.util.List; + +/** + * ******************************************************************************************************************** + *

+ * This file is part of the eegdatabase project + *

+ * ========================================== + *

+ * Copyright (C) 2014 by University of West Bohemia (http://www.zcu.cz/en/) + *

+ * ********************************************************************************************************************** + *

+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + *

+ * http://www.apache.org/licenses/LICENSE-2.0 + *

+ * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on + * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the + * specific language governing permissions and limitations under the License. + *

+ * ********************************************************************************************************************** + *

+ * SimpleTemplateDao, 2014/07/02 11:34 Prokop + *

+ * ******************************************************************************************************************** + */ +public class SimpleTemplateDao extends SimpleGenericDao implements TemplateDao { + + public SimpleTemplateDao(){ + super(Template.class); + } + + @Override + public List