use of com.liferay.portal.kernel.util.StringBundler in project liferay-ide by liferay.
the class RosterPersistenceImpl method findByClubId.
/**
* Returns an ordered range of all the rosters where clubId = ?.
*
* <p>
* 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 RosterModelImpl}. 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 clubId the club ID
* @param start the lower bound of the range of rosters
* @param end the upper bound of the range of rosters (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 rosters
*/
@Override
public List<Roster> findByClubId(long clubId, int start, int end, OrderByComparator<Roster> 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_CLUBID;
finderArgs = new Object[] { clubId };
} else {
finderPath = FINDER_PATH_WITH_PAGINATION_FIND_BY_CLUBID;
finderArgs = new Object[] { clubId, start, end, orderByComparator };
}
List<Roster> list = null;
if (retrieveFromCache) {
list = (List<Roster>) finderCache.getResult(finderPath, finderArgs, this);
if ((list != null) && !list.isEmpty()) {
for (Roster roster : list) {
if ((clubId != roster.getClubId())) {
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_ROSTER_WHERE);
query.append(_FINDER_COLUMN_CLUBID_CLUBID_2);
if (orderByComparator != null) {
appendOrderByComparator(query, _ORDER_BY_ENTITY_ALIAS, orderByComparator);
} else if (pagination) {
query.append(RosterModelImpl.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(clubId);
if (!pagination) {
list = (List<Roster>) QueryUtil.list(q, getDialect(), start, end, false);
Collections.sort(list);
list = Collections.unmodifiableList(list);
} else {
list = (List<Roster>) 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;
}
use of com.liferay.portal.kernel.util.StringBundler in project liferay-ide by liferay.
the class RosterPersistenceImpl method findAll.
/**
* Returns an ordered range of all the rosters.
*
* <p>
* 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 RosterModelImpl}. 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 rosters
* @param end the upper bound of the range of rosters (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 rosters
*/
@Override
public List<Roster> findAll(int start, int end, OrderByComparator<Roster> 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<Roster> list = null;
if (retrieveFromCache) {
list = (List<Roster>) 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_ROSTER);
appendOrderByComparator(query, _ORDER_BY_ENTITY_ALIAS, orderByComparator);
sql = query.toString();
} else {
sql = _SQL_SELECT_ROSTER;
if (pagination) {
sql = sql.concat(RosterModelImpl.ORDER_BY_JPQL);
}
}
Session session = null;
try {
session = openSession();
Query q = session.createQuery(sql);
if (!pagination) {
list = (List<Roster>) QueryUtil.list(q, getDialect(), start, end, false);
Collections.sort(list);
list = Collections.unmodifiableList(list);
} else {
list = (List<Roster>) 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;
}
use of com.liferay.portal.kernel.util.StringBundler in project liferay-ide by liferay.
the class RosterCacheModel method toString.
@Override
public String toString() {
StringBundler sb = new StringBundler(13);
sb.append("{uuid=");
sb.append(uuid);
sb.append(", rosterId=");
sb.append(rosterId);
sb.append(", createDate=");
sb.append(createDate);
sb.append(", modifiedDate=");
sb.append(modifiedDate);
sb.append(", clubId=");
sb.append(clubId);
sb.append(", name=");
sb.append(name);
sb.append("}");
return sb.toString();
}
use of com.liferay.portal.kernel.util.StringBundler in project liferay-ide by liferay.
the class RosterMemberCacheModel method toString.
@Override
public String toString() {
StringBundler sb = new StringBundler(13);
sb.append("{uuid=");
sb.append(uuid);
sb.append(", rosterMemberId=");
sb.append(rosterMemberId);
sb.append(", createDate=");
sb.append(createDate);
sb.append(", modifiedDate=");
sb.append(modifiedDate);
sb.append(", rosterId=");
sb.append(rosterId);
sb.append(", contactId=");
sb.append(contactId);
sb.append("}");
return sb.toString();
}
use of com.liferay.portal.kernel.util.StringBundler in project liferay-ide by liferay.
the class RosterMemberModelImpl method toXmlString.
@Override
public String toXmlString() {
StringBundler sb = new StringBundler(22);
sb.append("<model><model-name>");
sb.append("com.liferay.roster.model.RosterMember");
sb.append("</model-name>");
sb.append("<column><column-name>uuid</column-name><column-value><![CDATA[");
sb.append(getUuid());
sb.append("]]></column-value></column>");
sb.append("<column><column-name>rosterMemberId</column-name><column-value><![CDATA[");
sb.append(getRosterMemberId());
sb.append("]]></column-value></column>");
sb.append("<column><column-name>createDate</column-name><column-value><![CDATA[");
sb.append(getCreateDate());
sb.append("]]></column-value></column>");
sb.append("<column><column-name>modifiedDate</column-name><column-value><![CDATA[");
sb.append(getModifiedDate());
sb.append("]]></column-value></column>");
sb.append("<column><column-name>rosterId</column-name><column-value><![CDATA[");
sb.append(getRosterId());
sb.append("]]></column-value></column>");
sb.append("<column><column-name>contactId</column-name><column-value><![CDATA[");
sb.append(getContactId());
sb.append("]]></column-value></column>");
sb.append("</model>");
return sb.toString();
}
Aggregations