List of usage examples for com.liferay.portal.kernel.dao.orm QueryUtil ALL_POS
int ALL_POS
To view the source code for com.liferay.portal.kernel.dao.orm QueryUtil ALL_POS.
Click Source Link
From source file:at.graz.meduni.bibbox.liferay.portlet.service.persistence.impl.ApplicationInstancePersistenceImpl.java
License:Open Source License
/** * Returns an ordered range of all the application instances where deleted = ?. * * <p>//from w w w . j a va 2 s . c om * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link QueryUtil#ALL_POS} will return the full result set. If <code>orderByComparator</code> is specified, then the query will include the given ORDER BY logic. If <code>orderByComparator</code> is absent and pagination is required (<code>start</code> and <code>end</code> are not {@link QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link ApplicationInstanceModelImpl}. If both <code>orderByComparator</code> and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order. * </p> * * @param deleted the deleted * @param start the lower bound of the range of application instances * @param end the upper bound of the range of application instances (not inclusive) * @param orderByComparator the comparator to order the results by (optionally <code>null</code>) * @param retrieveFromCache whether to retrieve from the finder cache * @return the ordered range of matching application instances */ @Override public List<ApplicationInstance> findByInstancesNotDeleted(boolean deleted, int start, int end, OrderByComparator<ApplicationInstance> orderByComparator, boolean retrieveFromCache) { boolean pagination = true; FinderPath finderPath = null; Object[] finderArgs = null; if ((start == QueryUtil.ALL_POS) && (end == QueryUtil.ALL_POS) && (orderByComparator == null)) { pagination = false; finderPath = FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_INSTANCESNOTDELETED; finderArgs = new Object[] { deleted }; } else { finderPath = FINDER_PATH_WITH_PAGINATION_FIND_BY_INSTANCESNOTDELETED; finderArgs = new Object[] { deleted, start, end, orderByComparator }; } List<ApplicationInstance> list = null; if (retrieveFromCache) { list = (List<ApplicationInstance>) finderCache.getResult(finderPath, finderArgs, this); if ((list != null) && !list.isEmpty()) { for (ApplicationInstance applicationInstance : list) { if ((deleted != applicationInstance.getDeleted())) { list = null; break; } } } } if (list == null) { StringBundler query = null; if (orderByComparator != null) { query = new StringBundler(3 + (orderByComparator.getOrderByFields().length * 2)); } else { query = new StringBundler(3); } query.append(_SQL_SELECT_APPLICATIONINSTANCE_WHERE); query.append(_FINDER_COLUMN_INSTANCESNOTDELETED_DELETED_2); if (orderByComparator != null) { appendOrderByComparator(query, _ORDER_BY_ENTITY_ALIAS, orderByComparator); } else if (pagination) { query.append(ApplicationInstanceModelImpl.ORDER_BY_JPQL); } String sql = query.toString(); Session session = null; try { session = openSession(); Query q = session.createQuery(sql); QueryPos qPos = QueryPos.getInstance(q); qPos.add(deleted); if (!pagination) { list = (List<ApplicationInstance>) QueryUtil.list(q, getDialect(), start, end, false); Collections.sort(list); list = Collections.unmodifiableList(list); } else { list = (List<ApplicationInstance>) QueryUtil.list(q, getDialect(), start, end); } cacheResult(list); finderCache.putResult(finderPath, finderArgs, list); } catch (Exception e) { finderCache.removeResult(finderPath, finderArgs); throw processException(e); } finally { closeSession(session); } } return list; }
From source file:at.graz.meduni.bibbox.liferay.portlet.service.persistence.impl.ApplicationInstancePersistenceImpl.java
License:Open Source License
/** * Removes all the application instances where deleted = ? from the database. * * @param deleted the deleted/*from w w w . j ava 2s .com*/ */ @Override public void removeByInstancesNotDeleted(boolean deleted) { for (ApplicationInstance applicationInstance : findByInstancesNotDeleted(deleted, QueryUtil.ALL_POS, QueryUtil.ALL_POS, null)) { remove(applicationInstance); } }
From source file:at.graz.meduni.bibbox.liferay.portlet.service.persistence.impl.ApplicationInstancePersistenceImpl.java
License:Open Source License
/** * Returns all the application instances. * * @return the application instances/*from ww w . j ava 2 s .com*/ */ @Override public List<ApplicationInstance> findAll() { return findAll(QueryUtil.ALL_POS, QueryUtil.ALL_POS, null); }
From source file:at.graz.meduni.bibbox.liferay.portlet.service.persistence.impl.ApplicationInstancePersistenceImpl.java
License:Open Source License
/** * Returns an ordered range of all the application instances. * * <p>// ww w . j av a 2 s. c o m * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link QueryUtil#ALL_POS} will return the full result set. If <code>orderByComparator</code> is specified, then the query will include the given ORDER BY logic. If <code>orderByComparator</code> is absent and pagination is required (<code>start</code> and <code>end</code> are not {@link QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link ApplicationInstanceModelImpl}. If both <code>orderByComparator</code> and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order. * </p> * * @param start the lower bound of the range of application instances * @param end the upper bound of the range of application instances (not inclusive) * @param orderByComparator the comparator to order the results by (optionally <code>null</code>) * @param retrieveFromCache whether to retrieve from the finder cache * @return the ordered range of application instances */ @Override public List<ApplicationInstance> findAll(int start, int end, OrderByComparator<ApplicationInstance> orderByComparator, boolean retrieveFromCache) { boolean pagination = true; FinderPath finderPath = null; Object[] finderArgs = null; if ((start == QueryUtil.ALL_POS) && (end == QueryUtil.ALL_POS) && (orderByComparator == null)) { pagination = false; finderPath = FINDER_PATH_WITHOUT_PAGINATION_FIND_ALL; finderArgs = FINDER_ARGS_EMPTY; } else { finderPath = FINDER_PATH_WITH_PAGINATION_FIND_ALL; finderArgs = new Object[] { start, end, orderByComparator }; } List<ApplicationInstance> list = null; if (retrieveFromCache) { list = (List<ApplicationInstance>) finderCache.getResult(finderPath, finderArgs, this); } if (list == null) { StringBundler query = null; String sql = null; if (orderByComparator != null) { query = new StringBundler(2 + (orderByComparator.getOrderByFields().length * 2)); query.append(_SQL_SELECT_APPLICATIONINSTANCE); appendOrderByComparator(query, _ORDER_BY_ENTITY_ALIAS, orderByComparator); sql = query.toString(); } else { sql = _SQL_SELECT_APPLICATIONINSTANCE; if (pagination) { sql = sql.concat(ApplicationInstanceModelImpl.ORDER_BY_JPQL); } } Session session = null; try { session = openSession(); Query q = session.createQuery(sql); if (!pagination) { list = (List<ApplicationInstance>) QueryUtil.list(q, getDialect(), start, end, false); Collections.sort(list); list = Collections.unmodifiableList(list); } else { list = (List<ApplicationInstance>) QueryUtil.list(q, getDialect(), start, end); } cacheResult(list); finderCache.putResult(finderPath, finderArgs, list); } catch (Exception e) { finderCache.removeResult(finderPath, finderArgs); throw processException(e); } finally { closeSession(session); } } return list; }
From source file:at.graz.meduni.bibbox.liferay.portlet.service.persistence.impl.ApplicationInstancePortPersistenceImpl.java
License:Open Source License
/** * Returns all the application instance ports where applicationInstanceId = ?. * * @param applicationInstanceId the application instance ID * @return the matching application instance ports *//*from w ww . java 2 s .c o m*/ @Override public List<ApplicationInstancePort> findByApplicationInstance(long applicationInstanceId) { return findByApplicationInstance(applicationInstanceId, QueryUtil.ALL_POS, QueryUtil.ALL_POS, null); }
From source file:at.graz.meduni.bibbox.liferay.portlet.service.persistence.impl.ApplicationInstancePortPersistenceImpl.java
License:Open Source License
/** * Returns an ordered range of all the application instance ports where applicationInstanceId = ?. * * <p>/*from w w w .j a v a 2s . com*/ * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link QueryUtil#ALL_POS} will return the full result set. If <code>orderByComparator</code> is specified, then the query will include the given ORDER BY logic. If <code>orderByComparator</code> is absent and pagination is required (<code>start</code> and <code>end</code> are not {@link QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link ApplicationInstancePortModelImpl}. If both <code>orderByComparator</code> and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order. * </p> * * @param applicationInstanceId the application instance ID * @param start the lower bound of the range of application instance ports * @param end the upper bound of the range of application instance ports (not inclusive) * @param orderByComparator the comparator to order the results by (optionally <code>null</code>) * @param retrieveFromCache whether to retrieve from the finder cache * @return the ordered range of matching application instance ports */ @Override public List<ApplicationInstancePort> findByApplicationInstance(long applicationInstanceId, int start, int end, OrderByComparator<ApplicationInstancePort> orderByComparator, boolean retrieveFromCache) { boolean pagination = true; FinderPath finderPath = null; Object[] finderArgs = null; if ((start == QueryUtil.ALL_POS) && (end == QueryUtil.ALL_POS) && (orderByComparator == null)) { pagination = false; finderPath = FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_APPLICATIONINSTANCE; finderArgs = new Object[] { applicationInstanceId }; } else { finderPath = FINDER_PATH_WITH_PAGINATION_FIND_BY_APPLICATIONINSTANCE; finderArgs = new Object[] { applicationInstanceId, start, end, orderByComparator }; } List<ApplicationInstancePort> list = null; if (retrieveFromCache) { list = (List<ApplicationInstancePort>) finderCache.getResult(finderPath, finderArgs, this); if ((list != null) && !list.isEmpty()) { for (ApplicationInstancePort applicationInstancePort : list) { if ((applicationInstanceId != applicationInstancePort.getApplicationInstanceId())) { list = null; break; } } } } if (list == null) { StringBundler query = null; if (orderByComparator != null) { query = new StringBundler(3 + (orderByComparator.getOrderByFields().length * 2)); } else { query = new StringBundler(3); } query.append(_SQL_SELECT_APPLICATIONINSTANCEPORT_WHERE); query.append(_FINDER_COLUMN_APPLICATIONINSTANCE_APPLICATIONINSTANCEID_2); if (orderByComparator != null) { appendOrderByComparator(query, _ORDER_BY_ENTITY_ALIAS, orderByComparator); } else if (pagination) { query.append(ApplicationInstancePortModelImpl.ORDER_BY_JPQL); } String sql = query.toString(); Session session = null; try { session = openSession(); Query q = session.createQuery(sql); QueryPos qPos = QueryPos.getInstance(q); qPos.add(applicationInstanceId); if (!pagination) { list = (List<ApplicationInstancePort>) QueryUtil.list(q, getDialect(), start, end, false); Collections.sort(list); list = Collections.unmodifiableList(list); } else { list = (List<ApplicationInstancePort>) QueryUtil.list(q, getDialect(), start, end); } cacheResult(list); finderCache.putResult(finderPath, finderArgs, list); } catch (Exception e) { finderCache.removeResult(finderPath, finderArgs); throw processException(e); } finally { closeSession(session); } } return list; }
From source file:at.graz.meduni.bibbox.liferay.portlet.service.persistence.impl.ApplicationInstancePortPersistenceImpl.java
License:Open Source License
/** * Removes all the application instance ports where applicationInstanceId = ? from the database. * * @param applicationInstanceId the application instance ID *//*w w w . j av a 2 s . co m*/ @Override public void removeByApplicationInstance(long applicationInstanceId) { for (ApplicationInstancePort applicationInstancePort : findByApplicationInstance(applicationInstanceId, QueryUtil.ALL_POS, QueryUtil.ALL_POS, null)) { remove(applicationInstancePort); } }
From source file:at.graz.meduni.bibbox.liferay.portlet.service.persistence.impl.ApplicationInstancePortPersistenceImpl.java
License:Open Source License
/** * Returns all the application instance ports where applicationInstanceId = ? and primary = ?. * * @param applicationInstanceId the application instance ID * @param primary the primary//from w w w .j ava 2s.c o m * @return the matching application instance ports */ @Override public List<ApplicationInstancePort> findByPrimaryApplicationInstancePort(long applicationInstanceId, boolean primary) { return findByPrimaryApplicationInstancePort(applicationInstanceId, primary, QueryUtil.ALL_POS, QueryUtil.ALL_POS, null); }
From source file:at.graz.meduni.bibbox.liferay.portlet.service.persistence.impl.ApplicationInstancePortPersistenceImpl.java
License:Open Source License
/** * Returns an ordered range of all the application instance ports where applicationInstanceId = ? and primary = ?. * * <p>//from ww w. j a va2 s . c o m * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link QueryUtil#ALL_POS} will return the full result set. If <code>orderByComparator</code> is specified, then the query will include the given ORDER BY logic. If <code>orderByComparator</code> is absent and pagination is required (<code>start</code> and <code>end</code> are not {@link QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link ApplicationInstancePortModelImpl}. If both <code>orderByComparator</code> and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order. * </p> * * @param applicationInstanceId the application instance ID * @param primary the primary * @param start the lower bound of the range of application instance ports * @param end the upper bound of the range of application instance ports (not inclusive) * @param orderByComparator the comparator to order the results by (optionally <code>null</code>) * @param retrieveFromCache whether to retrieve from the finder cache * @return the ordered range of matching application instance ports */ @Override public List<ApplicationInstancePort> findByPrimaryApplicationInstancePort(long applicationInstanceId, boolean primary, int start, int end, OrderByComparator<ApplicationInstancePort> orderByComparator, boolean retrieveFromCache) { boolean pagination = true; FinderPath finderPath = null; Object[] finderArgs = null; if ((start == QueryUtil.ALL_POS) && (end == QueryUtil.ALL_POS) && (orderByComparator == null)) { pagination = false; finderPath = FINDER_PATH_WITHOUT_PAGINATION_FIND_BY_PRIMARYAPPLICATIONINSTANCEPORT; finderArgs = new Object[] { applicationInstanceId, primary }; } else { finderPath = FINDER_PATH_WITH_PAGINATION_FIND_BY_PRIMARYAPPLICATIONINSTANCEPORT; finderArgs = new Object[] { applicationInstanceId, primary, start, end, orderByComparator }; } List<ApplicationInstancePort> list = null; if (retrieveFromCache) { list = (List<ApplicationInstancePort>) finderCache.getResult(finderPath, finderArgs, this); if ((list != null) && !list.isEmpty()) { for (ApplicationInstancePort applicationInstancePort : list) { if ((applicationInstanceId != applicationInstancePort.getApplicationInstanceId()) || (primary != applicationInstancePort.getPrimary())) { list = null; break; } } } } if (list == null) { StringBundler query = null; if (orderByComparator != null) { query = new StringBundler(4 + (orderByComparator.getOrderByFields().length * 2)); } else { query = new StringBundler(4); } query.append(_SQL_SELECT_APPLICATIONINSTANCEPORT_WHERE); query.append(_FINDER_COLUMN_PRIMARYAPPLICATIONINSTANCEPORT_APPLICATIONINSTANCEID_2); query.append(_FINDER_COLUMN_PRIMARYAPPLICATIONINSTANCEPORT_PRIMARY_2); if (orderByComparator != null) { appendOrderByComparator(query, _ORDER_BY_ENTITY_ALIAS, orderByComparator); } else if (pagination) { query.append(ApplicationInstancePortModelImpl.ORDER_BY_JPQL); } String sql = query.toString(); Session session = null; try { session = openSession(); Query q = session.createQuery(sql); QueryPos qPos = QueryPos.getInstance(q); qPos.add(applicationInstanceId); qPos.add(primary); if (!pagination) { list = (List<ApplicationInstancePort>) QueryUtil.list(q, getDialect(), start, end, false); Collections.sort(list); list = Collections.unmodifiableList(list); } else { list = (List<ApplicationInstancePort>) QueryUtil.list(q, getDialect(), start, end); } cacheResult(list); finderCache.putResult(finderPath, finderArgs, list); } catch (Exception e) { finderCache.removeResult(finderPath, finderArgs); throw processException(e); } finally { closeSession(session); } } return list; }
From source file:at.graz.meduni.bibbox.liferay.portlet.service.persistence.impl.ApplicationInstancePortPersistenceImpl.java
License:Open Source License
/** * Removes all the application instance ports where applicationInstanceId = ? and primary = ? from the database. * * @param applicationInstanceId the application instance ID * @param primary the primary/* w ww . j ava 2 s . com*/ */ @Override public void removeByPrimaryApplicationInstancePort(long applicationInstanceId, boolean primary) { for (ApplicationInstancePort applicationInstancePort : findByPrimaryApplicationInstancePort( applicationInstanceId, primary, QueryUtil.ALL_POS, QueryUtil.ALL_POS, null)) { remove(applicationInstancePort); } }