generated from reportportal/plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
EPMRPP-90180 update dependencies (Instant time) (#30)
- Loading branch information
Showing
9 changed files
with
41 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,23 +16,26 @@ | |
|
||
package com.epam.reportportal.extension.gitlab.command; | ||
|
||
import static org.hibernate.bytecode.BytecodeLogger.LOGGER; | ||
|
||
import com.epam.reportportal.extension.CommonPluginCommand; | ||
import com.epam.reportportal.extension.gitlab.client.GitlabClientProvider; | ||
import com.epam.reportportal.extension.gitlab.utils.TicketMapper; | ||
import com.epam.reportportal.model.externalsystem.Ticket; | ||
import com.epam.reportportal.rules.exception.ErrorType; | ||
import com.epam.reportportal.rules.exception.ReportPortalException; | ||
import com.epam.ta.reportportal.dao.IntegrationRepository; | ||
import com.epam.ta.reportportal.entity.integration.Integration; | ||
import com.epam.reportportal.rules.exception.ReportPortalException; | ||
import com.epam.reportportal.rules.exception.ErrorType; | ||
import java.util.Map; | ||
import java.util.Optional; | ||
import org.slf4j.Logger; | ||
import org.slf4j.LoggerFactory; | ||
|
||
/** | ||
* @author <a href="mailto:[email protected]">Andrei Piankouski</a> | ||
*/ | ||
public class GetIssueCommand implements CommonPluginCommand<Ticket> { | ||
private static final Logger LOGGER = LoggerFactory.getLogger(GetIssueCommand.class); | ||
|
||
|
||
private final String PROJECT_ID = "projectId"; | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,22 +17,24 @@ | |
package com.epam.reportportal.extension.gitlab.command; | ||
|
||
import static java.util.Optional.ofNullable; | ||
import static org.hibernate.bytecode.BytecodeLogger.LOGGER; | ||
|
||
import com.epam.reportportal.extension.PluginCommand; | ||
import com.epam.reportportal.extension.gitlab.client.GitlabClientProvider; | ||
import com.epam.reportportal.extension.gitlab.dto.EpicDto; | ||
import com.epam.reportportal.rules.exception.ErrorType; | ||
import com.epam.reportportal.rules.exception.ReportPortalException; | ||
import com.epam.ta.reportportal.entity.integration.Integration; | ||
import com.epam.ta.reportportal.entity.integration.IntegrationParams; | ||
import com.epam.reportportal.rules.exception.ReportPortalException; | ||
import com.epam.reportportal.rules.exception.ErrorType; | ||
import java.util.List; | ||
import java.util.Map; | ||
import org.slf4j.Logger; | ||
import org.slf4j.LoggerFactory; | ||
|
||
/** | ||
* @author <a href="mailto:[email protected]">Pavel Bortnik</a> | ||
*/ | ||
public class SearchEpicsCommand implements PluginCommand<List<EpicDto>> { | ||
private static final Logger LOGGER = LoggerFactory.getLogger(SearchEpicsCommand.class); | ||
|
||
private final GitlabClientProvider gitlabClientProvider; | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,23 +17,24 @@ | |
package com.epam.reportportal.extension.gitlab.command; | ||
|
||
import static java.util.Optional.ofNullable; | ||
import static org.hibernate.bytecode.BytecodeLogger.LOGGER; | ||
|
||
import com.epam.reportportal.extension.PluginCommand; | ||
import com.epam.reportportal.extension.gitlab.client.GitlabClientProvider; | ||
import com.epam.reportportal.extension.gitlab.dto.LabelDto; | ||
import com.epam.reportportal.rules.exception.ErrorType; | ||
import com.epam.reportportal.rules.exception.ReportPortalException; | ||
import com.epam.ta.reportportal.entity.integration.Integration; | ||
import com.epam.ta.reportportal.entity.integration.IntegrationParams; | ||
import com.epam.reportportal.rules.exception.ReportPortalException; | ||
import com.epam.reportportal.rules.exception.ErrorType; | ||
import java.util.List; | ||
import java.util.Map; | ||
import org.slf4j.Logger; | ||
import org.slf4j.LoggerFactory; | ||
|
||
/** | ||
* @author <a href="mailto:[email protected]">Pavel Bortnik</a> | ||
*/ | ||
public class SearchLabelsCommand implements PluginCommand<List<LabelDto>> { | ||
|
||
private static final Logger LOGGER = LoggerFactory.getLogger(SearchLabelsCommand.class); | ||
private final GitlabClientProvider gitlabClientProvider; | ||
|
||
public SearchLabelsCommand(GitlabClientProvider gitlabClientProvider) { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,22 +17,24 @@ | |
package com.epam.reportportal.extension.gitlab.command; | ||
|
||
import static java.util.Optional.ofNullable; | ||
import static org.hibernate.bytecode.BytecodeLogger.LOGGER; | ||
|
||
import com.epam.reportportal.extension.PluginCommand; | ||
import com.epam.reportportal.extension.gitlab.client.GitlabClientProvider; | ||
import com.epam.reportportal.extension.gitlab.dto.MilestoneDto; | ||
import com.epam.reportportal.rules.exception.ErrorType; | ||
import com.epam.reportportal.rules.exception.ReportPortalException; | ||
import com.epam.ta.reportportal.entity.integration.Integration; | ||
import com.epam.ta.reportportal.entity.integration.IntegrationParams; | ||
import com.epam.reportportal.rules.exception.ReportPortalException; | ||
import com.epam.reportportal.rules.exception.ErrorType; | ||
import java.util.List; | ||
import java.util.Map; | ||
import org.slf4j.Logger; | ||
import org.slf4j.LoggerFactory; | ||
|
||
/** | ||
* @author <a href="mailto:[email protected]">Pavel Bortnik</a> | ||
*/ | ||
public class SearchMilestonesCommand implements PluginCommand<List<MilestoneDto>> { | ||
private static final Logger LOGGER = LoggerFactory.getLogger(SearchMilestonesCommand.class); | ||
|
||
private final GitlabClientProvider gitlabClientProvider; | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,23 +17,25 @@ | |
package com.epam.reportportal.extension.gitlab.command; | ||
|
||
import static java.util.Optional.ofNullable; | ||
import static org.hibernate.bytecode.BytecodeLogger.LOGGER; | ||
|
||
import com.epam.reportportal.extension.PluginCommand; | ||
import com.epam.reportportal.extension.gitlab.client.GitlabClientProvider; | ||
import com.epam.reportportal.extension.gitlab.dto.UserDto; | ||
import com.epam.reportportal.rules.exception.ErrorType; | ||
import com.epam.reportportal.rules.exception.ReportPortalException; | ||
import com.epam.ta.reportportal.entity.integration.Integration; | ||
import com.epam.ta.reportportal.entity.integration.IntegrationParams; | ||
import com.epam.reportportal.rules.exception.ReportPortalException; | ||
import com.epam.reportportal.rules.exception.ErrorType; | ||
import java.util.List; | ||
import java.util.Map; | ||
import org.slf4j.Logger; | ||
import org.slf4j.LoggerFactory; | ||
|
||
/** | ||
* @author <a href="mailto:[email protected]">Pavel Bortnik</a> | ||
*/ | ||
public class SearchUsersCommand implements PluginCommand<List<UserDto>> { | ||
|
||
private static final Logger LOGGER = LoggerFactory.getLogger(SearchUsersCommand.class); | ||
private final GitlabClientProvider gitlabClientProvider; | ||
|
||
public SearchUsersCommand(GitlabClientProvider gitlabClientProvider) { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters