blob: a7786f794c72237fa207e0c9557d0c670118080f [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2014 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;
import java.io.Serializable;
public class SortableActiveEntry implements Serializable {
private static final long serialVersionUID = 6555410907399756521L;
private String name;
private int sort_key;
private boolean is_active;
public String getName() {
return name;
}
public int getSortKey() {
return sort_key;
}
public boolean isActive() {
return is_active;
}
}