/* * Copyright (C) 2014 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.android.build.gradle.internal.model; import com.android.annotations.NonNull; import com.android.builder.model.SyncIssue; import java.io.Serializable; /** * An implementation of BaseConfig specifically for sending as part of the Android model * through the Gradle tooling API. */ public class SyncIssueImpl implements SyncIssue, Serializable { private static final long serialVersionUID = 1L; private final int type; private final int severity; private final String data; private final String message; public SyncIssueImpl(int type, int severity, @NonNull String data, @NonNull String message) { this.type = type; this.severity = severity; this.data = data; this.message = message; } @Override public int getSeverity() { return severity; } @Override public int getType() { return type; } @NonNull @Override public String getData() { return data; } @NonNull @Override public String getMessage() { return message; } @Override public String toString() { return "SyncIssueImpl{" + "type=" + type + ", severity=" + severity + ", data='" + data + '\'' + ", message='" + message + '\'' + '}'; } }