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.DocumentVersion; import ch.iceage.icedms.persistence.jdbc.query.AbstractGenericQueries; import ch.iceage.icedms.persistence.jdbc.query.DocumentVersionQueries; import ch.iceage.icedms.persistence.jdbc.query.clause.FetchType; import ch.iceage.icedms.persistence.jdbc.query.clause.JoinClause; import org.springframework.stereotype.Component; /** * * @author t139237 */ @Component public class DefaultDocumentVersionQueries extends AbstractGenericQueries implements DocumentVersionQueries { @Override protected JoinClause[] getJoinClauses() { throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates. } @Override public String get(DocumentVersion criteria, FetchType oneToMany, FetchType manyToOne) { throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates. } @Override public String getAllByDocumentId(Long documentId, FetchType oneToMany, FetchType manyToOne) { throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates. } @Override public String getByRevision(Long documentId, String revisionNumber, FetchType oneToMany, FetchType manyToOne) { throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates. } @Override public String getContentByRevision(Long documentId, String revisionNumber, FetchType oneToMany, FetchType manyToOne) { throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates. } }