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 2008/11/22 07:53:27 UTC

svn commit: r719817 - in /myfaces/tobago/trunk/example/seam/src: main/java/org/apache/myfaces/tobago/example/seam/ main/resources/ main/webapp/ main/webapp/WEB-INF/ test/resources/

Author: lofwyr
Date: Fri Nov 21 22:53:27 2008
New Revision: 719817

URL: http://svn.apache.org/viewvc?rev=719817&view=rev
Log:
TOBAGO-727: code style

Modified:
    myfaces/tobago/trunk/example/seam/src/main/java/org/apache/myfaces/tobago/example/seam/AuthenticationManager.java
    myfaces/tobago/trunk/example/seam/src/main/java/org/apache/myfaces/tobago/example/seam/Issue.java
    myfaces/tobago/trunk/example/seam/src/main/resources/hibernate.cfg.xml
    myfaces/tobago/trunk/example/seam/src/main/resources/jbpm.cfg.xml
    myfaces/tobago/trunk/example/seam/src/main/webapp/WEB-INF/web.xml
    myfaces/tobago/trunk/example/seam/src/main/webapp/index.html
    myfaces/tobago/trunk/example/seam/src/test/resources/jetty.xml
    myfaces/tobago/trunk/example/seam/src/test/resources/realm.properties

Modified: myfaces/tobago/trunk/example/seam/src/main/java/org/apache/myfaces/tobago/example/seam/AuthenticationManager.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/example/seam/src/main/java/org/apache/myfaces/tobago/example/seam/AuthenticationManager.java?rev=719817&r1=719816&r2=719817&view=diff
==============================================================================
--- myfaces/tobago/trunk/example/seam/src/main/java/org/apache/myfaces/tobago/example/seam/AuthenticationManager.java (original)
+++ myfaces/tobago/trunk/example/seam/src/main/java/org/apache/myfaces/tobago/example/seam/AuthenticationManager.java Fri Nov 21 22:53:27 2008
@@ -1,5 +1,22 @@
 package org.apache.myfaces.tobago.example.seam;
 
+/*
+ * 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.jboss.seam.annotations.In;
 import org.jboss.seam.annotations.Name;
 import org.jboss.seam.bpm.Actor;

Modified: myfaces/tobago/trunk/example/seam/src/main/java/org/apache/myfaces/tobago/example/seam/Issue.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/example/seam/src/main/java/org/apache/myfaces/tobago/example/seam/Issue.java?rev=719817&r1=719816&r2=719817&view=diff
==============================================================================
--- myfaces/tobago/trunk/example/seam/src/main/java/org/apache/myfaces/tobago/example/seam/Issue.java (original)
+++ myfaces/tobago/trunk/example/seam/src/main/java/org/apache/myfaces/tobago/example/seam/Issue.java Fri Nov 21 22:53:27 2008
@@ -1,5 +1,22 @@
 package org.apache.myfaces.tobago.example.seam;
 
+/*
+ * 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.jboss.seam.annotations.Name;
 import org.jboss.seam.annotations.bpm.CreateProcess;
 import org.apache.commons.logging.Log;

Modified: myfaces/tobago/trunk/example/seam/src/main/resources/hibernate.cfg.xml
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/example/seam/src/main/resources/hibernate.cfg.xml?rev=719817&r1=719816&r2=719817&view=diff
==============================================================================
--- myfaces/tobago/trunk/example/seam/src/main/resources/hibernate.cfg.xml (original)
+++ myfaces/tobago/trunk/example/seam/src/main/resources/hibernate.cfg.xml Fri Nov 21 22:53:27 2008
@@ -1,5 +1,22 @@
 <?xml version='1.0' encoding='utf-8'?>
 
+<!--
+ * 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.
+-->
+    
 <!DOCTYPE hibernate-configuration PUBLIC
           "-//Hibernate/Hibernate Configuration DTD 3.0//EN"
           "http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">

Modified: myfaces/tobago/trunk/example/seam/src/main/resources/jbpm.cfg.xml
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/example/seam/src/main/resources/jbpm.cfg.xml?rev=719817&r1=719816&r2=719817&view=diff
==============================================================================
--- myfaces/tobago/trunk/example/seam/src/main/resources/jbpm.cfg.xml (original)
+++ myfaces/tobago/trunk/example/seam/src/main/resources/jbpm.cfg.xml Fri Nov 21 22:53:27 2008
@@ -1,3 +1,22 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ * 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.
+-->
+
 <jbpm-configuration>
 
   <jbpm-context>

Modified: myfaces/tobago/trunk/example/seam/src/main/webapp/WEB-INF/web.xml
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/example/seam/src/main/webapp/WEB-INF/web.xml?rev=719817&r1=719816&r2=719817&view=diff
==============================================================================
--- myfaces/tobago/trunk/example/seam/src/main/webapp/WEB-INF/web.xml (original)
+++ myfaces/tobago/trunk/example/seam/src/main/webapp/WEB-INF/web.xml Fri Nov 21 22:53:27 2008
@@ -1,4 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
+
 <!--
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with

Modified: myfaces/tobago/trunk/example/seam/src/main/webapp/index.html
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/example/seam/src/main/webapp/index.html?rev=719817&r1=719816&r2=719817&view=diff
==============================================================================
--- myfaces/tobago/trunk/example/seam/src/main/webapp/index.html (original)
+++ myfaces/tobago/trunk/example/seam/src/main/webapp/index.html Fri Nov 21 22:53:27 2008
@@ -1,5 +1,22 @@
+<!--
+ * 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.
+-->
+
 <html>
 <head>
   <meta http-equiv="Refresh" content="0; URL=tobago.seam">
 </head>
-</html>
\ No newline at end of file
+</html>

Modified: myfaces/tobago/trunk/example/seam/src/test/resources/jetty.xml
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/example/seam/src/test/resources/jetty.xml?rev=719817&r1=719816&r2=719817&view=diff
==============================================================================
--- myfaces/tobago/trunk/example/seam/src/test/resources/jetty.xml (original)
+++ myfaces/tobago/trunk/example/seam/src/test/resources/jetty.xml Fri Nov 21 22:53:27 2008
@@ -1,4 +1,22 @@
 <?xml version="1.0"?>
+
+<!--
+ * 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.
+-->
+
 <!DOCTYPE Configure PUBLIC "-//Mort Bay Consulting//DTD Configure//EN"
     "http://jetty.mortbay.org/configure.dtd">
 

Modified: myfaces/tobago/trunk/example/seam/src/test/resources/realm.properties
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/example/seam/src/test/resources/realm.properties?rev=719817&r1=719816&r2=719817&view=diff
==============================================================================
--- myfaces/tobago/trunk/example/seam/src/test/resources/realm.properties (original)
+++ myfaces/tobago/trunk/example/seam/src/test/resources/realm.properties Fri Nov 21 22:53:27 2008
@@ -20,5 +20,4 @@
 #admin: admin,admin
 manager: manager,user,manager,admin
 user: user,user
-shipper: shipper,user
 admin: admin,user,admin