You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by lo...@apache.org on 2006/11/17 16:36:12 UTC

svn commit: r476181 - in /myfaces/tobago/trunk/example/sandbox/src/main/java/org: ./ apache/ apache/myfaces/ apache/myfaces/tobago/ apache/myfaces/tobago/example/ apache/myfaces/tobago/example/sandbox/ apache/myfaces/tobago/example/sandbox/Controller.java

Author: lofwyr
Date: Fri Nov 17 07:36:11 2006
New Revision: 476181

URL: http://svn.apache.org/viewvc?view=rev&rev=476181
Log:
working on TOBAGO-18

Added:
    myfaces/tobago/trunk/example/sandbox/src/main/java/org/
    myfaces/tobago/trunk/example/sandbox/src/main/java/org/apache/
    myfaces/tobago/trunk/example/sandbox/src/main/java/org/apache/myfaces/
    myfaces/tobago/trunk/example/sandbox/src/main/java/org/apache/myfaces/tobago/
    myfaces/tobago/trunk/example/sandbox/src/main/java/org/apache/myfaces/tobago/example/
    myfaces/tobago/trunk/example/sandbox/src/main/java/org/apache/myfaces/tobago/example/sandbox/
    myfaces/tobago/trunk/example/sandbox/src/main/java/org/apache/myfaces/tobago/example/sandbox/Controller.java   (with props)

Added: myfaces/tobago/trunk/example/sandbox/src/main/java/org/apache/myfaces/tobago/example/sandbox/Controller.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/example/sandbox/src/main/java/org/apache/myfaces/tobago/example/sandbox/Controller.java?view=auto&rev=476181
==============================================================================
--- myfaces/tobago/trunk/example/sandbox/src/main/java/org/apache/myfaces/tobago/example/sandbox/Controller.java (added)
+++ myfaces/tobago/trunk/example/sandbox/src/main/java/org/apache/myfaces/tobago/example/sandbox/Controller.java Fri Nov 17 07:36:11 2006
@@ -0,0 +1,42 @@
+package org.apache.myfaces.tobago.example.sandbox;
+
+/*
+ * 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.
+ */
+
+import org.apache.commons.logging.Log;
+import org.apache.commons.logging.LogFactory;
+
+public class Controller {
+
+  private static final Log LOG = LogFactory.getLog(Controller.class);
+
+  public String action1() {
+    LOG.info("action 1");
+    return null;
+  }
+
+  public String action2() {
+    LOG.info("action 2");
+    return null;
+  }
+
+  public String action3() {
+    LOG.info("action 3");
+    return null;
+  }
+
+}

Propchange: myfaces/tobago/trunk/example/sandbox/src/main/java/org/apache/myfaces/tobago/example/sandbox/Controller.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: myfaces/tobago/trunk/example/sandbox/src/main/java/org/apache/myfaces/tobago/example/sandbox/Controller.java
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL