Skip to content
This repository has been archived by the owner on Jul 11, 2022. It is now read-only.

Commit

Permalink
Bug 1202760 - Next execution link in "Scheduled Operations" portlet i…
Browse files Browse the repository at this point in the history
…s not

correct

Reverted back to original GroupOperationScheduleComposite constructors so we
don't break API compatibility
  • Loading branch information
Libor Zoubek committed Jun 29, 2015
1 parent 74146da commit 2ff0942
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
7 changes: 0 additions & 7 deletions modules/core/domain/intentional-api-changes-since-4.13.0.xml
Expand Up @@ -55,13 +55,6 @@
<method>void setDeleteResourceRequests(java.util.List)</method>
<justification>BZ 1168890</justification>
</difference>
<difference>
<className>org/rhq/core/domain/operation/composite/GroupOperationScheduleComposite</className>
<differenceType>7004</differenceType><!-- number of args changed -->
<method>GroupOperationScheduleComposite(int, java.lang.String, java.lang.String, java.lang.String, long, int, java.lang.String, java.lang.String)</method>
<justification>Added autoGroupParentResourceId parameter - Bug 1202760</justification>
</difference>


</differences>

Expand Up @@ -40,6 +40,12 @@ public class GroupOperationScheduleComposite extends OperationScheduleComposite
private GroupOperationScheduleComposite() {
}

public GroupOperationScheduleComposite(int id, String jobName, String jobGroup, String operationName,
long operationNextFireTime, int groupId, String groupName, String groupResourceTypeName) {
this(id, jobName, jobGroup, operationName, operationNextFireTime, groupId, groupName, groupResourceTypeName,
null);
}

public GroupOperationScheduleComposite(int id, String jobName, String jobGroup, String operationName,
long operationNextFireTime, int groupId, String groupName, String groupResourceTypeName,
Integer autoGroupParentResourceId) {
Expand Down

0 comments on commit 2ff0942

Please sign in to comment.