summaryrefslogtreecommitdiffstats
path: root/base/tps/src/org/dogtagpki/server/tps/config/ConfigRecord.java
diff options
context:
space:
mode:
Diffstat (limited to 'base/tps/src/org/dogtagpki/server/tps/config/ConfigRecord.java')
-rw-r--r--base/tps/src/org/dogtagpki/server/tps/config/ConfigRecord.java126
1 files changed, 126 insertions, 0 deletions
diff --git a/base/tps/src/org/dogtagpki/server/tps/config/ConfigRecord.java b/base/tps/src/org/dogtagpki/server/tps/config/ConfigRecord.java
new file mode 100644
index 000000000..f1a87ddfe
--- /dev/null
+++ b/base/tps/src/org/dogtagpki/server/tps/config/ConfigRecord.java
@@ -0,0 +1,126 @@
+// --- BEGIN COPYRIGHT BLOCK ---
+// This program is free software; you can redistribute it and/or modify
+// it under the terms of the GNU General Public License as published by
+// the Free Software Foundation; version 2 of the License.
+//
+// This program 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 General Public License along
+// with this program; if not, write to the Free Software Foundation, Inc.,
+// 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+//
+// (C) 2013 Red Hat, Inc.
+// All rights reserved.
+// --- END COPYRIGHT BLOCK ---
+
+package org.dogtagpki.server.tps.config;
+
+import java.util.Collection;
+import java.util.LinkedHashSet;
+
+import com.netscape.certsrv.base.ConflictingOperationException;
+import com.netscape.certsrv.base.ResourceNotFoundException;
+
+/**
+ * @author Endi S. Dewata
+ */
+public class ConfigRecord {
+
+ String id;
+ String displayName;
+ String pattern;
+ Collection<String> keys = new LinkedHashSet<String>();
+
+ public String getID() {
+ return id;
+ }
+
+ public void setID(String id) {
+ this.id = id;
+ }
+
+ public String getDisplayName() {
+ return displayName;
+ }
+
+ public void setDisplayName(String displayName) {
+ this.displayName = displayName;
+ }
+
+ public String getPattern() {
+ return pattern;
+ }
+
+ public void setPattern(String pattern) {
+ this.pattern = pattern;
+ }
+
+ public Collection<String> getKeys() {
+ return keys;
+ }
+
+ public void setKeys(Collection<String> keys) {
+ this.keys.clear();
+ this.keys.addAll(keys);
+ }
+
+ public boolean containsKey(String key) {
+ return keys.contains(key);
+ }
+
+ public void addKey(String key) {
+ if (keys.contains(key)) throw new ConflictingOperationException("Entry already exists: " + key);
+ keys.add(key);
+ }
+
+ public void removeKey(String key) {
+ if (!keys.contains(key)) throw new ResourceNotFoundException("Entry does not exist: " + key);
+ keys.remove(key);
+ }
+
+ @Override
+ public int hashCode() {
+ final int prime = 31;
+ int result = 1;
+ result = prime * result + ((displayName == null) ? 0 : displayName.hashCode());
+ result = prime * result + ((id == null) ? 0 : id.hashCode());
+ result = prime * result + ((keys == null) ? 0 : keys.hashCode());
+ result = prime * result + ((pattern == null) ? 0 : pattern.hashCode());
+ return result;
+ }
+
+ @Override
+ public boolean equals(Object obj) {
+ if (this == obj)
+ return true;
+ if (obj == null)
+ return false;
+ if (getClass() != obj.getClass())
+ return false;
+ ConfigRecord other = (ConfigRecord) obj;
+ if (displayName == null) {
+ if (other.displayName != null)
+ return false;
+ } else if (!displayName.equals(other.displayName))
+ return false;
+ if (id == null) {
+ if (other.id != null)
+ return false;
+ } else if (!id.equals(other.id))
+ return false;
+ if (keys == null) {
+ if (other.keys != null)
+ return false;
+ } else if (!keys.equals(other.keys))
+ return false;
+ if (pattern == null) {
+ if (other.pattern != null)
+ return false;
+ } else if (!pattern.equals(other.pattern))
+ return false;
+ return true;
+ }
+}