-
Notifications
You must be signed in to change notification settings - Fork 66
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
EPMRPP-96944 || Add tracking event when user changes instance invitation settings #2105
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
/* | ||
* Copyright 2024 EPAM Systems | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
package com.epam.ta.reportportal.core.events.activity; | ||
|
||
import static com.epam.ta.reportportal.core.events.activity.util.ActivityDetailsUtil.VALUE; | ||
|
||
import com.epam.ta.reportportal.builder.ActivityBuilder; | ||
import com.epam.ta.reportportal.core.events.ActivityEvent; | ||
import com.epam.ta.reportportal.entity.ServerSettings; | ||
import com.epam.ta.reportportal.entity.activity.Activity; | ||
import com.epam.ta.reportportal.entity.activity.ActivityAction; | ||
import com.epam.ta.reportportal.entity.activity.EventAction; | ||
import com.epam.ta.reportportal.entity.activity.EventObject; | ||
import com.epam.ta.reportportal.entity.activity.EventPriority; | ||
import com.epam.ta.reportportal.entity.activity.EventSubject; | ||
|
||
/** | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
* @author <a href="mailto:[email protected]">Pavel Bortnik</a> | ||
*/ | ||
public class SettingsUpdatedEvent extends AroundEvent<ServerSettings> implements ActivityEvent { | ||
|
||
public SettingsUpdatedEvent(ServerSettings before, ServerSettings after, Long userId, | ||
String userLogin) { | ||
super(userId, userLogin, before, after); | ||
} | ||
|
||
@Override | ||
public Activity toActivity() { | ||
ActivityBuilder builder = new ActivityBuilder() | ||
.addCreatedNow() | ||
.addAction(EventAction.UPDATE) | ||
.addEventName(ActivityAction.UPDATE_INSTANCE.getValue()) | ||
.addPriority(EventPriority.HIGH) | ||
.addObjectName(getAfter().getKey()) | ||
.addObjectType(EventObject.INSTANCE) | ||
.addSubjectId(getUserId()) | ||
.addSubjectName(getUserLogin()) | ||
.addSubjectType(EventSubject.USER) | ||
.addHistoryField(getAfter().getKey(), getBefore().getValue(), getAfter().getValue()); | ||
return builder.get(); | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,6 +32,8 @@ private ActivityDetailsUtil() { | |
} | ||
|
||
public static final String NAME = "name"; | ||
|
||
public static final String VALUE = "value"; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
public static final String DESCRIPTION = "description"; | ||
public static final String EMPTY_FIELD = ""; | ||
public static final String TICKET_ID = "ticketId"; | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'package' should be separated from previous line.