summaryrefslogtreecommitdiffstats
path: root/EssentialsGeoIP/src/com/maxmind/geoip/Country.java
diff options
context:
space:
mode:
authorsnowleo <snowleo@e251c2fe-e539-e718-e476-b85c1f46cddb>2011-05-01 11:04:34 +0000
committersnowleo <snowleo@e251c2fe-e539-e718-e476-b85c1f46cddb>2011-05-01 11:04:34 +0000
commit41d73bf90e2e94c91df8a865d54d5cb23b9101c9 (patch)
tree3c80345d9a699a8d60d2a03e37f69e0f98fac676 /EssentialsGeoIP/src/com/maxmind/geoip/Country.java
parentec18c0096d91f237a27e9aa88a96857403b2ed40 (diff)
downloadEssentials-41d73bf90e2e94c91df8a865d54d5cb23b9101c9.tar
Essentials-41d73bf90e2e94c91df8a865d54d5cb23b9101c9.tar.gz
Essentials-41d73bf90e2e94c91df8a865d54d5cb23b9101c9.tar.lz
Essentials-41d73bf90e2e94c91df8a865d54d5cb23b9101c9.tar.xz
Essentials-41d73bf90e2e94c91df8a865d54d5cb23b9101c9.zip
EssentialsGeoIP is now officially part of Essentials
git-svn-id: https://svn.java.net/svn/essentials~svn/trunk@1292 e251c2fe-e539-e718-e476-b85c1f46cddb
Diffstat (limited to 'EssentialsGeoIP/src/com/maxmind/geoip/Country.java')
-rw-r--r--EssentialsGeoIP/src/com/maxmind/geoip/Country.java61
1 files changed, 61 insertions, 0 deletions
diff --git a/EssentialsGeoIP/src/com/maxmind/geoip/Country.java b/EssentialsGeoIP/src/com/maxmind/geoip/Country.java
new file mode 100644
index 000000000..d250eb766
--- /dev/null
+++ b/EssentialsGeoIP/src/com/maxmind/geoip/Country.java
@@ -0,0 +1,61 @@
+/**
+ * Country.java
+ *
+ * Copyright (C) 2003 MaxMind LLC. All Rights Reserved.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ */
+
+package com.maxmind.geoip;
+
+/**
+ * Represents a country.
+ *
+ * @author Matt Tucker
+ */
+public class Country {
+
+ private String code;
+ private String name;
+
+ /**
+ * Creates a new Country.
+ *
+ * @param code the country code.
+ * @param name the country name.
+ */
+ public Country(String code, String name) {
+ this.code = code;
+ this.name = name;
+ }
+
+ /**
+ * Returns the ISO two-letter country code of this country.
+ *
+ * @return the country code.
+ */
+ public String getCode() {
+ return code;
+ }
+
+ /**
+ * Returns the name of this country.
+ *
+ * @return the country name.
+ */
+ public String getName() {
+ return name;
+ }
+}