Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'connector-bugzilla-rest/org.eclipse.mylyn.bugzilla.rest.core/src/org/eclipse/mylyn/internal/bugzilla/rest/core/response/data/Component.java')
-rw-r--r--connector-bugzilla-rest/org.eclipse.mylyn.bugzilla.rest.core/src/org/eclipse/mylyn/internal/bugzilla/rest/core/response/data/Component.java67
1 files changed, 67 insertions, 0 deletions
diff --git a/connector-bugzilla-rest/org.eclipse.mylyn.bugzilla.rest.core/src/org/eclipse/mylyn/internal/bugzilla/rest/core/response/data/Component.java b/connector-bugzilla-rest/org.eclipse.mylyn.bugzilla.rest.core/src/org/eclipse/mylyn/internal/bugzilla/rest/core/response/data/Component.java
new file mode 100644
index 000000000..ca52da95c
--- /dev/null
+++ b/connector-bugzilla-rest/org.eclipse.mylyn.bugzilla.rest.core/src/org/eclipse/mylyn/internal/bugzilla/rest/core/response/data/Component.java
@@ -0,0 +1,67 @@
+/*******************************************************************************
+ * 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 Component implements Serializable {
+ private static final long serialVersionUID = -3420463254677859338L;
+
+ private int id;
+
+ private String name;
+
+ private String description;
+
+ private String default_assigned_to;
+
+ private String default_qa_contact;
+
+ private int sort_key;
+
+ private boolean is_active;
+
+ private FlagTypes flag_types;
+
+ public int getId() {
+ return id;
+ }
+
+ public String getName() {
+ return name;
+ }
+
+ public String getDescription() {
+ return description;
+ }
+
+ public String getDefaultAssignedTo() {
+ return default_assigned_to;
+ }
+
+ public String getDefaultQaContact() {
+ return default_qa_contact;
+ }
+
+ public int getSortKey() {
+ return sort_key;
+ }
+
+ public boolean isActive() {
+ return is_active;
+ }
+
+ public FlagTypes getFlagTypes() {
+ return flag_types;
+ }
+
+}

Back to the top