You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by ef...@apache.org on 2007/07/18 09:48:37 UTC

svn commit: r557187 - in /myfaces/tomahawk/trunk/sandbox/examples/src/main/java/org/apache/myfaces/examples/passwordStrength: ./ PasswordStrengthBean.java

Author: efastl
Date: Wed Jul 18 00:48:36 2007
New Revision: 557187

URL: http://svn.apache.org/viewvc?view=rev&rev=557187
Log:
Example backing bean for TOMAHAWK-1042 (passwordStrength) was missing in the last patch
is added with this commit

Added:
    myfaces/tomahawk/trunk/sandbox/examples/src/main/java/org/apache/myfaces/examples/passwordStrength/
    myfaces/tomahawk/trunk/sandbox/examples/src/main/java/org/apache/myfaces/examples/passwordStrength/PasswordStrengthBean.java

Added: myfaces/tomahawk/trunk/sandbox/examples/src/main/java/org/apache/myfaces/examples/passwordStrength/PasswordStrengthBean.java
URL: http://svn.apache.org/viewvc/myfaces/tomahawk/trunk/sandbox/examples/src/main/java/org/apache/myfaces/examples/passwordStrength/PasswordStrengthBean.java?view=auto&rev=557187
==============================================================================
--- myfaces/tomahawk/trunk/sandbox/examples/src/main/java/org/apache/myfaces/examples/passwordStrength/PasswordStrengthBean.java (added)
+++ myfaces/tomahawk/trunk/sandbox/examples/src/main/java/org/apache/myfaces/examples/passwordStrength/PasswordStrengthBean.java Wed Jul 18 00:48:36 2007
@@ -0,0 +1,31 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you 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.myfaces.examples.passwordStrength;
+
+public class PasswordStrengthBean {
+	String password;
+
+	public String getPassword() {
+		return password;
+	}
+
+	public void setPassword(String password) {
+		this.password = password;
+	}
+}