blob: fa08e04f8dfd0a8edfc96f4afde77ccc4e5cdd5c [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2013 Frank Becker and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Frank Becker - initial API and implementation
*******************************************************************************/
package org.eclipse.mylyn.internal.bugzilla.rest.core;
import org.eclipse.core.runtime.Status;
public class BugzillaRestStatus extends Status {
int httpStatusCode;
public BugzillaRestStatus(int severity, String pluginId, int code, String message) {
super(severity, pluginId, code, message, null);
httpStatusCode = 0;
}
public int getHttpStatusCode() {
return httpStatusCode;
}
public void setHttpStatusCode(int httpStatusCode) {
this.httpStatusCode = httpStatusCode;
}
}