You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by el...@apache.org on 2005/04/25 23:41:52 UTC

svn commit: r164664 - in /directory/sandbox/trunk/asn1-new-codec/src/java/org/apache/asn1/spnego/pojo/factories: ./ SpnegoNegTokenInitPOJOFactory.java SpnegoNegTokenTargPOJOFactory.java

Author: elecharny
Date: Mon Apr 25 14:41:52 2005
New Revision: 164664

URL: http://svn.apache.org/viewcvs?rev=164664&view=rev
Log:
Added the Spnego neg token init and targ POJO factories

Added:
    directory/sandbox/trunk/asn1-new-codec/src/java/org/apache/asn1/spnego/pojo/factories/
    directory/sandbox/trunk/asn1-new-codec/src/java/org/apache/asn1/spnego/pojo/factories/SpnegoNegTokenInitPOJOFactory.java
    directory/sandbox/trunk/asn1-new-codec/src/java/org/apache/asn1/spnego/pojo/factories/SpnegoNegTokenTargPOJOFactory.java

Added: directory/sandbox/trunk/asn1-new-codec/src/java/org/apache/asn1/spnego/pojo/factories/SpnegoNegTokenInitPOJOFactory.java
URL: http://svn.apache.org/viewcvs/directory/sandbox/trunk/asn1-new-codec/src/java/org/apache/asn1/spnego/pojo/factories/SpnegoNegTokenInitPOJOFactory.java?rev=164664&view=auto
==============================================================================
--- directory/sandbox/trunk/asn1-new-codec/src/java/org/apache/asn1/spnego/pojo/factories/SpnegoNegTokenInitPOJOFactory.java (added)
+++ directory/sandbox/trunk/asn1-new-codec/src/java/org/apache/asn1/spnego/pojo/factories/SpnegoNegTokenInitPOJOFactory.java Mon Apr 25 14:41:52 2005
@@ -0,0 +1,40 @@
+/*
+ *   Copyright 2005 The Apache Software Foundation
+ *
+ *   Licensed under the Apache License, Version 2.0 (the "License");
+ *   you may not use this file except in compliance with the License.
+ *   You may obtain a copy of the License at
+ *
+ *       http://www.apache.org/licenses/LICENSE-2.0
+ *
+ *   Unless required by applicable law or agreed to in writing, software
+ *   distributed under the License is distributed on an "AS IS" BASIS,
+ *   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ *   See the License for the specific language governing permissions and
+ *   limitations under the License.
+ *
+ */
+package org.apache.asn1.spnego.pojo.factories;
+
+import org.apache.asn1.spnego.pojo.SpnegoNegTokenInitPOJO;
+import org.apache.asn1.util.ObjectFactory;
+import org.apache.asn1.util.pools.PoolObject;
+
+/**
+ * Creates a SpnegoNegTokenInitPOJO object
+ * 
+ * @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a>
+ */
+public class SpnegoNegTokenInitPOJOFactory implements ObjectFactory {
+    //~ Methods ------------------------------------------------------------------------------------
+
+    /**
+     * The method that creates the object
+     *
+     * @return The created object
+     */
+    public PoolObject makeObject()
+    {
+        return new SpnegoNegTokenInitPOJO();
+    }
+}

Added: directory/sandbox/trunk/asn1-new-codec/src/java/org/apache/asn1/spnego/pojo/factories/SpnegoNegTokenTargPOJOFactory.java
URL: http://svn.apache.org/viewcvs/directory/sandbox/trunk/asn1-new-codec/src/java/org/apache/asn1/spnego/pojo/factories/SpnegoNegTokenTargPOJOFactory.java?rev=164664&view=auto
==============================================================================
--- directory/sandbox/trunk/asn1-new-codec/src/java/org/apache/asn1/spnego/pojo/factories/SpnegoNegTokenTargPOJOFactory.java (added)
+++ directory/sandbox/trunk/asn1-new-codec/src/java/org/apache/asn1/spnego/pojo/factories/SpnegoNegTokenTargPOJOFactory.java Mon Apr 25 14:41:52 2005
@@ -0,0 +1,40 @@
+/*
+ *   Copyright 2005 The Apache Software Foundation
+ *
+ *   Licensed under the Apache License, Version 2.0 (the "License");
+ *   you may not use this file except in compliance with the License.
+ *   You may obtain a copy of the License at
+ *
+ *       http://www.apache.org/licenses/LICENSE-2.0
+ *
+ *   Unless required by applicable law or agreed to in writing, software
+ *   distributed under the License is distributed on an "AS IS" BASIS,
+ *   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ *   See the License for the specific language governing permissions and
+ *   limitations under the License.
+ *
+ */
+package org.apache.asn1.spnego.pojo.factories;
+
+import org.apache.asn1.spnego.pojo.SpnegoNegTokenTargPOJO;
+import org.apache.asn1.util.ObjectFactory;
+import org.apache.asn1.util.pools.PoolObject;
+
+/**
+ * Creates a SpnegoNegTokenTarg POJO object
+ * 
+ * @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a>
+ */
+public class SpnegoNegTokenTargPOJOFactory implements ObjectFactory {
+    //~ Methods ------------------------------------------------------------------------------------
+
+    /**
+     * The method that creates the object
+     *
+     * @return The created object
+     */
+    public PoolObject makeObject()
+    {
+        return new SpnegoNegTokenTargPOJO();
+    }
+}