org.ow2.jonas.ant.jonasbase.jaas.JaasEntry Maven / Gradle / Ivy
/**
* JOnAS: Java(TM) Open Application Server
* Copyright (C) 2009 Bull S.A.S.
* Contact: [email protected]
*
* This library 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 any later version.
*
* This library 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 library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
* USA
*
* --------------------------------------------------------------------------
* $Id: JaasEntry.java 19283 2010-02-24 16:16:26Z benoitf $
* --------------------------------------------------------------------------
*/
package org.ow2.jonas.ant.jonasbase.jaas;
import org.ow2.jonas.ant.jonasbase.Tasks;
import org.ow2.jonas.ant.jonasbase.JReplace;
import org.apache.tools.ant.Task;
import java.util.ArrayList;
import java.util.List;
/**
* @author Julien Legrand
*/
public class JaasEntry extends Tasks {
/**
* Name of the JAAS entry
*/
private String name;
/**
* List of login modules for the JAAS entry
*/
private List loginModules;
/**
* Constructor
*/
public JaasEntry(){
super();
loginModules = new ArrayList();
}
/**
*
* @param lm
*/
public void addConfiguredJResourceLoginModule(final JResourceLoginModule lm){
loginModules.add(lm);
}
/**
* @return Returns the list of login modules.
*/
public List getLoginModules(){
return loginModules;
}
/**
* @return Returns the name of JAAS entry
*/
public String getName() {
return name;
}
/**
* @param name the name of the JAAS entry to set.
*/
public void setName(final String name){
this.name = name;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy