/*
* SonarQube
* Copyright (C) 2009-2017 SonarSource SA
* mailto:info 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 org.sonarqube.ws.client.projectanalysis;
import static com.google.common.base.Preconditions.checkArgument;
public class CreateEventRequest {
private final String analysis;
private final EventCategory category;
private final String name;
private CreateEventRequest(Builder builder) {
analysis = builder.analysis;
category = builder.category;
name = builder.name;
}
public String getAnalysis() {
return analysis;
}
public EventCategory getCategory() {
return category;
}
public String getName() {
return name;
}
public static Builder builder() {
return new Builder();
}
public static class Builder {
private String analysis;
private EventCategory category = EventCategory.OTHER;
private String name;
private Builder() {
// enforce static factory method
}
public Builder setAnalysis(String analysis) {
this.analysis = analysis;
return this;
}
public Builder setCategory(EventCategory category) {
this.category = category;
return this;
}
public Builder setName(String name) {
this.name = name;
return this;
}
public CreateEventRequest build() {
checkArgument(analysis != null, "Analysis key is required");
checkArgument(category != null, "Category is required");
checkArgument(name != null, "Name is required");
return new CreateEventRequest(this);
}
}
}