2020-03-23 15:35:58 +01:00
|
|
|
/*
|
|
|
|
|
* MIT License
|
2010-12-31 16:28:55 +01:00
|
|
|
*
|
2020-03-23 15:35:58 +01:00
|
|
|
* Copyright (c) 2020-present Cloudogu GmbH and Contributors
|
2010-12-31 16:28:55 +01:00
|
|
|
*
|
2020-03-23 15:35:58 +01:00
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
|
|
|
* in the Software without restriction, including without limitation the rights
|
|
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
|
|
|
* furnished to do so, subject to the following conditions:
|
2010-12-31 16:28:55 +01:00
|
|
|
*
|
2020-03-23 15:35:58 +01:00
|
|
|
* The above copyright notice and this permission notice shall be included in all
|
|
|
|
|
* copies or substantial portions of the Software.
|
2010-12-31 16:28:55 +01:00
|
|
|
*
|
2020-03-23 15:35:58 +01:00
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
|
|
|
* SOFTWARE.
|
2010-12-31 16:28:55 +01:00
|
|
|
*/
|
2020-03-23 15:35:58 +01:00
|
|
|
|
2010-12-31 16:28:55 +01:00
|
|
|
package sonia.scm.group.xml;
|
|
|
|
|
|
|
|
|
|
//~--- non-JDK imports --------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
import sonia.scm.group.Group;
|
2012-03-15 21:38:47 +01:00
|
|
|
import sonia.scm.xml.XmlDatabase;
|
2010-12-31 16:28:55 +01:00
|
|
|
|
|
|
|
|
//~--- JDK imports ------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
import java.util.Collection;
|
|
|
|
|
import java.util.LinkedHashMap;
|
|
|
|
|
import java.util.Map;
|
|
|
|
|
|
2010-12-31 16:49:47 +01:00
|
|
|
import javax.xml.bind.annotation.XmlAccessType;
|
|
|
|
|
import javax.xml.bind.annotation.XmlAccessorType;
|
2010-12-31 16:28:55 +01:00
|
|
|
import javax.xml.bind.annotation.XmlElement;
|
2010-12-31 16:49:47 +01:00
|
|
|
import javax.xml.bind.annotation.XmlRootElement;
|
2010-12-31 16:28:55 +01:00
|
|
|
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
*
|
|
|
|
|
* @author Sebastian Sdorra
|
|
|
|
|
*/
|
2010-12-31 16:49:47 +01:00
|
|
|
@XmlRootElement(name = "group-db")
|
|
|
|
|
@XmlAccessorType(XmlAccessType.FIELD)
|
2012-03-15 21:38:47 +01:00
|
|
|
public class XmlGroupDatabase implements XmlDatabase<Group>
|
2010-12-31 16:28:55 +01:00
|
|
|
{
|
|
|
|
|
|
2011-02-15 19:19:05 +01:00
|
|
|
/**
|
|
|
|
|
* Constructs ...
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
public XmlGroupDatabase()
|
|
|
|
|
{
|
|
|
|
|
long c = System.currentTimeMillis();
|
|
|
|
|
|
|
|
|
|
creationTime = c;
|
|
|
|
|
lastModified = c;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//~--- methods --------------------------------------------------------------
|
|
|
|
|
|
2010-12-31 16:28:55 +01:00
|
|
|
/**
|
|
|
|
|
* Method description
|
|
|
|
|
*
|
|
|
|
|
*
|
|
|
|
|
* @param group
|
|
|
|
|
*/
|
2012-03-15 21:38:47 +01:00
|
|
|
@Override
|
2010-12-31 16:28:55 +01:00
|
|
|
public void add(Group group)
|
|
|
|
|
{
|
|
|
|
|
groupMap.put(group.getName(), group);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Method description
|
|
|
|
|
*
|
|
|
|
|
*
|
|
|
|
|
* @param groupname
|
|
|
|
|
*
|
|
|
|
|
* @return
|
|
|
|
|
*/
|
2012-03-15 21:38:47 +01:00
|
|
|
@Override
|
2010-12-31 16:28:55 +01:00
|
|
|
public boolean contains(String groupname)
|
|
|
|
|
{
|
|
|
|
|
return groupMap.containsKey(groupname);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Method description
|
|
|
|
|
*
|
|
|
|
|
*
|
|
|
|
|
* @param groupname
|
|
|
|
|
*
|
|
|
|
|
* @return
|
|
|
|
|
*/
|
2012-03-15 21:38:47 +01:00
|
|
|
@Override
|
2010-12-31 16:28:55 +01:00
|
|
|
public Group remove(String groupname)
|
|
|
|
|
{
|
|
|
|
|
return groupMap.remove(groupname);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Method description
|
|
|
|
|
*
|
|
|
|
|
*
|
|
|
|
|
* @return
|
|
|
|
|
*/
|
2012-03-15 21:38:47 +01:00
|
|
|
@Override
|
2010-12-31 16:28:55 +01:00
|
|
|
public Collection<Group> values()
|
|
|
|
|
{
|
|
|
|
|
return groupMap.values();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//~--- get methods ----------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Method description
|
|
|
|
|
*
|
|
|
|
|
*
|
|
|
|
|
* @param groupname
|
|
|
|
|
*
|
|
|
|
|
* @return
|
|
|
|
|
*/
|
2012-03-15 21:38:47 +01:00
|
|
|
@Override
|
2010-12-31 16:28:55 +01:00
|
|
|
public Group get(String groupname)
|
|
|
|
|
{
|
|
|
|
|
return groupMap.get(groupname);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Method description
|
|
|
|
|
*
|
|
|
|
|
*
|
|
|
|
|
* @return
|
|
|
|
|
*/
|
2012-03-15 21:38:47 +01:00
|
|
|
@Override
|
2010-12-31 16:28:55 +01:00
|
|
|
public long getCreationTime()
|
|
|
|
|
{
|
|
|
|
|
return creationTime;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Method description
|
|
|
|
|
*
|
|
|
|
|
*
|
|
|
|
|
* @return
|
|
|
|
|
*/
|
2012-03-15 21:38:47 +01:00
|
|
|
@Override
|
2010-12-31 16:28:55 +01:00
|
|
|
public long getLastModified()
|
|
|
|
|
{
|
|
|
|
|
return lastModified;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//~--- set methods ----------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Method description
|
|
|
|
|
*
|
|
|
|
|
*
|
|
|
|
|
* @param creationTime
|
|
|
|
|
*/
|
2012-03-15 21:38:47 +01:00
|
|
|
@Override
|
2010-12-31 16:28:55 +01:00
|
|
|
public void setCreationTime(long creationTime)
|
|
|
|
|
{
|
|
|
|
|
this.creationTime = creationTime;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Method description
|
|
|
|
|
*
|
|
|
|
|
*
|
|
|
|
|
* @param lastModified
|
|
|
|
|
*/
|
2012-03-15 21:38:47 +01:00
|
|
|
@Override
|
2010-12-31 16:28:55 +01:00
|
|
|
public void setLastModified(long lastModified)
|
|
|
|
|
{
|
|
|
|
|
this.lastModified = lastModified;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//~--- fields ---------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
/** Field description */
|
|
|
|
|
private Long creationTime;
|
|
|
|
|
|
|
|
|
|
/** Field description */
|
|
|
|
|
@XmlJavaTypeAdapter(XmlGroupMapAdapter.class)
|
|
|
|
|
@XmlElement(name = "groups")
|
2017-07-03 17:12:41 +02:00
|
|
|
private Map<String, Group> groupMap = new LinkedHashMap<>();
|
2010-12-31 16:28:55 +01:00
|
|
|
|
|
|
|
|
/** Field description */
|
|
|
|
|
private Long lastModified;
|
|
|
|
|
}
|