blob: 86d6a24bd8d6143c60bebb4ebeb3c084acd03ab1 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2015 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.response.data;
public class BugzillaRestIdResult {
private String id;
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
}