mirror of
https://github.com/scm-manager/scm-manager.git
synced 2026-04-01 18:00:12 +02:00
added unit tests for plugin condition
This commit is contained in:
@@ -58,6 +58,29 @@ import javax.xml.bind.annotation.XmlRootElement;
|
||||
public class PluginCondition
|
||||
{
|
||||
|
||||
/**
|
||||
* Constructs ...
|
||||
*
|
||||
*/
|
||||
public PluginCondition() {}
|
||||
|
||||
/**
|
||||
* Constructs ...
|
||||
*
|
||||
*
|
||||
* @param minVersion
|
||||
* @param os
|
||||
* @param arch
|
||||
*/
|
||||
public PluginCondition(String minVersion, List<String> os, String arch)
|
||||
{
|
||||
this.minVersion = minVersion;
|
||||
this.os = os;
|
||||
this.arch = arch;
|
||||
}
|
||||
|
||||
//~--- get methods ----------------------------------------------------------
|
||||
|
||||
/**
|
||||
* Method description
|
||||
*
|
||||
|
||||
Reference in New Issue
Block a user