Skip to content

Commit

Permalink
LPS-203220 buildService
Browse files Browse the repository at this point in the history
  • Loading branch information
victorg1991 authored and brianchandotcom committed Dec 8, 2023
1 parent 8e63366 commit 9c06eb7
Show file tree
Hide file tree
Showing 5 changed files with 39 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version 7.0.0
version 7.1.0
2 changes: 1 addition & 1 deletion portal-impl/src/com/liferay/portlet/asset/util/packageinfo
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version 5.0.0
version 5.1.0
Original file line number Diff line number Diff line change
Expand Up @@ -71,11 +71,24 @@ public String getUnambiguousTitle(
public boolean isAssociatedToClassNameIdAndClassTypePK(
long classNameId, long classTypePK);

/**
* @deprecated As of Athanasius (7.3.x), replaced by {@link #isMissingRequiredCategory(long, long, long[], long)}
*/
@Deprecated
public boolean isMissingRequiredCategory(
long classNameId, long classTypePK, long[] categoryIds);

public boolean isMissingRequiredCategory(
long classNameId, long classTypePK, long[] categoryIds, long groupId);

public boolean isMultiValued();

/**
* @deprecated As of Athanasius (7.3.x), replaced by {@link #isRequired(long, long, long)}
*/
@Deprecated
public boolean isRequired(long classNameId, long classTypePK);

public boolean isRequired(long classNameId, long classTypePK, long groupId);

}
Original file line number Diff line number Diff line change
Expand Up @@ -552,6 +552,10 @@ public boolean isAssociatedToClassNameIdAndClassTypePK(
classNameId, classTypePK);
}

/**
* @deprecated As of Athanasius (7.3.x), replaced by {@link #isMissingRequiredCategory(long, long, long[], long)}
*/
@Deprecated
@Override
public boolean isMissingRequiredCategory(
long classNameId, long classTypePK, long[] categoryIds) {
Expand All @@ -560,16 +564,35 @@ public boolean isMissingRequiredCategory(
classNameId, classTypePK, categoryIds);
}

@Override
public boolean isMissingRequiredCategory(
long classNameId, long classTypePK, long[] categoryIds, long groupId) {

return model.isMissingRequiredCategory(
classNameId, classTypePK, categoryIds, groupId);
}

@Override
public boolean isMultiValued() {
return model.isMultiValued();
}

/**
* @deprecated As of Athanasius (7.3.x), replaced by {@link #isRequired(long, long, long)}
*/
@Deprecated
@Override
public boolean isRequired(long classNameId, long classTypePK) {
return model.isRequired(classNameId, classTypePK);
}

@Override
public boolean isRequired(
long classNameId, long classTypePK, long groupId) {

return model.isRequired(classNameId, classTypePK, groupId);
}

@Override
public void persist() {
model.persist();
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version 11.3.0
version 11.4.0

0 comments on commit 9c06eb7

Please sign in to comment.