Commit fd6696b5 authored by Tom Evans's avatar Tom Evans Committed by tevans

OF-657: Update build dependencies for Java 1.5; enable caching for Crowd Group instances

git-svn-id: http://svn.igniterealtime.org/svn/repos/openfire/trunk@13618 b35dd754-fafc-0310-a699-88a17e54d16e
parent 310e3cb3
...@@ -53,7 +53,7 @@ public class CrowdProperties { ...@@ -53,7 +53,7 @@ public class CrowdProperties {
try { try {
props.load(new FileInputStream(file)); props.load(new FileInputStream(file));
} catch (IOException ioe) { } catch (IOException ioe) {
throw new IOException("Unable to load crowd.properties file", ioe); throw new IOException("Unable to load crowd.properties file");
} }
} }
......
...@@ -15,11 +15,13 @@ ...@@ -15,11 +15,13 @@
*/ */
package org.jivesoftware.openfire.crowd.jaxb; package org.jivesoftware.openfire.crowd.jaxb;
import java.io.Serializable;
import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlRootElement;
@XmlRootElement(name="group") @XmlRootElement(name="group")
public class Group { public class Group implements Serializable {
@XmlAttribute @XmlAttribute
public String name; public String name;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment