2013-04-14 15:13:27 +02:00
|
|
|
/**
|
|
|
|
|
* Copyright (c) 2010, Sebastian Sdorra All rights reserved.
|
|
|
|
|
*
|
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
|
* modification, are permitted provided that the following conditions are met:
|
|
|
|
|
*
|
|
|
|
|
* 1. Redistributions of source code must retain the above copyright notice,
|
|
|
|
|
* this list of conditions and the following disclaimer. 2. Redistributions in
|
|
|
|
|
* binary form must reproduce the above copyright notice, this list of
|
|
|
|
|
* conditions and the following disclaimer in the documentation and/or other
|
|
|
|
|
* materials provided with the distribution. 3. Neither the name of SCM-Manager;
|
|
|
|
|
* nor the names of its contributors may be used to endorse or promote products
|
|
|
|
|
* derived from this software without specific prior written permission.
|
|
|
|
|
*
|
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
|
|
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR
|
|
|
|
|
* ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
|
|
|
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
|
|
|
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
|
|
|
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
|
*
|
|
|
|
|
* http://bitbucket.org/sdorra/scm-manager
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
package sonia.scm.security;
|
|
|
|
|
|
|
|
|
|
//~--- non-JDK imports --------------------------------------------------------
|
|
|
|
|
|
2013-04-30 16:27:08 +02:00
|
|
|
import com.google.common.base.Predicate;
|
|
|
|
|
import com.google.common.collect.ImmutableList;
|
|
|
|
|
import com.google.common.collect.ImmutableList.Builder;
|
2013-05-01 20:57:47 +02:00
|
|
|
import com.google.common.eventbus.Subscribe;
|
2013-04-14 15:13:27 +02:00
|
|
|
import com.google.inject.Inject;
|
|
|
|
|
import com.google.inject.Singleton;
|
|
|
|
|
|
|
|
|
|
import org.apache.shiro.SecurityUtils;
|
|
|
|
|
|
2013-04-30 16:55:48 +02:00
|
|
|
import org.slf4j.Logger;
|
|
|
|
|
import org.slf4j.LoggerFactory;
|
|
|
|
|
|
2013-05-01 20:57:47 +02:00
|
|
|
import sonia.scm.HandlerEvent;
|
2013-05-01 21:09:40 +02:00
|
|
|
import sonia.scm.event.ScmEventBus;
|
2013-05-01 20:57:47 +02:00
|
|
|
import sonia.scm.event.Subscriber;
|
|
|
|
|
import sonia.scm.group.GroupEvent;
|
2013-04-30 16:27:08 +02:00
|
|
|
import sonia.scm.store.ConfigurationEntryStore;
|
|
|
|
|
import sonia.scm.store.ConfigurationEntryStoreFactory;
|
2013-05-01 20:57:47 +02:00
|
|
|
import sonia.scm.user.UserEvent;
|
2013-04-30 16:27:08 +02:00
|
|
|
|
|
|
|
|
//~--- JDK imports ------------------------------------------------------------
|
|
|
|
|
|
2013-04-30 16:55:48 +02:00
|
|
|
import java.io.IOException;
|
|
|
|
|
|
|
|
|
|
import java.net.URL;
|
|
|
|
|
|
2013-04-30 16:27:08 +02:00
|
|
|
import java.util.Collections;
|
2013-04-30 16:55:48 +02:00
|
|
|
import java.util.Enumeration;
|
2013-04-30 16:27:08 +02:00
|
|
|
import java.util.List;
|
|
|
|
|
import java.util.Map.Entry;
|
2013-04-14 15:13:27 +02:00
|
|
|
|
2013-04-30 16:55:48 +02:00
|
|
|
import javax.xml.bind.JAXBContext;
|
|
|
|
|
import javax.xml.bind.JAXBException;
|
|
|
|
|
import javax.xml.bind.annotation.XmlAccessType;
|
|
|
|
|
import javax.xml.bind.annotation.XmlAccessorType;
|
|
|
|
|
import javax.xml.bind.annotation.XmlElement;
|
|
|
|
|
import javax.xml.bind.annotation.XmlRootElement;
|
|
|
|
|
|
2013-04-14 15:13:27 +02:00
|
|
|
/**
|
2013-04-30 16:27:08 +02:00
|
|
|
* TODO add events
|
2013-04-14 15:13:27 +02:00
|
|
|
*
|
|
|
|
|
* @author Sebastian Sdorra
|
|
|
|
|
* @since 1.31
|
|
|
|
|
*/
|
|
|
|
|
@Singleton
|
2013-05-01 20:57:47 +02:00
|
|
|
@Subscriber(async = true)
|
2013-04-14 15:13:27 +02:00
|
|
|
public class DefaultSecuritySystem implements SecuritySystem
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
/** Field description */
|
|
|
|
|
private static final String NAME = "security";
|
|
|
|
|
|
2013-04-30 16:55:48 +02:00
|
|
|
/** Field description */
|
|
|
|
|
private static final String PERMISSION_DESCRIPTOR =
|
|
|
|
|
"META-INF/scm/permissions.xml";
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* the logger for DefaultSecuritySystem
|
|
|
|
|
*/
|
|
|
|
|
private static final Logger logger =
|
|
|
|
|
LoggerFactory.getLogger(DefaultSecuritySystem.class);
|
|
|
|
|
|
2013-04-14 15:13:27 +02:00
|
|
|
//~--- constructors ---------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Constructs ...
|
|
|
|
|
*
|
|
|
|
|
*
|
|
|
|
|
* @param storeFactory
|
|
|
|
|
*/
|
|
|
|
|
@Inject
|
2013-04-30 16:27:08 +02:00
|
|
|
public DefaultSecuritySystem(ConfigurationEntryStoreFactory storeFactory)
|
2013-04-14 15:13:27 +02:00
|
|
|
{
|
2013-04-30 16:27:08 +02:00
|
|
|
store = storeFactory.getStore(AssignedPermission.class, NAME);
|
2013-04-30 16:55:48 +02:00
|
|
|
readAvailablePermissions();
|
2013-04-14 15:13:27 +02:00
|
|
|
}
|
|
|
|
|
|
2013-04-30 16:27:08 +02:00
|
|
|
//~--- methods --------------------------------------------------------------
|
2013-04-14 15:13:27 +02:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Method description
|
|
|
|
|
*
|
|
|
|
|
*
|
2013-04-30 16:27:08 +02:00
|
|
|
* @param permission
|
|
|
|
|
*
|
2013-04-14 15:13:27 +02:00
|
|
|
* @return
|
|
|
|
|
*/
|
|
|
|
|
@Override
|
2013-04-30 16:27:08 +02:00
|
|
|
public StoredAssignedPermission addPermission(AssignedPermission permission)
|
|
|
|
|
{
|
|
|
|
|
assertIsAdmin();
|
|
|
|
|
|
|
|
|
|
String id = store.put(permission);
|
|
|
|
|
|
2013-05-01 21:09:40 +02:00
|
|
|
StoredAssignedPermission sap = new StoredAssignedPermission(id, permission);
|
|
|
|
|
|
|
|
|
|
//J-
|
|
|
|
|
ScmEventBus.getInstance().post(
|
|
|
|
|
new StoredAssignedPermissionEvent(HandlerEvent.CREATE, sap)
|
|
|
|
|
);
|
|
|
|
|
//J+
|
|
|
|
|
|
|
|
|
|
return sap;
|
2013-04-30 16:27:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Method description
|
|
|
|
|
*
|
|
|
|
|
*
|
|
|
|
|
* @param permission
|
|
|
|
|
*/
|
|
|
|
|
@Override
|
|
|
|
|
public void deletePermission(StoredAssignedPermission permission)
|
|
|
|
|
{
|
|
|
|
|
assertIsAdmin();
|
2013-05-01 21:09:40 +02:00
|
|
|
store.remove(permission.getId());
|
|
|
|
|
//J-
|
|
|
|
|
ScmEventBus.getInstance().post(
|
|
|
|
|
new StoredAssignedPermissionEvent(HandlerEvent.CREATE, permission)
|
|
|
|
|
);
|
|
|
|
|
//J+
|
2013-04-30 16:27:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Method description
|
|
|
|
|
*
|
|
|
|
|
*
|
|
|
|
|
* @param id
|
|
|
|
|
*/
|
|
|
|
|
@Override
|
|
|
|
|
public void deletePermission(String id)
|
|
|
|
|
{
|
|
|
|
|
assertIsAdmin();
|
2013-05-01 21:09:40 +02:00
|
|
|
|
|
|
|
|
AssignedPermission ap = store.get(id);
|
|
|
|
|
|
|
|
|
|
if (ap != null)
|
|
|
|
|
{
|
|
|
|
|
deletePermission(new StoredAssignedPermission(id, ap));
|
|
|
|
|
}
|
2013-04-30 16:27:08 +02:00
|
|
|
}
|
|
|
|
|
|
2013-05-01 20:57:47 +02:00
|
|
|
/**
|
|
|
|
|
* Method description
|
|
|
|
|
*
|
|
|
|
|
*
|
|
|
|
|
* @param event
|
|
|
|
|
*/
|
|
|
|
|
@Subscribe
|
|
|
|
|
public void handleEvent(final UserEvent event)
|
|
|
|
|
{
|
|
|
|
|
if (event.getEventType() == HandlerEvent.DELETE)
|
|
|
|
|
{
|
|
|
|
|
deletePermissions(new Predicate<AssignedPermission>()
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public boolean apply(AssignedPermission p)
|
|
|
|
|
{
|
|
|
|
|
return !p.isGroupPermission()
|
|
|
|
|
&& event.getItem().getName().equals(p.getName());
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Method description
|
|
|
|
|
*
|
|
|
|
|
*
|
|
|
|
|
* @param event
|
|
|
|
|
*/
|
|
|
|
|
@Subscribe
|
|
|
|
|
public void handleEvent(final GroupEvent event)
|
|
|
|
|
{
|
|
|
|
|
if (event.getEventType() == HandlerEvent.DELETE)
|
|
|
|
|
{
|
|
|
|
|
deletePermissions(new Predicate<AssignedPermission>()
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public boolean apply(AssignedPermission p)
|
|
|
|
|
{
|
|
|
|
|
return p.isGroupPermission()
|
|
|
|
|
&& event.getItem().getName().equals(p.getName());
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2013-04-30 16:27:08 +02:00
|
|
|
/**
|
|
|
|
|
* Method description
|
|
|
|
|
*
|
|
|
|
|
*
|
|
|
|
|
* @param permission
|
|
|
|
|
*/
|
|
|
|
|
@Override
|
|
|
|
|
public void modifyPermission(StoredAssignedPermission permission)
|
2013-04-14 15:13:27 +02:00
|
|
|
{
|
2013-04-30 16:27:08 +02:00
|
|
|
assertIsAdmin();
|
2013-04-14 15:13:27 +02:00
|
|
|
|
2013-04-30 16:27:08 +02:00
|
|
|
synchronized (store)
|
2013-04-14 15:13:27 +02:00
|
|
|
{
|
2013-04-30 16:27:08 +02:00
|
|
|
store.remove(permission.getId());
|
|
|
|
|
store.put(permission.getId(), new AssignedPermission(permission));
|
2013-04-14 15:13:27 +02:00
|
|
|
}
|
2013-05-01 21:09:40 +02:00
|
|
|
|
|
|
|
|
//J-
|
|
|
|
|
ScmEventBus.getInstance().post(
|
|
|
|
|
new StoredAssignedPermissionEvent(HandlerEvent.CREATE, permission)
|
|
|
|
|
);
|
|
|
|
|
//J+
|
2013-04-30 16:27:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//~--- get methods ----------------------------------------------------------
|
2013-04-14 15:13:27 +02:00
|
|
|
|
2013-04-30 16:27:08 +02:00
|
|
|
/**
|
|
|
|
|
* Method description
|
|
|
|
|
*
|
|
|
|
|
*
|
|
|
|
|
* @return
|
|
|
|
|
*/
|
|
|
|
|
@Override
|
|
|
|
|
public List<StoredAssignedPermission> getAllPermissions()
|
|
|
|
|
{
|
|
|
|
|
return getPermissions(null);
|
2013-04-14 15:13:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Method description
|
|
|
|
|
*
|
|
|
|
|
*
|
|
|
|
|
* @return
|
|
|
|
|
*/
|
|
|
|
|
@Override
|
2013-04-30 16:27:08 +02:00
|
|
|
public List<PermissionDescriptor> getAvailablePermissions()
|
2013-04-14 15:13:27 +02:00
|
|
|
{
|
2013-04-30 16:55:48 +02:00
|
|
|
assertIsAdmin();
|
2013-04-30 16:27:08 +02:00
|
|
|
|
2013-04-30 16:55:48 +02:00
|
|
|
return availablePermissions;
|
2013-04-14 15:13:27 +02:00
|
|
|
}
|
|
|
|
|
|
2013-05-01 13:52:04 +02:00
|
|
|
/**
|
|
|
|
|
* Method description
|
|
|
|
|
*
|
|
|
|
|
*
|
|
|
|
|
* @param id
|
|
|
|
|
*
|
|
|
|
|
* @return
|
|
|
|
|
*/
|
|
|
|
|
@Override
|
|
|
|
|
public StoredAssignedPermission getPermission(String id)
|
|
|
|
|
{
|
|
|
|
|
assertIsAdmin();
|
|
|
|
|
|
|
|
|
|
StoredAssignedPermission sap = null;
|
|
|
|
|
AssignedPermission ap = store.get(id);
|
|
|
|
|
|
|
|
|
|
if (ap != null)
|
|
|
|
|
{
|
|
|
|
|
sap = new StoredAssignedPermission(id, ap);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return sap;
|
|
|
|
|
}
|
|
|
|
|
|
2013-04-30 16:27:08 +02:00
|
|
|
/**
|
|
|
|
|
* Method description
|
|
|
|
|
*
|
|
|
|
|
*
|
|
|
|
|
* @param predicate
|
|
|
|
|
*
|
|
|
|
|
* @return
|
|
|
|
|
*/
|
|
|
|
|
@Override
|
|
|
|
|
public List<StoredAssignedPermission> getPermissions(
|
|
|
|
|
Predicate<AssignedPermission> predicate)
|
|
|
|
|
{
|
|
|
|
|
Builder<StoredAssignedPermission> permissions = ImmutableList.builder();
|
|
|
|
|
|
|
|
|
|
for (Entry<String, AssignedPermission> e : store.getAll().entrySet())
|
|
|
|
|
{
|
|
|
|
|
if ((predicate == null) || predicate.apply(e.getValue()))
|
|
|
|
|
{
|
|
|
|
|
permissions.add(new StoredAssignedPermission(e.getKey(), e.getValue()));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return permissions.build();
|
|
|
|
|
}
|
2013-04-14 15:13:27 +02:00
|
|
|
|
2013-04-30 16:27:08 +02:00
|
|
|
//~--- methods --------------------------------------------------------------
|
2013-04-14 15:13:27 +02:00
|
|
|
|
2013-04-30 16:27:08 +02:00
|
|
|
/**
|
|
|
|
|
* Method description
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
private void assertIsAdmin()
|
|
|
|
|
{
|
|
|
|
|
SecurityUtils.getSubject().checkRole(Role.ADMIN);
|
2013-04-14 15:13:27 +02:00
|
|
|
}
|
|
|
|
|
|
2013-05-01 20:57:47 +02:00
|
|
|
/**
|
|
|
|
|
* Method description
|
|
|
|
|
*
|
|
|
|
|
*
|
|
|
|
|
* @param predicate
|
|
|
|
|
*/
|
|
|
|
|
private void deletePermissions(Predicate<AssignedPermission> predicate)
|
|
|
|
|
{
|
|
|
|
|
List<StoredAssignedPermission> permissions = getPermissions(predicate);
|
|
|
|
|
|
|
|
|
|
for (StoredAssignedPermission permission : permissions)
|
|
|
|
|
{
|
|
|
|
|
deletePermission(permission);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2013-04-30 16:55:48 +02:00
|
|
|
/**
|
|
|
|
|
* Method description
|
|
|
|
|
*
|
|
|
|
|
*
|
|
|
|
|
* @param context
|
|
|
|
|
* @param descriptorUrl
|
|
|
|
|
*
|
|
|
|
|
* @return
|
|
|
|
|
*/
|
|
|
|
|
private List<PermissionDescriptor> parsePermissionDescriptor(
|
|
|
|
|
JAXBContext context, URL descriptorUrl)
|
|
|
|
|
{
|
|
|
|
|
List<PermissionDescriptor> descriptors = Collections.EMPTY_LIST;
|
|
|
|
|
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
PermissionDescriptors descriptorWrapper =
|
|
|
|
|
(PermissionDescriptors) context.createUnmarshaller().unmarshal(
|
|
|
|
|
descriptorUrl);
|
|
|
|
|
|
|
|
|
|
descriptors = descriptorWrapper.getPermissions();
|
|
|
|
|
|
|
|
|
|
logger.debug("found {} permissions at {}", descriptors.size(),
|
|
|
|
|
descriptorUrl);
|
|
|
|
|
logger.trace("permissions from {}: {}", descriptorUrl, descriptors);
|
|
|
|
|
}
|
|
|
|
|
catch (JAXBException ex)
|
|
|
|
|
{
|
|
|
|
|
logger.error("could not parse permission descriptor", ex);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return descriptors;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Method description
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
private void readAvailablePermissions()
|
|
|
|
|
{
|
|
|
|
|
Builder<PermissionDescriptor> builder = ImmutableList.builder();
|
|
|
|
|
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
JAXBContext context =
|
|
|
|
|
JAXBContext.newInstance(PermissionDescriptors.class);
|
|
|
|
|
|
|
|
|
|
Enumeration<URL> descirptorEnum =
|
|
|
|
|
getClassLoader().getResources(PERMISSION_DESCRIPTOR);
|
|
|
|
|
|
|
|
|
|
while (descirptorEnum.hasMoreElements())
|
|
|
|
|
{
|
|
|
|
|
URL descriptorUrl = descirptorEnum.nextElement();
|
|
|
|
|
|
|
|
|
|
logger.debug("read permission descriptor from {}", descriptorUrl);
|
|
|
|
|
|
|
|
|
|
builder.addAll(parsePermissionDescriptor(context, descriptorUrl));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
catch (IOException ex)
|
|
|
|
|
{
|
|
|
|
|
logger.error("could not read permission descriptors", ex);
|
|
|
|
|
}
|
|
|
|
|
catch (JAXBException ex)
|
|
|
|
|
{
|
|
|
|
|
logger.error(
|
|
|
|
|
"could not create jaxb context to read permission descriptors", ex);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
availablePermissions = builder.build();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//~--- get methods ----------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Method description
|
|
|
|
|
*
|
|
|
|
|
*
|
|
|
|
|
* @return
|
|
|
|
|
*/
|
|
|
|
|
private ClassLoader getClassLoader()
|
|
|
|
|
{
|
|
|
|
|
ClassLoader classLoader = Thread.currentThread().getContextClassLoader();
|
|
|
|
|
|
|
|
|
|
if (classLoader == null)
|
|
|
|
|
{
|
|
|
|
|
logger.warn("could not find context classloader, use default");
|
|
|
|
|
|
|
|
|
|
classLoader = DefaultSecuritySystem.class.getClassLoader();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return classLoader;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//~--- inner classes --------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Class description
|
|
|
|
|
*
|
|
|
|
|
*
|
|
|
|
|
* @version Enter version here..., 13/04/30
|
|
|
|
|
* @author Enter your name here...
|
|
|
|
|
*/
|
|
|
|
|
@XmlRootElement(name = "permissions")
|
|
|
|
|
@XmlAccessorType(XmlAccessType.FIELD)
|
|
|
|
|
private static class PermissionDescriptors
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Constructs ...
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
public PermissionDescriptors() {}
|
|
|
|
|
|
|
|
|
|
//~--- get methods --------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Method description
|
|
|
|
|
*
|
|
|
|
|
*
|
|
|
|
|
* @return
|
|
|
|
|
*/
|
|
|
|
|
public List<PermissionDescriptor> getPermissions()
|
|
|
|
|
{
|
|
|
|
|
if (permissions == null)
|
|
|
|
|
{
|
|
|
|
|
permissions = Collections.EMPTY_LIST;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return permissions;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//~--- fields -------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
/** Field description */
|
|
|
|
|
@XmlElement(name = "permission")
|
|
|
|
|
private List<PermissionDescriptor> permissions;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2013-04-14 15:13:27 +02:00
|
|
|
//~--- fields ---------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
/** Field description */
|
2013-04-30 16:27:08 +02:00
|
|
|
private final ConfigurationEntryStore<AssignedPermission> store;
|
2013-04-30 16:55:48 +02:00
|
|
|
|
|
|
|
|
/** Field description */
|
|
|
|
|
private List<PermissionDescriptor> availablePermissions;
|
2013-04-14 15:13:27 +02:00
|
|
|
}
|