From jbossws-commits at lists.jboss.org Fri Feb 14 07:43:48 2014 Content-Type: multipart/mixed; boundary="===============3571433623857823669==" MIME-Version: 1.0 From: jbossws-commits at lists.jboss.org To: jbossws-commits at lists.jboss.org Subject: [jbossws-commits] JBossWS SVN: r18369 - spi/branches/jaspi/src/main/java/org/jboss/wsf/spi/security. Date: Fri, 14 Feb 2014 07:43:48 -0500 Message-ID: <201402141243.s1EChmTZ008531@svn01.web.mwc.hst.phx2.redhat.com> --===============3571433623857823669== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Author: jim.ma Date: 2014-02-14 07:43:48 -0500 (Fri, 14 Feb 2014) New Revision: 18369 Added: spi/branches/jaspi/src/main/java/org/jboss/wsf/spi/security/JASPIAuthent= icationProvider.java Log: Add JASPIAuthenticationProvider Added: spi/branches/jaspi/src/main/java/org/jboss/wsf/spi/security/JASPIAut= henticationProvider.java =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --- spi/branches/jaspi/src/main/java/org/jboss/wsf/spi/security/JASPIAuthen= ticationProvider.java (rev 0) +++ spi/branches/jaspi/src/main/java/org/jboss/wsf/spi/security/JASPIAuthen= ticationProvider.java 2014-02-14 12:43:48 UTC (rev 18369) @@ -0,0 +1,40 @@ +/* + * JBoss, Home of Professional Open Source. + * Copyright 2013, Red Hat Middleware LLC, and individual contributors + * as indicated by the @author tags. See the copyright.txt file 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.wsf.spi.security; + +import java.util.Map; + +import org.jboss.wsf.spi.deployment.Deployment; +import org.jboss.wsf.spi.deployment.Endpoint; +import org.jboss.wsf.spi.metadata.webservices.JBossWebservicesMetaData; + +/** = + * Interafact to enable jaspi authentication on server/client side + * @author Jim Ma + */ +public interface JASPIAuthenticationProvider +{ + boolean enableClientAuthentication(Object target, Map p= roperties); + boolean enableServerAuthentication(Deployment dep, JBossWebservicesMeta= Data wsmd); + public boolean enableServerAuthentication(Object target, Endpoint endpo= int); + +} Property changes on: spi/branches/jaspi/src/main/java/org/jboss/wsf/spi/sec= urity/JASPIAuthenticationProvider.java ___________________________________________________________________ Added: svn:keywords + Rev Date Added: svn:eol-style + native --===============3571433623857823669==--