The "java" folder has been renamed "server-java" to reflect that it only
contains server components. In the process, I also flatened its directory structure.
This commit is contained in:
41
CASA-auth-token/server-java/Svc/templates/Makefile.am
Normal file
41
CASA-auth-token/server-java/Svc/templates/Makefile.am
Normal file
@@ -0,0 +1,41 @@
|
||||
#######################################################################
|
||||
#
|
||||
# Copyright (C) 2006 Novell, Inc.
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or
|
||||
# modify it under the terms of the GNU General Public
|
||||
# License as published by the Free Software Foundation; either
|
||||
# version 2 of the License, or (at your option) any later version.
|
||||
#
|
||||
# This program 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
|
||||
# General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public
|
||||
# License along with this program; if not, write to the Free
|
||||
# Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
#
|
||||
# Author: Juan Carlos Luciani <jluciani@novell.com>
|
||||
#
|
||||
#######################################################################
|
||||
|
||||
SUBDIRS =
|
||||
|
||||
DIST_SUBDIRS =
|
||||
|
||||
CFILES =
|
||||
|
||||
EXTRA_DIST = auth.policy \
|
||||
authtoken.settings \
|
||||
iaRealms.xml \
|
||||
identoken.settings \
|
||||
svc.settings
|
||||
|
||||
.PHONY: package package-clean package-install package-uninstall
|
||||
package package-clean package-install package-uninstall:
|
||||
$(MAKE) -C $(TARGET_OS) $@
|
||||
|
||||
maintainer-clean-local:
|
||||
rm -f Makefile.in
|
||||
|
||||
11
CASA-auth-token/server-java/Svc/templates/auth.policy
Normal file
11
CASA-auth-token/server-java/Svc/templates/auth.policy
Normal file
@@ -0,0 +1,11 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<auth_policy>
|
||||
<auth_source>
|
||||
<realm>REALM</realm>
|
||||
<mechanism>Krb5Authenticate</mechanism>
|
||||
</auth_source>
|
||||
<auth_source>
|
||||
<realm>REALM</realm>
|
||||
<mechanism>PwdAuthenticate</mechanism>
|
||||
</auth_source>
|
||||
</auth_policy>
|
||||
@@ -0,0 +1,3 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<settings>
|
||||
</settings>
|
||||
22
CASA-auth-token/server-java/Svc/templates/iaRealms.xml
Normal file
22
CASA-auth-token/server-java/Svc/templates/iaRealms.xml
Normal file
@@ -0,0 +1,22 @@
|
||||
<bci:realms
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xmlns:bci="http://www.bandit-project.org/commonidentity"
|
||||
xmlns:xacml="urn:oasis:names:tc:xacml:2.0:policy:schema:os"
|
||||
xsi:schemaLocation="urn:oasis:names:tc:xacml:2.0:policy:schema:os:access_control-xacml-2.0-policy-schema-os.xsd">
|
||||
<bci:realm
|
||||
desc="Directory"
|
||||
connectorType="org.bandit.ia.connectors.LDAPConnectorInitialCtxFactory" id="REALM">
|
||||
<bci:env prop="java.naming.ldap.attributes.binary" value="guid"/>
|
||||
<bci:env prop="java.naming.security.authentication" value="simple"/>
|
||||
<bci:env prop="java.naming.security.principal" value="PROXY_USER_NAME"/>
|
||||
<bci:env prop="java.naming.security.credentials" value="PROXY_USER_PW"/>
|
||||
<bci:connection xsi:type="bci:LDAPConnector">
|
||||
<bci:address>ldap://LDAP_HOST_NAME:LDAP_LISTEN_PORT</bci:address>
|
||||
</bci:connection>
|
||||
</bci:realm>
|
||||
<bci:realm desc="Realm Join Definition" id="E263CCC1-8F9D-4551-B786-068AA84E8564">
|
||||
<bci:connection xsi:type="bci:JoinConnector">
|
||||
<bci:realmID>REALM</bci:realmID>
|
||||
</bci:connection>
|
||||
</bci:realm>
|
||||
</bci:realms>
|
||||
@@ -0,0 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<settings>
|
||||
<Attributes>sn</Attributes>
|
||||
</settings>
|
||||
|
||||
4
CASA-auth-token/server-java/Svc/templates/svc.settings
Normal file
4
CASA-auth-token/server-java/Svc/templates/svc.settings
Normal file
@@ -0,0 +1,4 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<settings>
|
||||
<IAConfigFile>IAREALMS_FILE_PATH</IAConfigFile>
|
||||
</settings>
|
||||
Reference in New Issue
Block a user