1 package com.atlassian.jira.issue.status;
2
3 import java.util.Locale;
4
5 import org.ofbiz.core.entity.GenericValue;
6
7 import com.atlassian.jira.util.I18nHelper;
8 import com.opensymphony.module.propertyset.PropertySet;
9
10
11
12
13
14
15
16
17 public class RemovedStatusImpl implements Status {
18
19 public void deleteTranslation(String issueConstantPrefix, Locale locale) {
20
21 }
22
23 public String getDescription() {
24 return "Status representing an old Status removed from Database";
25 }
26
27 public String getDescTranslation() {
28 return getDescription();
29 }
30
31 public String getDescTranslation(I18nHelper i18n) {
32 return getDescription();
33 }
34
35 public String getDescTranslation(String locale) {
36 return getDescription();
37 }
38
39 public GenericValue getGenericValue() {
40
41 return null;
42 }
43
44 public String getIconUrl() {
45
46 return null;
47 }
48
49 public String getId() {
50 return "-1";
51 }
52
53 public String getName() {
54 return "Removed Status";
55 }
56
57 public String getNameTranslation() {
58 return getName();
59 }
60
61 public String getNameTranslation(I18nHelper i18n) {
62 return getName();
63 }
64
65 public String getNameTranslation(String locale) {
66 return getName();
67 }
68
69 public PropertySet getPropertySet() {
70
71 return null;
72 }
73
74 public Long getSequence() {
75
76 return null;
77 }
78
79 public void setDescription(String description) {
80
81 }
82
83 public void setIconUrl(String iconURL) {
84
85 }
86
87 public void setName(String name) {
88
89 }
90
91 public void setSequence(Long sequence) {
92
93 }
94
95 public void setTranslation(String translatedName, String translatedDesc, String issueConstantPrefix, Locale locale) {
96
97 }
98
99 public int compareTo(Object arg0) {
100
101 return 0;
102 }
103 }