Author: anil.saldhana(a)jboss.com
Date: 2012-02-21 11:47:18 -0500 (Tue, 21 Feb 2012)
New Revision: 1421
Added:
federation/trunk/picketlink-webapps/as7/picketlink-sts/src/main/java/
federation/trunk/picketlink-webapps/as7/picketlink-sts/src/main/java/org/
federation/trunk/picketlink-webapps/as7/picketlink-sts/src/main/java/org/picketlink/
federation/trunk/picketlink-webapps/as7/picketlink-sts/src/main/java/org/picketlink/identity/
federation/trunk/picketlink-webapps/as7/picketlink-sts/src/main/java/org/picketlink/identity/federation/
federation/trunk/picketlink-webapps/as7/picketlink-sts/src/main/java/org/picketlink/identity/federation/app/
federation/trunk/picketlink-webapps/as7/picketlink-sts/src/main/java/org/picketlink/identity/federation/app/sts/
federation/trunk/picketlink-webapps/as7/picketlink-sts/src/main/java/org/picketlink/identity/federation/app/sts/PicketLinkSTService.java
Modified:
federation/trunk/picketlink-webapps/as7/picketlink-sts/pom.xml
Log:
missing class
Modified: federation/trunk/picketlink-webapps/as7/picketlink-sts/pom.xml
===================================================================
--- federation/trunk/picketlink-webapps/as7/picketlink-sts/pom.xml 2012-02-21 16:38:25 UTC
(rev 1420)
+++ federation/trunk/picketlink-webapps/as7/picketlink-sts/pom.xml 2012-02-21 16:47:18 UTC
(rev 1421)
@@ -37,9 +37,9 @@
</build>
<dependencies>
<dependency>
- <groupId>org.picketlink</groupId>
- <artifactId>picketlink-fed-core</artifactId>
- <version>${project.parent.version}</version>
- </dependency>
+ <groupId>org.picketlink</groupId>
+ <artifactId>picketlink-fed-core</artifactId>
+ <version>${project.parent.version}</version>
+ </dependency>
</dependencies>
</project>
Added:
federation/trunk/picketlink-webapps/as7/picketlink-sts/src/main/java/org/picketlink/identity/federation/app/sts/PicketLinkSTService.java
===================================================================
---
federation/trunk/picketlink-webapps/as7/picketlink-sts/src/main/java/org/picketlink/identity/federation/app/sts/PicketLinkSTService.java
(rev 0)
+++
federation/trunk/picketlink-webapps/as7/picketlink-sts/src/main/java/org/picketlink/identity/federation/app/sts/PicketLinkSTService.java 2012-02-21
16:47:18 UTC (rev 1421)
@@ -0,0 +1,45 @@
+package org.picketlink.identity.federation.app.sts;
+/*
+ * JBoss, Home of Professional Open Source. Copyright 2009, 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.
+ */
+
+
+import javax.annotation.Resource;
+import javax.xml.ws.Service;
+import javax.xml.ws.ServiceMode;
+import javax.xml.ws.WebServiceContext;
+import javax.xml.ws.WebServiceProvider;
+
+import org.picketlink.identity.federation.core.wstrust.PicketLinkSTS;
+
+/**
+ * <p>
+ * Default implementation of the {@code SecurityTokenService} interface.
+ * </p>
+ *
+ * @author <a href="mailto:sguilhen@redhat.com">Stefan Guilhen</a>
+ * @author <a href="mailto:pskopek@redhat.com">Peter Skopek</a>
+ */
+@WebServiceProvider(serviceName = "PicketLinkSTS", portName =
"PicketLinkSTSPort", targetNamespace =
"urn:picketlink:identity-federation:sts", wsdlLocation =
"WEB-INF/wsdl/PicketLinkSTS.wsdl")
+@ServiceMode(value = Service.Mode.MESSAGE)
+public class PicketLinkSTService extends PicketLinkSTS
+{
+
+ @Resource
+ protected WebServiceContext context;
+
+}
\ No newline at end of file