diff options
author | Matt Windsor <mattwindsor@btinternet.com> | 2011-03-18 14:01:42 +0000 |
---|---|---|
committer | Matt Windsor <mattwindsor@btinternet.com> | 2011-03-18 14:01:42 +0000 |
commit | dfde3f3d62ee5de17d09195513711fd006cbf270 (patch) | |
tree | 0fb70b0f75927a03daa8ad8ddc218f6e657e6d66 /src/uk/org/ury/show/ShowItemProperty.java | |
parent | b6831f847f93622a64f1b776bc3cf62befddab98 (diff) |
Remove duplicate files; begin rewriting server to use Apache HttpCore by using HttpCore Response resources; exception-based error handling introduced for get requests.
Diffstat (limited to 'src/uk/org/ury/show/ShowItemProperty.java')
-rw-r--r-- | src/uk/org/ury/show/ShowItemProperty.java | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/src/uk/org/ury/show/ShowItemProperty.java b/src/uk/org/ury/show/ShowItemProperty.java deleted file mode 100644 index a722a21..0000000 --- a/src/uk/org/ury/show/ShowItemProperty.java +++ /dev/null @@ -1,26 +0,0 @@ -package uk.org.ury.show; - - -/** - * Enumeration of the parameters that are stored in a ShowItem. - * - * @author Matt Windsor - */ - -public enum ShowItemProperty - { - // Constant SQL identifier - NAME1 ("name1"), - NAME2 ("name2"), - POSITION ("positionid"); - - - public final String sql; - - - private - ShowItemProperty (String sql) - { - this.sql = sql; - } - };
\ No newline at end of file |