Java tutorial
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package ch.iceage.icedms.persistence.jdbc.query.impl; import ch.iceage.icedms.core.business.Document; import ch.iceage.icedms.core.business.Index; import ch.iceage.icedms.core.business.IndexType; import ch.iceage.icedms.core.business.Indexable; import ch.iceage.icedms.persistence.jdbc.query.AbstractGenericQueries; import ch.iceage.icedms.persistence.jdbc.query.IndexQueries; import ch.iceage.icedms.persistence.jdbc.query.clause.FetchType; import ch.iceage.icedms.persistence.jdbc.query.clause.JoinClause; import java.util.List; import org.springframework.stereotype.Component; /** * * @author t139237 */ @Component public class DefaultIndexQueries extends AbstractGenericQueries implements IndexQueries { @Override protected JoinClause[] getJoinClauses() { throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates. } @Override public String get(Index criteria, FetchType oneToMany, FetchType manyToOne) { throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates. } @Override public String getAllByDocument(Document document, FetchType oneToMany, FetchType manyToOne) { throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates. } @Override public String getAllByIndexType(IndexType type, FetchType oneToMany, FetchType manyToOne) { throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates. } @Override public String getAllByIndexTypeList(List<IndexType> types, FetchType oneToMany, FetchType manyToOne) { throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates. } @Override public String getAllByIndexValue(Indexable value, FetchType oneToMany, FetchType manyToOne) { throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates. } }