org.jboss.security.config.BaseSecurityInfo Maven / Gradle / Ivy
/*
* JBoss, Home of Professional Open Source
* Copyright 2007, JBoss Inc., and individual contributors as indicated
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
* This 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.1 of
* the License, or (at your option) any later version.
*
* This software 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this software; if not, write to the Free
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package org.jboss.security.config;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import javax.security.auth.AuthPermission;
/**
* Base Class of the security info
*
* @author [email protected]
* @since Sep 27, 2007
* @version $Revision$
* @param
*/
public abstract class BaseSecurityInfo
{
public static final AuthPermission GET_CONFIG_ENTRY_PERM = new AuthPermission("getLoginConfiguration");
public static final AuthPermission SET_CONFIG_ENTRY_PERM = new AuthPermission("setLoginConfiguration");
protected String name;
protected List moduleEntries = new ArrayList();
/**
* New implementation - allow the specification of multiple jboss module names.
*/
protected List jbossModuleNames = new ArrayList();
public BaseSecurityInfo()
{
}
public BaseSecurityInfo(String name)
{
this.name = name;
}
public void add(T ame)
{
moduleEntries.add(ame);
}
public void add(List extends T> moduleEntries)
{
SecurityManager sm = System.getSecurityManager();
if (sm != null)
sm.checkPermission(SET_CONFIG_ENTRY_PERM);
this.moduleEntries.addAll(moduleEntries);
}
public List getModuleEntries()
{
SecurityManager sm = System.getSecurityManager();
if (sm != null)
sm.checkPermission(GET_CONFIG_ENTRY_PERM);
return this.moduleEntries;
}
public String getName()
{
return name;
}
public void setName(String name)
{
this.name = name;
}
/**
* Get the name of the JBoss Module
* @return
*/
@Deprecated
public String getJBossModuleName() {
if (!this.jbossModuleNames.isEmpty())
return this.jbossModuleNames.get(0);
return null;
}
/**
* Set the name of the JBoss Module
* @param jbossModuleName
*/
@Deprecated
public void setJBossModuleName(String jbossModuleName) {
if (jbossModuleName != null && !jbossModuleName.isEmpty()) {
if (this.jbossModuleNames.isEmpty())
this.jbossModuleNames.add(jbossModuleName);
else
this.jbossModuleNames.set(0, jbossModuleName);
}
}
/**
* Obtains the list of all configured jboss module names.
*
* @return the {@link List} containing all configured jboss module names.
*/
public List getJBossModuleNames()
{
return Collections.unmodifiableList(this.jbossModuleNames);
}
/**
* Adds a new jboss module name.
*
* @param jbossModuleName the name of the module to be added.
*/
public void addJBossModuleName(String jbossModuleName)
{
if (jbossModuleName != null && !jbossModuleName.isEmpty())
this.jbossModuleNames.add(jbossModuleName);
}
protected abstract BaseSecurityInfo create(String name);
public BaseSecurityInfo merge(BaseSecurityInfo bi)
{
if (bi == null)
return this;
List al = new ArrayList();
al.addAll(bi.getModuleEntries());
al.addAll(this.moduleEntries);
BaseSecurityInfo mergedBAI = create(name);
mergedBAI.add(al);
return mergedBAI;
}
}