001 /*
002 * Sonar, open source software quality management tool.
003 * Copyright (C) 2008-2012 SonarSource
004 * mailto:contact AT sonarsource DOT com
005 *
006 * Sonar is free software; you can redistribute it and/or
007 * modify it under the terms of the GNU Lesser General Public
008 * License as published by the Free Software Foundation; either
009 * version 3 of the License, or (at your option) any later version.
010 *
011 * Sonar is distributed in the hope that it will be useful,
012 * but WITHOUT ANY WARRANTY; without even the implied warranty of
013 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
014 * Lesser General Public License for more details.
015 *
016 * You should have received a copy of the GNU Lesser General Public
017 * License along with Sonar; if not, write to the Free Software
018 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02
019 */
020 package org.sonar.core.rule;
021
022 public final class RuleDto {
023 private Long id;
024 private String repositoryKey;
025 private String ruleKey;
026 private String description;
027 private boolean enabled;
028 private String name;
029
030 public Long getId() {
031 return id;
032 }
033
034 public void setId(Long id) {
035 this.id = id;
036 }
037
038 public String getRepositoryKey() {
039 return repositoryKey;
040 }
041
042 public void setRepositoryKey(String repositoryKey) {
043 this.repositoryKey = repositoryKey;
044 }
045
046 public String getRuleKey() {
047 return ruleKey;
048 }
049
050 public void setRuleKey(String ruleKey) {
051 this.ruleKey = ruleKey;
052 }
053
054 public String getDescription() {
055 return description;
056 }
057
058 public void setDescription(String description) {
059 this.description = description;
060 }
061
062 public boolean isEnabled() {
063 return enabled;
064 }
065
066 public void setEnabled(boolean enabled) {
067 this.enabled = enabled;
068 }
069
070 public String getName() {
071 return name;
072 }
073
074 public void setName(String name) {
075 this.name = name;
076 }
077 }