Skip to content

Commit

Permalink
LPD-42641 Regen
Browse files Browse the repository at this point in the history
  • Loading branch information
brianchandotcom committed Dec 10, 2024
1 parent 0dc308a commit 6cd91a4
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 16 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ public List<Object> getFoldersAndArticles(
@Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
public List<Object> getFoldersAndArticles(
long groupId, long userId, long folderId, long ddmStructureId,
int status, Locale locale, int[] excludedStatus, int start, int end,
int status, Locale locale, int[] excludedStatuses, int start, int end,
OrderByComparator<?> orderByComparator);

@Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
Expand All @@ -157,7 +157,7 @@ public int getFoldersAndArticlesCount(
@Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
public int getFoldersAndArticlesCount(
long groupId, long userId, long folderId, long ddmStructureId,
int[] excludedStatus, int status);
int[] excludedStatuses, int status);

@Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
public int getFoldersCount(long groupId, long parentFolderId);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -175,12 +175,12 @@ public static List<Object> getFoldersAndArticles(

public static List<Object> getFoldersAndArticles(
long groupId, long userId, long folderId, long ddmStructureId,
int status, java.util.Locale locale, int[] excludedStatus, int start,
int status, java.util.Locale locale, int[] excludedStatuses, int start,
int end, OrderByComparator<?> orderByComparator) {

return getService().getFoldersAndArticles(
groupId, userId, folderId, ddmStructureId, status, locale,
excludedStatus, start, end, orderByComparator);
excludedStatuses, start, end, orderByComparator);
}

public static int getFoldersAndArticlesCount(
Expand Down Expand Up @@ -218,10 +218,11 @@ public static int getFoldersAndArticlesCount(

public static int getFoldersAndArticlesCount(
long groupId, long userId, long folderId, long ddmStructureId,
int[] excludedStatus, int status) {
int[] excludedStatuses, int status) {

return getService().getFoldersAndArticlesCount(
groupId, userId, folderId, ddmStructureId, excludedStatus, status);
groupId, userId, folderId, ddmStructureId, excludedStatuses,
status);
}

public static int getFoldersCount(long groupId, long parentFolderId) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -196,13 +196,13 @@ public java.util.List<Object> getFoldersAndArticles(
@Override
public java.util.List<Object> getFoldersAndArticles(
long groupId, long userId, long folderId, long ddmStructureId,
int status, java.util.Locale locale, int[] excludedStatus, int start,
int status, java.util.Locale locale, int[] excludedStatuses, int start,
int end,
com.liferay.portal.kernel.util.OrderByComparator<?> orderByComparator) {

return _journalFolderService.getFoldersAndArticles(
groupId, userId, folderId, ddmStructureId, status, locale,
excludedStatus, start, end, orderByComparator);
excludedStatuses, start, end, orderByComparator);
}

@Override
Expand Down Expand Up @@ -247,10 +247,11 @@ public int getFoldersAndArticlesCount(
@Override
public int getFoldersAndArticlesCount(
long groupId, long userId, long folderId, long ddmStructureId,
int[] excludedStatus, int status) {
int[] excludedStatuses, int status) {

return _journalFolderService.getFoldersAndArticlesCount(
groupId, userId, folderId, ddmStructureId, excludedStatus, status);
groupId, userId, folderId, ddmStructureId, excludedStatuses,
status);
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ public int filterCountF_A_ByG_F_DDMSI(
com.liferay.portal.kernel.dao.orm.QueryDefinition<?> queryDefinition);

public int filterCountF_A_ByG_F_DDMSI_NotS(
long groupId, long folderId, long ddmStructureId, int[] statuses,
long groupId, long folderId, long ddmStructureId,
int[] excludedStatuses,
com.liferay.portal.kernel.dao.orm.QueryDefinition<?> queryDefinition);

public java.util.List<Object> filterFindF_A_ByG_F_DDMSI(
Expand All @@ -37,7 +38,7 @@ public java.util.List<Object> filterFindF_A_ByG_F_DDMSI_L(

public java.util.List<Object> filterFindF_A_ByG_F_DDMSI_L_NotS(
long groupId, long folderId, long ddmStructureId,
java.util.Locale locale, int[] statuses,
java.util.Locale locale, int[] excludedStatuses,
com.liferay.portal.kernel.dao.orm.QueryDefinition<?> queryDefinition);

public java.util.List<Object> findF_A_ByG_F_DDMSI(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -758,7 +758,7 @@ public static java.util.List<Object> getFoldersAndArticles(
public static java.util.List<Object> getFoldersAndArticles(
HttpPrincipal httpPrincipal, long groupId, long userId, long folderId,
long ddmStructureId, int status, java.util.Locale locale,
int[] excludedStatus, int start, int end,
int[] excludedStatuses, int start, int end,
com.liferay.portal.kernel.util.OrderByComparator<?> orderByComparator) {

try {
Expand All @@ -768,7 +768,7 @@ public static java.util.List<Object> getFoldersAndArticles(

MethodHandler methodHandler = new MethodHandler(
methodKey, groupId, userId, folderId, ddmStructureId, status,
locale, excludedStatus, start, end, orderByComparator);
locale, excludedStatuses, start, end, orderByComparator);

Object returnObj = null;

Expand Down Expand Up @@ -956,7 +956,7 @@ public static int getFoldersAndArticlesCount(

public static int getFoldersAndArticlesCount(
HttpPrincipal httpPrincipal, long groupId, long userId, long folderId,
long ddmStructureId, int[] excludedStatus, int status) {
long ddmStructureId, int[] excludedStatuses, int status) {

try {
MethodKey methodKey = new MethodKey(
Expand All @@ -965,7 +965,7 @@ public static int getFoldersAndArticlesCount(

MethodHandler methodHandler = new MethodHandler(
methodKey, groupId, userId, folderId, ddmStructureId,
excludedStatus, status);
excludedStatuses, status);

Object returnObj = null;

Expand Down

0 comments on commit 6cd91a4

Please sign in to comment.