Seam SVN: r12421 - in branches/community/Seam_2_2: src/mail/org/jboss/seam/mail/ui and 1 other directory.
by seam-commits@lists.jboss.org
Author: manaRH
Date: 2010-04-09 04:56:24 -0400 (Fri, 09 Apr 2010)
New Revision: 12421
Modified:
branches/community/Seam_2_2/examples/mail/src/org/jboss/seam/example/mail/test/MailTest.java
branches/community/Seam_2_2/src/mail/org/jboss/seam/mail/ui/UIBody.java
Log:
JBSEAM-4630 - fixing inline attachments
Modified: branches/community/Seam_2_2/examples/mail/src/org/jboss/seam/example/mail/test/MailTest.java
===================================================================
--- branches/community/Seam_2_2/examples/mail/src/org/jboss/seam/example/mail/test/MailTest.java 2010-04-08 21:20:27 UTC (rev 12420)
+++ branches/community/Seam_2_2/examples/mail/src/org/jboss/seam/example/mail/test/MailTest.java 2010-04-09 08:56:24 UTC (rev 12421)
@@ -22,6 +22,7 @@
import org.jboss.seam.mail.ui.UIMessage;
import org.jboss.seam.mock.MockTransport;
import org.jboss.seam.mock.SeamTest;
+import org.testng.Assert;
import org.testng.annotations.Test;
/**
@@ -51,49 +52,45 @@
{
MimeMessage renderedMessage = getRenderedMailMessage("/simple.xhtml");
- assert MailSession.instance().getTransport() instanceof MockTransport;
+ Assert.assertTrue(MailSession.instance().getTransport() instanceof MockTransport);
// Test the headers
- assert renderedMessage != null;
- assert renderedMessage.getAllRecipients().length == 1;
- assert renderedMessage.getAllRecipients()[0] instanceof InternetAddress;
+ Assert.assertNotNull(renderedMessage);
+ Assert.assertEquals(renderedMessage.getAllRecipients().length, 1);
+ Assert.assertTrue(renderedMessage.getAllRecipients()[0] instanceof InternetAddress);
InternetAddress to = (InternetAddress) renderedMessage.getAllRecipients()[0];
- assert to.getAddress().equals("test(a)example.com");
- assert to.getPersonal().equals("Pete Muir");
- assert renderedMessage.getFrom().length == 1;
- assert renderedMessage.getFrom()[0] instanceof InternetAddress;
+ Assert.assertEquals(to.getAddress(), "test(a)example.com");
+ Assert.assertEquals(to.getPersonal(), "Pete Muir");
+ Assert.assertEquals(renderedMessage.getFrom().length, 1);
+ Assert.assertTrue(renderedMessage.getFrom()[0] instanceof InternetAddress);
InternetAddress from = (InternetAddress) renderedMessage.getFrom()[0];
- assert from.getAddress().equals("peter(a)example.com");
- assert from.getPersonal().equals("Peter");
- assert "Try out Seam!".equals(renderedMessage.getSubject());
- assert renderedMessage.getHeader("Precedence") == null;
- assert renderedMessage.getHeader("X-Priority") == null;
- assert renderedMessage.getHeader("Priority") == null;
- assert renderedMessage.getHeader("Importance") == null;
- assert renderedMessage.getHeader("Disposition-Notification-To") == null;
-
+ Assert.assertEquals(from.getAddress(), "peter(a)example.com");
+ Assert.assertEquals(from.getPersonal(), "Peter");
+ Assert.assertEquals(renderedMessage.getSubject(), "Try out Seam!");
+ Assert.assertNull(renderedMessage.getHeader("Precedence"));
+ Assert.assertNull(renderedMessage.getHeader("X-Priority"));
+ Assert.assertNull(renderedMessage.getHeader("Priority"));
+ Assert.assertNull(renderedMessage.getHeader("Importance"));
+ Assert.assertNull(renderedMessage.getHeader("Disposition-Notification-To"));
// Check the body
- assert renderedMessage.getContent() != null;
- assert renderedMessage.getContent() instanceof MimeMultipart;
+ Assert.assertNotNull(renderedMessage.getContent());
+ Assert.assertTrue(renderedMessage.getContent() instanceof MimeMultipart);
MimeMultipart body = (MimeMultipart) renderedMessage.getContent();
- assert body.getCount() == 1;
- assert body.getBodyPart(0) != null;
- assert body.getBodyPart(0) instanceof MimeBodyPart;
+ Assert.assertEquals(body.getCount(), 1);
+ Assert.assertNotNull(body.getBodyPart(0));
+ Assert.assertTrue(body.getBodyPart(0) instanceof MimeBodyPart);
MimeBodyPart bodyPart = (MimeBodyPart) body.getBodyPart(0);
- assert bodyPart.getContent() != null;
- assert "inline".equals(bodyPart.getDisposition());
- assert bodyPart.isMimeType("text/html");
-
+ Assert.assertNotNull(bodyPart.getContent());
+ Assert.assertEquals(bodyPart.getDisposition(), "inline");
+ Assert.assertTrue(bodyPart.isMimeType("text/html"));
}
}.run();
- }
-
-
-
+ }
+
@Test
public void testAttachment() throws Exception
{
@@ -117,85 +114,89 @@
// Test the headers
InternetAddress to = (InternetAddress) renderedMessage.getAllRecipients()[0];
- assert to.getAddress().equals("gavin(a)king.com");
- assert to.getPersonal().equals("Gavin King");
+ Assert.assertEquals(to.getAddress(), "gavin(a)king.com");
+ Assert.assertEquals(to.getPersonal(), "Gavin King");
InternetAddress from = (InternetAddress) renderedMessage.getFrom()[0];
- assert from.getAddress().equals("do-not-reply(a)jboss.com");
- assert from.getPersonal().equals("Seam");
- assert "Try out Seam!".equals(renderedMessage.getSubject());
- MimeMultipart body = (MimeMultipart) renderedMessage.getContent();
+ Assert.assertEquals(from.getAddress(), "do-not-reply(a)jboss.com");
+ Assert.assertEquals(from.getPersonal(), "Seam");
+ Assert.assertEquals(renderedMessage.getSubject(), "Try out Seam!");
+ MimeMultipart body = (MimeMultipart) renderedMessage.getContent();
+
+ Assert.assertEquals(body.getCount(), 4); //3 Attachments and 1 MimeMultipart
- // Test the attachments (no ui:repeat atm, so only 6)
- assert body.getCount() == 1;
-
// The root multipart/related
- assert body.getBodyPart(0) != null;
- assert body.getBodyPart(0) instanceof MimeBodyPart;
+ Assert.assertNotNull(body.getBodyPart(0));
+ Assert.assertTrue(body.getBodyPart(0) instanceof MimeBodyPart);
MimeBodyPart bodyPart = (MimeBodyPart) body.getBodyPart(0);
- assert bodyPart.getContent() != null;
- assert bodyPart.getContent() instanceof MimeMultipart;
- assert bodyPart.isMimeType("multipart/related");
+ Assert.assertNotNull(bodyPart.getContent());
+ Assert.assertTrue(bodyPart.getContent() instanceof MimeMultipart);
+ Assert.assertTrue(bodyPart.isMimeType("multipart/related"));
MimeMultipart attachments = (MimeMultipart) bodyPart.getContent();
+ Assert.assertEquals(attachments.getCount(), 3); //2 Attachments and 1 MimeMultipart
+
// Attachment 0 (the actual message)
- assert attachments.getBodyPart(0) != null;
- assert attachments.getBodyPart(0) instanceof MimeBodyPart;
+ Assert.assertNotNull(attachments.getBodyPart(0));
+ Assert.assertTrue(attachments.getBodyPart(0) instanceof MimeBodyPart);
bodyPart = (MimeBodyPart) attachments.getBodyPart(0);
- assert bodyPart.getContent() != null;
- assert bodyPart.getContent() != null;
- assert "inline".equals(bodyPart.getDisposition());
- assert bodyPart.isMimeType("text/html");
+ Assert.assertNotNull(bodyPart.getContent());
+ Assert.assertNotNull(bodyPart.getContent());
+ Assert.assertTrue(bodyPart.isMimeType("text/html"));
+ Assert.assertEquals(bodyPart.getDisposition(), "inline");
- // Attachment 1
- assert attachments.getBodyPart(1) != null;
- assert attachments.getBodyPart(1) instanceof MimeBodyPart;
+ // Inline Attachment 1 // Attachment Jboss Logo
+ Assert.assertNotNull(attachments.getBodyPart(1));
+ Assert.assertTrue(attachments.getBodyPart(1) instanceof MimeBodyPart);
bodyPart = (MimeBodyPart) attachments.getBodyPart(1);
- assert bodyPart.getContent() != null;
- assert bodyPart.getContent() instanceof InputStream;
- assert "jboss.jpg".equals(bodyPart.getFileName());
- assert bodyPart.isMimeType("image/jpeg");
- assert "inline".equals(bodyPart.getDisposition());
+ Assert.assertNotNull(bodyPart.getContent());
+ Assert.assertTrue(bodyPart.getContent() instanceof InputStream);
+ Assert.assertEquals(bodyPart.getFileName(), "jboss.jpg");
+ Assert.assertTrue(bodyPart.isMimeType("image/jpeg"));
+ Assert.assertEquals(bodyPart.getDisposition(), "inline");
+ Assert.assertNotNull(bodyPart.getContentID());
- // Attachment 2
- assert attachments.getBodyPart(2) != null;
- assert attachments.getBodyPart(2) instanceof MimeBodyPart;
+ // Inline Attachment 1 // Attachment Gavin Pic
+ Assert.assertNotNull(attachments.getBodyPart(2));
+ Assert.assertTrue(attachments.getBodyPart(2) instanceof MimeBodyPart);
bodyPart = (MimeBodyPart) attachments.getBodyPart(2);
- assert bodyPart.getContent() != null;
- assert bodyPart.getContent() instanceof InputStream;
- assert "numbers.csv".equals(bodyPart.getFileName());
- assert bodyPart.isMimeType("content/unknown");
- assert "attachment".equals(bodyPart.getDisposition());
+ Assert.assertNotNull(bodyPart.getContent());
+ Assert.assertTrue(bodyPart.getContent() instanceof InputStream);
+ Assert.assertEquals(bodyPart.getFileName(), "Gavin_King.jpg");
+ Assert.assertTrue(bodyPart.isMimeType("image/png"));
+ Assert.assertEquals(bodyPart.getDisposition(), "inline");
+ Assert.assertNotNull(bodyPart.getContentID());
- // Attachment 3
- assert attachments.getBodyPart(3) != null;
- assert attachments.getBodyPart(3) instanceof MimeBodyPart;
- bodyPart = (MimeBodyPart) attachments.getBodyPart(3);
- assert bodyPart.getContent() != null;
- assert bodyPart.getContent() != null;
- assert bodyPart.getContent() instanceof InputStream;
- assert "Gavin_King.jpg".equals(bodyPart.getFileName());
- assert bodyPart.isMimeType("image/png");
- assert "inline".equals(bodyPart.getDisposition());
+ // Root Attachment 0
+ Assert.assertNotNull(body.getBodyPart(1));
+ Assert.assertTrue(body.getBodyPart(1) instanceof MimeBodyPart);
+ bodyPart = (MimeBodyPart) body.getBodyPart(1);
+ Assert.assertNotNull(bodyPart.getContent());
+ Assert.assertTrue( bodyPart.getContent() instanceof InputStream);
+ Assert.assertEquals(bodyPart.getFileName(), "numbers.csv");
+ Assert.assertTrue(bodyPart.isMimeType("content/unknown"));
+ Assert.assertEquals(bodyPart.getDisposition(), "attachment");
+ Assert.assertNull(bodyPart.getContentID());
- // Attachment 4
- assert attachments.getBodyPart(4) != null;
- assert attachments.getBodyPart(4) instanceof MimeBodyPart;
- bodyPart = (MimeBodyPart) attachments.getBodyPart(4);
- assert bodyPart.getContent() != null;
- // No PDF rendering here :(
- assert bodyPart.getContent() instanceof String;
- assert "whyseam.pdf".equals(bodyPart.getFileName());
- assert "attachment".equals(bodyPart.getDisposition());
+ // Root Attachment 1
+ Assert.assertNotNull(body.getBodyPart(2));
+ Assert.assertTrue(body.getBodyPart(2) instanceof MimeBodyPart);
+ bodyPart = (MimeBodyPart) body.getBodyPart(2);
+ Assert.assertNotNull(bodyPart.getContent());
+ Assert.assertTrue(bodyPart.getContent() instanceof String);
+ Assert.assertEquals(bodyPart.getFileName(), "whyseam.pdf");
+ Assert.assertEquals(bodyPart.getDisposition(), "attachment");
+ Assert.assertNull(bodyPart.getContentID());
- // Attachment 5 -- ui:repeat doesn't work in test env :(
- /*assert attachments.getBodyPart(5) != null;
- assert attachments.getBodyPart(5) instanceof MimeBodyPart;
- bodyPart = (MimeBodyPart) attachments.getBodyPart(5);
- assert bodyPart.getContent() != null;
- assert "Gavin_King.jpg".equals(bodyPart.getFileName());
- assert bodyPart.isMimeType("image/jpeg");
- assert "attachment".equals(bodyPart.getDisposition());*/
+ // Root Attachment 3
+ Assert.assertNotNull(body.getBodyPart(3));
+ Assert.assertTrue(body.getBodyPart(3) instanceof MimeBodyPart);
+ bodyPart = (MimeBodyPart) body.getBodyPart(3);
+ Assert.assertNotNull(bodyPart.getContent());
+ Assert.assertEquals(bodyPart.getFileName(), "excel.xls");
+ Assert.assertTrue(bodyPart.isMimeType("application/vnd.ms-excel"));
+ Assert.assertEquals(bodyPart.getDisposition(), "attachment");
+ Assert.assertNull(bodyPart.getContentID());
}
}.run();
@@ -225,10 +226,10 @@
attachment.encodeEnd(FacesContext.getCurrentInstance());
// verify we built the message
- assert new Integer(1).equals(message.getAttachments().size());
+ Assert.assertEquals(message.getAttachments().size(), 1);
MimeBodyPart bodyPart = message.getAttachments().get(0);
- assert "filename.pdf".equals(bodyPart.getFileName());
- assert "attachment".equals(bodyPart.getDisposition());
+ Assert.assertEquals(bodyPart.getFileName(), "filename.pdf");
+ Assert.assertEquals(bodyPart.getDisposition(),"attachment");
}
}.run();
}
@@ -256,54 +257,55 @@
// Test the standard headers
InternetAddress to = (InternetAddress) renderedMessage.getAllRecipients()[0];
- assert to.getAddress().equals("test(a)example.com");
- assert to.getPersonal().equals("Pete Muir");
+ Assert.assertEquals(to.getAddress(), "test(a)example.com");
+ Assert.assertEquals(to.getPersonal(), "Pete Muir");
InternetAddress from = (InternetAddress) renderedMessage.getFrom()[0];
- assert from.getAddress().equals("do-not-reply(a)jboss.com");
- assert from.getPersonal().equals("Seam");
- assert "Seam Mail".equals(renderedMessage.getSubject());
+ Assert.assertEquals(from.getAddress(), "do-not-reply(a)jboss.com");
+ Assert.assertEquals(from.getPersonal(), "Seam");
+ Assert.assertEquals(renderedMessage.getSubject(), "Seam Mail");
// Test the extra headers
// Importance
- assert renderedMessage.getHeader("X-Priority") != null;
- assert renderedMessage.getHeader("Priority") != null;
- assert renderedMessage.getHeader("Importance") != null;
- assert renderedMessage.getHeader("X-Priority").length == 1;
- assert renderedMessage.getHeader("Priority").length == 1;
- assert renderedMessage.getHeader("Importance").length == 1;
- assert "5".equals(renderedMessage.getHeader("X-Priority")[0]);
- assert "Non-urgent".equals(renderedMessage.getHeader("Priority")[0]);
- assert "low".equals(renderedMessage.getHeader("Importance")[0]);
+ Assert.assertNotNull(renderedMessage.getHeader("X-Priority"));
+ Assert.assertNotNull(renderedMessage.getHeader("Priority"));
+ Assert.assertNotNull(renderedMessage.getHeader("Importance"));
+ Assert.assertEquals(renderedMessage.getHeader("X-Priority").length, 1);
+ Assert.assertEquals(renderedMessage.getHeader("Priority").length, 1);
+ Assert.assertEquals(renderedMessage.getHeader("Importance").length, 1);
+ Assert.assertEquals(renderedMessage.getHeader("X-Priority")[0], "5");
+ Assert.assertEquals(renderedMessage.getHeader("Priority")[0], "Non-urgent");
+ Assert.assertEquals(renderedMessage.getHeader("Importance")[0], "low");
// read receipt
- assert renderedMessage.getHeader("Disposition-Notification-To") != null;
- assert renderedMessage.getHeader("Disposition-Notification-To").length == 1;
- assert "Seam <do-not-reply(a)jboss.com>".equals(renderedMessage.getHeader("Disposition-Notification-To")[0]);
+ Assert.assertNotNull(renderedMessage.getHeader("Disposition-Notification-To"));
+ Assert.assertEquals(renderedMessage.getHeader("Disposition-Notification-To").length, 1);
+ Assert.assertEquals(renderedMessage.getHeader("Disposition-Notification-To")[0], "Seam <do-not-reply(a)jboss.com>");
// m:header
- assert renderedMessage.getHeader("X-Sent-From") != null;
- assert renderedMessage.getHeader("X-Sent-From").length == 1;
- assert "Seam".equals(renderedMessage.getHeader("X-Sent-From")[0]);
+ Assert.assertNotNull(renderedMessage.getHeader("X-Sent-From"));
+ Assert.assertEquals(renderedMessage.getHeader("X-Sent-From").length, 1);
+ Assert.assertEquals(renderedMessage.getHeader("X-Sent-From")[0], "Seam");
MimeMultipart body = (MimeMultipart) renderedMessage.getContent();
// Check the alternative facet
- assert renderedMessage.getContentType().startsWith("multipart/mixed");
- assert body.getCount() == 1;
+ Assert.assertTrue(renderedMessage.getContentType().startsWith("multipart/mixed"));
+ Assert.assertEquals(body.getCount(), 1);
MimeBodyPart bodyPart = (MimeBodyPart) body.getBodyPart(0);
- assert bodyPart.getContentType().startsWith("multipart/alternative");
- assert bodyPart.getContent() instanceof MimeMultipart;
+ Assert.assertTrue(bodyPart.getContentType().startsWith("multipart/alternative"));
+ Assert.assertTrue(bodyPart.getContent() instanceof MimeMultipart);
MimeMultipart bodyParts = (MimeMultipart) bodyPart.getContent();
- assert bodyParts.getCount() == 2;
- assert bodyParts.getBodyPart(0) instanceof MimeBodyPart;
- assert bodyParts.getBodyPart(1) instanceof MimeBodyPart;
+ Assert.assertEquals(bodyParts.getCount(), 2);
+ Assert.assertTrue(bodyParts.getBodyPart(0) instanceof MimeBodyPart);
+ Assert.assertTrue(bodyParts.getBodyPart(1) instanceof MimeBodyPart);
MimeBodyPart alternative = (MimeBodyPart) bodyParts.getBodyPart(0);
MimeBodyPart html = (MimeBodyPart) bodyParts.getBodyPart(1);
- assert alternative.isMimeType("text/plain");
- assert "inline".equals(alternative.getDisposition());
- assert html.isMimeType("text/html");
- assert "inline".equals(html.getDisposition());
+ Assert.assertTrue(alternative.isMimeType("text/plain"));
+ Assert.assertEquals(alternative.getDisposition(), "inline");
+ Assert.assertTrue(html.isMimeType("text/html"));
+ Assert.assertEquals(html.getDisposition(), "inline");
+
}
}.run();
@@ -333,48 +335,48 @@
// Test the standard headers
InternetAddress to = (InternetAddress) renderedMessage.getAllRecipients()[0];
- assert to.getAddress().equals("test(a)example.com");
- assert to.getPersonal().equals("Pete Muir");
+ Assert.assertEquals(to.getAddress(), "test(a)example.com");
+ Assert.assertEquals(to.getPersonal(), "Pete Muir");
InternetAddress from = (InternetAddress) renderedMessage.getFrom()[0];
- assert from.getAddress().equals("do-not-reply(a)jboss.com");
- assert from.getPersonal().equals("Seam");
- assert renderedMessage.getReplyTo().length == 1;
- assert renderedMessage.getReplyTo()[0] instanceof InternetAddress;
+ Assert.assertEquals(from.getAddress(), "do-not-reply(a)jboss.com");
+ Assert.assertEquals(from.getPersonal(), "Seam");
+ Assert.assertEquals(renderedMessage.getReplyTo().length, 1);
+ Assert.assertTrue(renderedMessage.getReplyTo()[0] instanceof InternetAddress);
InternetAddress replyTo = (InternetAddress) renderedMessage.getReplyTo()[0];
- assert "another.address(a)jboss.org".equals(replyTo.getAddress());
- assert "JBoss".equals(replyTo.getPersonal());
- assert renderedMessage.getRecipients(CC).length == 1;
- assert renderedMessage.getRecipients(CC)[0] instanceof InternetAddress;
+ Assert.assertEquals(replyTo.getAddress(), "another.address(a)jboss.org");
+ Assert.assertEquals(replyTo.getPersonal(), "JBoss");
+ Assert.assertEquals(renderedMessage.getRecipients(CC).length, 1);
+ Assert.assertTrue(renderedMessage.getRecipients(CC)[0] instanceof InternetAddress);
InternetAddress cc = (InternetAddress) renderedMessage.getRecipients(CC)[0];
- assert "test(a)example.com".equals(cc.getAddress());
- assert "Pete Muir".equals(cc.getPersonal());
- assert renderedMessage.getRecipients(BCC).length == 1;
- assert renderedMessage.getRecipients(BCC)[0] instanceof InternetAddress;
+ Assert.assertEquals(cc.getAddress(), "test(a)example.com");
+ Assert.assertEquals(cc.getPersonal(), "Pete Muir");
+ Assert.assertEquals(renderedMessage.getRecipients(BCC).length, 1);
+ Assert.assertTrue(renderedMessage.getRecipients(BCC)[0] instanceof InternetAddress);
InternetAddress bcc = (InternetAddress) renderedMessage.getRecipients(CC)[0];
- assert "test(a)example.com".equals(bcc.getAddress());
- assert "Pete Muir".equals(bcc.getPersonal());
- assert "bulk".equals(renderedMessage.getHeader("Precedence")[0]);
+ Assert.assertEquals(bcc.getAddress(), "test(a)example.com");
+ Assert.assertEquals(bcc.getPersonal(), "Pete Muir");
+ Assert.assertEquals(renderedMessage.getHeader("Precedence")[0], "bulk");
// Importance
- assert renderedMessage.getHeader("X-Priority") != null;
- assert renderedMessage.getHeader("Priority") != null;
- assert renderedMessage.getHeader("Importance") != null;
- assert renderedMessage.getHeader("X-Priority").length == 1;
- assert renderedMessage.getHeader("Priority").length == 1;
- assert renderedMessage.getHeader("Importance").length == 1;
- assert "1".equals(renderedMessage.getHeader("X-Priority")[0]);
- assert "Urgent".equals(renderedMessage.getHeader("Priority")[0]);
- assert "high".equals(renderedMessage.getHeader("Importance")[0]);
- assert "Plain text email sent by Seam".equals(renderedMessage.getSubject());
+ Assert.assertNotNull(renderedMessage.getHeader("X-Priority"));
+ Assert.assertNotNull(renderedMessage.getHeader("Priority"));
+ Assert.assertNotNull(renderedMessage.getHeader("Importance"));
+ Assert.assertEquals(renderedMessage.getHeader("X-Priority").length, 1);
+ Assert.assertEquals(renderedMessage.getHeader("Priority").length, 1);
+ Assert.assertEquals(renderedMessage.getHeader("Importance").length, 1);
+ Assert.assertEquals(renderedMessage.getHeader("X-Priority")[0], "1");
+ Assert.assertEquals(renderedMessage.getHeader("Priority")[0], "Urgent");
+ Assert.assertEquals(renderedMessage.getHeader("Importance")[0], "high");
+ Assert.assertEquals(renderedMessage.getSubject(), "Plain text email sent by Seam");
// Check the body
- assert renderedMessage.getContent() != null;
+ Assert.assertNotNull(renderedMessage.getContent());
MimeMultipart body = (MimeMultipart) renderedMessage.getContent();
- assert body.getCount() == 1;
+ Assert.assertEquals(body.getCount(), 1);
MimeBodyPart bodyPart = (MimeBodyPart) body.getBodyPart(0);
- assert bodyPart.getContent() != null;
- assert "inline".equals(bodyPart.getDisposition());
- assert bodyPart.isMimeType("text/plain");
+ Assert.assertNotNull(bodyPart.getContent());
+ Assert.assertEquals(bodyPart.getDisposition(), "inline");
+ Assert.assertTrue(bodyPart.isMimeType("text/plain"));
}
}.run();
}
@@ -439,12 +441,12 @@
}
catch (FacesException e)
{
- assert e.getCause() instanceof AddressException;
+ Assert.assertTrue(e.getCause() instanceof AddressException);
AddressException ae = (AddressException) e.getCause();
- assert ae.getMessage().startsWith("Missing final '@domain'");
+ Assert.assertTrue(ae.getMessage().startsWith("Missing final '@domain'"));
exceptionThrown = true;
}
- assert exceptionThrown;
+ Assert.assertTrue(exceptionThrown);
}
}.run();
@@ -483,13 +485,13 @@
}
catch (Exception e)
{
- assert e.getCause() instanceof AddressException;
+ Assert.assertTrue(e.getCause() instanceof AddressException);
AddressException ae = (AddressException) e.getCause();
System.out.println(ae.getMessage());
- assert ae.getMessage().startsWith("Email cannot have more than one Reply-to address");
+ Assert.assertTrue(ae.getMessage().startsWith("Email cannot have more than one Reply-to address"));
exceptionThrown = true;
}
- assert exceptionThrown;
+ Assert.assertTrue(exceptionThrown);
}
}.run();
@@ -525,12 +527,12 @@
}
catch (FacesException e)
{
- assert e.getCause() instanceof AddressException;
+ Assert.assertTrue(e.getCause() instanceof AddressException);
AddressException ae = (AddressException) e.getCause();
- assert ae.getMessage().startsWith("Email cannot have more than one from address");
+ Assert.assertTrue(ae.getMessage().startsWith("Email cannot have more than one from address"));
exceptionThrown = true;
}
- assert exceptionThrown;
+ Assert.assertTrue(exceptionThrown);
}
}.run();
@@ -554,18 +556,18 @@
{
Contexts.getEventContext().set("name", "Pete\nMuir");
MimeMessage renderedMessage = getRenderedMailMessage("/org/jboss/seam/example/mail/test/sanitization.xhtml");
- assert "Try out Seam!".equals(renderedMessage.getSubject());
+ Assert.assertEquals(renderedMessage.getSubject(), "Try out Seam!");
InternetAddress to = (InternetAddress) renderedMessage.getAllRecipients()[0];
- assert to.getAddress().equals("peter(a)email.tld");
- assert to.getPersonal().equals("Pete");
- assert renderedMessage.getFrom().length == 1;
- assert renderedMessage.getFrom()[0] instanceof InternetAddress;
+ Assert.assertEquals(to.getAddress(), "peter(a)email.tld");
+ Assert.assertEquals(to.getPersonal(), "Pete");
+ Assert.assertEquals(renderedMessage.getFrom().length, 1);
+ Assert.assertTrue(renderedMessage.getFrom()[0] instanceof InternetAddress);
InternetAddress from = (InternetAddress) renderedMessage.getFrom()[0];
- assert from.getAddress().equals("peter(a)example.com");
- assert from.getPersonal().equals("Pete");
- assert renderedMessage.getHeader("Pete") != null;
- assert renderedMessage.getHeader("Pete").length == 1;
- assert "roll over".equals(renderedMessage.getHeader("Pete")[0]);
+ Assert.assertEquals(from.getAddress(), "peter(a)example.com");
+ Assert.assertEquals(from.getPersonal(), "Pete");
+ Assert.assertNotNull(renderedMessage.getHeader("Pete"));
+ Assert.assertEquals(renderedMessage.getHeader("Pete").length, 1);
+ Assert.assertEquals(renderedMessage.getHeader("Pete")[0], "roll over");
}
}.run();
}
@@ -593,36 +595,36 @@
// Test the standard headers
InternetAddress to = (InternetAddress) renderedMessage.getAllRecipients()[0];
- assert to.getAddress().equals("test(a)example.com");
- assert to.getPersonal().equals("Pete Muir");
+ Assert.assertEquals(to.getAddress(), "test(a)example.com");
+ Assert.assertEquals(to.getPersonal(), "Pete Muir");
InternetAddress from = (InternetAddress) renderedMessage.getFrom()[0];
- assert from.getAddress().equals("do-not-reply(a)jboss.com");
- assert from.getPersonal().equals("Seam");
- assert "Templating with Seam Mail".equals(renderedMessage.getSubject());
- assert renderedMessage.getHeader("X-Priority") == null;
- assert renderedMessage.getHeader("Priority") == null;
- assert renderedMessage.getHeader("Importance") == null;
+ Assert.assertEquals(from.getAddress(), "do-not-reply(a)jboss.com");
+ Assert.assertEquals(from.getPersonal(), "Seam");
+ Assert.assertEquals(renderedMessage.getSubject(), "Templating with Seam Mail");
+ Assert.assertNull(renderedMessage.getHeader("X-Priority"));
+ Assert.assertNull(renderedMessage.getHeader("Priority"));
+ Assert.assertNull(renderedMessage.getHeader("Importance"));
// Check the body
MimeMultipart body = (MimeMultipart) renderedMessage.getContent();
// Check the alternative facet
- assert renderedMessage.getContentType().startsWith("multipart/mixed");
- assert body.getCount() == 1;
+ Assert.assertTrue(renderedMessage.getContentType().startsWith("multipart/mixed"));
+ Assert.assertEquals(body.getCount(), 1);
MimeBodyPart bodyPart = (MimeBodyPart) body.getBodyPart(0);
- assert bodyPart.getContentType().startsWith("multipart/alternative");
- assert bodyPart.getContent() instanceof MimeMultipart;
+ Assert.assertTrue(bodyPart.getContentType().startsWith("multipart/alternative"));
+ Assert.assertTrue(bodyPart.getContent() instanceof MimeMultipart);
MimeMultipart bodyParts = (MimeMultipart) bodyPart.getContent();
- assert bodyParts.getCount() == 2;
- assert bodyParts.getBodyPart(0) instanceof MimeBodyPart;
- assert bodyParts.getBodyPart(1) instanceof MimeBodyPart;
+ Assert.assertEquals(bodyParts.getCount(), 2);
+ Assert.assertTrue(bodyParts.getBodyPart(0) instanceof MimeBodyPart);
+ Assert.assertTrue(bodyParts.getBodyPart(1) instanceof MimeBodyPart);
MimeBodyPart alternative = (MimeBodyPart) bodyParts.getBodyPart(0);
MimeBodyPart html = (MimeBodyPart) bodyParts.getBodyPart(1);
- assert alternative.isMimeType("text/plain");
- assert "inline".equals(alternative.getDisposition());
- assert html.isMimeType("text/html");
- assert "inline".equals(html.getDisposition());
+ Assert.assertTrue(alternative.isMimeType("text/plain"));
+ Assert.assertEquals(alternative.getDisposition(), "inline");
+ Assert.assertTrue(html.isMimeType("text/html"));
+ Assert.assertEquals(html.getDisposition(), "inline");
}
}.run();
}
Modified: branches/community/Seam_2_2/src/mail/org/jboss/seam/mail/ui/UIBody.java
===================================================================
--- branches/community/Seam_2_2/src/mail/org/jboss/seam/mail/ui/UIBody.java 2010-04-08 21:20:27 UTC (rev 12420)
+++ branches/community/Seam_2_2/src/mail/org/jboss/seam/mail/ui/UIBody.java 2010-04-09 08:56:24 UTC (rev 12421)
@@ -1,13 +1,13 @@
package org.jboss.seam.mail.ui;
import java.io.IOException;
+import java.util.List;
import javax.faces.FacesException;
import javax.faces.component.UIComponent;
import javax.faces.context.FacesContext;
import javax.mail.BodyPart;
import javax.mail.MessagingException;
-import javax.mail.Multipart;
import javax.mail.internet.MimeBodyPart;
import javax.mail.internet.MimeMultipart;
@@ -20,19 +20,31 @@
*/
public class UIBody extends MailComponent
{
-
+
public static final String HTML = "html";
-
+
public static final String PLAIN = "plain";
-
+
private String type = HTML;
-
+
@Override
public void encodeChildren(FacesContext facesContext) throws IOException
{
try
- {
- BodyPart bodyPart = null;
+ {
+ BodyPart bodyPart = new MimeBodyPart();
+
+ MimeMultipart bodyMultipart;
+
+ if (containsInlineAttachment(findMessage().getAttachments()))
+ {
+ bodyMultipart = new MimeMultipart("related");
+ }
+ else
+ {
+ bodyMultipart = null;
+ }
+
if (PLAIN.equalsIgnoreCase(getType()))
{
String body = encode(facesContext, MailResponseWriter.TEXT_PLAIN_CONTENT_TYPE);
@@ -42,17 +54,15 @@
{
UIComponent alternative = getFacet("alternative");
String body = encode(facesContext, MailResponseWriter.HTML_PLAIN_CONTENT_TYPE);
+
if (alternative != null)
{
- Multipart multipart = new MimeMultipart("alternative");
-
- multipart.addBodyPart(getTextBody(facesContext, encode(facesContext,
- alternative, MailResponseWriter.TEXT_PLAIN_CONTENT_TYPE)));
- multipart.addBodyPart(getHtmlBody(facesContext, body));
-
+ MimeMultipart multipartAlt = new MimeMultipart("alternative");
+ multipartAlt.addBodyPart(getTextBody(facesContext, encode(facesContext,
+ alternative, MailResponseWriter.TEXT_PLAIN_CONTENT_TYPE)));
+ multipartAlt.addBodyPart(getHtmlBody(facesContext, body));
bodyPart = new MimeBodyPart();
- bodyPart.setContent(multipart);
-
+ bodyPart.setContent(multipartAlt);
}
else
{
@@ -62,29 +72,42 @@
if (findMessage().getAttachments().size() > 0)
{
- MimeMultipart bodyRootMultipart = new MimeMultipart("related");
- bodyRootMultipart.addBodyPart(bodyPart, 0);
- for (MimeBodyPart attachment: findMessage().getAttachments())
+ for (MimeBodyPart attachment : findMessage().getAttachments())
{
- bodyRootMultipart.addBodyPart(attachment);
+ if (attachment.getDisposition().equalsIgnoreCase("inline"))
+ {
+ bodyMultipart.addBodyPart(attachment);
+ }
+ else
+ {
+ getRootMultipart().addBodyPart(attachment);
+ }
}
- bodyPart = new MimeBodyPart();
- bodyPart.setContent(bodyRootMultipart);
}
+ if (bodyMultipart != null)
+ {
+ bodyMultipart.addBodyPart(bodyPart, 0);
+ BodyPart bodyPartContent = new MimeBodyPart();
+ bodyPartContent.setContent(bodyMultipart);
+ getRootMultipart().addBodyPart(bodyPartContent, 0);
+ }
+ else
+ {
+ getRootMultipart().addBodyPart(bodyPart, 0);
+ }
- getRootMultipart().addBodyPart(bodyPart, 0);
}
catch (MessagingException e)
{
throw new FacesException(e.getMessage(), e);
}
}
-
+
public void setType(String type)
{
this.type = type;
}
-
+
/**
* The type of the body - plain or html
*/
@@ -96,43 +119,52 @@
}
return type;
}
-
- private BodyPart getTextBody(FacesContext facesContext, String body)
- throws MessagingException
+
+ private BodyPart getTextBody(FacesContext facesContext, String body) throws MessagingException
{
MimeBodyPart bodyPart = new MimeBodyPart();
bodyPart.setDisposition(new Header("inline").getSanitizedValue());
String charset = findMessage().getCharset();
- if ( charset != null)
+ if (charset != null)
{
- //bodyPart.setContent(body, "text/plain; charset="
- // + charset + "; format=flowed");
+ // bodyPart.setContent(body, "text/plain; charset="
+ // + charset + "; format=flowed");
bodyPart.setText(body, new Header(charset).getSanitizedValue());
- }
- else
+ }
+ else
{
bodyPart.setText(body);
}
return bodyPart;
}
-
- private BodyPart getHtmlBody(FacesContext facesContext, Object body)
- throws MessagingException
+
+ private BodyPart getHtmlBody(FacesContext facesContext, Object body) throws MessagingException
{
MimeBodyPart bodyPart = new MimeBodyPart();
bodyPart.setDisposition(new Header("inline").getSanitizedValue());
String charset = findMessage().getCharset();
- if ( charset != null)
+ if (charset != null)
{
- bodyPart.setContent(body, new Header("text/html; charset="
- + charset).getSanitizedValue());
- }
- else
+ bodyPart.setContent(body, new Header("text/html; charset=" + charset).getSanitizedValue());
+ }
+ else
{
bodyPart.setContent(body, new Header("text/html").getSanitizedValue());
}
return bodyPart;
}
-
+
+ private static boolean containsInlineAttachment(List<MimeBodyPart> attachments) throws MessagingException
+ {
+ for (MimeBodyPart attachment : attachments)
+ {
+ if (attachment.getDisposition().equalsIgnoreCase("inline"))
+ {
+ return true;
+ }
+ }
+
+ return false;
+ }
}
\ No newline at end of file
16 years
Seam SVN: r12420 - in modules/international/trunk: api and 13 other directories.
by seam-commits@lists.jboss.org
Author: kenfinni
Date: 2010-04-08 17:20:27 -0400 (Thu, 08 Apr 2010)
New Revision: 12420
Added:
modules/international/trunk/api/
modules/international/trunk/api/pom.xml
modules/international/trunk/api/src/
modules/international/trunk/api/src/main/
modules/international/trunk/api/src/main/java/
modules/international/trunk/api/src/main/java/org/
modules/international/trunk/api/src/main/java/org/jboss/
modules/international/trunk/api/src/main/java/org/jboss/seam/
modules/international/trunk/api/src/main/java/org/jboss/seam/international/
modules/international/trunk/api/src/main/java/org/jboss/seam/international/timezone/
modules/international/trunk/api/src/main/java/org/jboss/seam/international/timezone/DefaultTimeZone.java
modules/international/trunk/api/src/main/java/org/jboss/seam/international/timezone/TimeZones.java
modules/international/trunk/api/src/main/java/org/jboss/seam/international/timezone/UserTimeZone.java
modules/international/trunk/api/src/main/java/org/jboss/seam/international/timezone/events/
modules/international/trunk/api/src/main/java/org/jboss/seam/international/timezone/events/TimeZoneSelectedEvent.java
modules/international/trunk/api/src/main/resources/
modules/international/trunk/api/src/test/
modules/international/trunk/api/src/test/java/
modules/international/trunk/api/src/test/resources/
modules/international/trunk/impl/
Removed:
modules/international/trunk/core/pom.xml
modules/international/trunk/core/src/
modules/international/trunk/impl/src/main/java/org/jboss/seam/international/timezone/DefaultTimeZone.java
modules/international/trunk/impl/src/main/java/org/jboss/seam/international/timezone/TimeZones.java
modules/international/trunk/impl/src/main/java/org/jboss/seam/international/timezone/UserTimeZone.java
modules/international/trunk/impl/src/main/java/org/jboss/seam/international/timezone/events/
Modified:
modules/international/trunk/impl/pom.xml
modules/international/trunk/pom.xml
Log:
Restructure International module to follow the new Module Anatomy guidelines
Property changes on: modules/international/trunk/api
___________________________________________________________________
Name: svn:ignore
+ .project
.classpath
.settings
target
Added: modules/international/trunk/api/pom.xml
===================================================================
--- modules/international/trunk/api/pom.xml (rev 0)
+++ modules/international/trunk/api/pom.xml 2010-04-08 21:20:27 UTC (rev 12420)
@@ -0,0 +1,34 @@
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+
+ <parent>
+ <artifactId>seam-international-parent</artifactId>
+ <groupId>org.jboss.seam.international</groupId>
+ <version>3.0.0-SNAPSHOT</version>
+ </parent>
+
+ <artifactId>seam-international-api</artifactId>
+ <version>3.0.0-SNAPSHOT</version>
+
+ <packaging>jar</packaging>
+ <name>Seam International Module API</name>
+
+ <!-- Snapshots repo to get parent -->
+ <repositories>
+ <repository>
+ <id>oss.sonatype.org/jboss-snapshots</id>
+ <name>JBoss (Nexus) Snapshots Repository</name>
+ <url>http://oss.sonatype.org/content/repositories/jboss-snapshots
+ </url>
+ <releases>
+ <enabled>false</enabled>
+ </releases>
+ <snapshots>
+ <enabled>true</enabled>
+ <updatePolicy>never</updatePolicy>
+ </snapshots>
+ </repository>
+ </repositories>
+
+</project>
\ No newline at end of file
Added: modules/international/trunk/api/src/main/java/org/jboss/seam/international/timezone/DefaultTimeZone.java
===================================================================
--- modules/international/trunk/api/src/main/java/org/jboss/seam/international/timezone/DefaultTimeZone.java (rev 0)
+++ modules/international/trunk/api/src/main/java/org/jboss/seam/international/timezone/DefaultTimeZone.java 2010-04-08 21:20:27 UTC (rev 12420)
@@ -0,0 +1,27 @@
+package org.jboss.seam.international.timezone;
+
+import static java.lang.annotation.ElementType.FIELD;
+import static java.lang.annotation.ElementType.METHOD;
+import static java.lang.annotation.ElementType.PARAMETER;
+import static java.lang.annotation.RetentionPolicy.RUNTIME;
+
+import java.lang.annotation.Documented;
+import java.lang.annotation.Inherited;
+import java.lang.annotation.Retention;
+import java.lang.annotation.Target;
+
+import javax.inject.Qualifier;
+
+/**
+ * Default Application TimeZone
+ *
+ * @author Ken Finnigan
+ */
+@Target( { METHOD, PARAMETER, FIELD })
+@Retention(RUNTIME)
+@Documented
+@Qualifier
+@Inherited
+public @interface DefaultTimeZone
+{
+}
Added: modules/international/trunk/api/src/main/java/org/jboss/seam/international/timezone/TimeZones.java
===================================================================
--- modules/international/trunk/api/src/main/java/org/jboss/seam/international/timezone/TimeZones.java (rev 0)
+++ modules/international/trunk/api/src/main/java/org/jboss/seam/international/timezone/TimeZones.java 2010-04-08 21:20:27 UTC (rev 12420)
@@ -0,0 +1,27 @@
+package org.jboss.seam.international.timezone;
+
+import static java.lang.annotation.ElementType.FIELD;
+import static java.lang.annotation.ElementType.METHOD;
+import static java.lang.annotation.ElementType.PARAMETER;
+import static java.lang.annotation.RetentionPolicy.RUNTIME;
+
+import java.lang.annotation.Documented;
+import java.lang.annotation.Inherited;
+import java.lang.annotation.Retention;
+import java.lang.annotation.Target;
+
+import javax.inject.Qualifier;
+
+/**
+ * Qualifier for Time Zones
+ *
+ * @author Ken Finnigan
+ */
+@Target( { METHOD, PARAMETER, FIELD })
+@Retention(RUNTIME)
+@Documented
+@Qualifier
+@Inherited
+public @interface TimeZones
+{
+}
Added: modules/international/trunk/api/src/main/java/org/jboss/seam/international/timezone/UserTimeZone.java
===================================================================
--- modules/international/trunk/api/src/main/java/org/jboss/seam/international/timezone/UserTimeZone.java (rev 0)
+++ modules/international/trunk/api/src/main/java/org/jboss/seam/international/timezone/UserTimeZone.java 2010-04-08 21:20:27 UTC (rev 12420)
@@ -0,0 +1,27 @@
+package org.jboss.seam.international.timezone;
+
+import static java.lang.annotation.ElementType.FIELD;
+import static java.lang.annotation.ElementType.METHOD;
+import static java.lang.annotation.ElementType.PARAMETER;
+import static java.lang.annotation.RetentionPolicy.RUNTIME;
+
+import java.lang.annotation.Documented;
+import java.lang.annotation.Inherited;
+import java.lang.annotation.Retention;
+import java.lang.annotation.Target;
+
+import javax.inject.Qualifier;
+
+/**
+ * User TimeZone
+ *
+ * @author Ken Finnigan
+ */
+@Target( { METHOD, PARAMETER, FIELD })
+@Retention(RUNTIME)
+@Documented
+@Qualifier
+@Inherited
+public @interface UserTimeZone
+{
+}
Added: modules/international/trunk/api/src/main/java/org/jboss/seam/international/timezone/events/TimeZoneSelectedEvent.java
===================================================================
--- modules/international/trunk/api/src/main/java/org/jboss/seam/international/timezone/events/TimeZoneSelectedEvent.java (rev 0)
+++ modules/international/trunk/api/src/main/java/org/jboss/seam/international/timezone/events/TimeZoneSelectedEvent.java 2010-04-08 21:20:27 UTC (rev 12420)
@@ -0,0 +1,21 @@
+package org.jboss.seam.international.timezone.events;
+
+/**
+ * Event raised when TimeZone selected.
+ *
+ * @author Ken Finnigan
+ */
+public class TimeZoneSelectedEvent
+{
+ private String timeZoneId;
+
+ public TimeZoneSelectedEvent(String timeZoneId)
+ {
+ this.timeZoneId = timeZoneId;
+ }
+
+ public String getTimeZoneId()
+ {
+ return timeZoneId;
+ }
+}
Deleted: modules/international/trunk/core/pom.xml
===================================================================
--- modules/international/trunk/core/pom.xml 2010-04-08 10:19:56 UTC (rev 12419)
+++ modules/international/trunk/core/pom.xml 2010-04-08 21:20:27 UTC (rev 12420)
@@ -1,41 +0,0 @@
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
- <modelVersion>4.0.0</modelVersion>
-
- <parent>
- <groupId>org.jboss.seam.international</groupId>
- <artifactId>seam-international-parent</artifactId>
- <version>3.0.0-SNAPSHOT</version>
- </parent>
-
- <groupId>org.jboss.seam.international</groupId>
- <artifactId>seam-international-core</artifactId>
- <version>3.0.0-SNAPSHOT</version>
- <packaging>jar</packaging>
- <name>Seam International Core</name>
-
- <dependencies>
-
- <dependency>
- <groupId>javax.enterprise</groupId>
- <artifactId>cdi-api</artifactId>
- </dependency>
-
- <dependency>
- <groupId>org.jboss.arquillian</groupId>
- <artifactId>arquillian-junit</artifactId>
- </dependency>
-
- <dependency>
- <groupId>org.jboss.arquillian.container</groupId>
- <artifactId>arquillian-weld-embedded</artifactId>
- </dependency>
-
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- </dependency>
-
- </dependencies>
-
-</project>
Copied: modules/international/trunk/impl (from rev 12419, modules/international/trunk/core)
Modified: modules/international/trunk/impl/pom.xml
===================================================================
--- modules/international/trunk/core/pom.xml 2010-04-08 10:19:56 UTC (rev 12419)
+++ modules/international/trunk/impl/pom.xml 2010-04-08 21:20:27 UTC (rev 12420)
@@ -8,34 +8,36 @@
<version>3.0.0-SNAPSHOT</version>
</parent>
- <groupId>org.jboss.seam.international</groupId>
- <artifactId>seam-international-core</artifactId>
+ <artifactId>seam-international</artifactId>
<version>3.0.0-SNAPSHOT</version>
+
<packaging>jar</packaging>
- <name>Seam International Core</name>
+ <name>Seam International Module Core Implementation</name>
+ <!-- Snapshots repo to get parent -->
+ <repositories>
+ <repository>
+ <id>oss.sonatype.org/jboss-snapshots</id>
+ <name>JBoss (Nexus) Snapshots Repository</name>
+ <url>http://oss.sonatype.org/content/repositories/jboss-snapshots
+ </url>
+ <releases>
+ <enabled>false</enabled>
+ </releases>
+ <snapshots>
+ <enabled>true</enabled>
+ <updatePolicy>never</updatePolicy>
+ </snapshots>
+ </repository>
+ </repositories>
+
<dependencies>
-
<dependency>
- <groupId>javax.enterprise</groupId>
- <artifactId>cdi-api</artifactId>
+ <artifactId>seam-international-api</artifactId>
+ <groupId>org.jboss.seam.international</groupId>
+ <version>${project.version}</version>
+ <scope>compile</scope>
</dependency>
-
- <dependency>
- <groupId>org.jboss.arquillian</groupId>
- <artifactId>arquillian-junit</artifactId>
- </dependency>
-
- <dependency>
- <groupId>org.jboss.arquillian.container</groupId>
- <artifactId>arquillian-weld-embedded</artifactId>
- </dependency>
-
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- </dependency>
-
</dependencies>
</project>
Deleted: modules/international/trunk/impl/src/main/java/org/jboss/seam/international/timezone/DefaultTimeZone.java
===================================================================
--- modules/international/trunk/core/src/main/java/org/jboss/seam/international/timezone/DefaultTimeZone.java 2010-04-08 10:19:56 UTC (rev 12419)
+++ modules/international/trunk/impl/src/main/java/org/jboss/seam/international/timezone/DefaultTimeZone.java 2010-04-08 21:20:27 UTC (rev 12420)
@@ -1,27 +0,0 @@
-package org.jboss.seam.international.timezone;
-
-import static java.lang.annotation.ElementType.FIELD;
-import static java.lang.annotation.ElementType.METHOD;
-import static java.lang.annotation.ElementType.PARAMETER;
-import static java.lang.annotation.RetentionPolicy.RUNTIME;
-
-import java.lang.annotation.Documented;
-import java.lang.annotation.Inherited;
-import java.lang.annotation.Retention;
-import java.lang.annotation.Target;
-
-import javax.inject.Qualifier;
-
-/**
- * Default Application TimeZone
- *
- * @author Ken Finnigan
- */
-@Target( { METHOD, PARAMETER, FIELD })
-@Retention(RUNTIME)
-@Documented
-@Qualifier
-@Inherited
-public @interface DefaultTimeZone
-{
-}
Deleted: modules/international/trunk/impl/src/main/java/org/jboss/seam/international/timezone/TimeZones.java
===================================================================
--- modules/international/trunk/core/src/main/java/org/jboss/seam/international/timezone/TimeZones.java 2010-04-08 10:19:56 UTC (rev 12419)
+++ modules/international/trunk/impl/src/main/java/org/jboss/seam/international/timezone/TimeZones.java 2010-04-08 21:20:27 UTC (rev 12420)
@@ -1,27 +0,0 @@
-package org.jboss.seam.international.timezone;
-
-import static java.lang.annotation.ElementType.FIELD;
-import static java.lang.annotation.ElementType.METHOD;
-import static java.lang.annotation.ElementType.PARAMETER;
-import static java.lang.annotation.RetentionPolicy.RUNTIME;
-
-import java.lang.annotation.Documented;
-import java.lang.annotation.Inherited;
-import java.lang.annotation.Retention;
-import java.lang.annotation.Target;
-
-import javax.inject.Qualifier;
-
-/**
- * Qualifier for Time Zones
- *
- * @author Ken Finnigan
- */
-@Target( { METHOD, PARAMETER, FIELD })
-@Retention(RUNTIME)
-@Documented
-@Qualifier
-@Inherited
-public @interface TimeZones
-{
-}
Deleted: modules/international/trunk/impl/src/main/java/org/jboss/seam/international/timezone/UserTimeZone.java
===================================================================
--- modules/international/trunk/core/src/main/java/org/jboss/seam/international/timezone/UserTimeZone.java 2010-04-08 10:19:56 UTC (rev 12419)
+++ modules/international/trunk/impl/src/main/java/org/jboss/seam/international/timezone/UserTimeZone.java 2010-04-08 21:20:27 UTC (rev 12420)
@@ -1,27 +0,0 @@
-package org.jboss.seam.international.timezone;
-
-import static java.lang.annotation.ElementType.FIELD;
-import static java.lang.annotation.ElementType.METHOD;
-import static java.lang.annotation.ElementType.PARAMETER;
-import static java.lang.annotation.RetentionPolicy.RUNTIME;
-
-import java.lang.annotation.Documented;
-import java.lang.annotation.Inherited;
-import java.lang.annotation.Retention;
-import java.lang.annotation.Target;
-
-import javax.inject.Qualifier;
-
-/**
- * User TimeZone
- *
- * @author Ken Finnigan
- */
-@Target( { METHOD, PARAMETER, FIELD })
-@Retention(RUNTIME)
-@Documented
-@Qualifier
-@Inherited
-public @interface UserTimeZone
-{
-}
Modified: modules/international/trunk/pom.xml
===================================================================
--- modules/international/trunk/pom.xml 2010-04-08 10:19:56 UTC (rev 12419)
+++ modules/international/trunk/pom.xml 2010-04-08 21:20:27 UTC (rev 12420)
@@ -9,14 +9,20 @@
<version>3.0.0-SNAPSHOT</version>
</parent>
+ <artifactId>seam-international-parent</artifactId>
<groupId>org.jboss.seam.international</groupId>
- <artifactId>seam-international-parent</artifactId>
- <packaging>pom</packaging>
<version>3.0.0-SNAPSHOT</version>
- <name>Seam International Parent</name>
+ <packaging>pom</packaging>
+ <name>Seam International Module Parent POM</name>
+
+ <description>The Parent for Seam International Module</description>
+
+ <url>http://www.seamframework.org</url>
+
<modules>
- <module>core</module>
+ <module>api</module>
+ <module>impl</module>
<!--module>docs</module-->
<!--module>examples/??</module-->
</modules>
@@ -25,65 +31,67 @@
<arquillian.version>1.0.0.Alpha1</arquillian.version>
</properties>
- <dependencyManagement>
- <dependencies>
+ <dependencies>
- <dependency>
- <groupId>javax.el</groupId>
- <artifactId>el-api</artifactId>
- <version>2.2</version>
- <scope>provided</scope>
- </dependency>
+ <!-- Environment Dependencies -->
+ <dependency>
+ <groupId>javax.el</groupId>
+ <artifactId>el-api</artifactId>
+ <version>2.2</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>javax.enterprise</groupId>
+ <artifactId>cdi-api</artifactId>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.jboss.weld</groupId>
+ <artifactId>weld-extensions</artifactId>
+ <version>1.0.0.Alpha1</version>
+ </dependency>
- <dependency>
- <groupId>javax.persistence</groupId>
- <artifactId>persistence-api</artifactId>
- <version>1.0</version>
- <scope>provided</scope>
- </dependency>
-
- <dependency>
- <groupId>javax.validation</groupId>
- <artifactId>validation-api</artifactId>
- <version>1.0.0.GA</version>
- </dependency>
-
- <dependency>
- <groupId>javax.enterprise</groupId>
- <artifactId>cdi-api</artifactId>
- <version>1.0-SP1</version>
- </dependency>
+ <!-- Test Dependencies -->
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>4.8.1</version>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.jboss.arquillian</groupId>
+ <artifactId>arquillian-junit</artifactId>
+ <version>${arquillian.version}</version>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.jboss.arquillian.container</groupId>
+ <artifactId>arquillian-weld-embedded</artifactId>
+ <version>${arquillian.version}</version>
+ <scope>test</scope>
+ </dependency>
+ </dependencies>
- <dependency>
- <groupId>org.slf4j</groupId>
- <artifactId>slf4j-api</artifactId>
- <version>1.5.10</version>
- <scope>provided</scope>
- </dependency>
-
- <dependency>
- <groupId>org.jboss.arquillian</groupId>
- <artifactId>arquillian-junit</artifactId>
- <version>${arquillian.version}</version>
- <scope>test</scope>
- </dependency>
-
- <dependency>
- <groupId>org.jboss.arquillian.container</groupId>
- <artifactId>arquillian-weld-embedded</artifactId>
- <version>${arquillian.version}</version>
- <scope>test</scope>
- </dependency>
-
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <version>4.8.1</version>
- <scope>test</scope>
- </dependency>
-
- </dependencies>
- </dependencyManagement>
+ <developers>
+ <developer>
+ <name>Lincoln Baxter, III</name>
+ <email>lincolnbaxter(a)gmail.com</email>
+ <url>http://ocpsoft.com</url>
+ <organization>JBoss, by Red Hat</organization>
+ <organizationUrl>http://jboss.org</organizationUrl>
+ <timezone>EST</timezone>
+ <roles>
+ <role>Project Lead</role>
+ </roles>
+ </developer>
+ <developer>
+ <name>Ken Finnigan</name>
+ <timezone>GMT</timezone>
+ <roles>
+ <role>Project Lead</role>
+ </roles>
+ </developer>
+ </developers>
<scm>
<connection>scm:svn:http://anonsvn.jboss.org/repos/seam/modules/international/trunk</connection>
@@ -91,4 +99,17 @@
<url>http://fisheye.jboss.org/browse/Seam/modules/international/trunk</url>
</scm>
-</project>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <version>2.0.2</version>
+ <configuration>
+ <source>1.6</source>
+ <target>1.6</target>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+</project>
\ No newline at end of file
16 years
Seam SVN: r12419 - in modules/faces/trunk/impl/src: test/resources/org/jboss/seam/faces/context/conversation and 1 other directory.
by seam-commits@lists.jboss.org
Author: nickarls
Date: 2010-04-08 06:19:56 -0400 (Thu, 08 Apr 2010)
New Revision: 12419
Modified:
modules/faces/trunk/impl/src/main/resources/META-INF/beans.xml
modules/faces/trunk/impl/src/main/resources/META-INF/faces-config.xml
modules/faces/trunk/impl/src/main/resources/META-INF/seam-faces.taglib.xml
modules/faces/trunk/impl/src/test/resources/org/jboss/seam/faces/context/conversation/ConversationBoundaryInterceptorTest-beans.xml
Log:
oops
Modified: modules/faces/trunk/impl/src/main/resources/META-INF/beans.xml
===================================================================
--- modules/faces/trunk/impl/src/main/resources/META-INF/beans.xml 2010-04-08 10:19:31 UTC (rev 12418)
+++ modules/faces/trunk/impl/src/main/resources/META-INF/beans.xml 2010-04-08 10:19:56 UTC (rev 12419)
@@ -1,6 +1,6 @@
<!--
JBoss, Home of Professional Open Source
-Copyright ${year}, Red Hat, Inc., and individual contributors
+Copyright 2010, Red Hat, Inc., and individual contributors
by the @authors tag. See the copyright.txt in the distribution for a
full listing of individual contributors.
Modified: modules/faces/trunk/impl/src/main/resources/META-INF/faces-config.xml
===================================================================
--- modules/faces/trunk/impl/src/main/resources/META-INF/faces-config.xml 2010-04-08 10:19:31 UTC (rev 12418)
+++ modules/faces/trunk/impl/src/main/resources/META-INF/faces-config.xml 2010-04-08 10:19:56 UTC (rev 12419)
@@ -1,6 +1,6 @@
<!--
JBoss, Home of Professional Open Source
-Copyright ${year}, Red Hat, Inc., and individual contributors
+Copyright 2010, Red Hat, Inc., and individual contributors
by the @authors tag. See the copyright.txt in the distribution for a
full listing of individual contributors.
Modified: modules/faces/trunk/impl/src/main/resources/META-INF/seam-faces.taglib.xml
===================================================================
--- modules/faces/trunk/impl/src/main/resources/META-INF/seam-faces.taglib.xml 2010-04-08 10:19:31 UTC (rev 12418)
+++ modules/faces/trunk/impl/src/main/resources/META-INF/seam-faces.taglib.xml 2010-04-08 10:19:56 UTC (rev 12419)
@@ -1,6 +1,6 @@
<!--
JBoss, Home of Professional Open Source
-Copyright ${year}, Red Hat, Inc., and individual contributors
+Copyright 2010, Red Hat, Inc., and individual contributors
by the @authors tag. See the copyright.txt in the distribution for a
full listing of individual contributors.
Modified: modules/faces/trunk/impl/src/test/resources/org/jboss/seam/faces/context/conversation/ConversationBoundaryInterceptorTest-beans.xml
===================================================================
--- modules/faces/trunk/impl/src/test/resources/org/jboss/seam/faces/context/conversation/ConversationBoundaryInterceptorTest-beans.xml 2010-04-08 10:19:31 UTC (rev 12418)
+++ modules/faces/trunk/impl/src/test/resources/org/jboss/seam/faces/context/conversation/ConversationBoundaryInterceptorTest-beans.xml 2010-04-08 10:19:56 UTC (rev 12419)
@@ -1,6 +1,6 @@
<!--
JBoss, Home of Professional Open Source
-Copyright ${year}, Red Hat, Inc., and individual contributors
+Copyright 2010, Red Hat, Inc., and individual contributors
by the @authors tag. See the copyright.txt in the distribution for a
full listing of individual contributors.
16 years
Seam SVN: r12418 - modules/servlet/trunk/src/main/resources/META-INF.
by seam-commits@lists.jboss.org
Author: nickarls
Date: 2010-04-08 06:19:31 -0400 (Thu, 08 Apr 2010)
New Revision: 12418
Modified:
modules/servlet/trunk/src/main/resources/META-INF/beans.xml
Log:
oops
Modified: modules/servlet/trunk/src/main/resources/META-INF/beans.xml
===================================================================
--- modules/servlet/trunk/src/main/resources/META-INF/beans.xml 2010-04-08 09:43:36 UTC (rev 12417)
+++ modules/servlet/trunk/src/main/resources/META-INF/beans.xml 2010-04-08 10:19:31 UTC (rev 12418)
@@ -1,6 +1,6 @@
<!--
JBoss, Home of Professional Open Source
-Copyright ${year}, Red Hat, Inc., and individual contributors
+Copyright 2010, Red Hat, Inc., and individual contributors
by the @authors tag. See the copyright.txt in the distribution for a
full listing of individual contributors.
16 years
Seam SVN: r12417 - in modules/faces/trunk: api/src/main/java/org/jboss/seam/faces/context/conversation and 19 other directories.
by seam-commits@lists.jboss.org
Author: nickarls
Date: 2010-04-08 05:43:36 -0400 (Thu, 08 Apr 2010)
New Revision: 12417
Modified:
modules/faces/trunk/api/src/main/java/javax/faces/bean/FlashScoped.java
modules/faces/trunk/api/src/main/java/org/jboss/seam/faces/context/conversation/Begin.java
modules/faces/trunk/api/src/main/java/org/jboss/seam/faces/context/conversation/ConversationBoundary.java
modules/faces/trunk/api/src/main/java/org/jboss/seam/faces/context/conversation/End.java
modules/faces/trunk/api/src/main/java/org/jboss/seam/faces/event/qualifier/After.java
modules/faces/trunk/api/src/main/java/org/jboss/seam/faces/event/qualifier/ApplyRequestValues.java
modules/faces/trunk/api/src/main/java/org/jboss/seam/faces/event/qualifier/Before.java
modules/faces/trunk/api/src/main/java/org/jboss/seam/faces/event/qualifier/InvokeApplication.java
modules/faces/trunk/api/src/main/java/org/jboss/seam/faces/event/qualifier/ProcessValidations.java
modules/faces/trunk/api/src/main/java/org/jboss/seam/faces/event/qualifier/RenderResponse.java
modules/faces/trunk/api/src/main/java/org/jboss/seam/faces/event/qualifier/RestoreView.java
modules/faces/trunk/api/src/main/java/org/jboss/seam/faces/event/qualifier/UpdateModelValues.java
modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/SeamFacesException.java
modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/cdi/BeanManagerAware.java
modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/component/MethodBindingMethodExpressionAdapter.java
modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/component/UIViewAction.java
modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/context/FacesAnnotationsAdapterExtension.java
modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/context/FlashScopedContext.java
modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/context/FlashScopedExtension.java
modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/context/ViewScopedExtension.java
modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/context/conversation/ConversationBoundaryInterceptor.java
modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/context/conversation/NamedConversationAliasProducer.java
modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/environment/ExternalContextProducer.java
modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/environment/FacesContextProducer.java
modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/environment/NavigationHandlerProducer.java
modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/event/DelegatingPhaseListener.java
modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/event/DelegatingSystemEventListener.java
modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/event/PhaseEventBridge.java
modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/event/SystemEventBridge.java
modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/international/FacesLocaleResolver.java
modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/persistence/TransactionManager.java
modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/util/Annotations.java
modules/faces/trunk/impl/src/main/resources/META-INF/beans.xml
modules/faces/trunk/impl/src/main/resources/META-INF/faces-config.xml
modules/faces/trunk/impl/src/main/resources/META-INF/seam-faces.taglib.xml
modules/faces/trunk/impl/src/test/java/org/jboss/seam/faces/MockConversation.java
modules/faces/trunk/impl/src/test/java/org/jboss/seam/faces/MockLogger.java
modules/faces/trunk/impl/src/test/java/org/jboss/seam/faces/context/FacesAnnotationsAdapterExtensionTest.java
modules/faces/trunk/impl/src/test/java/org/jboss/seam/faces/context/ImproperlyAnnotatedBean.java
modules/faces/trunk/impl/src/test/java/org/jboss/seam/faces/context/conversation/ConversationBoundaryInterceptorTest.java
modules/faces/trunk/impl/src/test/java/org/jboss/seam/faces/context/conversation/ConversationalBean.java
modules/faces/trunk/impl/src/test/java/org/jboss/seam/faces/environment/ExternalContextProducerTest.java
modules/faces/trunk/impl/src/test/java/org/jboss/seam/faces/environment/FacesContextProducerTest.java
modules/faces/trunk/impl/src/test/java/org/jboss/seam/faces/environment/MockExternalContext.java
modules/faces/trunk/impl/src/test/java/org/jboss/seam/faces/environment/MockFacesContext.java
modules/faces/trunk/impl/src/test/java/org/jboss/seam/faces/event/PhaseEventBridgeTest.java
modules/faces/trunk/impl/src/test/java/org/jboss/seam/faces/event/PhaseEventObserver.java
modules/faces/trunk/impl/src/test/java/org/jboss/seam/faces/event/SystemEventBridgeTest.java
modules/faces/trunk/impl/src/test/java/org/jboss/seam/faces/event/SystemEventObserver.java
modules/faces/trunk/impl/src/test/java/org/jboss/seam/faces/util/AnnotationTestObject.java
modules/faces/trunk/impl/src/test/java/org/jboss/seam/faces/util/AnnotationsTest.java
modules/faces/trunk/impl/src/test/resources/org/jboss/seam/faces/context/conversation/ConversationBoundaryInterceptorTest-beans.xml
Log:
Update license headers
Modified: modules/faces/trunk/api/src/main/java/javax/faces/bean/FlashScoped.java
===================================================================
--- modules/faces/trunk/api/src/main/java/javax/faces/bean/FlashScoped.java 2010-04-08 09:41:44 UTC (rev 12416)
+++ modules/faces/trunk/api/src/main/java/javax/faces/bean/FlashScoped.java 2010-04-08 09:43:36 UTC (rev 12417)
@@ -1,6 +1,6 @@
/*
- * JBoss, Community-driven Open Source Middleware
- * Copyright 2010, JBoss by Red Hat, Inc., and individual contributors
+ * JBoss, Home of Professional Open Source
+ * Copyright 2010, Red Hat, Inc., and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: modules/faces/trunk/api/src/main/java/org/jboss/seam/faces/context/conversation/Begin.java
===================================================================
--- modules/faces/trunk/api/src/main/java/org/jboss/seam/faces/context/conversation/Begin.java 2010-04-08 09:41:44 UTC (rev 12416)
+++ modules/faces/trunk/api/src/main/java/org/jboss/seam/faces/context/conversation/Begin.java 2010-04-08 09:43:36 UTC (rev 12417)
@@ -1,6 +1,6 @@
/*
- * JBoss, Community-driven Open Source Middleware
- * Copyright 2010, JBoss by Red Hat, Inc., and individual contributors
+ * JBoss, Home of Professional Open Source
+ * Copyright 2010, Red Hat, Inc., and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: modules/faces/trunk/api/src/main/java/org/jboss/seam/faces/context/conversation/ConversationBoundary.java
===================================================================
--- modules/faces/trunk/api/src/main/java/org/jboss/seam/faces/context/conversation/ConversationBoundary.java 2010-04-08 09:41:44 UTC (rev 12416)
+++ modules/faces/trunk/api/src/main/java/org/jboss/seam/faces/context/conversation/ConversationBoundary.java 2010-04-08 09:43:36 UTC (rev 12417)
@@ -1,6 +1,6 @@
/*
- * JBoss, Community-driven Open Source Middleware
- * Copyright 2010, JBoss by Red Hat, Inc., and individual contributors
+ * JBoss, Home of Professional Open Source
+ * Copyright 2010, Red Hat, Inc., and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: modules/faces/trunk/api/src/main/java/org/jboss/seam/faces/context/conversation/End.java
===================================================================
--- modules/faces/trunk/api/src/main/java/org/jboss/seam/faces/context/conversation/End.java 2010-04-08 09:41:44 UTC (rev 12416)
+++ modules/faces/trunk/api/src/main/java/org/jboss/seam/faces/context/conversation/End.java 2010-04-08 09:43:36 UTC (rev 12417)
@@ -1,6 +1,6 @@
/*
- * JBoss, Community-driven Open Source Middleware
- * Copyright 2010, JBoss by Red Hat, Inc., and individual contributors
+ * JBoss, Home of Professional Open Source
+ * Copyright 2010, Red Hat, Inc., and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: modules/faces/trunk/api/src/main/java/org/jboss/seam/faces/event/qualifier/After.java
===================================================================
--- modules/faces/trunk/api/src/main/java/org/jboss/seam/faces/event/qualifier/After.java 2010-04-08 09:41:44 UTC (rev 12416)
+++ modules/faces/trunk/api/src/main/java/org/jboss/seam/faces/event/qualifier/After.java 2010-04-08 09:43:36 UTC (rev 12417)
@@ -1,6 +1,6 @@
/*
- * JBoss, Community-driven Open Source Middleware
- * Copyright 2010, JBoss by Red Hat, Inc., and individual contributors
+ * JBoss, Home of Professional Open Source
+ * Copyright 2010, Red Hat, Inc., and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: modules/faces/trunk/api/src/main/java/org/jboss/seam/faces/event/qualifier/ApplyRequestValues.java
===================================================================
--- modules/faces/trunk/api/src/main/java/org/jboss/seam/faces/event/qualifier/ApplyRequestValues.java 2010-04-08 09:41:44 UTC (rev 12416)
+++ modules/faces/trunk/api/src/main/java/org/jboss/seam/faces/event/qualifier/ApplyRequestValues.java 2010-04-08 09:43:36 UTC (rev 12417)
@@ -1,6 +1,6 @@
/*
- * JBoss, Community-driven Open Source Middleware
- * Copyright 2010, JBoss by Red Hat, Inc., and individual contributors
+ * JBoss, Home of Professional Open Source
+ * Copyright 2010, Red Hat, Inc., and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: modules/faces/trunk/api/src/main/java/org/jboss/seam/faces/event/qualifier/Before.java
===================================================================
--- modules/faces/trunk/api/src/main/java/org/jboss/seam/faces/event/qualifier/Before.java 2010-04-08 09:41:44 UTC (rev 12416)
+++ modules/faces/trunk/api/src/main/java/org/jboss/seam/faces/event/qualifier/Before.java 2010-04-08 09:43:36 UTC (rev 12417)
@@ -1,6 +1,6 @@
/*
- * JBoss, Community-driven Open Source Middleware
- * Copyright 2010, JBoss by Red Hat, Inc., and individual contributors
+ * JBoss, Home of Professional Open Source
+ * Copyright 2010, Red Hat, Inc., and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: modules/faces/trunk/api/src/main/java/org/jboss/seam/faces/event/qualifier/InvokeApplication.java
===================================================================
--- modules/faces/trunk/api/src/main/java/org/jboss/seam/faces/event/qualifier/InvokeApplication.java 2010-04-08 09:41:44 UTC (rev 12416)
+++ modules/faces/trunk/api/src/main/java/org/jboss/seam/faces/event/qualifier/InvokeApplication.java 2010-04-08 09:43:36 UTC (rev 12417)
@@ -1,6 +1,6 @@
/*
- * JBoss, Community-driven Open Source Middleware
- * Copyright 2010, JBoss by Red Hat, Inc., and individual contributors
+ * JBoss, Home of Professional Open Source
+ * Copyright 2010, Red Hat, Inc., and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: modules/faces/trunk/api/src/main/java/org/jboss/seam/faces/event/qualifier/ProcessValidations.java
===================================================================
--- modules/faces/trunk/api/src/main/java/org/jboss/seam/faces/event/qualifier/ProcessValidations.java 2010-04-08 09:41:44 UTC (rev 12416)
+++ modules/faces/trunk/api/src/main/java/org/jboss/seam/faces/event/qualifier/ProcessValidations.java 2010-04-08 09:43:36 UTC (rev 12417)
@@ -1,6 +1,6 @@
/*
- * JBoss, Community-driven Open Source Middleware
- * Copyright 2010, JBoss by Red Hat, Inc., and individual contributors
+ * JBoss, Home of Professional Open Source
+ * Copyright 2010, Red Hat, Inc., and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: modules/faces/trunk/api/src/main/java/org/jboss/seam/faces/event/qualifier/RenderResponse.java
===================================================================
--- modules/faces/trunk/api/src/main/java/org/jboss/seam/faces/event/qualifier/RenderResponse.java 2010-04-08 09:41:44 UTC (rev 12416)
+++ modules/faces/trunk/api/src/main/java/org/jboss/seam/faces/event/qualifier/RenderResponse.java 2010-04-08 09:43:36 UTC (rev 12417)
@@ -1,6 +1,6 @@
/*
- * JBoss, Community-driven Open Source Middleware
- * Copyright 2010, JBoss by Red Hat, Inc., and individual contributors
+ * JBoss, Home of Professional Open Source
+ * Copyright 2010, Red Hat, Inc., and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: modules/faces/trunk/api/src/main/java/org/jboss/seam/faces/event/qualifier/RestoreView.java
===================================================================
--- modules/faces/trunk/api/src/main/java/org/jboss/seam/faces/event/qualifier/RestoreView.java 2010-04-08 09:41:44 UTC (rev 12416)
+++ modules/faces/trunk/api/src/main/java/org/jboss/seam/faces/event/qualifier/RestoreView.java 2010-04-08 09:43:36 UTC (rev 12417)
@@ -1,6 +1,6 @@
/*
- * JBoss, Community-driven Open Source Middleware
- * Copyright 2010, JBoss by Red Hat, Inc., and individual contributors
+ * JBoss, Home of Professional Open Source
+ * Copyright 2010, Red Hat, Inc., and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: modules/faces/trunk/api/src/main/java/org/jboss/seam/faces/event/qualifier/UpdateModelValues.java
===================================================================
--- modules/faces/trunk/api/src/main/java/org/jboss/seam/faces/event/qualifier/UpdateModelValues.java 2010-04-08 09:41:44 UTC (rev 12416)
+++ modules/faces/trunk/api/src/main/java/org/jboss/seam/faces/event/qualifier/UpdateModelValues.java 2010-04-08 09:43:36 UTC (rev 12417)
@@ -1,6 +1,6 @@
/*
- * JBoss, Community-driven Open Source Middleware
- * Copyright 2010, JBoss by Red Hat, Inc., and individual contributors
+ * JBoss, Home of Professional Open Source
+ * Copyright 2010, Red Hat, Inc., and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/SeamFacesException.java
===================================================================
--- modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/SeamFacesException.java 2010-04-08 09:41:44 UTC (rev 12416)
+++ modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/SeamFacesException.java 2010-04-08 09:43:36 UTC (rev 12417)
@@ -1,6 +1,6 @@
/*
- * JBoss, Community-driven Open Source Middleware
- * Copyright 2010, JBoss by Red Hat, Inc., and individual contributors
+ * JBoss, Home of Professional Open Source
+ * Copyright 2010, Red Hat, Inc., and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/cdi/BeanManagerAware.java
===================================================================
--- modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/cdi/BeanManagerAware.java 2010-04-08 09:41:44 UTC (rev 12416)
+++ modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/cdi/BeanManagerAware.java 2010-04-08 09:43:36 UTC (rev 12417)
@@ -1,6 +1,6 @@
/*
- * JBoss, Community-driven Open Source Middleware
- * Copyright 2010, JBoss by Red Hat, Inc., and individual contributors
+ * JBoss, Home of Professional Open Source
+ * Copyright 2010, Red Hat, Inc., and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/component/MethodBindingMethodExpressionAdapter.java
===================================================================
--- modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/component/MethodBindingMethodExpressionAdapter.java 2010-04-08 09:41:44 UTC (rev 12416)
+++ modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/component/MethodBindingMethodExpressionAdapter.java 2010-04-08 09:43:36 UTC (rev 12417)
@@ -1,37 +1,23 @@
/*
- * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
+ * JBoss, Home of Professional Open Source
+ * Copyright 2010, Red Hat, Inc., and individual contributors
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
*
- * Copyright 1997-2007 Sun Microsystems, Inc. All rights reserved.
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
*
- * The contents of this file are subject to the terms of either the GNU
- * General Public License Version 2 only ("GPL") or the Common Development
- * and Distribution License("CDDL") (collectively, the "License"). You
- * may not use this file except in compliance with the License. You can obtain
- * a copy of the License at https://glassfish.dev.java.net/public/CDDL+GPL.html
- * or glassfish/bootstrap/legal/LICENSE.txt. See the License for the specific
- * language governing permissions and limitations under the License.
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
*
- * When distributing the software, include this License Header Notice in each
- * file and include the License file at glassfish/bootstrap/legal/LICENSE.txt.
- * Sun designates this particular file as subject to the "Classpath" exception
- * as provided by Sun in the GPL Version 2 section of the License file that
- * accompanied this code. If applicable, add the following below the License
- * Header, with the fields enclosed by brackets [] replaced by your own
- * identifying information: "Portions Copyrighted [year]
- * [name of copyright owner]"
- *
- * Contributor(s):
- *
- * If you wish your version of this file to be governed by only the CDDL or
- * only the GPL Version 2, indicate your decision by adding "[Contributor]
- * elects to include this software in this distribution under the [CDDL or GPL
- * Version 2] license." If you don't indicate a single choice of license, a
- * recipient has the option to distribute your version of this file under
- * either the CDDL, the GPL Version 2 or to extend the choice of license to
- * its licensees as provided above. However, if you add GPL Version 2 code
- * and therefore, elected the GPL Version 2 license, then the option applies
- * only if the new code is made subject to such option by the copyright
- * holder.
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package org.jboss.seam.faces.component;
Modified: modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/component/UIViewAction.java
===================================================================
--- modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/component/UIViewAction.java 2010-04-08 09:41:44 UTC (rev 12416)
+++ modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/component/UIViewAction.java 2010-04-08 09:43:36 UTC (rev 12417)
@@ -1,6 +1,6 @@
/*
- * JBoss, Community-driven Open Source Middleware
- * Copyright 2010, JBoss by Red Hat, Inc., and individual contributors
+ * JBoss, Home of Professional Open Source
+ * Copyright 2010, Red Hat, Inc., and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/context/FacesAnnotationsAdapterExtension.java
===================================================================
--- modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/context/FacesAnnotationsAdapterExtension.java 2010-04-08 09:41:44 UTC (rev 12416)
+++ modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/context/FacesAnnotationsAdapterExtension.java 2010-04-08 09:43:36 UTC (rev 12417)
@@ -1,6 +1,6 @@
/*
- * JBoss, Community-driven Open Source Middleware
- * Copyright 2010, JBoss by Red Hat, Inc., and individual contributors
+ * JBoss, Home of Professional Open Source
+ * Copyright 2010, Red Hat, Inc., and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/context/FlashScopedContext.java
===================================================================
--- modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/context/FlashScopedContext.java 2010-04-08 09:41:44 UTC (rev 12416)
+++ modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/context/FlashScopedContext.java 2010-04-08 09:43:36 UTC (rev 12417)
@@ -1,6 +1,6 @@
/*
- * JBoss, Community-driven Open Source Middleware
- * Copyright 2010, JBoss by Red Hat, Inc., and individual contributors
+ * JBoss, Home of Professional Open Source
+ * Copyright 2010, Red Hat, Inc., and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/context/FlashScopedExtension.java
===================================================================
--- modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/context/FlashScopedExtension.java 2010-04-08 09:41:44 UTC (rev 12416)
+++ modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/context/FlashScopedExtension.java 2010-04-08 09:43:36 UTC (rev 12417)
@@ -1,6 +1,6 @@
/*
- * JBoss, Community-driven Open Source Middleware
- * Copyright 2010, JBoss by Red Hat, Inc., and individual contributors
+ * JBoss, Home of Professional Open Source
+ * Copyright 2010, Red Hat, Inc., and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/context/ViewScopedExtension.java
===================================================================
--- modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/context/ViewScopedExtension.java 2010-04-08 09:41:44 UTC (rev 12416)
+++ modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/context/ViewScopedExtension.java 2010-04-08 09:43:36 UTC (rev 12417)
@@ -1,6 +1,6 @@
/*
- * JBoss, Community-driven Open Source Middleware
- * Copyright 2010, JBoss by Red Hat, Inc., and individual contributors
+ * JBoss, Home of Professional Open Source
+ * Copyright 2010, Red Hat, Inc., and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/context/conversation/ConversationBoundaryInterceptor.java
===================================================================
--- modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/context/conversation/ConversationBoundaryInterceptor.java 2010-04-08 09:41:44 UTC (rev 12416)
+++ modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/context/conversation/ConversationBoundaryInterceptor.java 2010-04-08 09:43:36 UTC (rev 12417)
@@ -1,6 +1,6 @@
/*
- * JBoss, Community-driven Open Source Middleware
- * Copyright 2010, JBoss by Red Hat, Inc., and individual contributors
+ * JBoss, Home of Professional Open Source
+ * Copyright 2010, Red Hat, Inc., and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/context/conversation/NamedConversationAliasProducer.java
===================================================================
--- modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/context/conversation/NamedConversationAliasProducer.java 2010-04-08 09:41:44 UTC (rev 12416)
+++ modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/context/conversation/NamedConversationAliasProducer.java 2010-04-08 09:43:36 UTC (rev 12417)
@@ -1,6 +1,6 @@
/*
- * JBoss, Community-driven Open Source Middleware
- * Copyright 2010, JBoss by Red Hat, Inc., and individual contributors
+ * JBoss, Home of Professional Open Source
+ * Copyright 2010, Red Hat, Inc., and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/environment/ExternalContextProducer.java
===================================================================
--- modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/environment/ExternalContextProducer.java 2010-04-08 09:41:44 UTC (rev 12416)
+++ modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/environment/ExternalContextProducer.java 2010-04-08 09:43:36 UTC (rev 12417)
@@ -1,6 +1,6 @@
/*
- * JBoss, Community-driven Open Source Middleware
- * Copyright 2010, JBoss by Red Hat, Inc., and individual contributors
+ * JBoss, Home of Professional Open Source
+ * Copyright 2010, Red Hat, Inc., and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/environment/FacesContextProducer.java
===================================================================
--- modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/environment/FacesContextProducer.java 2010-04-08 09:41:44 UTC (rev 12416)
+++ modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/environment/FacesContextProducer.java 2010-04-08 09:43:36 UTC (rev 12417)
@@ -1,6 +1,6 @@
/*
- * JBoss, Community-driven Open Source Middleware
- * Copyright 2010, JBoss by Red Hat, Inc., and individual contributors
+ * JBoss, Home of Professional Open Source
+ * Copyright 2010, Red Hat, Inc., and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/environment/NavigationHandlerProducer.java
===================================================================
--- modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/environment/NavigationHandlerProducer.java 2010-04-08 09:41:44 UTC (rev 12416)
+++ modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/environment/NavigationHandlerProducer.java 2010-04-08 09:43:36 UTC (rev 12417)
@@ -1,6 +1,6 @@
/*
- * JBoss, Community-driven Open Source Middleware
- * Copyright 2010, JBoss by Red Hat, Inc., and individual contributors
+ * JBoss, Home of Professional Open Source
+ * Copyright 2010, Red Hat, Inc., and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/event/DelegatingPhaseListener.java
===================================================================
--- modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/event/DelegatingPhaseListener.java 2010-04-08 09:41:44 UTC (rev 12416)
+++ modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/event/DelegatingPhaseListener.java 2010-04-08 09:43:36 UTC (rev 12417)
@@ -1,6 +1,6 @@
/*
- * JBoss, Community-driven Open Source Middleware
- * Copyright 2010, JBoss by Red Hat, Inc., and individual contributors
+ * JBoss, Home of Professional Open Source
+ * Copyright 2010, Red Hat, Inc., and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/event/DelegatingSystemEventListener.java
===================================================================
--- modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/event/DelegatingSystemEventListener.java 2010-04-08 09:41:44 UTC (rev 12416)
+++ modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/event/DelegatingSystemEventListener.java 2010-04-08 09:43:36 UTC (rev 12417)
@@ -1,6 +1,6 @@
/*
- * JBoss, Community-driven Open Source Middleware
- * Copyright 2010, JBoss by Red Hat, Inc., and individual contributors
+ * JBoss, Home of Professional Open Source
+ * Copyright 2010, Red Hat, Inc., and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/event/PhaseEventBridge.java
===================================================================
--- modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/event/PhaseEventBridge.java 2010-04-08 09:41:44 UTC (rev 12416)
+++ modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/event/PhaseEventBridge.java 2010-04-08 09:43:36 UTC (rev 12417)
@@ -1,6 +1,6 @@
/*
- * JBoss, Community-driven Open Source Middleware
- * Copyright 2010, JBoss by Red Hat, Inc., and individual contributors
+ * JBoss, Home of Professional Open Source
+ * Copyright 2010, Red Hat, Inc., and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/event/SystemEventBridge.java
===================================================================
--- modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/event/SystemEventBridge.java 2010-04-08 09:41:44 UTC (rev 12416)
+++ modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/event/SystemEventBridge.java 2010-04-08 09:43:36 UTC (rev 12417)
@@ -1,6 +1,6 @@
/*
- * JBoss, Community-driven Open Source Middleware
- * Copyright 2010, JBoss by Red Hat, Inc., and individual contributors
+ * JBoss, Home of Professional Open Source
+ * Copyright 2010, Red Hat, Inc., and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/international/FacesLocaleResolver.java
===================================================================
--- modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/international/FacesLocaleResolver.java 2010-04-08 09:41:44 UTC (rev 12416)
+++ modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/international/FacesLocaleResolver.java 2010-04-08 09:43:36 UTC (rev 12417)
@@ -1,6 +1,6 @@
/*
- * JBoss, Community-driven Open Source Middleware
- * Copyright 2010, JBoss by Red Hat, Inc., and individual contributors
+ * JBoss, Home of Professional Open Source
+ * Copyright 2010, Red Hat, Inc., and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/persistence/TransactionManager.java
===================================================================
--- modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/persistence/TransactionManager.java 2010-04-08 09:41:44 UTC (rev 12416)
+++ modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/persistence/TransactionManager.java 2010-04-08 09:43:36 UTC (rev 12417)
@@ -1,6 +1,6 @@
/*
- * JBoss, Community-driven Open Source Middleware
- * Copyright 2010, JBoss by Red Hat, Inc., and individual contributors
+ * JBoss, Home of Professional Open Source
+ * Copyright 2010, Red Hat, Inc., and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/util/Annotations.java
===================================================================
--- modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/util/Annotations.java 2010-04-08 09:41:44 UTC (rev 12416)
+++ modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/util/Annotations.java 2010-04-08 09:43:36 UTC (rev 12417)
@@ -1,6 +1,6 @@
/*
- * JBoss, Community-driven Open Source Middleware
- * Copyright 2010, JBoss by Red Hat, Inc., and individual contributors
+ * JBoss, Home of Professional Open Source
+ * Copyright 2010, Red Hat, Inc., and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: modules/faces/trunk/impl/src/main/resources/META-INF/beans.xml
===================================================================
--- modules/faces/trunk/impl/src/main/resources/META-INF/beans.xml 2010-04-08 09:41:44 UTC (rev 12416)
+++ modules/faces/trunk/impl/src/main/resources/META-INF/beans.xml 2010-04-08 09:43:36 UTC (rev 12417)
@@ -1,3 +1,24 @@
+<!--
+JBoss, Home of Professional Open Source
+Copyright ${year}, Red Hat, Inc., and individual contributors
+by the @authors tag. See the copyright.txt in the distribution for a
+full listing of individual contributors.
+
+This is free software; you can redistribute it and/or modify it
+under the terms of the GNU Lesser General Public License as
+published by the Free Software Foundation; either version 2.1 of
+the License, or (at your option) any later version.
+
+This software is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+Lesser General Public License for more details.
+
+You should have received a copy of the GNU Lesser General Public
+License along with this software; if not, write to the Free
+Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+02110-1301 USA, or see the FSF site: http://www.fsf.org.
+-->
<beans xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="
http://java.sun.com/xml/ns/javaee
Modified: modules/faces/trunk/impl/src/main/resources/META-INF/faces-config.xml
===================================================================
--- modules/faces/trunk/impl/src/main/resources/META-INF/faces-config.xml 2010-04-08 09:41:44 UTC (rev 12416)
+++ modules/faces/trunk/impl/src/main/resources/META-INF/faces-config.xml 2010-04-08 09:43:36 UTC (rev 12417)
@@ -1,3 +1,24 @@
+<!--
+JBoss, Home of Professional Open Source
+Copyright ${year}, Red Hat, Inc., and individual contributors
+by the @authors tag. See the copyright.txt in the distribution for a
+full listing of individual contributors.
+
+This is free software; you can redistribute it and/or modify it
+under the terms of the GNU Lesser General Public License as
+published by the Free Software Foundation; either version 2.1 of
+the License, or (at your option) any later version.
+
+This software is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+Lesser General Public License for more details.
+
+You should have received a copy of the GNU Lesser General Public
+License along with this software; if not, write to the Free
+Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+02110-1301 USA, or see the FSF site: http://www.fsf.org.
+-->
<?xml version="1.0" encoding="UTF-8"?>
<faces-config xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
Modified: modules/faces/trunk/impl/src/main/resources/META-INF/seam-faces.taglib.xml
===================================================================
--- modules/faces/trunk/impl/src/main/resources/META-INF/seam-faces.taglib.xml 2010-04-08 09:41:44 UTC (rev 12416)
+++ modules/faces/trunk/impl/src/main/resources/META-INF/seam-faces.taglib.xml 2010-04-08 09:43:36 UTC (rev 12417)
@@ -1,3 +1,24 @@
+<!--
+JBoss, Home of Professional Open Source
+Copyright ${year}, Red Hat, Inc., and individual contributors
+by the @authors tag. See the copyright.txt in the distribution for a
+full listing of individual contributors.
+
+This is free software; you can redistribute it and/or modify it
+under the terms of the GNU Lesser General Public License as
+published by the Free Software Foundation; either version 2.1 of
+the License, or (at your option) any later version.
+
+This software is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+Lesser General Public License for more details.
+
+You should have received a copy of the GNU Lesser General Public
+License along with this software; if not, write to the Free
+Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+02110-1301 USA, or see the FSF site: http://www.fsf.org.
+-->
<facelet-taglib xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-facelettaglibary_2_0.xsd"
Modified: modules/faces/trunk/impl/src/test/java/org/jboss/seam/faces/MockConversation.java
===================================================================
--- modules/faces/trunk/impl/src/test/java/org/jboss/seam/faces/MockConversation.java 2010-04-08 09:41:44 UTC (rev 12416)
+++ modules/faces/trunk/impl/src/test/java/org/jboss/seam/faces/MockConversation.java 2010-04-08 09:43:36 UTC (rev 12417)
@@ -1,6 +1,6 @@
/*
- * JBoss, Community-driven Open Source Middleware
- * Copyright 2010, JBoss by Red Hat, Inc., and individual contributors
+ * JBoss, Home of Professional Open Source
+ * Copyright 2010, Red Hat, Inc., and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
@@ -18,7 +18,7 @@
* License along with this software; if not, write to the Free
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
- */
+ */
package org.jboss.seam.faces;
import javax.enterprise.context.Conversation;
Modified: modules/faces/trunk/impl/src/test/java/org/jboss/seam/faces/MockLogger.java
===================================================================
--- modules/faces/trunk/impl/src/test/java/org/jboss/seam/faces/MockLogger.java 2010-04-08 09:41:44 UTC (rev 12416)
+++ modules/faces/trunk/impl/src/test/java/org/jboss/seam/faces/MockLogger.java 2010-04-08 09:43:36 UTC (rev 12417)
@@ -1,6 +1,6 @@
/*
- * JBoss, Community-driven Open Source Middleware
- * Copyright 2010, JBoss by Red Hat, Inc., and individual contributors
+ * JBoss, Home of Professional Open Source
+ * Copyright 2010, Red Hat, Inc., and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
@@ -18,7 +18,7 @@
* License along with this software; if not, write to the Free
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
- */
+ */
package org.jboss.seam.faces;
import org.slf4j.Logger;
Modified: modules/faces/trunk/impl/src/test/java/org/jboss/seam/faces/context/FacesAnnotationsAdapterExtensionTest.java
===================================================================
--- modules/faces/trunk/impl/src/test/java/org/jboss/seam/faces/context/FacesAnnotationsAdapterExtensionTest.java 2010-04-08 09:41:44 UTC (rev 12416)
+++ modules/faces/trunk/impl/src/test/java/org/jboss/seam/faces/context/FacesAnnotationsAdapterExtensionTest.java 2010-04-08 09:43:36 UTC (rev 12417)
@@ -1,6 +1,6 @@
/*
- * JBoss, Community-driven Open Source Middleware
- * Copyright 2010, JBoss by Red Hat, Inc., and individual contributors
+ * JBoss, Home of Professional Open Source
+ * Copyright 2010, Red Hat, Inc., and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
@@ -18,7 +18,7 @@
* License along with this software; if not, write to the Free
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
- */
+ */
package org.jboss.seam.faces.context;
import static org.junit.Assert.assertTrue;
Modified: modules/faces/trunk/impl/src/test/java/org/jboss/seam/faces/context/ImproperlyAnnotatedBean.java
===================================================================
--- modules/faces/trunk/impl/src/test/java/org/jboss/seam/faces/context/ImproperlyAnnotatedBean.java 2010-04-08 09:41:44 UTC (rev 12416)
+++ modules/faces/trunk/impl/src/test/java/org/jboss/seam/faces/context/ImproperlyAnnotatedBean.java 2010-04-08 09:43:36 UTC (rev 12417)
@@ -1,6 +1,6 @@
/*
- * JBoss, Community-driven Open Source Middleware
- * Copyright 2010, JBoss by Red Hat, Inc., and individual contributors
+ * JBoss, Home of Professional Open Source
+ * Copyright 2010, Red Hat, Inc., and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
@@ -18,7 +18,7 @@
* License along with this software; if not, write to the Free
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
- */
+ */
package org.jboss.seam.faces.context;
import javax.faces.bean.RequestScoped;
Modified: modules/faces/trunk/impl/src/test/java/org/jboss/seam/faces/context/conversation/ConversationBoundaryInterceptorTest.java
===================================================================
--- modules/faces/trunk/impl/src/test/java/org/jboss/seam/faces/context/conversation/ConversationBoundaryInterceptorTest.java 2010-04-08 09:41:44 UTC (rev 12416)
+++ modules/faces/trunk/impl/src/test/java/org/jboss/seam/faces/context/conversation/ConversationBoundaryInterceptorTest.java 2010-04-08 09:43:36 UTC (rev 12417)
@@ -1,6 +1,6 @@
/*
- * JBoss, Community-driven Open Source Middleware
- * Copyright 2010, JBoss by Red Hat, Inc., and individual contributors
+ * JBoss, Home of Professional Open Source
+ * Copyright 2010, Red Hat, Inc., and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
@@ -18,7 +18,7 @@
* License along with this software; if not, write to the Free
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
- */
+ */
package org.jboss.seam.faces.context.conversation;
import static org.junit.Assert.assertEquals;
Modified: modules/faces/trunk/impl/src/test/java/org/jboss/seam/faces/context/conversation/ConversationalBean.java
===================================================================
--- modules/faces/trunk/impl/src/test/java/org/jboss/seam/faces/context/conversation/ConversationalBean.java 2010-04-08 09:41:44 UTC (rev 12416)
+++ modules/faces/trunk/impl/src/test/java/org/jboss/seam/faces/context/conversation/ConversationalBean.java 2010-04-08 09:43:36 UTC (rev 12417)
@@ -1,6 +1,6 @@
/*
- * JBoss, Community-driven Open Source Middleware
- * Copyright 2010, JBoss by Red Hat, Inc., and individual contributors
+ * JBoss, Home of Professional Open Source
+ * Copyright 2010, Red Hat, Inc., and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
@@ -18,7 +18,7 @@
* License along with this software; if not, write to the Free
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
- */
+ */
package org.jboss.seam.faces.context.conversation;
import javax.enterprise.context.Conversation;
Modified: modules/faces/trunk/impl/src/test/java/org/jboss/seam/faces/environment/ExternalContextProducerTest.java
===================================================================
--- modules/faces/trunk/impl/src/test/java/org/jboss/seam/faces/environment/ExternalContextProducerTest.java 2010-04-08 09:41:44 UTC (rev 12416)
+++ modules/faces/trunk/impl/src/test/java/org/jboss/seam/faces/environment/ExternalContextProducerTest.java 2010-04-08 09:43:36 UTC (rev 12417)
@@ -1,6 +1,6 @@
/*
- * JBoss, Community-driven Open Source Middleware
- * Copyright 2010, JBoss by Red Hat, Inc., and individual contributors
+ * JBoss, Home of Professional Open Source
+ * Copyright 2010, Red Hat, Inc., and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
@@ -18,7 +18,7 @@
* License along with this software; if not, write to the Free
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
- */
+ */
package org.jboss.seam.faces.environment;
import javax.enterprise.context.ContextNotActiveException;
Modified: modules/faces/trunk/impl/src/test/java/org/jboss/seam/faces/environment/FacesContextProducerTest.java
===================================================================
--- modules/faces/trunk/impl/src/test/java/org/jboss/seam/faces/environment/FacesContextProducerTest.java 2010-04-08 09:41:44 UTC (rev 12416)
+++ modules/faces/trunk/impl/src/test/java/org/jboss/seam/faces/environment/FacesContextProducerTest.java 2010-04-08 09:43:36 UTC (rev 12417)
@@ -1,6 +1,6 @@
/*
- * JBoss, Community-driven Open Source Middleware
- * Copyright 2010, JBoss by Red Hat, Inc., and individual contributors
+ * JBoss, Home of Professional Open Source
+ * Copyright 2010, Red Hat, Inc., and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
@@ -18,7 +18,7 @@
* License along with this software; if not, write to the Free
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
- */
+ */
package org.jboss.seam.faces.environment;
import javax.enterprise.context.ContextNotActiveException;
Modified: modules/faces/trunk/impl/src/test/java/org/jboss/seam/faces/environment/MockExternalContext.java
===================================================================
--- modules/faces/trunk/impl/src/test/java/org/jboss/seam/faces/environment/MockExternalContext.java 2010-04-08 09:41:44 UTC (rev 12416)
+++ modules/faces/trunk/impl/src/test/java/org/jboss/seam/faces/environment/MockExternalContext.java 2010-04-08 09:43:36 UTC (rev 12417)
@@ -1,6 +1,6 @@
/*
- * JBoss, Community-driven Open Source Middleware
- * Copyright 2010, JBoss by Red Hat, Inc., and individual contributors
+ * JBoss, Home of Professional Open Source
+ * Copyright 2010, Red Hat, Inc., and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
@@ -18,7 +18,7 @@
* License along with this software; if not, write to the Free
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
- */
+ */
package org.jboss.seam.faces.environment;
import javax.faces.context.ExternalContext;
Modified: modules/faces/trunk/impl/src/test/java/org/jboss/seam/faces/environment/MockFacesContext.java
===================================================================
--- modules/faces/trunk/impl/src/test/java/org/jboss/seam/faces/environment/MockFacesContext.java 2010-04-08 09:41:44 UTC (rev 12416)
+++ modules/faces/trunk/impl/src/test/java/org/jboss/seam/faces/environment/MockFacesContext.java 2010-04-08 09:43:36 UTC (rev 12417)
@@ -1,6 +1,6 @@
/*
- * JBoss, Community-driven Open Source Middleware
- * Copyright 2010, JBoss by Red Hat, Inc., and individual contributors
+ * JBoss, Home of Professional Open Source
+ * Copyright 2010, Red Hat, Inc., and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
@@ -18,7 +18,7 @@
* License along with this software; if not, write to the Free
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
- */
+ */
package org.jboss.seam.faces.environment;
import java.util.Iterator;
Modified: modules/faces/trunk/impl/src/test/java/org/jboss/seam/faces/event/PhaseEventBridgeTest.java
===================================================================
--- modules/faces/trunk/impl/src/test/java/org/jboss/seam/faces/event/PhaseEventBridgeTest.java 2010-04-08 09:41:44 UTC (rev 12416)
+++ modules/faces/trunk/impl/src/test/java/org/jboss/seam/faces/event/PhaseEventBridgeTest.java 2010-04-08 09:43:36 UTC (rev 12417)
@@ -1,6 +1,6 @@
/*
- * JBoss, Community-driven Open Source Middleware
- * Copyright 2010, JBoss by Red Hat, Inc., and individual contributors
+ * JBoss, Home of Professional Open Source
+ * Copyright 2010, Red Hat, Inc., and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
@@ -18,7 +18,7 @@
* License along with this software; if not, write to the Free
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
- */
+ */
package org.jboss.seam.faces.event;
import java.util.ArrayList;
Modified: modules/faces/trunk/impl/src/test/java/org/jboss/seam/faces/event/PhaseEventObserver.java
===================================================================
--- modules/faces/trunk/impl/src/test/java/org/jboss/seam/faces/event/PhaseEventObserver.java 2010-04-08 09:41:44 UTC (rev 12416)
+++ modules/faces/trunk/impl/src/test/java/org/jboss/seam/faces/event/PhaseEventObserver.java 2010-04-08 09:43:36 UTC (rev 12417)
@@ -1,6 +1,6 @@
/*
- * JBoss, Community-driven Open Source Middleware
- * Copyright 2010, JBoss by Red Hat, Inc., and individual contributors
+ * JBoss, Home of Professional Open Source
+ * Copyright 2010, Red Hat, Inc., and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
@@ -18,7 +18,7 @@
* License along with this software; if not, write to the Free
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
- */
+ */
package org.jboss.seam.faces.event;
import java.util.ArrayList;
Modified: modules/faces/trunk/impl/src/test/java/org/jboss/seam/faces/event/SystemEventBridgeTest.java
===================================================================
--- modules/faces/trunk/impl/src/test/java/org/jboss/seam/faces/event/SystemEventBridgeTest.java 2010-04-08 09:41:44 UTC (rev 12416)
+++ modules/faces/trunk/impl/src/test/java/org/jboss/seam/faces/event/SystemEventBridgeTest.java 2010-04-08 09:43:36 UTC (rev 12417)
@@ -1,6 +1,6 @@
/*
- * JBoss, Community-driven Open Source Middleware
- * Copyright 2010, JBoss by Red Hat, Inc., and individual contributors
+ * JBoss, Home of Professional Open Source
+ * Copyright 2010, Red Hat, Inc., and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
@@ -18,7 +18,7 @@
* License along with this software; if not, write to the Free
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
- */
+ */
package org.jboss.seam.faces.event;
import java.util.HashMap;
Modified: modules/faces/trunk/impl/src/test/java/org/jboss/seam/faces/event/SystemEventObserver.java
===================================================================
--- modules/faces/trunk/impl/src/test/java/org/jboss/seam/faces/event/SystemEventObserver.java 2010-04-08 09:41:44 UTC (rev 12416)
+++ modules/faces/trunk/impl/src/test/java/org/jboss/seam/faces/event/SystemEventObserver.java 2010-04-08 09:43:36 UTC (rev 12417)
@@ -1,6 +1,6 @@
/*
- * JBoss, Community-driven Open Source Middleware
- * Copyright 2010, JBoss by Red Hat, Inc., and individual contributors
+ * JBoss, Home of Professional Open Source
+ * Copyright 2010, Red Hat, Inc., and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: modules/faces/trunk/impl/src/test/java/org/jboss/seam/faces/util/AnnotationTestObject.java
===================================================================
--- modules/faces/trunk/impl/src/test/java/org/jboss/seam/faces/util/AnnotationTestObject.java 2010-04-08 09:41:44 UTC (rev 12416)
+++ modules/faces/trunk/impl/src/test/java/org/jboss/seam/faces/util/AnnotationTestObject.java 2010-04-08 09:43:36 UTC (rev 12417)
@@ -1,6 +1,6 @@
/*
- * JBoss, Community-driven Open Source Middleware
- * Copyright 2010, JBoss by Red Hat, Inc., and individual contributors
+ * JBoss, Home of Professional Open Source
+ * Copyright 2010, Red Hat, Inc., and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
@@ -18,7 +18,7 @@
* License along with this software; if not, write to the Free
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
- */
+ */
package org.jboss.seam.faces.util;
import org.jboss.seam.faces.context.conversation.Begin;
Modified: modules/faces/trunk/impl/src/test/java/org/jboss/seam/faces/util/AnnotationsTest.java
===================================================================
--- modules/faces/trunk/impl/src/test/java/org/jboss/seam/faces/util/AnnotationsTest.java 2010-04-08 09:41:44 UTC (rev 12416)
+++ modules/faces/trunk/impl/src/test/java/org/jboss/seam/faces/util/AnnotationsTest.java 2010-04-08 09:43:36 UTC (rev 12417)
@@ -1,6 +1,6 @@
/*
- * JBoss, Community-driven Open Source Middleware
- * Copyright 2010, JBoss by Red Hat, Inc., and individual contributors
+ * JBoss, Home of Professional Open Source
+ * Copyright 2010, Red Hat, Inc., and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
@@ -18,7 +18,7 @@
* License along with this software; if not, write to the Free
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
- */
+ */
package org.jboss.seam.faces.util;
import static org.junit.Assert.assertFalse;
Modified: modules/faces/trunk/impl/src/test/resources/org/jboss/seam/faces/context/conversation/ConversationBoundaryInterceptorTest-beans.xml
===================================================================
--- modules/faces/trunk/impl/src/test/resources/org/jboss/seam/faces/context/conversation/ConversationBoundaryInterceptorTest-beans.xml 2010-04-08 09:41:44 UTC (rev 12416)
+++ modules/faces/trunk/impl/src/test/resources/org/jboss/seam/faces/context/conversation/ConversationBoundaryInterceptorTest-beans.xml 2010-04-08 09:43:36 UTC (rev 12417)
@@ -1,3 +1,24 @@
+<!--
+JBoss, Home of Professional Open Source
+Copyright ${year}, Red Hat, Inc., and individual contributors
+by the @authors tag. See the copyright.txt in the distribution for a
+full listing of individual contributors.
+
+This is free software; you can redistribute it and/or modify it
+under the terms of the GNU Lesser General Public License as
+published by the Free Software Foundation; either version 2.1 of
+the License, or (at your option) any later version.
+
+This software is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+Lesser General Public License for more details.
+
+You should have received a copy of the GNU Lesser General Public
+License along with this software; if not, write to the Free
+Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+02110-1301 USA, or see the FSF site: http://www.fsf.org.
+-->
<beans xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="
http://java.sun.com/xml/ns/javaee
16 years
Seam SVN: r12416 - in modules/servlet/trunk/src/main: java/org/jboss/seam/servlet/event and 2 other directories.
by seam-commits@lists.jboss.org
Author: nickarls
Date: 2010-04-08 05:41:44 -0400 (Thu, 08 Apr 2010)
New Revision: 12416
Modified:
modules/servlet/trunk/src/main/java/org/jboss/seam/servlet/ContextualHttpRequest.java
modules/servlet/trunk/src/main/java/org/jboss/seam/servlet/HttpManager.java
modules/servlet/trunk/src/main/java/org/jboss/seam/servlet/HttpParam.java
modules/servlet/trunk/src/main/java/org/jboss/seam/servlet/event/ServletEventListener.java
modules/servlet/trunk/src/main/java/org/jboss/seam/servlet/event/qualifier/AttributeAdded.java
modules/servlet/trunk/src/main/java/org/jboss/seam/servlet/event/qualifier/AttributeRemoved.java
modules/servlet/trunk/src/main/java/org/jboss/seam/servlet/event/qualifier/AttributeReplaced.java
modules/servlet/trunk/src/main/java/org/jboss/seam/servlet/event/qualifier/Complete.java
modules/servlet/trunk/src/main/java/org/jboss/seam/servlet/event/qualifier/Created.java
modules/servlet/trunk/src/main/java/org/jboss/seam/servlet/event/qualifier/Destroyed.java
modules/servlet/trunk/src/main/java/org/jboss/seam/servlet/event/qualifier/DidActivate.java
modules/servlet/trunk/src/main/java/org/jboss/seam/servlet/event/qualifier/Error.java
modules/servlet/trunk/src/main/java/org/jboss/seam/servlet/event/qualifier/Initialized.java
modules/servlet/trunk/src/main/java/org/jboss/seam/servlet/event/qualifier/StartAsync.java
modules/servlet/trunk/src/main/java/org/jboss/seam/servlet/event/qualifier/Timeout.java
modules/servlet/trunk/src/main/java/org/jboss/seam/servlet/event/qualifier/ValueBound.java
modules/servlet/trunk/src/main/java/org/jboss/seam/servlet/event/qualifier/ValueUnbound.java
modules/servlet/trunk/src/main/java/org/jboss/seam/servlet/event/qualifier/WillPassivate.java
modules/servlet/trunk/src/main/resources/META-INF/beans.xml
Log:
Update license headers
Modified: modules/servlet/trunk/src/main/java/org/jboss/seam/servlet/ContextualHttpRequest.java
===================================================================
--- modules/servlet/trunk/src/main/java/org/jboss/seam/servlet/ContextualHttpRequest.java 2010-04-08 09:39:00 UTC (rev 12415)
+++ modules/servlet/trunk/src/main/java/org/jboss/seam/servlet/ContextualHttpRequest.java 2010-04-08 09:41:44 UTC (rev 12416)
@@ -1,6 +1,6 @@
/*
- * JBoss, Community-driven Open Source Middleware
- * Copyright 2010, JBoss by Red Hat, Inc., and individual contributors
+ * JBoss, Home of Professional Open Source
+ * Copyright 2010, Red Hat, Inc., and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: modules/servlet/trunk/src/main/java/org/jboss/seam/servlet/HttpManager.java
===================================================================
--- modules/servlet/trunk/src/main/java/org/jboss/seam/servlet/HttpManager.java 2010-04-08 09:39:00 UTC (rev 12415)
+++ modules/servlet/trunk/src/main/java/org/jboss/seam/servlet/HttpManager.java 2010-04-08 09:41:44 UTC (rev 12416)
@@ -1,6 +1,6 @@
/*
- * JBoss, Community-driven Open Source Middleware
- * Copyright 2010, JBoss by Red Hat, Inc., and individual contributors
+ * JBoss, Home of Professional Open Source
+ * Copyright 2010, Red Hat, Inc., and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: modules/servlet/trunk/src/main/java/org/jboss/seam/servlet/HttpParam.java
===================================================================
--- modules/servlet/trunk/src/main/java/org/jboss/seam/servlet/HttpParam.java 2010-04-08 09:39:00 UTC (rev 12415)
+++ modules/servlet/trunk/src/main/java/org/jboss/seam/servlet/HttpParam.java 2010-04-08 09:41:44 UTC (rev 12416)
@@ -1,6 +1,6 @@
/*
- * JBoss, Community-driven Open Source Middleware
- * Copyright 2010, JBoss by Red Hat, Inc., and individual contributors
+ * JBoss, Home of Professional Open Source
+ * Copyright 2010, Red Hat, Inc., and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: modules/servlet/trunk/src/main/java/org/jboss/seam/servlet/event/ServletEventListener.java
===================================================================
--- modules/servlet/trunk/src/main/java/org/jboss/seam/servlet/event/ServletEventListener.java 2010-04-08 09:39:00 UTC (rev 12415)
+++ modules/servlet/trunk/src/main/java/org/jboss/seam/servlet/event/ServletEventListener.java 2010-04-08 09:41:44 UTC (rev 12416)
@@ -1,6 +1,6 @@
/*
- * JBoss, Community-driven Open Source Middleware
- * Copyright 2010, JBoss by Red Hat, Inc., and individual contributors
+ * JBoss, Home of Professional Open Source
+ * Copyright 2010, Red Hat, Inc., and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: modules/servlet/trunk/src/main/java/org/jboss/seam/servlet/event/qualifier/AttributeAdded.java
===================================================================
--- modules/servlet/trunk/src/main/java/org/jboss/seam/servlet/event/qualifier/AttributeAdded.java 2010-04-08 09:39:00 UTC (rev 12415)
+++ modules/servlet/trunk/src/main/java/org/jboss/seam/servlet/event/qualifier/AttributeAdded.java 2010-04-08 09:41:44 UTC (rev 12416)
@@ -1,6 +1,6 @@
/*
- * JBoss, Community-driven Open Source Middleware
- * Copyright 2010, JBoss by Red Hat, Inc., and individual contributors
+ * JBoss, Home of Professional Open Source
+ * Copyright 2010, Red Hat, Inc., and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: modules/servlet/trunk/src/main/java/org/jboss/seam/servlet/event/qualifier/AttributeRemoved.java
===================================================================
--- modules/servlet/trunk/src/main/java/org/jboss/seam/servlet/event/qualifier/AttributeRemoved.java 2010-04-08 09:39:00 UTC (rev 12415)
+++ modules/servlet/trunk/src/main/java/org/jboss/seam/servlet/event/qualifier/AttributeRemoved.java 2010-04-08 09:41:44 UTC (rev 12416)
@@ -1,6 +1,6 @@
/*
- * JBoss, Community-driven Open Source Middleware
- * Copyright 2010, JBoss by Red Hat, Inc., and individual contributors
+ * JBoss, Home of Professional Open Source
+ * Copyright 2010, Red Hat, Inc., and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: modules/servlet/trunk/src/main/java/org/jboss/seam/servlet/event/qualifier/AttributeReplaced.java
===================================================================
--- modules/servlet/trunk/src/main/java/org/jboss/seam/servlet/event/qualifier/AttributeReplaced.java 2010-04-08 09:39:00 UTC (rev 12415)
+++ modules/servlet/trunk/src/main/java/org/jboss/seam/servlet/event/qualifier/AttributeReplaced.java 2010-04-08 09:41:44 UTC (rev 12416)
@@ -1,6 +1,6 @@
/*
- * JBoss, Community-driven Open Source Middleware
- * Copyright 2010, JBoss by Red Hat, Inc., and individual contributors
+ * JBoss, Home of Professional Open Source
+ * Copyright 2010, Red Hat, Inc., and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: modules/servlet/trunk/src/main/java/org/jboss/seam/servlet/event/qualifier/Complete.java
===================================================================
--- modules/servlet/trunk/src/main/java/org/jboss/seam/servlet/event/qualifier/Complete.java 2010-04-08 09:39:00 UTC (rev 12415)
+++ modules/servlet/trunk/src/main/java/org/jboss/seam/servlet/event/qualifier/Complete.java 2010-04-08 09:41:44 UTC (rev 12416)
@@ -1,6 +1,6 @@
/*
- * JBoss, Community-driven Open Source Middleware
- * Copyright 2010, JBoss by Red Hat, Inc., and individual contributors
+ * JBoss, Home of Professional Open Source
+ * Copyright 2010, Red Hat, Inc., and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: modules/servlet/trunk/src/main/java/org/jboss/seam/servlet/event/qualifier/Created.java
===================================================================
--- modules/servlet/trunk/src/main/java/org/jboss/seam/servlet/event/qualifier/Created.java 2010-04-08 09:39:00 UTC (rev 12415)
+++ modules/servlet/trunk/src/main/java/org/jboss/seam/servlet/event/qualifier/Created.java 2010-04-08 09:41:44 UTC (rev 12416)
@@ -1,6 +1,6 @@
/*
- * JBoss, Community-driven Open Source Middleware
- * Copyright 2010, JBoss by Red Hat, Inc., and individual contributors
+ * JBoss, Home of Professional Open Source
+ * Copyright 2010, Red Hat, Inc., and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: modules/servlet/trunk/src/main/java/org/jboss/seam/servlet/event/qualifier/Destroyed.java
===================================================================
--- modules/servlet/trunk/src/main/java/org/jboss/seam/servlet/event/qualifier/Destroyed.java 2010-04-08 09:39:00 UTC (rev 12415)
+++ modules/servlet/trunk/src/main/java/org/jboss/seam/servlet/event/qualifier/Destroyed.java 2010-04-08 09:41:44 UTC (rev 12416)
@@ -1,6 +1,6 @@
/*
- * JBoss, Community-driven Open Source Middleware
- * Copyright 2010, JBoss by Red Hat, Inc., and individual contributors
+ * JBoss, Home of Professional Open Source
+ * Copyright 2010, Red Hat, Inc., and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: modules/servlet/trunk/src/main/java/org/jboss/seam/servlet/event/qualifier/DidActivate.java
===================================================================
--- modules/servlet/trunk/src/main/java/org/jboss/seam/servlet/event/qualifier/DidActivate.java 2010-04-08 09:39:00 UTC (rev 12415)
+++ modules/servlet/trunk/src/main/java/org/jboss/seam/servlet/event/qualifier/DidActivate.java 2010-04-08 09:41:44 UTC (rev 12416)
@@ -1,6 +1,6 @@
/*
- * JBoss, Community-driven Open Source Middleware
- * Copyright 2010, JBoss by Red Hat, Inc., and individual contributors
+ * JBoss, Home of Professional Open Source
+ * Copyright 2010, Red Hat, Inc., and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: modules/servlet/trunk/src/main/java/org/jboss/seam/servlet/event/qualifier/Error.java
===================================================================
--- modules/servlet/trunk/src/main/java/org/jboss/seam/servlet/event/qualifier/Error.java 2010-04-08 09:39:00 UTC (rev 12415)
+++ modules/servlet/trunk/src/main/java/org/jboss/seam/servlet/event/qualifier/Error.java 2010-04-08 09:41:44 UTC (rev 12416)
@@ -1,6 +1,6 @@
/*
- * JBoss, Community-driven Open Source Middleware
- * Copyright 2010, JBoss by Red Hat, Inc., and individual contributors
+ * JBoss, Home of Professional Open Source
+ * Copyright 2010, Red Hat, Inc., and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: modules/servlet/trunk/src/main/java/org/jboss/seam/servlet/event/qualifier/Initialized.java
===================================================================
--- modules/servlet/trunk/src/main/java/org/jboss/seam/servlet/event/qualifier/Initialized.java 2010-04-08 09:39:00 UTC (rev 12415)
+++ modules/servlet/trunk/src/main/java/org/jboss/seam/servlet/event/qualifier/Initialized.java 2010-04-08 09:41:44 UTC (rev 12416)
@@ -1,6 +1,6 @@
/*
- * JBoss, Community-driven Open Source Middleware
- * Copyright 2010, JBoss by Red Hat, Inc., and individual contributors
+ * JBoss, Home of Professional Open Source
+ * Copyright 2010, Red Hat, Inc., and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: modules/servlet/trunk/src/main/java/org/jboss/seam/servlet/event/qualifier/StartAsync.java
===================================================================
--- modules/servlet/trunk/src/main/java/org/jboss/seam/servlet/event/qualifier/StartAsync.java 2010-04-08 09:39:00 UTC (rev 12415)
+++ modules/servlet/trunk/src/main/java/org/jboss/seam/servlet/event/qualifier/StartAsync.java 2010-04-08 09:41:44 UTC (rev 12416)
@@ -1,6 +1,6 @@
/*
- * JBoss, Community-driven Open Source Middleware
- * Copyright 2010, JBoss by Red Hat, Inc., and individual contributors
+ * JBoss, Home of Professional Open Source
+ * Copyright 2010, Red Hat, Inc., and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: modules/servlet/trunk/src/main/java/org/jboss/seam/servlet/event/qualifier/Timeout.java
===================================================================
--- modules/servlet/trunk/src/main/java/org/jboss/seam/servlet/event/qualifier/Timeout.java 2010-04-08 09:39:00 UTC (rev 12415)
+++ modules/servlet/trunk/src/main/java/org/jboss/seam/servlet/event/qualifier/Timeout.java 2010-04-08 09:41:44 UTC (rev 12416)
@@ -1,6 +1,6 @@
/*
- * JBoss, Community-driven Open Source Middleware
- * Copyright 2010, JBoss by Red Hat, Inc., and individual contributors
+ * JBoss, Home of Professional Open Source
+ * Copyright 2010, Red Hat, Inc., and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: modules/servlet/trunk/src/main/java/org/jboss/seam/servlet/event/qualifier/ValueBound.java
===================================================================
--- modules/servlet/trunk/src/main/java/org/jboss/seam/servlet/event/qualifier/ValueBound.java 2010-04-08 09:39:00 UTC (rev 12415)
+++ modules/servlet/trunk/src/main/java/org/jboss/seam/servlet/event/qualifier/ValueBound.java 2010-04-08 09:41:44 UTC (rev 12416)
@@ -1,6 +1,6 @@
/*
- * JBoss, Community-driven Open Source Middleware
- * Copyright 2010, JBoss by Red Hat, Inc., and individual contributors
+ * JBoss, Home of Professional Open Source
+ * Copyright 2010, Red Hat, Inc., and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: modules/servlet/trunk/src/main/java/org/jboss/seam/servlet/event/qualifier/ValueUnbound.java
===================================================================
--- modules/servlet/trunk/src/main/java/org/jboss/seam/servlet/event/qualifier/ValueUnbound.java 2010-04-08 09:39:00 UTC (rev 12415)
+++ modules/servlet/trunk/src/main/java/org/jboss/seam/servlet/event/qualifier/ValueUnbound.java 2010-04-08 09:41:44 UTC (rev 12416)
@@ -1,6 +1,6 @@
/*
- * JBoss, Community-driven Open Source Middleware
- * Copyright 2010, JBoss by Red Hat, Inc., and individual contributors
+ * JBoss, Home of Professional Open Source
+ * Copyright 2010, Red Hat, Inc., and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: modules/servlet/trunk/src/main/java/org/jboss/seam/servlet/event/qualifier/WillPassivate.java
===================================================================
--- modules/servlet/trunk/src/main/java/org/jboss/seam/servlet/event/qualifier/WillPassivate.java 2010-04-08 09:39:00 UTC (rev 12415)
+++ modules/servlet/trunk/src/main/java/org/jboss/seam/servlet/event/qualifier/WillPassivate.java 2010-04-08 09:41:44 UTC (rev 12416)
@@ -1,6 +1,6 @@
/*
- * JBoss, Community-driven Open Source Middleware
- * Copyright 2010, JBoss by Red Hat, Inc., and individual contributors
+ * JBoss, Home of Professional Open Source
+ * Copyright 2010, Red Hat, Inc., and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
Modified: modules/servlet/trunk/src/main/resources/META-INF/beans.xml
===================================================================
--- modules/servlet/trunk/src/main/resources/META-INF/beans.xml 2010-04-08 09:39:00 UTC (rev 12415)
+++ modules/servlet/trunk/src/main/resources/META-INF/beans.xml 2010-04-08 09:41:44 UTC (rev 12416)
@@ -0,0 +1,27 @@
+<!--
+JBoss, Home of Professional Open Source
+Copyright ${year}, Red Hat, Inc., and individual contributors
+by the @authors tag. See the copyright.txt in the distribution for a
+full listing of individual contributors.
+
+This is free software; you can redistribute it and/or modify it
+under the terms of the GNU Lesser General Public License as
+published by the Free Software Foundation; either version 2.1 of
+the License, or (at your option) any later version.
+
+This software is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+Lesser General Public License for more details.
+
+You should have received a copy of the GNU Lesser General Public
+License along with this software; if not, write to the Free
+Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+02110-1301 USA, or see the FSF site: http://www.fsf.org.
+-->
+<beans xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="
+ http://java.sun.com/xml/ns/javaee
+ http://java.sun.com/xml/ns/javaee/beans_1_0.xsd">
+
+</beans>
\ No newline at end of file
16 years
Seam SVN: r12415 - in modules/xml/trunk: impl and 1 other directory.
by seam-commits@lists.jboss.org
Author: swd847
Date: 2010-04-08 05:39:00 -0400 (Thu, 08 Apr 2010)
New Revision: 12415
Added:
modules/xml/trunk/impl/
Removed:
modules/xml/trunk/core/
Modified:
modules/xml/trunk/assembly.xml
modules/xml/trunk/impl/pom.xml
modules/xml/trunk/pom.xml
Log:
change seam-xml core to impl
Modified: modules/xml/trunk/assembly.xml
===================================================================
--- modules/xml/trunk/assembly.xml 2010-04-07 20:49:59 UTC (rev 12414)
+++ modules/xml/trunk/assembly.xml 2010-04-08 09:39:00 UTC (rev 12415)
@@ -9,7 +9,7 @@
<fileSets>
<fileSet>
- <directory>core/target/site/apidocs</directory>
+ <directory>impl/target/site/apidocs</directory>
<outputDirectory>seam-xml/doc/api</outputDirectory>
<includes>
<include>**</include>
@@ -37,7 +37,7 @@
</fileSet>
<fileSet>
- <directory>core/src/main/java</directory>
+ <directory>impl/src/main/java</directory>
<outputDirectory>seam-xml/source</outputDirectory>
<includes>
<include>**</include>
@@ -58,7 +58,7 @@
<moduleSets>
<moduleSet>
<includes>
- <include>org.jboss.seam.xml:seam-xml-core:jar</include>
+ <include>org.jboss.seam.xml:seam-xml-impl:jar</include>
</includes>
<binaries>
<outputDirectory>seam-xml/lib</outputDirectory>
Copied: modules/xml/trunk/impl (from rev 12414, modules/xml/trunk/core)
Modified: modules/xml/trunk/impl/pom.xml
===================================================================
--- modules/xml/trunk/core/pom.xml 2010-04-07 20:49:59 UTC (rev 12414)
+++ modules/xml/trunk/impl/pom.xml 2010-04-08 09:39:00 UTC (rev 12415)
@@ -61,9 +61,9 @@
</dependencies>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/seam/modules/xml/trunk/core</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/seam/modules/xml/trunk/core</developerConnection>
- <url>http://fisheye.jboss.org/browse/Seam/modules/xml/trunk/core</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/seam/modules/xml/trunk/impl</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/seam/modules/xml/trunk/impl</developerConnection>
+ <url>http://fisheye.jboss.org/browse/Seam/modules/xml/trunk/impl</url>
</scm>
<build>
Modified: modules/xml/trunk/pom.xml
===================================================================
--- modules/xml/trunk/pom.xml 2010-04-07 20:49:59 UTC (rev 12414)
+++ modules/xml/trunk/pom.xml 2010-04-08 09:39:00 UTC (rev 12415)
@@ -14,7 +14,7 @@
<name>Seam XML Bean Config Parent</name>
<modules>
- <module>core</module>
+ <module>impl</module>
<module>docs</module>
<module>examples/princess-rescue</module>
</modules>
16 years
Seam SVN: r12414 - in modules: faces/trunk/api/src/main/java/org/jboss/seam/faces/context/conversation and 20 other directories.
by seam-commits@lists.jboss.org
Author: nickarls
Date: 2010-04-07 16:49:59 -0400 (Wed, 07 Apr 2010)
New Revision: 12414
Modified:
modules/faces/trunk/api/src/main/java/javax/faces/bean/FlashScoped.java
modules/faces/trunk/api/src/main/java/org/jboss/seam/faces/context/conversation/Begin.java
modules/faces/trunk/api/src/main/java/org/jboss/seam/faces/context/conversation/ConversationBoundary.java
modules/faces/trunk/api/src/main/java/org/jboss/seam/faces/context/conversation/End.java
modules/faces/trunk/api/src/main/java/org/jboss/seam/faces/event/qualifier/After.java
modules/faces/trunk/api/src/main/java/org/jboss/seam/faces/event/qualifier/ApplyRequestValues.java
modules/faces/trunk/api/src/main/java/org/jboss/seam/faces/event/qualifier/Before.java
modules/faces/trunk/api/src/main/java/org/jboss/seam/faces/event/qualifier/InvokeApplication.java
modules/faces/trunk/api/src/main/java/org/jboss/seam/faces/event/qualifier/ProcessValidations.java
modules/faces/trunk/api/src/main/java/org/jboss/seam/faces/event/qualifier/RenderResponse.java
modules/faces/trunk/api/src/main/java/org/jboss/seam/faces/event/qualifier/RestoreView.java
modules/faces/trunk/api/src/main/java/org/jboss/seam/faces/event/qualifier/UpdateModelValues.java
modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/SeamFacesException.java
modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/cdi/BeanManagerAware.java
modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/component/UIViewAction.java
modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/context/FacesAnnotationsAdapterExtension.java
modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/context/FlashScopedContext.java
modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/context/FlashScopedExtension.java
modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/context/ViewScopedExtension.java
modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/context/conversation/ConversationBoundaryInterceptor.java
modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/context/conversation/NamedConversationAliasProducer.java
modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/environment/ExternalContextProducer.java
modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/environment/FacesContextProducer.java
modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/environment/NavigationHandlerProducer.java
modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/event/DelegatingPhaseListener.java
modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/event/DelegatingSystemEventListener.java
modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/event/PhaseEventBridge.java
modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/event/SystemEventBridge.java
modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/international/FacesLocaleResolver.java
modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/persistence/TransactionManager.java
modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/util/Annotations.java
modules/faces/trunk/impl/src/test/java/org/jboss/seam/faces/MockConversation.java
modules/faces/trunk/impl/src/test/java/org/jboss/seam/faces/MockLogger.java
modules/faces/trunk/impl/src/test/java/org/jboss/seam/faces/context/FacesAnnotationsAdapterExtensionTest.java
modules/faces/trunk/impl/src/test/java/org/jboss/seam/faces/context/ImproperlyAnnotatedBean.java
modules/faces/trunk/impl/src/test/java/org/jboss/seam/faces/context/conversation/ConversationBoundaryInterceptorTest.java
modules/faces/trunk/impl/src/test/java/org/jboss/seam/faces/context/conversation/ConversationalBean.java
modules/faces/trunk/impl/src/test/java/org/jboss/seam/faces/environment/ExternalContextProducerTest.java
modules/faces/trunk/impl/src/test/java/org/jboss/seam/faces/environment/FacesContextProducerTest.java
modules/faces/trunk/impl/src/test/java/org/jboss/seam/faces/environment/MockExternalContext.java
modules/faces/trunk/impl/src/test/java/org/jboss/seam/faces/environment/MockFacesContext.java
modules/faces/trunk/impl/src/test/java/org/jboss/seam/faces/event/PhaseEventBridgeTest.java
modules/faces/trunk/impl/src/test/java/org/jboss/seam/faces/event/PhaseEventObserver.java
modules/faces/trunk/impl/src/test/java/org/jboss/seam/faces/event/SystemEventBridgeTest.java
modules/faces/trunk/impl/src/test/java/org/jboss/seam/faces/event/SystemEventObserver.java
modules/faces/trunk/impl/src/test/java/org/jboss/seam/faces/util/AnnotationTestObject.java
modules/faces/trunk/impl/src/test/java/org/jboss/seam/faces/util/AnnotationsTest.java
modules/servlet/trunk/src/main/java/org/jboss/seam/servlet/ContextualHttpRequest.java
modules/servlet/trunk/src/main/java/org/jboss/seam/servlet/HttpManager.java
modules/servlet/trunk/src/main/java/org/jboss/seam/servlet/HttpParam.java
modules/servlet/trunk/src/main/java/org/jboss/seam/servlet/event/ServletEventListener.java
modules/servlet/trunk/src/main/java/org/jboss/seam/servlet/event/qualifier/AttributeAdded.java
modules/servlet/trunk/src/main/java/org/jboss/seam/servlet/event/qualifier/AttributeRemoved.java
modules/servlet/trunk/src/main/java/org/jboss/seam/servlet/event/qualifier/AttributeReplaced.java
modules/servlet/trunk/src/main/java/org/jboss/seam/servlet/event/qualifier/Complete.java
modules/servlet/trunk/src/main/java/org/jboss/seam/servlet/event/qualifier/Created.java
modules/servlet/trunk/src/main/java/org/jboss/seam/servlet/event/qualifier/Destroyed.java
modules/servlet/trunk/src/main/java/org/jboss/seam/servlet/event/qualifier/DidActivate.java
modules/servlet/trunk/src/main/java/org/jboss/seam/servlet/event/qualifier/Error.java
modules/servlet/trunk/src/main/java/org/jboss/seam/servlet/event/qualifier/Initialized.java
modules/servlet/trunk/src/main/java/org/jboss/seam/servlet/event/qualifier/StartAsync.java
modules/servlet/trunk/src/main/java/org/jboss/seam/servlet/event/qualifier/Timeout.java
modules/servlet/trunk/src/main/java/org/jboss/seam/servlet/event/qualifier/ValueBound.java
modules/servlet/trunk/src/main/java/org/jboss/seam/servlet/event/qualifier/ValueUnbound.java
modules/servlet/trunk/src/main/java/org/jboss/seam/servlet/event/qualifier/WillPassivate.java
Log:
Header blocks
Modified: modules/faces/trunk/api/src/main/java/javax/faces/bean/FlashScoped.java
===================================================================
--- modules/faces/trunk/api/src/main/java/javax/faces/bean/FlashScoped.java 2010-04-07 19:01:35 UTC (rev 12413)
+++ modules/faces/trunk/api/src/main/java/javax/faces/bean/FlashScoped.java 2010-04-07 20:49:59 UTC (rev 12414)
@@ -1,3 +1,24 @@
+/*
+ * JBoss, Community-driven Open Source Middleware
+ * Copyright 2010, JBoss by Red Hat, Inc., and individual contributors
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
package javax.faces.bean;
import java.lang.annotation.Documented;
Modified: modules/faces/trunk/api/src/main/java/org/jboss/seam/faces/context/conversation/Begin.java
===================================================================
--- modules/faces/trunk/api/src/main/java/org/jboss/seam/faces/context/conversation/Begin.java 2010-04-07 19:01:35 UTC (rev 12413)
+++ modules/faces/trunk/api/src/main/java/org/jboss/seam/faces/context/conversation/Begin.java 2010-04-07 20:49:59 UTC (rev 12414)
@@ -1,3 +1,24 @@
+/*
+ * JBoss, Community-driven Open Source Middleware
+ * Copyright 2010, JBoss by Red Hat, Inc., and individual contributors
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
package org.jboss.seam.faces.context.conversation;
import static java.lang.annotation.ElementType.METHOD;
Modified: modules/faces/trunk/api/src/main/java/org/jboss/seam/faces/context/conversation/ConversationBoundary.java
===================================================================
--- modules/faces/trunk/api/src/main/java/org/jboss/seam/faces/context/conversation/ConversationBoundary.java 2010-04-07 19:01:35 UTC (rev 12413)
+++ modules/faces/trunk/api/src/main/java/org/jboss/seam/faces/context/conversation/ConversationBoundary.java 2010-04-07 20:49:59 UTC (rev 12414)
@@ -1,3 +1,24 @@
+/*
+ * JBoss, Community-driven Open Source Middleware
+ * Copyright 2010, JBoss by Red Hat, Inc., and individual contributors
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
package org.jboss.seam.faces.context.conversation;
import static java.lang.annotation.ElementType.METHOD;
Modified: modules/faces/trunk/api/src/main/java/org/jboss/seam/faces/context/conversation/End.java
===================================================================
--- modules/faces/trunk/api/src/main/java/org/jboss/seam/faces/context/conversation/End.java 2010-04-07 19:01:35 UTC (rev 12413)
+++ modules/faces/trunk/api/src/main/java/org/jboss/seam/faces/context/conversation/End.java 2010-04-07 20:49:59 UTC (rev 12414)
@@ -1,3 +1,24 @@
+/*
+ * JBoss, Community-driven Open Source Middleware
+ * Copyright 2010, JBoss by Red Hat, Inc., and individual contributors
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
package org.jboss.seam.faces.context.conversation;
import static java.lang.annotation.ElementType.METHOD;
Modified: modules/faces/trunk/api/src/main/java/org/jboss/seam/faces/event/qualifier/After.java
===================================================================
--- modules/faces/trunk/api/src/main/java/org/jboss/seam/faces/event/qualifier/After.java 2010-04-07 19:01:35 UTC (rev 12413)
+++ modules/faces/trunk/api/src/main/java/org/jboss/seam/faces/event/qualifier/After.java 2010-04-07 20:49:59 UTC (rev 12414)
@@ -1,3 +1,24 @@
+/*
+ * JBoss, Community-driven Open Source Middleware
+ * Copyright 2010, JBoss by Red Hat, Inc., and individual contributors
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
package org.jboss.seam.faces.event.qualifier;
import static java.lang.annotation.ElementType.FIELD;
Modified: modules/faces/trunk/api/src/main/java/org/jboss/seam/faces/event/qualifier/ApplyRequestValues.java
===================================================================
--- modules/faces/trunk/api/src/main/java/org/jboss/seam/faces/event/qualifier/ApplyRequestValues.java 2010-04-07 19:01:35 UTC (rev 12413)
+++ modules/faces/trunk/api/src/main/java/org/jboss/seam/faces/event/qualifier/ApplyRequestValues.java 2010-04-07 20:49:59 UTC (rev 12414)
@@ -1,3 +1,24 @@
+/*
+ * JBoss, Community-driven Open Source Middleware
+ * Copyright 2010, JBoss by Red Hat, Inc., and individual contributors
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
package org.jboss.seam.faces.event.qualifier;
import static java.lang.annotation.ElementType.FIELD;
Modified: modules/faces/trunk/api/src/main/java/org/jboss/seam/faces/event/qualifier/Before.java
===================================================================
--- modules/faces/trunk/api/src/main/java/org/jboss/seam/faces/event/qualifier/Before.java 2010-04-07 19:01:35 UTC (rev 12413)
+++ modules/faces/trunk/api/src/main/java/org/jboss/seam/faces/event/qualifier/Before.java 2010-04-07 20:49:59 UTC (rev 12414)
@@ -1,3 +1,24 @@
+/*
+ * JBoss, Community-driven Open Source Middleware
+ * Copyright 2010, JBoss by Red Hat, Inc., and individual contributors
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
package org.jboss.seam.faces.event.qualifier;
import static java.lang.annotation.ElementType.FIELD;
Modified: modules/faces/trunk/api/src/main/java/org/jboss/seam/faces/event/qualifier/InvokeApplication.java
===================================================================
--- modules/faces/trunk/api/src/main/java/org/jboss/seam/faces/event/qualifier/InvokeApplication.java 2010-04-07 19:01:35 UTC (rev 12413)
+++ modules/faces/trunk/api/src/main/java/org/jboss/seam/faces/event/qualifier/InvokeApplication.java 2010-04-07 20:49:59 UTC (rev 12414)
@@ -1,3 +1,24 @@
+/*
+ * JBoss, Community-driven Open Source Middleware
+ * Copyright 2010, JBoss by Red Hat, Inc., and individual contributors
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
package org.jboss.seam.faces.event.qualifier;
import static java.lang.annotation.ElementType.FIELD;
Modified: modules/faces/trunk/api/src/main/java/org/jboss/seam/faces/event/qualifier/ProcessValidations.java
===================================================================
--- modules/faces/trunk/api/src/main/java/org/jboss/seam/faces/event/qualifier/ProcessValidations.java 2010-04-07 19:01:35 UTC (rev 12413)
+++ modules/faces/trunk/api/src/main/java/org/jboss/seam/faces/event/qualifier/ProcessValidations.java 2010-04-07 20:49:59 UTC (rev 12414)
@@ -1,3 +1,24 @@
+/*
+ * JBoss, Community-driven Open Source Middleware
+ * Copyright 2010, JBoss by Red Hat, Inc., and individual contributors
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
package org.jboss.seam.faces.event.qualifier;
import static java.lang.annotation.ElementType.FIELD;
Modified: modules/faces/trunk/api/src/main/java/org/jboss/seam/faces/event/qualifier/RenderResponse.java
===================================================================
--- modules/faces/trunk/api/src/main/java/org/jboss/seam/faces/event/qualifier/RenderResponse.java 2010-04-07 19:01:35 UTC (rev 12413)
+++ modules/faces/trunk/api/src/main/java/org/jboss/seam/faces/event/qualifier/RenderResponse.java 2010-04-07 20:49:59 UTC (rev 12414)
@@ -1,3 +1,24 @@
+/*
+ * JBoss, Community-driven Open Source Middleware
+ * Copyright 2010, JBoss by Red Hat, Inc., and individual contributors
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
package org.jboss.seam.faces.event.qualifier;
import static java.lang.annotation.ElementType.FIELD;
Modified: modules/faces/trunk/api/src/main/java/org/jboss/seam/faces/event/qualifier/RestoreView.java
===================================================================
--- modules/faces/trunk/api/src/main/java/org/jboss/seam/faces/event/qualifier/RestoreView.java 2010-04-07 19:01:35 UTC (rev 12413)
+++ modules/faces/trunk/api/src/main/java/org/jboss/seam/faces/event/qualifier/RestoreView.java 2010-04-07 20:49:59 UTC (rev 12414)
@@ -1,3 +1,24 @@
+/*
+ * JBoss, Community-driven Open Source Middleware
+ * Copyright 2010, JBoss by Red Hat, Inc., and individual contributors
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
package org.jboss.seam.faces.event.qualifier;
import static java.lang.annotation.ElementType.FIELD;
Modified: modules/faces/trunk/api/src/main/java/org/jboss/seam/faces/event/qualifier/UpdateModelValues.java
===================================================================
--- modules/faces/trunk/api/src/main/java/org/jboss/seam/faces/event/qualifier/UpdateModelValues.java 2010-04-07 19:01:35 UTC (rev 12413)
+++ modules/faces/trunk/api/src/main/java/org/jboss/seam/faces/event/qualifier/UpdateModelValues.java 2010-04-07 20:49:59 UTC (rev 12414)
@@ -1,3 +1,24 @@
+/*
+ * JBoss, Community-driven Open Source Middleware
+ * Copyright 2010, JBoss by Red Hat, Inc., and individual contributors
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
package org.jboss.seam.faces.event.qualifier;
import static java.lang.annotation.ElementType.FIELD;
Modified: modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/SeamFacesException.java
===================================================================
--- modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/SeamFacesException.java 2010-04-07 19:01:35 UTC (rev 12413)
+++ modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/SeamFacesException.java 2010-04-07 20:49:59 UTC (rev 12414)
@@ -1,8 +1,24 @@
/*
- * To change this template, choose Tools | Templates
- * and open the template in the editor.
+ * JBoss, Community-driven Open Source Middleware
+ * Copyright 2010, JBoss by Red Hat, Inc., and individual contributors
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
-
package org.jboss.seam.faces;
/**
Modified: modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/cdi/BeanManagerAware.java
===================================================================
--- modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/cdi/BeanManagerAware.java 2010-04-07 19:01:35 UTC (rev 12413)
+++ modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/cdi/BeanManagerAware.java 2010-04-07 20:49:59 UTC (rev 12414)
@@ -1,3 +1,24 @@
+/*
+ * JBoss, Community-driven Open Source Middleware
+ * Copyright 2010, JBoss by Red Hat, Inc., and individual contributors
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
package org.jboss.seam.faces.cdi;
import java.util.ArrayList;
@@ -8,6 +29,11 @@
import javax.naming.InitialContext;
import javax.naming.NamingException;
+/**
+ *
+ * @author Nicklas Karlsson
+ *
+ */
public class BeanManagerAware
{
@Inject
Modified: modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/component/UIViewAction.java
===================================================================
--- modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/component/UIViewAction.java 2010-04-07 19:01:35 UTC (rev 12413)
+++ modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/component/UIViewAction.java 2010-04-07 20:49:59 UTC (rev 12414)
@@ -1,3 +1,24 @@
+/*
+ * JBoss, Community-driven Open Source Middleware
+ * Copyright 2010, JBoss by Red Hat, Inc., and individual contributors
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
package org.jboss.seam.faces.component;
import javax.el.MethodExpression;
Modified: modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/context/FacesAnnotationsAdapterExtension.java
===================================================================
--- modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/context/FacesAnnotationsAdapterExtension.java 2010-04-07 19:01:35 UTC (rev 12413)
+++ modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/context/FacesAnnotationsAdapterExtension.java 2010-04-07 20:49:59 UTC (rev 12414)
@@ -1,3 +1,24 @@
+/*
+ * JBoss, Community-driven Open Source Middleware
+ * Copyright 2010, JBoss by Red Hat, Inc., and individual contributors
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
package org.jboss.seam.faces.context;
import java.lang.annotation.Annotation;
Modified: modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/context/FlashScopedContext.java
===================================================================
--- modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/context/FlashScopedContext.java 2010-04-07 19:01:35 UTC (rev 12413)
+++ modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/context/FlashScopedContext.java 2010-04-07 20:49:59 UTC (rev 12414)
@@ -1,3 +1,24 @@
+/*
+ * JBoss, Community-driven Open Source Middleware
+ * Copyright 2010, JBoss by Red Hat, Inc., and individual contributors
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
package org.jboss.seam.faces.context;
import java.lang.annotation.Annotation;
Modified: modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/context/FlashScopedExtension.java
===================================================================
--- modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/context/FlashScopedExtension.java 2010-04-07 19:01:35 UTC (rev 12413)
+++ modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/context/FlashScopedExtension.java 2010-04-07 20:49:59 UTC (rev 12414)
@@ -1,8 +1,24 @@
/*
- * To change this template, choose Tools | Templates and open the template in
- * the editor.
+ * JBoss, Community-driven Open Source Middleware
+ * Copyright 2010, JBoss by Red Hat, Inc., and individual contributors
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
-
package org.jboss.seam.faces.context;
import javax.enterprise.event.Observes;
Modified: modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/context/ViewScopedExtension.java
===================================================================
--- modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/context/ViewScopedExtension.java 2010-04-07 19:01:35 UTC (rev 12413)
+++ modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/context/ViewScopedExtension.java 2010-04-07 20:49:59 UTC (rev 12414)
@@ -1,8 +1,24 @@
/*
- * To change this template, choose Tools | Templates and open the template in
- * the editor.
+ * JBoss, Community-driven Open Source Middleware
+ * Copyright 2010, JBoss by Red Hat, Inc., and individual contributors
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
-
package org.jboss.seam.faces.context;
import javax.enterprise.event.Observes;
Modified: modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/context/conversation/ConversationBoundaryInterceptor.java
===================================================================
--- modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/context/conversation/ConversationBoundaryInterceptor.java 2010-04-07 19:01:35 UTC (rev 12413)
+++ modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/context/conversation/ConversationBoundaryInterceptor.java 2010-04-07 20:49:59 UTC (rev 12414)
@@ -1,5 +1,23 @@
-/**
- *
+/*
+ * JBoss, Community-driven Open Source Middleware
+ * Copyright 2010, JBoss by Red Hat, Inc., and individual contributors
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package org.jboss.seam.faces.context.conversation;
Modified: modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/context/conversation/NamedConversationAliasProducer.java
===================================================================
--- modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/context/conversation/NamedConversationAliasProducer.java 2010-04-07 19:01:35 UTC (rev 12413)
+++ modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/context/conversation/NamedConversationAliasProducer.java 2010-04-07 20:49:59 UTC (rev 12414)
@@ -1,3 +1,24 @@
+/*
+ * JBoss, Community-driven Open Source Middleware
+ * Copyright 2010, JBoss by Red Hat, Inc., and individual contributors
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
package org.jboss.seam.faces.context.conversation;
import javax.enterprise.context.Conversation;
Modified: modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/environment/ExternalContextProducer.java
===================================================================
--- modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/environment/ExternalContextProducer.java 2010-04-07 19:01:35 UTC (rev 12413)
+++ modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/environment/ExternalContextProducer.java 2010-04-07 20:49:59 UTC (rev 12414)
@@ -1,4 +1,24 @@
-//$Id: FacesContext.java 5350 2007-06-20 17:53:19Z gavin $
+/*
+ * JBoss, Community-driven Open Source Middleware
+ * Copyright 2010, JBoss by Red Hat, Inc., and individual contributors
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
package org.jboss.seam.faces.environment;
import javax.enterprise.context.RequestScoped;
Modified: modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/environment/FacesContextProducer.java
===================================================================
--- modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/environment/FacesContextProducer.java 2010-04-07 19:01:35 UTC (rev 12413)
+++ modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/environment/FacesContextProducer.java 2010-04-07 20:49:59 UTC (rev 12414)
@@ -4,15 +4,20 @@
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
- * 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.
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package org.jboss.seam.faces.environment;
Modified: modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/environment/NavigationHandlerProducer.java
===================================================================
--- modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/environment/NavigationHandlerProducer.java 2010-04-07 19:01:35 UTC (rev 12413)
+++ modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/environment/NavigationHandlerProducer.java 2010-04-07 20:49:59 UTC (rev 12414)
@@ -1,4 +1,24 @@
-//$Id: FacesContext.java 5350 2007-06-20 17:53:19Z gavin $
+/*
+ * JBoss, Community-driven Open Source Middleware
+ * Copyright 2010, JBoss by Red Hat, Inc., and individual contributors
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
package org.jboss.seam.faces.environment;
import javax.enterprise.context.RequestScoped;
Modified: modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/event/DelegatingPhaseListener.java
===================================================================
--- modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/event/DelegatingPhaseListener.java 2010-04-07 19:01:35 UTC (rev 12413)
+++ modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/event/DelegatingPhaseListener.java 2010-04-07 20:49:59 UTC (rev 12414)
@@ -1,3 +1,24 @@
+/*
+ * JBoss, Community-driven Open Source Middleware
+ * Copyright 2010, JBoss by Red Hat, Inc., and individual contributors
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
package org.jboss.seam.faces.event;
import java.util.ArrayList;
Modified: modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/event/DelegatingSystemEventListener.java
===================================================================
--- modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/event/DelegatingSystemEventListener.java 2010-04-07 19:01:35 UTC (rev 12413)
+++ modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/event/DelegatingSystemEventListener.java 2010-04-07 20:49:59 UTC (rev 12414)
@@ -1,3 +1,24 @@
+/*
+ * JBoss, Community-driven Open Source Middleware
+ * Copyright 2010, JBoss by Red Hat, Inc., and individual contributors
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
package org.jboss.seam.faces.event;
import java.util.ArrayList;
Modified: modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/event/PhaseEventBridge.java
===================================================================
--- modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/event/PhaseEventBridge.java 2010-04-07 19:01:35 UTC (rev 12413)
+++ modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/event/PhaseEventBridge.java 2010-04-07 20:49:59 UTC (rev 12414)
@@ -1,3 +1,24 @@
+/*
+ * JBoss, Community-driven Open Source Middleware
+ * Copyright 2010, JBoss by Red Hat, Inc., and individual contributors
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
package org.jboss.seam.faces.event;
import java.lang.annotation.Annotation;
Modified: modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/event/SystemEventBridge.java
===================================================================
--- modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/event/SystemEventBridge.java 2010-04-07 19:01:35 UTC (rev 12413)
+++ modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/event/SystemEventBridge.java 2010-04-07 20:49:59 UTC (rev 12414)
@@ -1,3 +1,24 @@
+/*
+ * JBoss, Community-driven Open Source Middleware
+ * Copyright 2010, JBoss by Red Hat, Inc., and individual contributors
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
package org.jboss.seam.faces.event;
import javax.enterprise.context.ApplicationScoped;
Modified: modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/international/FacesLocaleResolver.java
===================================================================
--- modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/international/FacesLocaleResolver.java 2010-04-07 19:01:35 UTC (rev 12413)
+++ modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/international/FacesLocaleResolver.java 2010-04-07 20:49:59 UTC (rev 12414)
@@ -1,3 +1,24 @@
+/*
+ * JBoss, Community-driven Open Source Middleware
+ * Copyright 2010, JBoss by Red Hat, Inc., and individual contributors
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
package org.jboss.seam.faces.international;
import java.util.Locale;
Modified: modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/persistence/TransactionManager.java
===================================================================
--- modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/persistence/TransactionManager.java 2010-04-07 19:01:35 UTC (rev 12413)
+++ modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/persistence/TransactionManager.java 2010-04-07 20:49:59 UTC (rev 12414)
@@ -1,5 +1,23 @@
-/**
- *
+/*
+ * JBoss, Community-driven Open Source Middleware
+ * Copyright 2010, JBoss by Red Hat, Inc., and individual contributors
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package org.jboss.seam.faces.persistence;
Modified: modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/util/Annotations.java
===================================================================
--- modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/util/Annotations.java 2010-04-07 19:01:35 UTC (rev 12413)
+++ modules/faces/trunk/impl/src/main/java/org/jboss/seam/faces/util/Annotations.java 2010-04-07 20:49:59 UTC (rev 12414)
@@ -1,3 +1,24 @@
+/*
+ * JBoss, Community-driven Open Source Middleware
+ * Copyright 2010, JBoss by Red Hat, Inc., and individual contributors
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
package org.jboss.seam.faces.util;
import java.lang.annotation.Annotation;
Modified: modules/faces/trunk/impl/src/test/java/org/jboss/seam/faces/MockConversation.java
===================================================================
--- modules/faces/trunk/impl/src/test/java/org/jboss/seam/faces/MockConversation.java 2010-04-07 19:01:35 UTC (rev 12413)
+++ modules/faces/trunk/impl/src/test/java/org/jboss/seam/faces/MockConversation.java 2010-04-07 20:49:59 UTC (rev 12414)
@@ -1,5 +1,23 @@
-/**
- *
+/*
+ * JBoss, Community-driven Open Source Middleware
+ * Copyright 2010, JBoss by Red Hat, Inc., and individual contributors
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package org.jboss.seam.faces;
Modified: modules/faces/trunk/impl/src/test/java/org/jboss/seam/faces/MockLogger.java
===================================================================
--- modules/faces/trunk/impl/src/test/java/org/jboss/seam/faces/MockLogger.java 2010-04-07 19:01:35 UTC (rev 12413)
+++ modules/faces/trunk/impl/src/test/java/org/jboss/seam/faces/MockLogger.java 2010-04-07 20:49:59 UTC (rev 12414)
@@ -1,3 +1,24 @@
+/*
+ * JBoss, Community-driven Open Source Middleware
+ * Copyright 2010, JBoss by Red Hat, Inc., and individual contributors
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
package org.jboss.seam.faces;
import org.slf4j.Logger;
Modified: modules/faces/trunk/impl/src/test/java/org/jboss/seam/faces/context/FacesAnnotationsAdapterExtensionTest.java
===================================================================
--- modules/faces/trunk/impl/src/test/java/org/jboss/seam/faces/context/FacesAnnotationsAdapterExtensionTest.java 2010-04-07 19:01:35 UTC (rev 12413)
+++ modules/faces/trunk/impl/src/test/java/org/jboss/seam/faces/context/FacesAnnotationsAdapterExtensionTest.java 2010-04-07 20:49:59 UTC (rev 12414)
@@ -1,5 +1,23 @@
-/**
- *
+/*
+ * JBoss, Community-driven Open Source Middleware
+ * Copyright 2010, JBoss by Red Hat, Inc., and individual contributors
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package org.jboss.seam.faces.context;
Modified: modules/faces/trunk/impl/src/test/java/org/jboss/seam/faces/context/ImproperlyAnnotatedBean.java
===================================================================
--- modules/faces/trunk/impl/src/test/java/org/jboss/seam/faces/context/ImproperlyAnnotatedBean.java 2010-04-07 19:01:35 UTC (rev 12413)
+++ modules/faces/trunk/impl/src/test/java/org/jboss/seam/faces/context/ImproperlyAnnotatedBean.java 2010-04-07 20:49:59 UTC (rev 12414)
@@ -1,5 +1,23 @@
-/**
- *
+/*
+ * JBoss, Community-driven Open Source Middleware
+ * Copyright 2010, JBoss by Red Hat, Inc., and individual contributors
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package org.jboss.seam.faces.context;
Modified: modules/faces/trunk/impl/src/test/java/org/jboss/seam/faces/context/conversation/ConversationBoundaryInterceptorTest.java
===================================================================
--- modules/faces/trunk/impl/src/test/java/org/jboss/seam/faces/context/conversation/ConversationBoundaryInterceptorTest.java 2010-04-07 19:01:35 UTC (rev 12413)
+++ modules/faces/trunk/impl/src/test/java/org/jboss/seam/faces/context/conversation/ConversationBoundaryInterceptorTest.java 2010-04-07 20:49:59 UTC (rev 12414)
@@ -1,5 +1,23 @@
-/**
- *
+/*
+ * JBoss, Community-driven Open Source Middleware
+ * Copyright 2010, JBoss by Red Hat, Inc., and individual contributors
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package org.jboss.seam.faces.context.conversation;
Modified: modules/faces/trunk/impl/src/test/java/org/jboss/seam/faces/context/conversation/ConversationalBean.java
===================================================================
--- modules/faces/trunk/impl/src/test/java/org/jboss/seam/faces/context/conversation/ConversationalBean.java 2010-04-07 19:01:35 UTC (rev 12413)
+++ modules/faces/trunk/impl/src/test/java/org/jboss/seam/faces/context/conversation/ConversationalBean.java 2010-04-07 20:49:59 UTC (rev 12414)
@@ -1,5 +1,23 @@
-/**
- *
+/*
+ * JBoss, Community-driven Open Source Middleware
+ * Copyright 2010, JBoss by Red Hat, Inc., and individual contributors
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package org.jboss.seam.faces.context.conversation;
Modified: modules/faces/trunk/impl/src/test/java/org/jboss/seam/faces/environment/ExternalContextProducerTest.java
===================================================================
--- modules/faces/trunk/impl/src/test/java/org/jboss/seam/faces/environment/ExternalContextProducerTest.java 2010-04-07 19:01:35 UTC (rev 12413)
+++ modules/faces/trunk/impl/src/test/java/org/jboss/seam/faces/environment/ExternalContextProducerTest.java 2010-04-07 20:49:59 UTC (rev 12414)
@@ -1,3 +1,24 @@
+/*
+ * JBoss, Community-driven Open Source Middleware
+ * Copyright 2010, JBoss by Red Hat, Inc., and individual contributors
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
package org.jboss.seam.faces.environment;
import javax.enterprise.context.ContextNotActiveException;
Modified: modules/faces/trunk/impl/src/test/java/org/jboss/seam/faces/environment/FacesContextProducerTest.java
===================================================================
--- modules/faces/trunk/impl/src/test/java/org/jboss/seam/faces/environment/FacesContextProducerTest.java 2010-04-07 19:01:35 UTC (rev 12413)
+++ modules/faces/trunk/impl/src/test/java/org/jboss/seam/faces/environment/FacesContextProducerTest.java 2010-04-07 20:49:59 UTC (rev 12414)
@@ -1,3 +1,24 @@
+/*
+ * JBoss, Community-driven Open Source Middleware
+ * Copyright 2010, JBoss by Red Hat, Inc., and individual contributors
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
package org.jboss.seam.faces.environment;
import javax.enterprise.context.ContextNotActiveException;
Modified: modules/faces/trunk/impl/src/test/java/org/jboss/seam/faces/environment/MockExternalContext.java
===================================================================
--- modules/faces/trunk/impl/src/test/java/org/jboss/seam/faces/environment/MockExternalContext.java 2010-04-07 19:01:35 UTC (rev 12413)
+++ modules/faces/trunk/impl/src/test/java/org/jboss/seam/faces/environment/MockExternalContext.java 2010-04-07 20:49:59 UTC (rev 12414)
@@ -1,3 +1,24 @@
+/*
+ * JBoss, Community-driven Open Source Middleware
+ * Copyright 2010, JBoss by Red Hat, Inc., and individual contributors
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
package org.jboss.seam.faces.environment;
import javax.faces.context.ExternalContext;
Modified: modules/faces/trunk/impl/src/test/java/org/jboss/seam/faces/environment/MockFacesContext.java
===================================================================
--- modules/faces/trunk/impl/src/test/java/org/jboss/seam/faces/environment/MockFacesContext.java 2010-04-07 19:01:35 UTC (rev 12413)
+++ modules/faces/trunk/impl/src/test/java/org/jboss/seam/faces/environment/MockFacesContext.java 2010-04-07 20:49:59 UTC (rev 12414)
@@ -1,3 +1,24 @@
+/*
+ * JBoss, Community-driven Open Source Middleware
+ * Copyright 2010, JBoss by Red Hat, Inc., and individual contributors
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
package org.jboss.seam.faces.environment;
import java.util.Iterator;
Modified: modules/faces/trunk/impl/src/test/java/org/jboss/seam/faces/event/PhaseEventBridgeTest.java
===================================================================
--- modules/faces/trunk/impl/src/test/java/org/jboss/seam/faces/event/PhaseEventBridgeTest.java 2010-04-07 19:01:35 UTC (rev 12413)
+++ modules/faces/trunk/impl/src/test/java/org/jboss/seam/faces/event/PhaseEventBridgeTest.java 2010-04-07 20:49:59 UTC (rev 12414)
@@ -1,3 +1,24 @@
+/*
+ * JBoss, Community-driven Open Source Middleware
+ * Copyright 2010, JBoss by Red Hat, Inc., and individual contributors
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
package org.jboss.seam.faces.event;
import java.util.ArrayList;
@@ -20,6 +41,11 @@
import org.junit.Test;
import org.junit.runner.RunWith;
+/**
+ *
+ * @author Nicklas Karlsson
+ *
+ */
@RunWith(Arquillian.class)
public class PhaseEventBridgeTest
{
Modified: modules/faces/trunk/impl/src/test/java/org/jboss/seam/faces/event/PhaseEventObserver.java
===================================================================
--- modules/faces/trunk/impl/src/test/java/org/jboss/seam/faces/event/PhaseEventObserver.java 2010-04-07 19:01:35 UTC (rev 12413)
+++ modules/faces/trunk/impl/src/test/java/org/jboss/seam/faces/event/PhaseEventObserver.java 2010-04-07 20:49:59 UTC (rev 12414)
@@ -1,3 +1,24 @@
+/*
+ * JBoss, Community-driven Open Source Middleware
+ * Copyright 2010, JBoss by Red Hat, Inc., and individual contributors
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
package org.jboss.seam.faces.event;
import java.util.ArrayList;
@@ -20,6 +41,11 @@
import org.jboss.seam.faces.event.qualifier.RestoreView;
import org.jboss.seam.faces.event.qualifier.UpdateModelValues;
+/**
+ *
+ * @author Nicklas Karlsson
+ *
+ */
public @ApplicationScoped class PhaseEventObserver
{
private Map<String, List<PhaseId>> observations = new HashMap<String, List<PhaseId>>();
Modified: modules/faces/trunk/impl/src/test/java/org/jboss/seam/faces/event/SystemEventBridgeTest.java
===================================================================
--- modules/faces/trunk/impl/src/test/java/org/jboss/seam/faces/event/SystemEventBridgeTest.java 2010-04-07 19:01:35 UTC (rev 12413)
+++ modules/faces/trunk/impl/src/test/java/org/jboss/seam/faces/event/SystemEventBridgeTest.java 2010-04-07 20:49:59 UTC (rev 12414)
@@ -1,3 +1,24 @@
+/*
+ * JBoss, Community-driven Open Source Middleware
+ * Copyright 2010, JBoss by Red Hat, Inc., and individual contributors
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
package org.jboss.seam.faces.event;
import java.util.HashMap;
@@ -25,6 +46,11 @@
import org.junit.Test;
import org.junit.runner.RunWith;
+/**
+ *
+ * @author Nicklas Karlsson
+ *
+ */
@RunWith(Arquillian.class)
public class SystemEventBridgeTest
{
Modified: modules/faces/trunk/impl/src/test/java/org/jboss/seam/faces/event/SystemEventObserver.java
===================================================================
--- modules/faces/trunk/impl/src/test/java/org/jboss/seam/faces/event/SystemEventObserver.java 2010-04-07 19:01:35 UTC (rev 12413)
+++ modules/faces/trunk/impl/src/test/java/org/jboss/seam/faces/event/SystemEventObserver.java 2010-04-07 20:49:59 UTC (rev 12414)
@@ -1,3 +1,24 @@
+/*
+ * JBoss, Community-driven Open Source Middleware
+ * Copyright 2010, JBoss by Red Hat, Inc., and individual contributors
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
package org.jboss.seam.faces.event;
import javax.enterprise.context.ApplicationScoped;
@@ -9,6 +30,11 @@
import javax.faces.event.PreDestroyApplicationEvent;
import javax.faces.event.PreDestroyCustomScopeEvent;
+/**
+ *
+ * @author Nicklas Karlsson
+ *
+ */
public @ApplicationScoped class SystemEventObserver
{
public static boolean componentSystemEvent;
Modified: modules/faces/trunk/impl/src/test/java/org/jboss/seam/faces/util/AnnotationTestObject.java
===================================================================
--- modules/faces/trunk/impl/src/test/java/org/jboss/seam/faces/util/AnnotationTestObject.java 2010-04-07 19:01:35 UTC (rev 12413)
+++ modules/faces/trunk/impl/src/test/java/org/jboss/seam/faces/util/AnnotationTestObject.java 2010-04-07 20:49:59 UTC (rev 12414)
@@ -1,3 +1,24 @@
+/*
+ * JBoss, Community-driven Open Source Middleware
+ * Copyright 2010, JBoss by Red Hat, Inc., and individual contributors
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
package org.jboss.seam.faces.util;
import org.jboss.seam.faces.context.conversation.Begin;
Modified: modules/faces/trunk/impl/src/test/java/org/jboss/seam/faces/util/AnnotationsTest.java
===================================================================
--- modules/faces/trunk/impl/src/test/java/org/jboss/seam/faces/util/AnnotationsTest.java 2010-04-07 19:01:35 UTC (rev 12413)
+++ modules/faces/trunk/impl/src/test/java/org/jboss/seam/faces/util/AnnotationsTest.java 2010-04-07 20:49:59 UTC (rev 12414)
@@ -1,3 +1,24 @@
+/*
+ * JBoss, Community-driven Open Source Middleware
+ * Copyright 2010, JBoss by Red Hat, Inc., and individual contributors
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
package org.jboss.seam.faces.util;
import static org.junit.Assert.assertFalse;
Modified: modules/servlet/trunk/src/main/java/org/jboss/seam/servlet/ContextualHttpRequest.java
===================================================================
--- modules/servlet/trunk/src/main/java/org/jboss/seam/servlet/ContextualHttpRequest.java 2010-04-07 19:01:35 UTC (rev 12413)
+++ modules/servlet/trunk/src/main/java/org/jboss/seam/servlet/ContextualHttpRequest.java 2010-04-07 20:49:59 UTC (rev 12414)
@@ -1,3 +1,24 @@
+/*
+ * JBoss, Community-driven Open Source Middleware
+ * Copyright 2010, JBoss by Red Hat, Inc., and individual contributors
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
package org.jboss.seam.servlet;
import javax.servlet.http.HttpServletRequest;
@@ -7,6 +28,11 @@
import org.jboss.weld.conversation.ConversationManager;
import org.jboss.weld.servlet.ServletLifecycle;
+/**
+ *
+ * @author Nicklas Karlsson
+ *
+ */
public abstract class ContextualHttpRequest
{
private HttpServletRequest request;
Modified: modules/servlet/trunk/src/main/java/org/jboss/seam/servlet/HttpManager.java
===================================================================
--- modules/servlet/trunk/src/main/java/org/jboss/seam/servlet/HttpManager.java 2010-04-07 19:01:35 UTC (rev 12413)
+++ modules/servlet/trunk/src/main/java/org/jboss/seam/servlet/HttpManager.java 2010-04-07 20:49:59 UTC (rev 12414)
@@ -1,3 +1,24 @@
+/*
+ * JBoss, Community-driven Open Source Middleware
+ * Copyright 2010, JBoss by Red Hat, Inc., and individual contributors
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
package org.jboss.seam.servlet;
import java.io.Serializable;
@@ -24,7 +45,6 @@
* @author Nicklas Karlsson
*
*/
-
public @SessionScoped class HttpManager implements Serializable
{
private static final long serialVersionUID = 5191073522575178427L;
Modified: modules/servlet/trunk/src/main/java/org/jboss/seam/servlet/HttpParam.java
===================================================================
--- modules/servlet/trunk/src/main/java/org/jboss/seam/servlet/HttpParam.java 2010-04-07 19:01:35 UTC (rev 12413)
+++ modules/servlet/trunk/src/main/java/org/jboss/seam/servlet/HttpParam.java 2010-04-07 20:49:59 UTC (rev 12414)
@@ -1,3 +1,24 @@
+/*
+ * JBoss, Community-driven Open Source Middleware
+ * Copyright 2010, JBoss by Red Hat, Inc., and individual contributors
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
package org.jboss.seam.servlet;
import static java.lang.annotation.ElementType.FIELD;
Modified: modules/servlet/trunk/src/main/java/org/jboss/seam/servlet/event/ServletEventListener.java
===================================================================
--- modules/servlet/trunk/src/main/java/org/jboss/seam/servlet/event/ServletEventListener.java 2010-04-07 19:01:35 UTC (rev 12413)
+++ modules/servlet/trunk/src/main/java/org/jboss/seam/servlet/event/ServletEventListener.java 2010-04-07 20:49:59 UTC (rev 12414)
@@ -1,3 +1,24 @@
+/*
+ * JBoss, Community-driven Open Source Middleware
+ * Copyright 2010, JBoss by Red Hat, Inc., and individual contributors
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
package org.jboss.seam.servlet.event;
import java.io.IOException;
Modified: modules/servlet/trunk/src/main/java/org/jboss/seam/servlet/event/qualifier/AttributeAdded.java
===================================================================
--- modules/servlet/trunk/src/main/java/org/jboss/seam/servlet/event/qualifier/AttributeAdded.java 2010-04-07 19:01:35 UTC (rev 12413)
+++ modules/servlet/trunk/src/main/java/org/jboss/seam/servlet/event/qualifier/AttributeAdded.java 2010-04-07 20:49:59 UTC (rev 12414)
@@ -1,3 +1,24 @@
+/*
+ * JBoss, Community-driven Open Source Middleware
+ * Copyright 2010, JBoss by Red Hat, Inc., and individual contributors
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
package org.jboss.seam.servlet.event.qualifier;
import static java.lang.annotation.ElementType.FIELD;
Modified: modules/servlet/trunk/src/main/java/org/jboss/seam/servlet/event/qualifier/AttributeRemoved.java
===================================================================
--- modules/servlet/trunk/src/main/java/org/jboss/seam/servlet/event/qualifier/AttributeRemoved.java 2010-04-07 19:01:35 UTC (rev 12413)
+++ modules/servlet/trunk/src/main/java/org/jboss/seam/servlet/event/qualifier/AttributeRemoved.java 2010-04-07 20:49:59 UTC (rev 12414)
@@ -1,3 +1,24 @@
+/*
+ * JBoss, Community-driven Open Source Middleware
+ * Copyright 2010, JBoss by Red Hat, Inc., and individual contributors
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
package org.jboss.seam.servlet.event.qualifier;
import java.lang.annotation.Retention;
Modified: modules/servlet/trunk/src/main/java/org/jboss/seam/servlet/event/qualifier/AttributeReplaced.java
===================================================================
--- modules/servlet/trunk/src/main/java/org/jboss/seam/servlet/event/qualifier/AttributeReplaced.java 2010-04-07 19:01:35 UTC (rev 12413)
+++ modules/servlet/trunk/src/main/java/org/jboss/seam/servlet/event/qualifier/AttributeReplaced.java 2010-04-07 20:49:59 UTC (rev 12414)
@@ -1,3 +1,24 @@
+/*
+ * JBoss, Community-driven Open Source Middleware
+ * Copyright 2010, JBoss by Red Hat, Inc., and individual contributors
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
package org.jboss.seam.servlet.event.qualifier;
import java.lang.annotation.Retention;
Modified: modules/servlet/trunk/src/main/java/org/jboss/seam/servlet/event/qualifier/Complete.java
===================================================================
--- modules/servlet/trunk/src/main/java/org/jboss/seam/servlet/event/qualifier/Complete.java 2010-04-07 19:01:35 UTC (rev 12413)
+++ modules/servlet/trunk/src/main/java/org/jboss/seam/servlet/event/qualifier/Complete.java 2010-04-07 20:49:59 UTC (rev 12414)
@@ -1,3 +1,24 @@
+/*
+ * JBoss, Community-driven Open Source Middleware
+ * Copyright 2010, JBoss by Red Hat, Inc., and individual contributors
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
package org.jboss.seam.servlet.event.qualifier;
import static java.lang.annotation.ElementType.FIELD;
Modified: modules/servlet/trunk/src/main/java/org/jboss/seam/servlet/event/qualifier/Created.java
===================================================================
--- modules/servlet/trunk/src/main/java/org/jboss/seam/servlet/event/qualifier/Created.java 2010-04-07 19:01:35 UTC (rev 12413)
+++ modules/servlet/trunk/src/main/java/org/jboss/seam/servlet/event/qualifier/Created.java 2010-04-07 20:49:59 UTC (rev 12414)
@@ -1,3 +1,24 @@
+/*
+ * JBoss, Community-driven Open Source Middleware
+ * Copyright 2010, JBoss by Red Hat, Inc., and individual contributors
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
package org.jboss.seam.servlet.event.qualifier;
import static java.lang.annotation.ElementType.FIELD;
Modified: modules/servlet/trunk/src/main/java/org/jboss/seam/servlet/event/qualifier/Destroyed.java
===================================================================
--- modules/servlet/trunk/src/main/java/org/jboss/seam/servlet/event/qualifier/Destroyed.java 2010-04-07 19:01:35 UTC (rev 12413)
+++ modules/servlet/trunk/src/main/java/org/jboss/seam/servlet/event/qualifier/Destroyed.java 2010-04-07 20:49:59 UTC (rev 12414)
@@ -1,3 +1,24 @@
+/*
+ * JBoss, Community-driven Open Source Middleware
+ * Copyright 2010, JBoss by Red Hat, Inc., and individual contributors
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
package org.jboss.seam.servlet.event.qualifier;
import static java.lang.annotation.ElementType.FIELD;
Modified: modules/servlet/trunk/src/main/java/org/jboss/seam/servlet/event/qualifier/DidActivate.java
===================================================================
--- modules/servlet/trunk/src/main/java/org/jboss/seam/servlet/event/qualifier/DidActivate.java 2010-04-07 19:01:35 UTC (rev 12413)
+++ modules/servlet/trunk/src/main/java/org/jboss/seam/servlet/event/qualifier/DidActivate.java 2010-04-07 20:49:59 UTC (rev 12414)
@@ -1,3 +1,24 @@
+/*
+ * JBoss, Community-driven Open Source Middleware
+ * Copyright 2010, JBoss by Red Hat, Inc., and individual contributors
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
package org.jboss.seam.servlet.event.qualifier;
import java.lang.annotation.Retention;
Modified: modules/servlet/trunk/src/main/java/org/jboss/seam/servlet/event/qualifier/Error.java
===================================================================
--- modules/servlet/trunk/src/main/java/org/jboss/seam/servlet/event/qualifier/Error.java 2010-04-07 19:01:35 UTC (rev 12413)
+++ modules/servlet/trunk/src/main/java/org/jboss/seam/servlet/event/qualifier/Error.java 2010-04-07 20:49:59 UTC (rev 12414)
@@ -1,3 +1,24 @@
+/*
+ * JBoss, Community-driven Open Source Middleware
+ * Copyright 2010, JBoss by Red Hat, Inc., and individual contributors
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
package org.jboss.seam.servlet.event.qualifier;
import static java.lang.annotation.ElementType.FIELD;
Modified: modules/servlet/trunk/src/main/java/org/jboss/seam/servlet/event/qualifier/Initialized.java
===================================================================
--- modules/servlet/trunk/src/main/java/org/jboss/seam/servlet/event/qualifier/Initialized.java 2010-04-07 19:01:35 UTC (rev 12413)
+++ modules/servlet/trunk/src/main/java/org/jboss/seam/servlet/event/qualifier/Initialized.java 2010-04-07 20:49:59 UTC (rev 12414)
@@ -1,3 +1,24 @@
+/*
+ * JBoss, Community-driven Open Source Middleware
+ * Copyright 2010, JBoss by Red Hat, Inc., and individual contributors
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
package org.jboss.seam.servlet.event.qualifier;
import static java.lang.annotation.ElementType.FIELD;
Modified: modules/servlet/trunk/src/main/java/org/jboss/seam/servlet/event/qualifier/StartAsync.java
===================================================================
--- modules/servlet/trunk/src/main/java/org/jboss/seam/servlet/event/qualifier/StartAsync.java 2010-04-07 19:01:35 UTC (rev 12413)
+++ modules/servlet/trunk/src/main/java/org/jboss/seam/servlet/event/qualifier/StartAsync.java 2010-04-07 20:49:59 UTC (rev 12414)
@@ -1,3 +1,24 @@
+/*
+ * JBoss, Community-driven Open Source Middleware
+ * Copyright 2010, JBoss by Red Hat, Inc., and individual contributors
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
package org.jboss.seam.servlet.event.qualifier;
import java.lang.annotation.Retention;
Modified: modules/servlet/trunk/src/main/java/org/jboss/seam/servlet/event/qualifier/Timeout.java
===================================================================
--- modules/servlet/trunk/src/main/java/org/jboss/seam/servlet/event/qualifier/Timeout.java 2010-04-07 19:01:35 UTC (rev 12413)
+++ modules/servlet/trunk/src/main/java/org/jboss/seam/servlet/event/qualifier/Timeout.java 2010-04-07 20:49:59 UTC (rev 12414)
@@ -1,3 +1,24 @@
+/*
+ * JBoss, Community-driven Open Source Middleware
+ * Copyright 2010, JBoss by Red Hat, Inc., and individual contributors
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
package org.jboss.seam.servlet.event.qualifier;
import java.lang.annotation.Retention;
Modified: modules/servlet/trunk/src/main/java/org/jboss/seam/servlet/event/qualifier/ValueBound.java
===================================================================
--- modules/servlet/trunk/src/main/java/org/jboss/seam/servlet/event/qualifier/ValueBound.java 2010-04-07 19:01:35 UTC (rev 12413)
+++ modules/servlet/trunk/src/main/java/org/jboss/seam/servlet/event/qualifier/ValueBound.java 2010-04-07 20:49:59 UTC (rev 12414)
@@ -1,3 +1,24 @@
+/*
+ * JBoss, Community-driven Open Source Middleware
+ * Copyright 2010, JBoss by Red Hat, Inc., and individual contributors
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
package org.jboss.seam.servlet.event.qualifier;
import static java.lang.annotation.ElementType.FIELD;
Modified: modules/servlet/trunk/src/main/java/org/jboss/seam/servlet/event/qualifier/ValueUnbound.java
===================================================================
--- modules/servlet/trunk/src/main/java/org/jboss/seam/servlet/event/qualifier/ValueUnbound.java 2010-04-07 19:01:35 UTC (rev 12413)
+++ modules/servlet/trunk/src/main/java/org/jboss/seam/servlet/event/qualifier/ValueUnbound.java 2010-04-07 20:49:59 UTC (rev 12414)
@@ -1,3 +1,24 @@
+/*
+ * JBoss, Community-driven Open Source Middleware
+ * Copyright 2010, JBoss by Red Hat, Inc., and individual contributors
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
package org.jboss.seam.servlet.event.qualifier;
import java.lang.annotation.Retention;
Modified: modules/servlet/trunk/src/main/java/org/jboss/seam/servlet/event/qualifier/WillPassivate.java
===================================================================
--- modules/servlet/trunk/src/main/java/org/jboss/seam/servlet/event/qualifier/WillPassivate.java 2010-04-07 19:01:35 UTC (rev 12413)
+++ modules/servlet/trunk/src/main/java/org/jboss/seam/servlet/event/qualifier/WillPassivate.java 2010-04-07 20:49:59 UTC (rev 12414)
@@ -1,3 +1,24 @@
+/*
+ * JBoss, Community-driven Open Source Middleware
+ * Copyright 2010, JBoss by Red Hat, Inc., and individual contributors
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
package org.jboss.seam.servlet.event.qualifier;
import java.lang.annotation.Retention;
16 years
Seam SVN: r12413 - branches/community/Seam_2_2/src/main/org/jboss/seam/bpm.
by seam-commits@lists.jboss.org
Author: tsurdilovic
Date: 2010-04-07 15:01:35 -0400 (Wed, 07 Apr 2010)
New Revision: 12413
Modified:
branches/community/Seam_2_2/src/main/org/jboss/seam/bpm/ProcessInstance.java
Log:
JBSEAM-4629
Modified: branches/community/Seam_2_2/src/main/org/jboss/seam/bpm/ProcessInstance.java
===================================================================
--- branches/community/Seam_2_2/src/main/org/jboss/seam/bpm/ProcessInstance.java 2010-04-07 13:13:36 UTC (rev 12412)
+++ branches/community/Seam_2_2/src/main/org/jboss/seam/bpm/ProcessInstance.java 2010-04-07 19:01:35 UTC (rev 12413)
@@ -46,7 +46,9 @@
if (processId!=null)
{
//TODO: do we need to cache this??
- return ManagedJbpmContext.instance().getProcessInstanceForUpdate(processId);
+ //return ManagedJbpmContext.instance().getProcessInstanceForUpdate(processId);
+ //JBSEAM-4629:
+ return ManagedJbpmContext.instance().getProcessInstance(processId);
}
else
{
16 years
Seam SVN: r12412 - in branches/enterprise/JBPAPP_4_3_FP01: examples/remoting/chatroom/resources and 4 other directories.
by seam-commits@lists.jboss.org
Author: manaRH
Date: 2010-04-07 09:13:36 -0400 (Wed, 07 Apr 2010)
New Revision: 12412
Modified:
branches/enterprise/JBPAPP_4_3_FP01/examples/build.xml
branches/enterprise/JBPAPP_4_3_FP01/examples/remoting/chatroom/resources/treecache.xml
branches/enterprise/JBPAPP_4_3_FP01/examples/ui/resources/treecache.xml
branches/enterprise/JBPAPP_4_3_FP01/seam-gen/build-scripts/.classpath
branches/enterprise/JBPAPP_4_3_FP01/seam-gen/icefaces/build-scripts/.classpath
branches/enterprise/JBPAPP_4_3_FP01/seam-gen/nbproject/project.xml
Log:
JBPAPP-4056, JBPAPP-4055 fixing jboss-cache references
Modified: branches/enterprise/JBPAPP_4_3_FP01/examples/build.xml
===================================================================
--- branches/enterprise/JBPAPP_4_3_FP01/examples/build.xml 2010-04-07 06:28:08 UTC (rev 12411)
+++ branches/enterprise/JBPAPP_4_3_FP01/examples/build.xml 2010-04-07 13:13:36 UTC (rev 12412)
@@ -235,7 +235,7 @@
<!-- Dependencies for using Seam with JBoss Cache (s:cache) -->
<fileset id="cache.jar" dir="${lib.dir}">
- <include name="jboss-cache.jar" if="cache.lib" />
+ <include name="jboss-cache-jdk50.jar" if="cache.lib" />
<include name="jboss-aop.jar" if="cache.lib" />
<include name="jgroups.jar" if="cache.lib" />
</fileset>
Modified: branches/enterprise/JBPAPP_4_3_FP01/examples/remoting/chatroom/resources/treecache.xml
===================================================================
--- branches/enterprise/JBPAPP_4_3_FP01/examples/remoting/chatroom/resources/treecache.xml 2010-04-07 06:28:08 UTC (rev 12411)
+++ branches/enterprise/JBPAPP_4_3_FP01/examples/remoting/chatroom/resources/treecache.xml 2010-04-07 13:13:36 UTC (rev 12412)
@@ -8,7 +8,7 @@
<server>
- <classpath codebase="./lib" archives="jboss-cache.jar, jgroups.jar"/>
+ <classpath codebase="./lib" archives="jboss-cache-jdk50.jar, jgroups.jar"/>
<!-- ==================================================================== -->
Modified: branches/enterprise/JBPAPP_4_3_FP01/examples/ui/resources/treecache.xml
===================================================================
--- branches/enterprise/JBPAPP_4_3_FP01/examples/ui/resources/treecache.xml 2010-04-07 06:28:08 UTC (rev 12411)
+++ branches/enterprise/JBPAPP_4_3_FP01/examples/ui/resources/treecache.xml 2010-04-07 13:13:36 UTC (rev 12412)
@@ -8,7 +8,7 @@
<server>
- <classpath codebase="./lib" archives="jboss-cache.jar, jgroups.jar"/>
+ <classpath codebase="./lib" archives="jboss-cache-jdk50.jar, jgroups.jar"/>
<!-- ==================================================================== -->
Modified: branches/enterprise/JBPAPP_4_3_FP01/seam-gen/build-scripts/.classpath
===================================================================
--- branches/enterprise/JBPAPP_4_3_FP01/seam-gen/build-scripts/.classpath 2010-04-07 06:28:08 UTC (rev 12411)
+++ branches/enterprise/JBPAPP_4_3_FP01/seam-gen/build-scripts/.classpath 2010-04-07 13:13:36 UTC (rev 12412)
@@ -12,7 +12,7 @@
<classpathentry kind="lib" path="lib/hibernate-entitymanager.jar"/>
<classpathentry kind="lib" path="lib/jboss-seam.jar" sourcepath="lib/src/jboss-seam-sources.jar"/>
<classpathentry kind="lib" path="lib/jboss-seam-debug.jar"/>
- <classpathentry kind="lib" path="lib/jboss-cache.jar"/>
+ <classpathentry kind="lib" path="lib/jboss-cache-jdk50.jar"/>
<classpathentry kind="lib" path="lib/jbpm-jpdl.jar"/>
<classpathentry kind="lib" path="lib/antlr.jar"/>
<classpathentry kind="lib" path="lib/jgroups.jar"/>
@@ -31,7 +31,7 @@
<classpathentry kind="lib" path="lib/persistence-api.jar" />
<classpathentry kind="lib" path="lib/ejb-api.jar" />
<classpathentry kind="lib" path="lib/jsr250-api.jar" />
- <classpathentry kind="lib" path="lib/jta.jar" />
+ <!--<classpathentry kind="lib" path="lib/jta.jar" /> -->
<classpathentry kind="lib" path="lib/core.jar"/>
<classpathentry kind="lib" path="lib/jboss-embedded-api.jar"/>
<classpathentry kind="lib" path="lib/hibernate-search.jar" />
Modified: branches/enterprise/JBPAPP_4_3_FP01/seam-gen/icefaces/build-scripts/.classpath
===================================================================
--- branches/enterprise/JBPAPP_4_3_FP01/seam-gen/icefaces/build-scripts/.classpath 2010-04-07 06:28:08 UTC (rev 12411)
+++ branches/enterprise/JBPAPP_4_3_FP01/seam-gen/icefaces/build-scripts/.classpath 2010-04-07 13:13:36 UTC (rev 12412)
@@ -12,7 +12,7 @@
<classpathentry kind="lib" path="lib/hibernate-entitymanager.jar"/>
<classpathentry kind="lib" path="lib/jboss-seam.jar" sourcepath="lib/src/jboss-seam-sources.jar"/>
<classpathentry kind="lib" path="lib/jboss-seam-debug.jar"/>
- <classpathentry kind="lib" path="lib/jboss-cache.jar"/>
+ <classpathentry kind="lib" path="lib/jboss-cache-jdk50.jar"/>
<classpathentry kind="lib" path="lib/jbpm-jpdl.jar"/>
<classpathentry kind="lib" path="lib/antlr.jar"/>
<classpathentry kind="lib" path="lib/jgroups.jar"/>
Modified: branches/enterprise/JBPAPP_4_3_FP01/seam-gen/nbproject/project.xml
===================================================================
--- branches/enterprise/JBPAPP_4_3_FP01/seam-gen/nbproject/project.xml 2010-04-07 06:28:08 UTC (rev 12411)
+++ branches/enterprise/JBPAPP_4_3_FP01/seam-gen/nbproject/project.xml 2010-04-07 13:13:36 UTC (rev 12412)
@@ -96,18 +96,18 @@
<java-data xmlns="http://www.netbeans.org/ns/freeform-project-java/2">
<compilation-unit>
<package-root>src/model</package-root>
- <classpath mode="compile">lib/hibernate-validator.jar:lib/hibernate3.jar:lib/hibernate-annotations.jar:lib/hibernate-commons-annotations.jar:lib/hibernate-entitymanager.jar:lib/jboss-seam.jar:lib/jboss-seam-debug.jar:lib/jboss-cache.jar:lib/jbpm-jpdl.jar:lib/antlr.jar:lib/jgroups.jar:lib/jsf-facelets.jar:lib/jsf-api.jar:lib/servlet-api.jar:lib/jboss-el.jar:lib/el-api.jar:lib/mvel.jar:lib/drools-core.jar:lib/drools-compiler.jar:lib/janino.jar:lib/antlr-runtime.jar:lib/mail.jar:lib/persistence-api.jar:lib/ejb-api.jar:lib/jsr250-api.jar:lib/jta.jar:lib/core.jar:lib/jboss-embedded-api.jar:lib/hibernate-search.jar:lib/richfaces-api.jar:lib/richfaces-ui.jar:lib/@driverJar@:lib/lucene-core.jar</classpath>
+ <classpath mode="compile">lib/hibernate-validator.jar:lib/hibernate3.jar:lib/hibernate-annotations.jar:lib/hibernate-commons-annotations.jar:lib/hibernate-entitymanager.jar:lib/jboss-seam.jar:lib/jboss-seam-debug.jar:lib/jboss-cache-jdk50.jar:lib/jbpm-jpdl.jar:lib/antlr.jar:lib/jgroups.jar:lib/jsf-facelets.jar:lib/jsf-api.jar:lib/servlet-api.jar:lib/jboss-el.jar:lib/el-api.jar:lib/mvel.jar:lib/drools-core.jar:lib/drools-compiler.jar:lib/janino.jar:lib/antlr-runtime.jar:lib/mail.jar:lib/persistence-api.jar:lib/ejb-api.jar:lib/jsr250-api.jar:lib/jta.jar:lib/core.jar:lib/jboss-embedded-api.jar:lib/hibernate-search.jar:lib/richfaces-api.jar:lib/richfaces-ui.jar:lib/@driverJar@:lib/lucene-core.jar</classpath>
<source-level>1.5</source-level>
</compilation-unit>
<compilation-unit>
<package-root>src/action</package-root>
- <classpath mode="compile">lib/hibernate-validator.jar:lib/hibernate3.jar:lib/hibernate-annotations.jar:lib/hibernate-commons-annotations.jar:lib/hibernate-entitymanager.jar:lib/jboss-seam.jar:lib/jboss-seam-debug.jar:lib/jboss-cache.jar:lib/jbpm-jpdl.jar:lib/antlr.jar:lib/jgroups.jar:lib/jsf-facelets.jar:lib/jsf-api.jar:lib/servlet-api.jar:lib/jboss-el.jar:lib/el-api.jar:lib/mvel.jar:lib/drools-core.jar:lib/drools-compiler.jar:lib/janino.jar:lib/antlr-runtime.jar:lib/mail.jar:lib/persistence-api.jar:lib/ejb-api.jar:lib/jsr250-api.jar:lib/jta.jar:lib/core.jar:lib/jboss-embedded-api.jar:lib/hibernate-search.jar:lib/richfaces-api.jar:lib/richfaces-ui.jar:lib/@driverJar@:lib/lucene-core.jar</classpath>
+ <classpath mode="compile">lib/hibernate-validator.jar:lib/hibernate3.jar:lib/hibernate-annotations.jar:lib/hibernate-commons-annotations.jar:lib/hibernate-entitymanager.jar:lib/jboss-seam.jar:lib/jboss-seam-debug.jar:lib/jboss-cache-jdk50.jar:lib/jbpm-jpdl.jar:lib/antlr.jar:lib/jgroups.jar:lib/jsf-facelets.jar:lib/jsf-api.jar:lib/servlet-api.jar:lib/jboss-el.jar:lib/el-api.jar:lib/mvel.jar:lib/drools-core.jar:lib/drools-compiler.jar:lib/janino.jar:lib/antlr-runtime.jar:lib/mail.jar:lib/persistence-api.jar:lib/ejb-api.jar:lib/jsr250-api.jar:lib/jta.jar:lib/core.jar:lib/jboss-embedded-api.jar:lib/hibernate-search.jar:lib/richfaces-api.jar:lib/richfaces-ui.jar:lib/@driverJar@:lib/lucene-core.jar</classpath>
<source-level>1.5</source-level>
</compilation-unit>
<compilation-unit>
<package-root>src/test</package-root>
<unit-tests/>
- <classpath mode="compile">bootstrap:lib/hibernate-validator.jar:lib/hibernate3.jar:lib/hibernate-annotations.jar:lib/hibernate-commons-annotations.jar:lib/hibernate-entitymanager.jar:lib/jboss-seam.jar:lib/jboss-seam-debug.jar:lib/jboss-cache.jar:lib/jbpm-jpdl.jar:lib/antlr.jar:lib/jgroups.jar:lib/jsf-facelets.jar:lib/jsf-api.jar:lib/servlet-api.jar:lib/testng.jar:lib/jboss-el.jar:lib/el-api.jar:lib/mvel.jar:lib/drools-core.jar:lib/drools-compiler.jar:lib/janino.jar:lib/antlr-runtime.jar:lib/mail.jar:lib/persistence-api.jar:lib/ejb-api.jar:lib/jsr250-api.jar:lib/jta.jar:lib/core.jar:lib/jboss-embedded-api.jar:lib/hibernate-search.jar:lib/richfaces-api.jar:lib/@driverJar@:lib/lucene-core.jar</classpath>
+ <classpath mode="compile">bootstrap:lib/hibernate-validator.jar:lib/hibernate3.jar:lib/hibernate-annotations.jar:lib/hibernate-commons-annotations.jar:lib/hibernate-entitymanager.jar:lib/jboss-seam.jar:lib/jboss-seam-debug.jar:lib/jboss-cache-jdk50.jar:lib/jbpm-jpdl.jar:lib/antlr.jar:lib/jgroups.jar:lib/jsf-facelets.jar:lib/jsf-api.jar:lib/servlet-api.jar:lib/testng.jar:lib/jboss-el.jar:lib/el-api.jar:lib/mvel.jar:lib/drools-core.jar:lib/drools-compiler.jar:lib/janino.jar:lib/antlr-runtime.jar:lib/mail.jar:lib/persistence-api.jar:lib/ejb-api.jar:lib/jsr250-api.jar:lib/jta.jar:lib/core.jar:lib/jboss-embedded-api.jar:lib/hibernate-search.jar:lib/richfaces-api.jar:lib/@driverJar@:lib/lucene-core.jar</classpath>
<source-level>1.5</source-level>
</compilation-unit>
</java-data>
16 years