Java tutorial
/* * Jenkins :: Integration Tests * Copyright (C) 2013-2016 SonarSource SA * mailto:contact AT sonarsource DOT com * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 3 of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program; if not, write to the Free Software Foundation, * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ package com.sonar.it.jenkins.orchestrator.container; import org.apache.commons.lang.StringUtils; public final class JenkinsDistribution { private String version; private int port; public JenkinsDistribution() { } public JenkinsDistribution(String version) { this.version = version; } public JenkinsDistribution setVersion(String s) { this.version = s; return this; } public String getVersion() { return version; } public boolean isRelease() { return !StringUtils.endsWith(version, "-SNAPSHOT"); } public int getPort() { return port; } public JenkinsDistribution setPort(int port) { this.port = port; return this; } }