-
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 || Fix incorrect history field values #2106
Conversation
private ServerSettingsConverter() { | ||
//static only | ||
} | ||
public static final Function<ServerSettings, ServerSettingsResource> TO_RESOURCE = serverSettings -> new ServerSettingsResource( |
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.
Line is longer than 100 characters (found 130).
|
||
public static final Function<List<ServerSettings>, Map<String, String>> TO_RESOURCE = serverSettings -> { | ||
public static final Function<List<ServerSettings>, Map<String, String>> TO_RESOURCES = serverSettings -> { |
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.
Line is longer than 100 characters (found 108).
package com.epam.ta.reportportal.model.settings; | ||
|
||
import javax.validation.constraints.NotEmpty; | ||
import lombok.Data; | ||
|
||
/** |
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.
Summary javadoc is missing.
|
||
/** | ||
* @author <a href="mailto:pavel_bortnik@epam.com">Pavel Bortnik</a> | ||
*/ | ||
public class SettingsUpdatedEvent extends AroundEvent<ServerSettings> implements ActivityEvent { | ||
public class SettingsUpdatedEvent extends AroundEvent<ServerSettingsResource> implements ActivityEvent { |
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.
Line is longer than 100 characters (found 104).
|
||
public SettingsUpdatedEvent(ServerSettings before, ServerSettings after, Long userId, | ||
public SettingsUpdatedEvent(ServerSettingsResource before, ServerSettingsResource after, Long userId, |
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.
Line is longer than 100 characters (found 103).
No description provided.