morgand 2002/10/11 14:53:41
Modified: latka/src/java/org/apache/commons/latka/jelly
JellyUtils.java LatkaTagLibrary.java
Added: latka/src/java/org/apache/commons/latka/jelly
CredentialsTag.java
Log:
added credentials tag
Revision Changes Path
1.5 +18 -3
jakarta-commons/latka/src/java/org/apache/commons/latka/jelly/JellyUtils.java
Index: JellyUtils.java
===================================================================
RCS file:
/home/cvs/jakarta-commons/latka/src/java/org/apache/commons/latka/jelly/JellyUtils.java,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- JellyUtils.java 11 Oct 2002 18:38:10 -0000 1.4
+++ JellyUtils.java 11 Oct 2002 21:53:41 -0000 1.5
@@ -62,9 +62,12 @@
package org.apache.commons.latka.jelly;
import org.apache.commons.jelly.JellyContext;
+import org.apache.commons.jelly.Tag;
+import org.apache.commons.jelly.TagSupport;
import org.apache.commons.latka.event.LatkaEventInfo;
import org.apache.commons.latka.event.LatkaEventListener;
+import org.apache.commons.latka.http.Request;
/**
*
@@ -141,4 +144,16 @@
context.setVariable(EVENT_LISTENER_VAR,listener);
}
+ /**
+ * Given a tag, find a parent RequestTag and return
+ * its Request object.
+ *
+ * @param tag Child tag of RequestTag
+ * @return Request
+ */
+ public Request findParentRequest(Tag tag) {
+ RequestTag requestTag =
+ (RequestTag) TagSupport.findAncestorWithClass(tag.getParent(),
RequestTag.class);
+ return requestTag.getRequest();
+ }
}
1.26 +8 -6
jakarta-commons/latka/src/java/org/apache/commons/latka/jelly/LatkaTagLibrary.java
Index: LatkaTagLibrary.java
===================================================================
RCS file:
/home/cvs/jakarta-commons/latka/src/java/org/apache/commons/latka/jelly/LatkaTagLibrary.java,v
retrieving revision 1.25
retrieving revision 1.26
diff -u -r1.25 -r1.26
--- LatkaTagLibrary.java 11 Oct 2002 20:59:34 -0000 1.25
+++ LatkaTagLibrary.java 11 Oct 2002 21:53:41 -0000 1.26
@@ -74,10 +74,12 @@
/** Creates a new instance of LatkaTagLibrary */
public LatkaTagLibrary() {
+ registerTag("credentials",
+ CredentialsTag.class);
+ registerTag("session",
+ SessionTag.class);
registerTag("suite",
SuiteTag.class);
- registerTag("session",
- SessionTag.class);
registerTag("reportMessage",
ReportMessageTag.class);
registerTag("request",
1.1
jakarta-commons/latka/src/java/org/apache/commons/latka/jelly/CredentialsTag.java
Index: CredentialsTag.java
===================================================================
/*
* $Header:
/home/cvs/jakarta-commons/latka/src/java/org/apache/commons/latka/jelly/CredentialsTag.java,v
1.1 2002/10/11 21:53:41 morgand Exp $
* $Revision: 1.1 $
* $Date: 2002/10/11 21:53:41 $
*
* ====================================================================
*
* The Apache Software License, Version 1.1
*
* Copyright (c) 1999-2001 The Apache Software Foundation. All rights
* reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in
* the documentation and/or other materials provided with the
* distribution.
*
* 3. The end-user documentation included with the redistribution, if
* any, must include the following acknowlegement:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
* Alternately, this acknowlegement may appear in the software itself,
* if and wherever such third-party acknowlegements normally appear.
*
* 4. The names "The Jakarta Project", "Commons", and "Apache Software
* Foundation" must not be used to endorse or promote products derived
* from this software without prior written permission. For written
* permission, please contact [EMAIL PROTECTED]
*
* 5. Products derived from this software may not be called "Apache"
* nor may "Apache" appear in their names without prior written
* permission of the Apache Group.
*
* THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
* ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
* USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
* OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
* ====================================================================
*
* This software consists of voluntary contributions made by many
* individuals on behalf of the Apache Software Foundation. For more
* information on the Apache Software Foundation, please see
* <http://www.apache.org/>.
*
*/
package org.apache.commons.latka.jelly;
import org.apache.commons.jelly.TagSupport;
import org.apache.commons.jelly.XMLOutput;
import org.apache.commons.latka.http.CredentialsImpl;
import org.apache.commons.latka.http.Request;
/**
* Basic authentication support for requests
*
* @author Morgan Delagrange
*/
public class CredentialsTag extends TagSupport {
protected String _userName = null;
protected String _password = null;
/** Creates a new instance of SuiteTag */
public CredentialsTag() {
}
/**
* Set user credentials
*
* @param xmlOutput a place to write output
* @throws Exception when any error occurs
*/
public void doTag(XMLOutput xmlOutput) {
Request request = (Request) JellyUtils.getInstance().findParentRequest(this);
request.setCredentials(new CredentialsImpl(_userName,_password));
}
/**
* Sets the user name for basic authentication
*
* @param userName user name
*/
public void setUserName(String userName) {
_userName = userName;
}
/**
* Sets the password for basic authentication
*
* @param password password
*/
public void setPassword(String password) {
_password = password;
}
}
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>