Seam SVN: r11132 - branches/community/Seam_2_2/src/main/org/jboss/seam/jms.
by seam-commits@lists.jboss.org
Author: dan.j.allen
Date: 2009-06-11 19:30:25 -0400 (Thu, 11 Jun 2009)
New Revision: 11132
Modified:
branches/community/Seam_2_2/src/main/org/jboss/seam/jms/ContextualMessageHandlerRequest.java
Log:
add business process support
Modified: branches/community/Seam_2_2/src/main/org/jboss/seam/jms/ContextualMessageHandlerRequest.java
===================================================================
--- branches/community/Seam_2_2/src/main/org/jboss/seam/jms/ContextualMessageHandlerRequest.java 2009-06-11 23:30:12 UTC (rev 11131)
+++ branches/community/Seam_2_2/src/main/org/jboss/seam/jms/ContextualMessageHandlerRequest.java 2009-06-11 23:30:25 UTC (rev 11132)
@@ -2,13 +2,18 @@
import java.lang.reflect.ParameterizedType;
+import javax.jms.JMSException;
import javax.jms.Message;
import javax.jms.TextMessage;
import org.jboss.seam.Component;
import org.jboss.seam.async.AbstractDispatcher;
+import org.jboss.seam.bpm.BusinessProcess;
import org.jboss.seam.contexts.Contexts;
import org.jboss.seam.contexts.Lifecycle;
+import org.jboss.seam.core.Init;
+import org.jboss.seam.log.LogProvider;
+import org.jboss.seam.log.Logging;
/**
* <p>
@@ -26,6 +31,8 @@
*/
public abstract class ContextualMessageHandlerRequest<T>
{
+ private static transient final LogProvider log = Logging.getLogProvider(ContextualMessageHandlerRequest.class);
+
private Message message;
private boolean setupRequired = false;
private Object result = null;
@@ -90,6 +97,11 @@
}
Contexts.getEventContext().set(AbstractDispatcher.EXECUTING_ASYNCHRONOUS_CALL, true);
+ if (Init.instance().isJbpmInstalled())
+ {
+ setupProcessOrTask();
+ }
+
Class<T> delegateClass = getDelegateClass();
if (delegateClass != null)
{
@@ -97,6 +109,37 @@
}
}
+ private void setupProcessOrTask()
+ {
+ try
+ {
+ Long taskId = message.getLongProperty("taskId");
+ if (taskId != null)
+ {
+ BusinessProcess.instance().resumeTask(taskId);
+ return;
+ }
+ }
+ catch (JMSException e)
+ {
+ log.debug("Could not retrieve taskId from message object: " + e.getMessage());
+ }
+
+ try
+ {
+ Long processId = message.getLongProperty("processId");
+ if (processId != null)
+ {
+ BusinessProcess.instance().resumeProcess(processId);
+ return;
+ }
+ }
+ catch (JMSException e)
+ {
+ log.debug("Could not retrieve processId from message object: " + e.getMessage());
+ }
+ }
+
private void cleanup()
{
Contexts.getEventContext().remove(AbstractDispatcher.EXECUTING_ASYNCHRONOUS_CALL);
15 years, 5 months
Seam SVN: r11131 - branches/community/Seam_2_1/src/main/org/jboss/seam/jms.
by seam-commits@lists.jboss.org
Author: dan.j.allen
Date: 2009-06-11 19:30:12 -0400 (Thu, 11 Jun 2009)
New Revision: 11131
Modified:
branches/community/Seam_2_1/src/main/org/jboss/seam/jms/ContextualMessageHandlerRequest.java
Log:
add business process support
Modified: branches/community/Seam_2_1/src/main/org/jboss/seam/jms/ContextualMessageHandlerRequest.java
===================================================================
--- branches/community/Seam_2_1/src/main/org/jboss/seam/jms/ContextualMessageHandlerRequest.java 2009-06-11 23:08:53 UTC (rev 11130)
+++ branches/community/Seam_2_1/src/main/org/jboss/seam/jms/ContextualMessageHandlerRequest.java 2009-06-11 23:30:12 UTC (rev 11131)
@@ -2,13 +2,18 @@
import java.lang.reflect.ParameterizedType;
+import javax.jms.JMSException;
import javax.jms.Message;
import javax.jms.TextMessage;
import org.jboss.seam.Component;
import org.jboss.seam.async.AbstractDispatcher;
+import org.jboss.seam.bpm.BusinessProcess;
import org.jboss.seam.contexts.Contexts;
import org.jboss.seam.contexts.Lifecycle;
+import org.jboss.seam.core.Init;
+import org.jboss.seam.log.LogProvider;
+import org.jboss.seam.log.Logging;
/**
* <p>
@@ -26,6 +31,8 @@
*/
public abstract class ContextualMessageHandlerRequest<T>
{
+ private static transient final LogProvider log = Logging.getLogProvider(ContextualMessageHandlerRequest.class);
+
private Message message;
private boolean setupRequired = false;
private Object result = null;
@@ -90,6 +97,11 @@
}
Contexts.getEventContext().set(AbstractDispatcher.EXECUTING_ASYNCHRONOUS_CALL, true);
+ if (Init.instance().isJbpmInstalled())
+ {
+ setupProcessOrTask();
+ }
+
Class<T> delegateClass = getDelegateClass();
if (delegateClass != null)
{
@@ -97,6 +109,37 @@
}
}
+ private void setupProcessOrTask()
+ {
+ try
+ {
+ Long taskId = message.getLongProperty("taskId");
+ if (taskId != null)
+ {
+ BusinessProcess.instance().resumeTask(taskId);
+ return;
+ }
+ }
+ catch (JMSException e)
+ {
+ log.debug("Could not retrieve taskId from message object: " + e.getMessage());
+ }
+
+ try
+ {
+ Long processId = message.getLongProperty("processId");
+ if (processId != null)
+ {
+ BusinessProcess.instance().resumeProcess(processId);
+ return;
+ }
+ }
+ catch (JMSException e)
+ {
+ log.debug("Could not retrieve processId from message object: " + e.getMessage());
+ }
+ }
+
private void cleanup()
{
Contexts.getEventContext().remove(AbstractDispatcher.EXECUTING_ASYNCHRONOUS_CALL);
15 years, 5 months
Seam SVN: r11130 - branches/community/Seam_2_2/src/main/org/jboss/seam/jms.
by seam-commits@lists.jboss.org
Author: dan.j.allen
Date: 2009-06-11 19:08:53 -0400 (Thu, 11 Jun 2009)
New Revision: 11130
Added:
branches/community/Seam_2_2/src/main/org/jboss/seam/jms/ContextualMessageHandlerRequest.java
branches/community/Seam_2_2/src/main/org/jboss/seam/jms/ContextualMessageHandlerRequestInterceptor.java
Log:
prototype for JBSEAM-4235
Added: branches/community/Seam_2_2/src/main/org/jboss/seam/jms/ContextualMessageHandlerRequest.java
===================================================================
--- branches/community/Seam_2_2/src/main/org/jboss/seam/jms/ContextualMessageHandlerRequest.java (rev 0)
+++ branches/community/Seam_2_2/src/main/org/jboss/seam/jms/ContextualMessageHandlerRequest.java 2009-06-11 23:08:53 UTC (rev 11130)
@@ -0,0 +1,118 @@
+package org.jboss.seam.jms;
+
+import java.lang.reflect.ParameterizedType;
+
+import javax.jms.Message;
+import javax.jms.TextMessage;
+
+import org.jboss.seam.Component;
+import org.jboss.seam.async.AbstractDispatcher;
+import org.jboss.seam.contexts.Contexts;
+import org.jboss.seam.contexts.Lifecycle;
+
+/**
+ * <p>
+ * A class which provides a contextual-thread context for message-driven beans
+ * in the scope of which Seam components can be instantiated and invoked.
+ * </p>
+ *
+ * <p>
+ * NOTE: Users are still likely to get the error reported in <a
+ * href="https://jira.jboss.org/jira/browse/EJBTHREE-898">EJBTHREE-898</a> if a
+ * transaction operation is performed in the message handler.
+ * </p>
+ *
+ * @author Dan Allen
+ */
+public abstract class ContextualMessageHandlerRequest<T>
+{
+ private Message message;
+ private boolean setupRequired = false;
+ private Object result = null;
+ private T delegate;
+
+ public ContextualMessageHandlerRequest(Message message)
+ {
+ this.message = message;
+ this.setupRequired = !Contexts.isApplicationContextActive() && !Contexts.isEventContextActive();
+ }
+
+ public void run() throws Exception
+ {
+ setup();
+ try
+ {
+ process();
+ }
+ finally
+ {
+ cleanup();
+ }
+ }
+
+ public abstract void process() throws Exception;
+
+ protected void setResult(Object result)
+ {
+ this.result = result;
+ }
+
+ public T getDelegate()
+ {
+ return delegate;
+ }
+
+ public Object getResult()
+ {
+ return result;
+ }
+
+ public Message getMessage()
+ {
+ return message;
+ }
+
+ /**
+ * A convenience method to return the message as a TextMessage. If the
+ * message is not a TextMessage, a null value is returned.
+ */
+ public TextMessage getTextMessage()
+ {
+ return message instanceof TextMessage ? (TextMessage) message : null;
+ }
+
+ @SuppressWarnings("unchecked")
+ private void setup()
+ {
+ if (setupRequired)
+ {
+ Lifecycle.beginCall();
+ }
+
+ Contexts.getEventContext().set(AbstractDispatcher.EXECUTING_ASYNCHRONOUS_CALL, true);
+ Class<T> delegateClass = getDelegateClass();
+ if (delegateClass != null)
+ {
+ delegate = (T) Component.getInstance(delegateClass);
+ }
+ }
+
+ private void cleanup()
+ {
+ Contexts.getEventContext().remove(AbstractDispatcher.EXECUTING_ASYNCHRONOUS_CALL);
+ if (setupRequired)
+ {
+ Lifecycle.endCall();
+ }
+ }
+
+ /**
+ * Get the type specified in the type parameter of the class. TODO This could
+ * be made safer
+ */
+ @SuppressWarnings("unchecked")
+ public Class<T> getDelegateClass()
+ {
+ return (Class<T>) ((ParameterizedType) getClass().getGenericSuperclass()).getActualTypeArguments()[0];
+ }
+}
Added: branches/community/Seam_2_2/src/main/org/jboss/seam/jms/ContextualMessageHandlerRequestInterceptor.java
===================================================================
--- branches/community/Seam_2_2/src/main/org/jboss/seam/jms/ContextualMessageHandlerRequestInterceptor.java (rev 0)
+++ branches/community/Seam_2_2/src/main/org/jboss/seam/jms/ContextualMessageHandlerRequestInterceptor.java 2009-06-11 23:08:53 UTC (rev 11130)
@@ -0,0 +1,44 @@
+package org.jboss.seam.jms;
+
+import javax.interceptor.AroundInvoke;
+import javax.interceptor.InvocationContext;
+import javax.jms.Message;
+
+/**
+ * <p>
+ * An interceptor which is intented to be applied to message-driven beans to
+ * setup a Seam request life cycle within the boundaries of the bean's method
+ * calls so Seam components can be instantiated and invoked.
+ * </p>
+ *
+ * <p>
+ * TODO It would be nice to bake in an exception callback like the async
+ * integration supports
+ * </P>
+ *
+ * @author Dan Allen
+ */
+public class ContextualMessageHandlerRequestInterceptor
+{
+ @AroundInvoke
+ public Object aroundInvoke(final InvocationContext invocation) throws Exception
+ {
+ String methodName = invocation.getMethod().getName();
+ Object[] args = invocation.getParameters();
+ if (!"onMessage".equals(methodName) || args.length != 1 || !(args[0] instanceof Message))
+ {
+ return invocation.proceed();
+ }
+
+ ContextualMessageHandlerRequest contextualRequest = new ContextualMessageHandlerRequest((Message) invocation.getParameters()[0])
+ {
+ @Override
+ public void process() throws Exception
+ {
+ setResult(invocation.proceed());
+ }
+ };
+ contextualRequest.run();
+ return contextualRequest.getResult();
+ }
+}
15 years, 5 months
Seam SVN: r11129 - branches/community/Seam_2_1/src/main/org/jboss/seam/jms.
by seam-commits@lists.jboss.org
Author: dan.j.allen
Date: 2009-06-11 19:04:21 -0400 (Thu, 11 Jun 2009)
New Revision: 11129
Added:
branches/community/Seam_2_1/src/main/org/jboss/seam/jms/ContextualMessageHandlerRequest.java
branches/community/Seam_2_1/src/main/org/jboss/seam/jms/ContextualMessageHandlerRequestInterceptor.java
Log:
prototype for JBSEAM-4235
Added: branches/community/Seam_2_1/src/main/org/jboss/seam/jms/ContextualMessageHandlerRequest.java
===================================================================
--- branches/community/Seam_2_1/src/main/org/jboss/seam/jms/ContextualMessageHandlerRequest.java (rev 0)
+++ branches/community/Seam_2_1/src/main/org/jboss/seam/jms/ContextualMessageHandlerRequest.java 2009-06-11 23:04:21 UTC (rev 11129)
@@ -0,0 +1,118 @@
+package org.jboss.seam.jms;
+
+import java.lang.reflect.ParameterizedType;
+
+import javax.jms.Message;
+import javax.jms.TextMessage;
+
+import org.jboss.seam.Component;
+import org.jboss.seam.async.AbstractDispatcher;
+import org.jboss.seam.contexts.Contexts;
+import org.jboss.seam.contexts.Lifecycle;
+
+/**
+ * <p>
+ * A class which provides a contextual-thread context for message-driven beans
+ * in the scope of which Seam components can be instantiated and invoked.
+ * </p>
+ *
+ * <p>
+ * NOTE: Users are still likely to get the error reported in <a
+ * href="https://jira.jboss.org/jira/browse/EJBTHREE-898">EJBTHREE-898</a> if a
+ * transaction operation is performed in the message handler.
+ * </p>
+ *
+ * @author Dan Allen
+ */
+public abstract class ContextualMessageHandlerRequest<T>
+{
+ private Message message;
+ private boolean setupRequired = false;
+ private Object result = null;
+ private T delegate;
+
+ public ContextualMessageHandlerRequest(Message message)
+ {
+ this.message = message;
+ this.setupRequired = !Contexts.isApplicationContextActive() && !Contexts.isEventContextActive();
+ }
+
+ public void run() throws Exception
+ {
+ setup();
+ try
+ {
+ process();
+ }
+ finally
+ {
+ cleanup();
+ }
+ }
+
+ public abstract void process() throws Exception;
+
+ protected void setResult(Object result)
+ {
+ this.result = result;
+ }
+
+ public T getDelegate()
+ {
+ return delegate;
+ }
+
+ public Object getResult()
+ {
+ return result;
+ }
+
+ public Message getMessage()
+ {
+ return message;
+ }
+
+ /**
+ * A convenience method to return the message as a TextMessage. If the
+ * message is not a TextMessage, a null value is returned.
+ */
+ public TextMessage getTextMessage()
+ {
+ return message instanceof TextMessage ? (TextMessage) message : null;
+ }
+
+ @SuppressWarnings("unchecked")
+ private void setup()
+ {
+ if (setupRequired)
+ {
+ Lifecycle.beginCall();
+ }
+
+ Contexts.getEventContext().set(AbstractDispatcher.EXECUTING_ASYNCHRONOUS_CALL, true);
+ Class<T> delegateClass = getDelegateClass();
+ if (delegateClass != null)
+ {
+ delegate = (T) Component.getInstance(delegateClass);
+ }
+ }
+
+ private void cleanup()
+ {
+ Contexts.getEventContext().remove(AbstractDispatcher.EXECUTING_ASYNCHRONOUS_CALL);
+ if (setupRequired)
+ {
+ Lifecycle.endCall();
+ }
+ }
+
+ /**
+ * Get the type specified in the type parameter of the class. TODO This could
+ * be made safer
+ */
+ @SuppressWarnings("unchecked")
+ public Class<T> getDelegateClass()
+ {
+ return (Class<T>) ((ParameterizedType) getClass().getGenericSuperclass()).getActualTypeArguments()[0];
+ }
+}
Added: branches/community/Seam_2_1/src/main/org/jboss/seam/jms/ContextualMessageHandlerRequestInterceptor.java
===================================================================
--- branches/community/Seam_2_1/src/main/org/jboss/seam/jms/ContextualMessageHandlerRequestInterceptor.java (rev 0)
+++ branches/community/Seam_2_1/src/main/org/jboss/seam/jms/ContextualMessageHandlerRequestInterceptor.java 2009-06-11 23:04:21 UTC (rev 11129)
@@ -0,0 +1,44 @@
+package org.jboss.seam.jms;
+
+import javax.interceptor.AroundInvoke;
+import javax.interceptor.InvocationContext;
+import javax.jms.Message;
+
+/**
+ * <p>
+ * An interceptor which is intented to be applied to message-driven beans to
+ * setup a Seam request life cycle within the boundaries of the bean's method
+ * calls so Seam components can be instantiated and invoked.
+ * </p>
+ *
+ * <p>
+ * TODO It would be nice to bake in an exception callback like the async
+ * integration supports
+ * </P>
+ *
+ * @author Dan Allen
+ */
+public class ContextualMessageHandlerRequestInterceptor
+{
+ @AroundInvoke
+ public Object aroundInvoke(final InvocationContext invocation) throws Exception
+ {
+ String methodName = invocation.getMethod().getName();
+ Object[] args = invocation.getParameters();
+ if (!"onMessage".equals(methodName) || args.length != 1 || !(args[0] instanceof Message))
+ {
+ return invocation.proceed();
+ }
+
+ ContextualMessageHandlerRequest contextualRequest = new ContextualMessageHandlerRequest((Message) invocation.getParameters()[0])
+ {
+ @Override
+ public void process() throws Exception
+ {
+ setResult(invocation.proceed());
+ }
+ };
+ contextualRequest.run();
+ return contextualRequest.getResult();
+ }
+}
15 years, 5 months
Seam SVN: r11128 - branches/community/Seam_2_1/build.
by seam-commits@lists.jboss.org
Author: manaRH
Date: 2009-06-11 17:38:46 -0400 (Thu, 11 Jun 2009)
New Revision: 11128
Modified:
branches/community/Seam_2_1/build/root.pom.xml
Log:
JBSEAM-4230
Modified: branches/community/Seam_2_1/build/root.pom.xml
===================================================================
--- branches/community/Seam_2_1/build/root.pom.xml 2009-06-11 21:32:56 UTC (rev 11127)
+++ branches/community/Seam_2_1/build/root.pom.xml 2009-06-11 21:38:46 UTC (rev 11128)
@@ -1054,6 +1054,11 @@
<groupId>xalan</groupId>
<artifactId>xalan</artifactId>
</exclusion>
+
+ <exclusion>
+ <groupId>com.sun</groupId>
+ <artifactId>tools</artifactId>
+ </exclusion>
</exclusions>
</dependency>
15 years, 5 months
Seam SVN: r11127 - branches/community/Seam_2_1/seam-gen/ivy.
by seam-commits@lists.jboss.org
Author: manaRH
Date: 2009-06-11 17:32:56 -0400 (Thu, 11 Jun 2009)
New Revision: 11127
Removed:
branches/community/Seam_2_1/seam-gen/ivy/.ivy.xml.swp
Log:
removed temp file
Deleted: branches/community/Seam_2_1/seam-gen/ivy/.ivy.xml.swp
===================================================================
(Binary files differ)
15 years, 5 months
Seam SVN: r11126 - in branches/community/Seam_2_2/doc/Seam_Reference_Guide: bn-IN and 22 other directories.
by seam-commits@lists.jboss.org
Author: nico.ben
Date: 2009-06-11 16:43:04 -0400 (Thu, 11 Jun 2009)
New Revision: 11126
Modified:
branches/community/Seam_2_2/doc/Seam_Reference_Guide/as-IN/Dependencies.po
branches/community/Seam_2_2/doc/Seam_Reference_Guide/as-IN/Hsearch.po
branches/community/Seam_2_2/doc/Seam_Reference_Guide/as-IN/Security.po
branches/community/Seam_2_2/doc/Seam_Reference_Guide/bn-IN/Dependencies.po
branches/community/Seam_2_2/doc/Seam_Reference_Guide/bn-IN/Hsearch.po
branches/community/Seam_2_2/doc/Seam_Reference_Guide/bn-IN/Security.po
branches/community/Seam_2_2/doc/Seam_Reference_Guide/de-DE/Dependencies.po
branches/community/Seam_2_2/doc/Seam_Reference_Guide/de-DE/Hsearch.po
branches/community/Seam_2_2/doc/Seam_Reference_Guide/de-DE/Security.po
branches/community/Seam_2_2/doc/Seam_Reference_Guide/es-ES/Dependencies.po
branches/community/Seam_2_2/doc/Seam_Reference_Guide/es-ES/Hsearch.po
branches/community/Seam_2_2/doc/Seam_Reference_Guide/es-ES/Security.po
branches/community/Seam_2_2/doc/Seam_Reference_Guide/es-MX/Dependencies.po
branches/community/Seam_2_2/doc/Seam_Reference_Guide/es-MX/Hsearch.po
branches/community/Seam_2_2/doc/Seam_Reference_Guide/es-MX/Security.po
branches/community/Seam_2_2/doc/Seam_Reference_Guide/fr-FR/Dependencies.po
branches/community/Seam_2_2/doc/Seam_Reference_Guide/fr-FR/Hsearch.po
branches/community/Seam_2_2/doc/Seam_Reference_Guide/fr-FR/Security.po
branches/community/Seam_2_2/doc/Seam_Reference_Guide/gu-IN/Dependencies.po
branches/community/Seam_2_2/doc/Seam_Reference_Guide/gu-IN/Hsearch.po
branches/community/Seam_2_2/doc/Seam_Reference_Guide/gu-IN/Security.po
branches/community/Seam_2_2/doc/Seam_Reference_Guide/hi-IN/Dependencies.po
branches/community/Seam_2_2/doc/Seam_Reference_Guide/hi-IN/Hsearch.po
branches/community/Seam_2_2/doc/Seam_Reference_Guide/hi-IN/Security.po
branches/community/Seam_2_2/doc/Seam_Reference_Guide/ja-JP/Dependencies.po
branches/community/Seam_2_2/doc/Seam_Reference_Guide/ja-JP/Hsearch.po
branches/community/Seam_2_2/doc/Seam_Reference_Guide/ja-JP/Security.po
branches/community/Seam_2_2/doc/Seam_Reference_Guide/kn-IN/Dependencies.po
branches/community/Seam_2_2/doc/Seam_Reference_Guide/kn-IN/Hsearch.po
branches/community/Seam_2_2/doc/Seam_Reference_Guide/kn-IN/Security.po
branches/community/Seam_2_2/doc/Seam_Reference_Guide/ko-KR/Dependencies.po
branches/community/Seam_2_2/doc/Seam_Reference_Guide/ko-KR/Hsearch.po
branches/community/Seam_2_2/doc/Seam_Reference_Guide/ko-KR/Security.po
branches/community/Seam_2_2/doc/Seam_Reference_Guide/ml-IN/Dependencies.po
branches/community/Seam_2_2/doc/Seam_Reference_Guide/ml-IN/Hsearch.po
branches/community/Seam_2_2/doc/Seam_Reference_Guide/ml-IN/Security.po
branches/community/Seam_2_2/doc/Seam_Reference_Guide/mr-IN/Dependencies.po
branches/community/Seam_2_2/doc/Seam_Reference_Guide/mr-IN/Hsearch.po
branches/community/Seam_2_2/doc/Seam_Reference_Guide/mr-IN/Security.po
branches/community/Seam_2_2/doc/Seam_Reference_Guide/or-IN/Dependencies.po
branches/community/Seam_2_2/doc/Seam_Reference_Guide/or-IN/Hsearch.po
branches/community/Seam_2_2/doc/Seam_Reference_Guide/or-IN/Security.po
branches/community/Seam_2_2/doc/Seam_Reference_Guide/pa-IN/Dependencies.po
branches/community/Seam_2_2/doc/Seam_Reference_Guide/pa-IN/Hsearch.po
branches/community/Seam_2_2/doc/Seam_Reference_Guide/pa-IN/Security.po
branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Annotations.pot
branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Author_Group.pot
branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Book_Info.pot
branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Cache.pot
branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/ClusteringAndEJBPassivation.pot
branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Components.pot
branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Concepts.pot
branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Configuration.pot
branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Controls.pot
branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Conversations.pot
branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Dependencies.pot
branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Drools.pot
branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Elenhancements.pot
branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Events.pot
branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Excel.pot
branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Feedback.pot
branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Framework.pot
branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Getting_Started_With_JBoss_Tools.pot
branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Gettingstarted.pot
branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Glassfish.pot
branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Groovy.pot
branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Guice.pot
branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Gwt.pot
branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Hsearch.pot
branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/I18n.pot
branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Itext.pot
branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Jbpm.pot
branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Jms.pot
branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Mail.pot
branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Performance.pot
branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Persistence.pot
branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Preface.pot
branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Remoting.pot
branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Revision_History.pot
branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Rss.pot
branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Security.pot
branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Spring.pot
branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Testing.pot
branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Text.pot
branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Tools.pot
branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Tutorial.pot
branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Validation.pot
branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Weblogic.pot
branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Webservices.pot
branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Websphere.pot
branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Wicket.pot
branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Xml.pot
branches/community/Seam_2_2/doc/Seam_Reference_Guide/pt-BR/Dependencies.po
branches/community/Seam_2_2/doc/Seam_Reference_Guide/pt-BR/Hsearch.po
branches/community/Seam_2_2/doc/Seam_Reference_Guide/pt-BR/Security.po
branches/community/Seam_2_2/doc/Seam_Reference_Guide/ru-RU/Dependencies.po
branches/community/Seam_2_2/doc/Seam_Reference_Guide/ru-RU/Hsearch.po
branches/community/Seam_2_2/doc/Seam_Reference_Guide/ru-RU/Security.po
branches/community/Seam_2_2/doc/Seam_Reference_Guide/si-LK/Dependencies.po
branches/community/Seam_2_2/doc/Seam_Reference_Guide/si-LK/Hsearch.po
branches/community/Seam_2_2/doc/Seam_Reference_Guide/si-LK/Security.po
branches/community/Seam_2_2/doc/Seam_Reference_Guide/sl-SL/Dependencies.po
branches/community/Seam_2_2/doc/Seam_Reference_Guide/sl-SL/Hsearch.po
branches/community/Seam_2_2/doc/Seam_Reference_Guide/sl-SL/Security.po
branches/community/Seam_2_2/doc/Seam_Reference_Guide/ta-IN/Dependencies.po
branches/community/Seam_2_2/doc/Seam_Reference_Guide/ta-IN/Hsearch.po
branches/community/Seam_2_2/doc/Seam_Reference_Guide/ta-IN/Security.po
branches/community/Seam_2_2/doc/Seam_Reference_Guide/te-IN/Dependencies.po
branches/community/Seam_2_2/doc/Seam_Reference_Guide/te-IN/Hsearch.po
branches/community/Seam_2_2/doc/Seam_Reference_Guide/te-IN/Security.po
branches/community/Seam_2_2/doc/Seam_Reference_Guide/zh-CN/Dependencies.po
branches/community/Seam_2_2/doc/Seam_Reference_Guide/zh-CN/Hsearch.po
branches/community/Seam_2_2/doc/Seam_Reference_Guide/zh-CN/Security.po
branches/community/Seam_2_2/doc/Seam_Reference_Guide/zh-TW/Dependencies.po
branches/community/Seam_2_2/doc/Seam_Reference_Guide/zh-TW/Hsearch.po
branches/community/Seam_2_2/doc/Seam_Reference_Guide/zh-TW/Security.po
Log:
POT and PO regeneration
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/as-IN/Dependencies.po
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/as-IN/Dependencies.po 2009-06-11 20:41:36 UTC (rev 11125)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/as-IN/Dependencies.po 2009-06-11 20:43:04 UTC (rev 11126)
@@ -5,7 +5,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-04-15 13:51+0000\n"
+"POT-Creation-Date: 2009-06-11 18:45+0000\n"
"PO-Revision-Date: 2008-04-04 01:24+0000\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -938,8 +938,8 @@
#: Dependencies.xml:1182
#, no-c-format
msgid ""
-"This sample POM will give you Seam, JPA (provided by Hibernate) and "
-"Hibernate Validator:"
+"This sample POM will give you Seam, JPA (provided by Hibernate), Hibernate "
+"Validator and Hibernate Search:"
msgstr ""
#. Tag: programlisting
@@ -970,25 +970,31 @@
" <dependency>\n"
" <groupId>org.hibernate</groupId>\n"
" <artifactId>hibernate-validator</artifactId>\n"
-" <version>3.0.0.GA</version>\n"
+" <version>3.1.0.GA</version>\n"
" </dependency>\n"
"\n"
" <dependency>\n"
" <groupId>org.hibernate</groupId>\n"
" <artifactId>hibernate-annotations</artifactId>\n"
-" <version>3.3.0.ga</version>\n"
+" <version>3.4.0.GA</version>\n"
" </dependency>\n"
"\n"
" <dependency>\n"
" <groupId>org.hibernate</groupId>\n"
" <artifactId>hibernate-entitymanager</artifactId>\n"
-" <version>3.3.1.ga</version>\n"
+" <version>3.4.0.GA</version>\n"
" </dependency>\n"
+" \n"
+" <dependency>\n"
+" <groupId>org.hibernate</groupId>\n"
+" <artifactId>hibernate-search</artifactId>\n"
+" <version>3.1.1.GA</version>\n"
+" </dependency>\n"
"\n"
" <dependency>\n"
" <groupId>org.jboss.seam</groupId>\n"
" <artifactId>jboss-seam</artifactId>\n"
-" <version>2.0.0.GA</version>\n"
+" <version>2.2.0.GA</version>\n"
" </dependency>\n"
" \n"
" </dependencies>\n"
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/as-IN/Hsearch.po
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/as-IN/Hsearch.po 2009-06-11 20:41:36 UTC (rev 11125)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/as-IN/Hsearch.po 2009-06-11 20:43:04 UTC (rev 11126)
@@ -5,7 +5,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-04-15 13:51+0000\n"
+"POT-Creation-Date: 2009-06-11 18:45+0000\n"
"PO-Revision-Date: 2008-04-04 01:24+0000\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -45,7 +45,7 @@
#: Hsearch.xml:21
#, no-c-format
msgid ""
-"Hibernate Search has been designed to integrates nicely and as naturally as "
+"Hibernate Search has been designed to integrate nicely and as naturally as "
"possible with JPA and Hibernate. As a natural extension, JBoss Seam provides "
"an Hibernate Search integration."
msgstr ""
@@ -132,7 +132,7 @@
" <property name=\"hibernate.ejb.event.post-delete\" \n"
" value=\"org.hibernate.search.event.FullTextIndexEventListener"
"\"/>\n"
-"\n"
+" \n"
" </properties>\n"
"</persistence-unit>]]>"
msgstr ""
@@ -141,12 +141,15 @@
#: Hsearch.xml:52
#, no-c-format
msgid ""
-"This step is no longer necessary if Hibernate Annotation or EntityManager "
-"3.3.x are used."
+"It is not longer necessary the register the event listeners if Hibernate "
+"Annotations or EntityManager 3.3.x are used. When using Hibernate Search 3.1."
+"x more eventlisteners are needed, but these are registered automatically by "
+"Hibernate Annotations; refer to the Hibernate Search reference for "
+"configuring it without EntityManager and Annotations."
msgstr ""
#. Tag: para
-#: Hsearch.xml:56
+#: Hsearch.xml:60
#, no-c-format
msgid ""
"In addition to the configuration file, the following jars have to be "
@@ -154,25 +157,25 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:61
+#: Hsearch.xml:65
#, no-c-format
msgid "hibernate-search.jar"
msgstr ""
#. Tag: para
-#: Hsearch.xml:65
+#: Hsearch.xml:69
#, no-c-format
msgid "hibernate-commons-annotations.jar"
msgstr ""
#. Tag: para
-#: Hsearch.xml:69
+#: Hsearch.xml:73
#, no-c-format
msgid "lucene-core.jar"
msgstr ""
#. Tag: para
-#: Hsearch.xml:74
+#: Hsearch.xml:78
#, no-c-format
msgid ""
"If you deploy those in a EAR, don't forget to update <filename>application."
@@ -180,13 +183,13 @@
msgstr ""
#. Tag: title
-#: Hsearch.xml:80
+#: Hsearch.xml:84
#, no-c-format
msgid "Usage"
msgstr ""
#. Tag: para
-#: Hsearch.xml:82
+#: Hsearch.xml:86
#, no-c-format
msgid ""
"Hibernate Search uses annotations to map entities to a Lucene index, check "
@@ -195,7 +198,7 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:87
+#: Hsearch.xml:91
#, no-c-format
msgid ""
"Hibernate Search is fully integrated with the API and semantic of JPA / "
@@ -206,7 +209,7 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:93
+#: Hsearch.xml:97
#, no-c-format
msgid ""
"When Hibernate Search is present, JBoss Seam injects a "
@@ -214,7 +217,7 @@
msgstr ""
#. Tag: programlisting
-#: Hsearch.xml:96
+#: Hsearch.xml:100
#, no-c-format
msgid ""
"<![CDATA[@Stateful\n"
@@ -237,7 +240,7 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:99
+#: Hsearch.xml:103
#, no-c-format
msgid ""
"<classname>FullTextSession</classname> extends <classname>org.hibernate."
@@ -245,14 +248,14 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:104
+#: Hsearch.xml:108
#, no-c-format
msgid ""
"If the Java Persistence API is used, a smoother integration is proposed."
msgstr ""
#. Tag: programlisting
-#: Hsearch.xml:107
+#: Hsearch.xml:111
#, no-c-format
msgid ""
"<![CDATA[@Stateful\n"
@@ -275,7 +278,7 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:109
+#: Hsearch.xml:113
#, no-c-format
msgid ""
"When Hibernate Search is present, a <classname>FulltextEntityManager</"
@@ -286,7 +289,7 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:116
+#: Hsearch.xml:120
#, no-c-format
msgid ""
"When an EJB 3.0 Session or Message Driven Bean injection is used (i.e. via "
@@ -299,7 +302,7 @@
msgstr ""
#. Tag: programlisting
-#: Hsearch.xml:124
+#: Hsearch.xml:128
#, no-c-format
msgid ""
"<![CDATA[@Stateful\n"
@@ -323,15 +326,15 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:129
+#: Hsearch.xml:133
#, no-c-format
msgid ""
"For people accustomed to Hibernate Search out of Seam, note that using "
-"<methodname>Search.createFullTextSession</methodname> is not necessary."
+"<methodname>Search.getFullTextSession</methodname> is not necessary."
msgstr ""
#. Tag: para
-#: Hsearch.xml:134
+#: Hsearch.xml:138
#, no-c-format
msgid ""
"Check the DVDStore or the blog examples of the JBoss Seam distribution for a "
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/as-IN/Security.po
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/as-IN/Security.po 2009-06-11 20:41:36 UTC (rev 11125)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/as-IN/Security.po 2009-06-11 20:43:04 UTC (rev 11126)
@@ -5,7 +5,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-06-11 07:43+0000\n"
+"POT-Creation-Date: 2009-06-11 18:45+0000\n"
"PO-Revision-Date: 2008-04-04 01:24+0000\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -1190,7 +1190,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:630 Security.xml:764 Security.xml:3382 Security.xml:3545
+#: Security.xml:630 Security.xml:764 Security.xml:3385 Security.xml:3548
#, no-c-format
msgid "Annotation"
msgstr ""
@@ -1203,8 +1203,8 @@
#. Tag: para
#: Security.xml:636 Security.xml:770 Security.xml:966 Security.xml:1418
-#: Security.xml:2147 Security.xml:2756 Security.xml:3171 Security.xml:3388
-#: Security.xml:3551 Security.xml:3792 Security.xml:4229
+#: Security.xml:2147 Security.xml:2756 Security.xml:3174 Security.xml:3391
+#: Security.xml:3554 Security.xml:3795 Security.xml:4232
#, no-c-format
msgid "Description"
msgstr ""
@@ -2228,8 +2228,8 @@
msgstr ""
#. Tag: para
-#: Security.xml:1412 Security.xml:1828 Security.xml:2753 Security.xml:3168
-#: Security.xml:3789 Security.xml:3958
+#: Security.xml:1412 Security.xml:1828 Security.xml:2753 Security.xml:3171
+#: Security.xml:3792 Security.xml:3961
#, no-c-format
msgid "Method"
msgstr ""
@@ -2250,9 +2250,9 @@
#: Security.xml:1433 Security.xml:1452 Security.xml:1471 Security.xml:1490
#: Security.xml:1509 Security.xml:1529 Security.xml:1548 Security.xml:1567
#: Security.xml:1586 Security.xml:1606 Security.xml:1626 Security.xml:1740
-#: Security.xml:1762 Security.xml:1780 Security.xml:2766 Security.xml:3239
-#: Security.xml:3258 Security.xml:3277 Security.xml:3295 Security.xml:3840
-#: Security.xml:3859 Security.xml:3878 Security.xml:3897
+#: Security.xml:1762 Security.xml:1780 Security.xml:2766 Security.xml:3242
+#: Security.xml:3261 Security.xml:3280 Security.xml:3298 Security.xml:3843
+#: Security.xml:3862 Security.xml:3881 Security.xml:3900
#, no-c-format
msgid "boolean"
msgstr ""
@@ -2558,13 +2558,13 @@
msgstr ""
#. Tag: para
-#: Security.xml:1831 Security.xml:3961
+#: Security.xml:1831 Security.xml:3964
#, no-c-format
msgid "Permission Target"
msgstr ""
#. Tag: para
-#: Security.xml:1834 Security.xml:3964
+#: Security.xml:1834 Security.xml:3967
#, no-c-format
msgid "Permission Action"
msgstr ""
@@ -3806,7 +3806,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2750 Security.xml:3165 Security.xml:3786
+#: Security.xml:2750 Security.xml:3168 Security.xml:3789
#, no-c-format
msgid "Return type"
msgstr ""
@@ -3986,41 +3986,47 @@
#. Tag: para
#: Security.xml:2917
#, no-c-format
-msgid "drools-compiler.jar"
+msgid "drools-api.jar"
msgstr ""
#. Tag: para
#: Security.xml:2920
#, no-c-format
-msgid "drools-core.jar"
+msgid "drools-compiler.jar"
msgstr ""
#. Tag: para
#: Security.xml:2923
#, no-c-format
-msgid "janino.jar"
+msgid "drools-core.jar"
msgstr ""
#. Tag: para
#: Security.xml:2926
#, no-c-format
-msgid "antlr-runtime.jar"
+msgid "janino.jar"
msgstr ""
#. Tag: para
#: Security.xml:2929
#, no-c-format
-msgid "mvel14.jar"
+msgid "antlr-runtime.jar"
msgstr ""
+#. Tag: para
+#: Security.xml:2932
+#, no-c-format
+msgid "mvel2.jar"
+msgstr ""
+
#. Tag: title
-#: Security.xml:2936 Security.xml:3128
+#: Security.xml:2939 Security.xml:3131
#, no-c-format
msgid "Configuration"
msgstr ""
#. Tag: para
-#: Security.xml:2938
+#: Security.xml:2941
#, no-c-format
msgid ""
"The configuration for <literal>RuleBasedPermissionResolver</literal> "
@@ -4030,7 +4036,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:2944
+#: Security.xml:2947
#, no-c-format
msgid ""
"<![CDATA[<components xmlns=\"http://jboss.com/products/seam/components\"\n"
@@ -4058,7 +4064,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2946
+#: Security.xml:2949
#, no-c-format
msgid ""
"The default rule base name can be overridden by specifying the "
@@ -4067,7 +4073,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:2951
+#: Security.xml:2954
#, no-c-format
msgid ""
"<![CDATA[\n"
@@ -4076,7 +4082,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2953
+#: Security.xml:2956
#, no-c-format
msgid ""
"Once the <literal>RuleBase</literal> component is configured, it's time to "
@@ -4084,13 +4090,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:2959
+#: Security.xml:2962
#, no-c-format
msgid "Writing Security Rules"
msgstr ""
#. Tag: para
-#: Security.xml:2961
+#: Security.xml:2964
#, no-c-format
msgid ""
"The first step to writing security rules is to create a new rule file in the "
@@ -4101,7 +4107,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2968
+#: Security.xml:2971
#, no-c-format
msgid ""
"So what should the security rules file contain? At this stage it might be a "
@@ -4110,7 +4116,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:2973
+#: Security.xml:2976
#, no-c-format
msgid ""
"<![CDATA[package MyApplicationPermissions;\n"
@@ -4128,7 +4134,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2975
+#: Security.xml:2978
#, no-c-format
msgid ""
"Let's break this down step by step. The first thing we see is the package "
@@ -4138,7 +4144,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2981
+#: Security.xml:2984
#, no-c-format
msgid ""
"The next thing we can notice is a couple of import statements for the "
@@ -4148,7 +4154,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2987
+#: Security.xml:2990
#, no-c-format
msgid ""
"Finally we have the code for the rule. Each rule within a package should be "
@@ -4158,7 +4164,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2993
+#: Security.xml:2996
#, no-c-format
msgid ""
"Looking at the body of the rule definition we can notice two distinct "
@@ -4173,7 +4179,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3002
+#: Security.xml:3005
#, no-c-format
msgid ""
"If we look at the LHS of the rule, we see two conditions listed there. Let's "
@@ -4181,14 +4187,14 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3006
+#: Security.xml:3009
#, no-c-format
msgid ""
"<![CDATA[c: PermissionCheck(target == \"customer\", action == \"delete\")]]>"
msgstr ""
#. Tag: para
-#: Security.xml:3008
+#: Security.xml:3011
#, no-c-format
msgid ""
"In plain english, this condition is stating that there must exist a "
@@ -4198,7 +4204,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3014
+#: Security.xml:3017
#, no-c-format
msgid ""
"So what is the working memory? Also known as a \"stateful session\" in "
@@ -4216,7 +4222,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3026
+#: Security.xml:3029
#, no-c-format
msgid ""
"Besides the <literal>PermissionCheck</literal> facts, there is also a "
@@ -4233,7 +4239,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3037
+#: Security.xml:3040
#, no-c-format
msgid ""
"It is also possible to insert additional long-lived facts into the working "
@@ -4244,7 +4250,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3044
+#: Security.xml:3047
#, no-c-format
msgid ""
"Getting back to our simple example, we can also notice that the first line "
@@ -4255,13 +4261,13 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3051
+#: Security.xml:3054
#, no-c-format
msgid "<![CDATA[Role(name == \"admin\")]]>"
msgstr ""
#. Tag: para
-#: Security.xml:3053
+#: Security.xml:3056
#, no-c-format
msgid ""
"This condition simply states that there must be a <literal>Role</literal> "
@@ -4274,7 +4280,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3061
+#: Security.xml:3064
#, no-c-format
msgid ""
"So what is the consequence of the rule firing? Let's take a look at the RHS "
@@ -4282,13 +4288,13 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3065
+#: Security.xml:3068
#, no-c-format
msgid "<![CDATA[c.grant()]]>"
msgstr ""
#. Tag: para
-#: Security.xml:3067
+#: Security.xml:3070
#, no-c-format
msgid ""
"The RHS consists of Java code, and in this case is invoking the "
@@ -4305,13 +4311,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3081
+#: Security.xml:3084
#, no-c-format
msgid "Non-String permission targets"
msgstr ""
#. Tag: para
-#: Security.xml:3083
+#: Security.xml:3086
#, no-c-format
msgid ""
"So far we have only seen permission checks for String-literal permission "
@@ -4325,7 +4331,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3092
+#: Security.xml:3095
#, no-c-format
msgid ""
"<![CDATA[rule CanCreateBlogComment\n"
@@ -4343,13 +4349,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3097
+#: Security.xml:3100
#, no-c-format
msgid "Wildcard permission checks"
msgstr ""
#. Tag: para
-#: Security.xml:3099
+#: Security.xml:3102
#, no-c-format
msgid ""
"It is possible to implement a wildcard permission check (which allows all "
@@ -4359,7 +4365,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3105
+#: Security.xml:3108
#, no-c-format
msgid ""
"<![CDATA[rule CanDoAnythingToCustomersIfYouAreAnAdmin\n"
@@ -4373,7 +4379,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3107
+#: Security.xml:3110
#, no-c-format
msgid ""
"This rule allows users with the <literal>admin</literal> role to perform "
@@ -4382,13 +4388,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3117
+#: Security.xml:3120
#, no-c-format
msgid "PersistentPermissionResolver"
msgstr ""
#. Tag: para
-#: Security.xml:3119
+#: Security.xml:3122
#, no-c-format
msgid ""
"Another built-in permission resolver provided by Seam, "
@@ -4401,7 +4407,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3130
+#: Security.xml:3133
#, no-c-format
msgid ""
"Before it can be used, <literal>PersistentPermissionResolver</literal> must "
@@ -4414,7 +4420,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3138
+#: Security.xml:3141
#, no-c-format
msgid ""
"<![CDATA[ <security:persistent-permission-resolver permission-store=\"#"
@@ -4422,13 +4428,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3143
+#: Security.xml:3146
#, no-c-format
msgid "Permission Stores"
msgstr ""
#. Tag: para
-#: Security.xml:3145
+#: Security.xml:3148
#, no-c-format
msgid ""
"A permission store is required for <literal>PersistentPermissionResolver</"
@@ -4441,26 +4447,26 @@
msgstr ""
#. Tag: title
-#: Security.xml:3155
+#: Security.xml:3158
#, no-c-format
msgid "PermissionStore interface"
msgstr ""
#. Tag: literal
-#: Security.xml:3181 Security.xml:3200 Security.xml:3219 Security.xml:3802
-#: Security.xml:3821
+#: Security.xml:3184 Security.xml:3203 Security.xml:3222 Security.xml:3805
+#: Security.xml:3824
#, no-c-format
msgid "List<Permission>"
msgstr ""
#. Tag: literal
-#: Security.xml:3186 Security.xml:3826
+#: Security.xml:3189 Security.xml:3829
#, no-c-format
msgid "listPermissions(Object target)"
msgstr ""
#. Tag: para
-#: Security.xml:3190
+#: Security.xml:3193
#, no-c-format
msgid ""
"This method should return a <literal>List</literal> of <literal>Permission</"
@@ -4469,13 +4475,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3205 Security.xml:3807
+#: Security.xml:3208 Security.xml:3810
#, no-c-format
msgid "listPermissions(Object target, String action)"
msgstr ""
#. Tag: para
-#: Security.xml:3209
+#: Security.xml:3212
#, no-c-format
msgid ""
"This method should return a <literal>List</literal> of <literal>Permission</"
@@ -4484,13 +4490,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3224
+#: Security.xml:3227
#, no-c-format
msgid "listPermissions(Set<Object> targets, String action)"
msgstr ""
#. Tag: para
-#: Security.xml:3228
+#: Security.xml:3231
#, no-c-format
msgid ""
"This method should return a <literal>List</literal> of <literal>Permission</"
@@ -4499,13 +4505,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3244
+#: Security.xml:3247
#, no-c-format
msgid "grantPermission(Permission)"
msgstr ""
#. Tag: para
-#: Security.xml:3248
+#: Security.xml:3251
#, no-c-format
msgid ""
"This method should persist the specified <literal>Permission</literal> "
@@ -4513,13 +4519,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3263 Security.xml:3864
+#: Security.xml:3266 Security.xml:3867
#, no-c-format
msgid "grantPermissions(List<Permission> permissions)"
msgstr ""
#. Tag: para
-#: Security.xml:3267
+#: Security.xml:3270
#, no-c-format
msgid ""
"This method should persist all of the <literal>Permission</literal> objects "
@@ -4528,13 +4534,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3282 Security.xml:3883
+#: Security.xml:3285 Security.xml:3886
#, no-c-format
msgid "revokePermission(Permission permission)"
msgstr ""
#. Tag: para
-#: Security.xml:3286
+#: Security.xml:3289
#, no-c-format
msgid ""
"This method should remove the specified <literal>Permission</literal> object "
@@ -4542,13 +4548,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3300 Security.xml:3902
+#: Security.xml:3303 Security.xml:3905
#, no-c-format
msgid "revokePermissions(List<Permission> permissions)"
msgstr ""
#. Tag: para
-#: Security.xml:3304
+#: Security.xml:3307
#, no-c-format
msgid ""
"This method should remove all of the <literal>Permission</literal> objects "
@@ -4556,19 +4562,19 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3314 Security.xml:3916
+#: Security.xml:3317 Security.xml:3919
#, no-c-format
msgid "List<String>"
msgstr ""
#. Tag: literal
-#: Security.xml:3319 Security.xml:3921
+#: Security.xml:3322 Security.xml:3924
#, no-c-format
msgid "listAvailableActions(Object target)"
msgstr ""
#. Tag: para
-#: Security.xml:3323
+#: Security.xml:3326
#, no-c-format
msgid ""
"This method should return a list of all the available actions (as Strings) "
@@ -4578,13 +4584,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3337
+#: Security.xml:3340
#, no-c-format
msgid "JpaPermissionStore"
msgstr ""
#. Tag: para
-#: Security.xml:3339
+#: Security.xml:3342
#, no-c-format
msgid ""
"This is the default <literal>PermissionStore</literal> implementation (and "
@@ -4597,7 +4603,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3347
+#: Security.xml:3350
#, no-c-format
msgid ""
"If you wish to use the same entity (i.e. a single database table) to store "
@@ -4609,7 +4615,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3354
+#: Security.xml:3357
#, no-c-format
msgid ""
"For example, to configure a single entity class to store both user and role "
@@ -4617,7 +4623,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3356
+#: Security.xml:3359
#, no-c-format
msgid ""
"<![CDATA[ <security:jpa-permission-store user-permission-class=\"com.acme."
@@ -4625,14 +4631,14 @@
msgstr ""
#. Tag: para
-#: Security.xml:3358
+#: Security.xml:3361
#, no-c-format
msgid ""
"To configure separate entity classes for storing user and role permissions:"
msgstr ""
#. Tag: programlisting
-#: Security.xml:3360
+#: Security.xml:3363
#, no-c-format
msgid ""
"<![CDATA[ <security:jpa-permission-store user-permission-class=\"com.acme."
@@ -4641,13 +4647,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3363
+#: Security.xml:3366
#, no-c-format
msgid "Permission annotations"
msgstr ""
#. Tag: para
-#: Security.xml:3365
+#: Security.xml:3368
#, no-c-format
msgid ""
"As mentioned, the entity classes that contain the user and role permissions "
@@ -4658,32 +4664,32 @@
msgstr ""
#. Tag: title
-#: Security.xml:3372
+#: Security.xml:3375
#, no-c-format
msgid "Entity Permission annotations"
msgstr ""
#. Tag: para
-#: Security.xml:3385 Security.xml:3548
+#: Security.xml:3388 Security.xml:3551
#, no-c-format
msgid "Target"
msgstr ""
#. Tag: literal
-#: Security.xml:3398
+#: Security.xml:3401
#, no-c-format
msgid "@PermissionTarget"
msgstr ""
#. Tag: literal
-#: Security.xml:3403 Security.xml:3422 Security.xml:3441 Security.xml:3460
-#: Security.xml:3479
+#: Security.xml:3406 Security.xml:3425 Security.xml:3444 Security.xml:3463
+#: Security.xml:3482
#, no-c-format
msgid "FIELD,METHOD"
msgstr ""
#. Tag: para
-#: Security.xml:3407
+#: Security.xml:3410
#, no-c-format
msgid ""
"This annotation identifies the property of the entity that will contain the "
@@ -4692,13 +4698,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3417
+#: Security.xml:3420
#, no-c-format
msgid "@PermissionAction"
msgstr ""
#. Tag: para
-#: Security.xml:3426
+#: Security.xml:3429
#, no-c-format
msgid ""
"This annotation identifies the property of the entity that will contain the "
@@ -4707,13 +4713,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3436
+#: Security.xml:3439
#, no-c-format
msgid "@PermissionUser"
msgstr ""
#. Tag: para
-#: Security.xml:3445
+#: Security.xml:3448
#, no-c-format
msgid ""
"This annotation identifies the property of the entity that will contain the "
@@ -4722,13 +4728,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3455
+#: Security.xml:3458
#, no-c-format
msgid "@PermissionRole"
msgstr ""
#. Tag: para
-#: Security.xml:3464
+#: Security.xml:3467
#, no-c-format
msgid ""
"This annotation identifies the property of the entity that will contain the "
@@ -4737,13 +4743,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3474
+#: Security.xml:3477
#, no-c-format
msgid "@PermissionDiscriminator"
msgstr ""
#. Tag: para
-#: Security.xml:3483
+#: Security.xml:3486
#, no-c-format
msgid ""
"This annotation should be used when the same entity/table is used to store "
@@ -4760,20 +4766,20 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3493
+#: Security.xml:3496
#, no-c-format
msgid ""
"<![CDATA[ @PermissionDiscriminator(userValue = \"u\", roleValue = \"r\")]]>"
msgstr ""
#. Tag: title
-#: Security.xml:3504
+#: Security.xml:3507
#, no-c-format
msgid "Example Entity"
msgstr ""
#. Tag: para
-#: Security.xml:3506
+#: Security.xml:3509
#, no-c-format
msgid ""
"Here is an example of an entity class that is used to store both user and "
@@ -4782,7 +4788,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3511
+#: Security.xml:3514
#, no-c-format
msgid ""
"<![CDATA[\n"
@@ -4843,7 +4849,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3513
+#: Security.xml:3516
#, no-c-format
msgid ""
"As can be seen in the above example, the <literal>getDiscriminator()</"
@@ -4860,13 +4866,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3526
+#: Security.xml:3529
#, no-c-format
msgid "Class-specific Permission Configuration"
msgstr ""
#. Tag: para
-#: Security.xml:3528
+#: Security.xml:3531
#, no-c-format
msgid ""
"A further set of class-specific annotations can be used to configure a "
@@ -4876,25 +4882,25 @@
msgstr ""
#. Tag: title
-#: Security.xml:3535
+#: Security.xml:3538
#, no-c-format
msgid "Class Permission Annotations"
msgstr ""
#. Tag: literal
-#: Security.xml:3561
+#: Security.xml:3564
#, no-c-format
msgid "@Permissions"
msgstr ""
#. Tag: literal
-#: Security.xml:3566 Security.xml:3584
+#: Security.xml:3569 Security.xml:3587
#, no-c-format
msgid "TYPE"
msgstr ""
#. Tag: para
-#: Security.xml:3570
+#: Security.xml:3573
#, no-c-format
msgid ""
"A container annotation, this annotation may contain an array of "
@@ -4902,13 +4908,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3579
+#: Security.xml:3582
#, no-c-format
msgid "@Permission"
msgstr ""
#. Tag: para
-#: Security.xml:3588
+#: Security.xml:3591
#, no-c-format
msgid ""
"This annotation defines a single allowable permission action for the target "
@@ -4919,7 +4925,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3600
+#: Security.xml:3603
#, no-c-format
msgid ""
"Here's an example of the above annotations in action. The following class "
@@ -4927,7 +4933,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3604
+#: Security.xml:3607
#, no-c-format
msgid ""
"<![CDATA[@Permissions({\n"
@@ -4939,7 +4945,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3606
+#: Security.xml:3609
#, no-c-format
msgid ""
"This example demonstrates how two allowable permission actions, "
@@ -4948,13 +4954,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3614
+#: Security.xml:3617
#, no-c-format
msgid "Permission masks"
msgstr ""
#. Tag: para
-#: Security.xml:3616
+#: Security.xml:3619
#, no-c-format
msgid ""
"By default, multiple permissions for the same target object and recipient "
@@ -4966,7 +4972,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3623
+#: Security.xml:3626
#, no-c-format
msgid ""
"For example, if recipient \"Bob\" is granted both the <literal>view</"
@@ -4979,7 +4985,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3630
+#: Security.xml:3633
#, no-c-format
msgid ""
"<![CDATA[@Permissions({\n"
@@ -4991,7 +4997,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3632
+#: Security.xml:3635
#, no-c-format
msgid ""
"The <literal>action</literal> property will instead simply contain \"3"
@@ -5001,7 +5007,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3638
+#: Security.xml:3641
#, no-c-format
msgid ""
"Obviously, it is very important that the <literal>mask</literal> values "
@@ -5009,13 +5015,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3644
+#: Security.xml:3647
#, no-c-format
msgid "Identifier Policy"
msgstr ""
#. Tag: para
-#: Security.xml:3646
+#: Security.xml:3649
#, no-c-format
msgid ""
"When storing or looking up permissions, <literal>JpaPermissionStore</"
@@ -5029,7 +5035,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3654
+#: Security.xml:3657
#, no-c-format
msgid ""
"The <literal>IdentifierStrategy</literal> interface is very simple, "
@@ -5037,7 +5043,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3658
+#: Security.xml:3661
#, no-c-format
msgid ""
"<![CDATA[public interface IdentifierStrategy {\n"
@@ -5047,7 +5053,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3660
+#: Security.xml:3663
#, no-c-format
msgid ""
"The first method, <literal>canIdentify()</literal> simply returns "
@@ -5058,7 +5064,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3666
+#: Security.xml:3669
#, no-c-format
msgid ""
"Seam provides two <literal>IdentifierStrategy</literal> implementations, "
@@ -5067,7 +5073,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3671
+#: Security.xml:3674
#, no-c-format
msgid ""
"To explicitly configure a specific identifier strategy to use for a "
@@ -5080,13 +5086,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3681
+#: Security.xml:3684
#, no-c-format
msgid "ClassIdentifierStrategy"
msgstr ""
#. Tag: para
-#: Security.xml:3683
+#: Security.xml:3686
#, no-c-format
msgid ""
"This identifier strategy is used to generate unique identifiers for classes, "
@@ -5100,7 +5106,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3692
+#: Security.xml:3695
#, no-c-format
msgid ""
"<![CDATA[@Identifier(name = \"customer\")\n"
@@ -5108,7 +5114,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3694
+#: Security.xml:3697
#, no-c-format
msgid ""
"The identifier for the following class will be \"<literal>customerAction</"
@@ -5116,7 +5122,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3698
+#: Security.xml:3701
#, no-c-format
msgid ""
"<![CDATA[@Name(\"customerAction\")\n"
@@ -5124,7 +5130,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3700
+#: Security.xml:3703
#, no-c-format
msgid ""
"Finally, the identifier for the following class will be \"<literal>Customer</"
@@ -5132,19 +5138,19 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3704
+#: Security.xml:3707
#, no-c-format
msgid "<![CDATA[public class Customer { ]]>"
msgstr ""
#. Tag: title
-#: Security.xml:3709
+#: Security.xml:3712
#, no-c-format
msgid "EntityIdentifierStrategy"
msgstr ""
#. Tag: para
-#: Security.xml:3711
+#: Security.xml:3714
#, no-c-format
msgid ""
"This identifier strategy is used to generate unique identifiers for entity "
@@ -5161,7 +5167,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3722
+#: Security.xml:3725
#, no-c-format
msgid ""
"<![CDATA[@Identifier(value = EntityIdentifierStrategy.class)\n"
@@ -5169,7 +5175,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3724
+#: Security.xml:3727
#, no-c-format
msgid ""
"For an example of the type of identifier values generated, assume we have "
@@ -5177,7 +5183,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3728
+#: Security.xml:3731
#, no-c-format
msgid ""
"<![CDATA[@Entity\n"
@@ -5200,7 +5206,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3730
+#: Security.xml:3733
#, no-c-format
msgid ""
"For a <literal>Customer</literal> instance with an <literal>id</literal> "
@@ -5210,7 +5216,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3736
+#: Security.xml:3739
#, no-c-format
msgid ""
"<![CDATA[@Entity\n"
@@ -5219,7 +5225,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3738
+#: Security.xml:3741
#, no-c-format
msgid ""
"Then a <literal>Customer</literal> with an <literal>id</literal> value of "
@@ -5228,13 +5234,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3751
+#: Security.xml:3754
#, no-c-format
msgid "Permission Management"
msgstr ""
#. Tag: para
-#: Security.xml:3753
+#: Security.xml:3756
#, no-c-format
msgid ""
"In much the same way that Seam Security provides an Identity Management API "
@@ -5244,13 +5250,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3760
+#: Security.xml:3763
#, no-c-format
msgid "PermissionManager"
msgstr ""
#. Tag: para
-#: Security.xml:3762
+#: Security.xml:3765
#, no-c-format
msgid ""
"The <literal>PermissionManager</literal> component is an application-scoped "
@@ -5263,7 +5269,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3769
+#: Security.xml:3772
#, no-c-format
msgid ""
"<![CDATA[\n"
@@ -5273,7 +5279,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3771
+#: Security.xml:3774
#, no-c-format
msgid ""
"The following table describes each of the available methods provided by "
@@ -5281,13 +5287,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3776
+#: Security.xml:3779
#, no-c-format
msgid "PermissionManager API methods"
msgstr ""
#. Tag: para
-#: Security.xml:3811 Security.xml:3830
+#: Security.xml:3814 Security.xml:3833
#, no-c-format
msgid ""
"Returns a list of <literal>Permission</literal> objects representing all of "
@@ -5295,13 +5301,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3845
+#: Security.xml:3848
#, no-c-format
msgid "grantPermission(Permission permission)"
msgstr ""
#. Tag: para
-#: Security.xml:3849
+#: Security.xml:3852
#, no-c-format
msgid ""
"Persists (grants) the specified <literal>Permission</literal> to the backend "
@@ -5309,7 +5315,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3868
+#: Security.xml:3871
#, no-c-format
msgid ""
"Persists (grants) the specified list of <literal>Permission</literal>s to "
@@ -5317,7 +5323,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3887
+#: Security.xml:3890
#, no-c-format
msgid ""
"Removes (revokes) the specified <literal>Permission</literal> from the "
@@ -5325,7 +5331,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3906
+#: Security.xml:3909
#, no-c-format
msgid ""
"Removes (revokes) the specified list of <literal>Permission</literal>s from "
@@ -5333,7 +5339,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3925
+#: Security.xml:3928
#, no-c-format
msgid ""
"Returns a list of the available actions for the specified target object. The "
@@ -5342,13 +5348,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3940
+#: Security.xml:3943
#, no-c-format
msgid "Permission checks for PermissionManager operations"
msgstr ""
#. Tag: para
-#: Security.xml:3942
+#: Security.xml:3945
#, no-c-format
msgid ""
"Invoking the methods of <literal>PermissionManager</literal> requires that "
@@ -5358,37 +5364,37 @@
msgstr ""
#. Tag: title
-#: Security.xml:3949
+#: Security.xml:3952
#, no-c-format
msgid "Permission Management Security Permissions"
msgstr ""
#. Tag: literal
-#: Security.xml:3973
+#: Security.xml:3976
#, no-c-format
msgid "listPermissions()"
msgstr ""
#. Tag: para
-#: Security.xml:3977
+#: Security.xml:3980
#, no-c-format
msgid "The specified <literal>target</literal>"
msgstr ""
#. Tag: literal
-#: Security.xml:3983
+#: Security.xml:3986
#, no-c-format
msgid "seam.read-permissions"
msgstr ""
#. Tag: literal
-#: Security.xml:3991 Security.xml:4011
+#: Security.xml:3994 Security.xml:4014
#, no-c-format
msgid "grantPermission()"
msgstr ""
#. Tag: para
-#: Security.xml:3995
+#: Security.xml:3998
#, no-c-format
msgid ""
"The target of the specified <literal>Permission</literal>, or each of the "
@@ -5397,56 +5403,56 @@
msgstr ""
#. Tag: literal
-#: Security.xml:4003 Security.xml:4021 Security.xml:4039
+#: Security.xml:4006 Security.xml:4024 Security.xml:4042
#, no-c-format
msgid "seam.grant-permission"
msgstr ""
#. Tag: para
-#: Security.xml:4015 Security.xml:4051
+#: Security.xml:4018 Security.xml:4054
#, no-c-format
msgid "The target of the specified <literal>Permission</literal>."
msgstr ""
#. Tag: literal
-#: Security.xml:4029
+#: Security.xml:4032
#, no-c-format
msgid "grantPermissions()"
msgstr ""
#. Tag: para
-#: Security.xml:4033 Security.xml:4069
+#: Security.xml:4036 Security.xml:4072
#, no-c-format
msgid ""
"Each of the targets of the specified list of <literal>Permission</literal>s."
msgstr ""
#. Tag: literal
-#: Security.xml:4047
+#: Security.xml:4050
#, no-c-format
msgid "revokePermission()"
msgstr ""
#. Tag: literal
-#: Security.xml:4057 Security.xml:4075
+#: Security.xml:4060 Security.xml:4078
#, no-c-format
msgid "seam.revoke-permission"
msgstr ""
#. Tag: literal
-#: Security.xml:4065
+#: Security.xml:4068
#, no-c-format
msgid "revokePermissions()"
msgstr ""
#. Tag: title
-#: Security.xml:4088
+#: Security.xml:4091
#, no-c-format
msgid "SSL Security"
msgstr ""
#. Tag: para
-#: Security.xml:4090
+#: Security.xml:4093
#, no-c-format
msgid ""
"Seam includes basic support for serving sensitive pages via the HTTPS "
@@ -5457,13 +5463,13 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4097
+#: Security.xml:4100
#, no-c-format
msgid "<![CDATA[<page view-id=\"/login.xhtml\" scheme=\"https\"/>]]>"
msgstr ""
#. Tag: para
-#: Security.xml:4099
+#: Security.xml:4102
#, no-c-format
msgid ""
"This configuration is automatically extended to both <literal>s:link</"
@@ -5475,13 +5481,13 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4106
+#: Security.xml:4109
#, no-c-format
msgid "<![CDATA[<s:link view=\"/login.xhtml\" value=\"Login\"/>]]>"
msgstr ""
#. Tag: para
-#: Security.xml:4108
+#: Security.xml:4111
#, no-c-format
msgid ""
"Browsing directly to a view when using the <emphasis>incorrect</emphasis> "
@@ -5492,7 +5498,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4115
+#: Security.xml:4118
#, no-c-format
msgid ""
"It is also possible to configure a <emphasis>default scheme</emphasis> for "
@@ -5506,13 +5512,13 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4124
+#: Security.xml:4127
#, no-c-format
msgid "<![CDATA[<page view-id=\"*\" scheme=\"http\" />]]>"
msgstr ""
#. Tag: para
-#: Security.xml:4126
+#: Security.xml:4129
#, no-c-format
msgid ""
"Of course, if <emphasis>none</emphasis> of the pages in your application use "
@@ -5520,7 +5526,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4131
+#: Security.xml:4134
#, no-c-format
msgid ""
"You may configure Seam to automatically invalidate the current HTTP session "
@@ -5529,13 +5535,13 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4136
+#: Security.xml:4139
#, no-c-format
msgid "<![CDATA[<web:session invalidate-on-scheme-change=\"true\"/>]]>"
msgstr ""
#. Tag: para
-#: Security.xml:4138
+#: Security.xml:4141
#, no-c-format
msgid ""
"This option helps make your system less vulnerable to sniffing of the "
@@ -5544,13 +5550,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4144
+#: Security.xml:4147
#, no-c-format
msgid "Overriding the default ports"
msgstr ""
#. Tag: para
-#: Security.xml:4146
+#: Security.xml:4149
#, no-c-format
msgid ""
"If you wish to configure the HTTP and HTTPS ports manually, they may be "
@@ -5560,7 +5566,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4152
+#: Security.xml:4155
#, no-c-format
msgid ""
"<![CDATA[\n"
@@ -5576,13 +5582,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4158
+#: Security.xml:4161
#, no-c-format
msgid "CAPTCHA"
msgstr ""
#. Tag: para
-#: Security.xml:4160
+#: Security.xml:4163
#, no-c-format
msgid ""
"Though strictly not part of the security API, Seam provides a built-in "
@@ -5594,13 +5600,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4168
+#: Security.xml:4171
#, no-c-format
msgid "Configuring the CAPTCHA Servlet"
msgstr ""
#. Tag: para
-#: Security.xml:4169
+#: Security.xml:4172
#, no-c-format
msgid ""
"To get up and running, it is necessary to configure the Seam Resource "
@@ -5609,7 +5615,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4174
+#: Security.xml:4177
#, no-c-format
msgid ""
"<![CDATA[<servlet>\n"
@@ -5625,20 +5631,20 @@
msgstr ""
#. Tag: title
-#: Security.xml:4179
+#: Security.xml:4182
#, no-c-format
msgid "Adding a CAPTCHA to a form"
msgstr ""
#. Tag: para
-#: Security.xml:4181
+#: Security.xml:4184
#, no-c-format
msgid ""
"Adding a CAPTCHA challenge to a form is extremely easy. Here's an example:"
msgstr ""
#. Tag: programlisting
-#: Security.xml:4185
+#: Security.xml:4188
#, no-c-format
msgid ""
"<![CDATA[<h:graphicImage value=\"/seam/resource/captcha\"/>\n"
@@ -5650,7 +5656,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4187
+#: Security.xml:4190
#, no-c-format
msgid ""
"That's all there is to it. The <literal>graphicImage</literal> control "
@@ -5660,20 +5666,20 @@
msgstr ""
#. Tag: title
-#: Security.xml:4196
+#: Security.xml:4199
#, no-c-format
msgid "Customising the CAPTCHA algorithm"
msgstr ""
#. Tag: para
-#: Security.xml:4198
+#: Security.xml:4201
#, no-c-format
msgid ""
"You may customize the CAPTCHA algorithm by overriding the built-in component:"
msgstr ""
#. Tag: programlisting
-#: Security.xml:4202
+#: Security.xml:4205
#, no-c-format
msgid ""
"<![CDATA[@Name(\"org.jboss.seam.captcha.captcha\")\n"
@@ -5700,13 +5706,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4209 Security.xml:4217
+#: Security.xml:4212 Security.xml:4220
#, no-c-format
msgid "Security Events"
msgstr ""
#. Tag: para
-#: Security.xml:4211
+#: Security.xml:4214
#, no-c-format
msgid ""
"The following table describes a number of events (see <xref linkend=\"events"
@@ -5714,68 +5720,68 @@
msgstr ""
#. Tag: para
-#: Security.xml:4226
+#: Security.xml:4229
#, no-c-format
msgid "Event Key"
msgstr ""
#. Tag: literal
-#: Security.xml:4239
+#: Security.xml:4242
#, no-c-format
msgid "org.jboss.seam.security.loginSuccessful"
msgstr ""
#. Tag: para
-#: Security.xml:4243
+#: Security.xml:4246
#, no-c-format
msgid "Raised when a login attempt is successful."
msgstr ""
#. Tag: literal
-#: Security.xml:4251
+#: Security.xml:4254
#, no-c-format
msgid "org.jboss.seam.security.loginFailed"
msgstr ""
#. Tag: para
-#: Security.xml:4255
+#: Security.xml:4258
#, no-c-format
msgid "Raised when a login attempt fails."
msgstr ""
#. Tag: literal
-#: Security.xml:4263
+#: Security.xml:4266
#, no-c-format
msgid "org.jboss.seam.security.alreadyLoggedIn"
msgstr ""
#. Tag: para
-#: Security.xml:4267
+#: Security.xml:4270
#, no-c-format
msgid ""
"Raised when a user that is already authenticated attempts to log in again."
msgstr ""
#. Tag: literal
-#: Security.xml:4275
+#: Security.xml:4278
#, no-c-format
msgid "org.jboss.seam.security.notLoggedIn"
msgstr ""
#. Tag: para
-#: Security.xml:4279
+#: Security.xml:4282
#, no-c-format
msgid "Raised when a security check fails when the user is not logged in."
msgstr ""
#. Tag: literal
-#: Security.xml:4287
+#: Security.xml:4290
#, no-c-format
msgid "org.jboss.seam.security.notAuthorized"
msgstr ""
#. Tag: para
-#: Security.xml:4291
+#: Security.xml:4294
#, no-c-format
msgid ""
"Raised when a security check fails when the user is logged in however "
@@ -5783,73 +5789,73 @@
msgstr ""
#. Tag: literal
-#: Security.xml:4299
+#: Security.xml:4302
#, no-c-format
msgid "org.jboss.seam.security.preAuthenticate"
msgstr ""
#. Tag: para
-#: Security.xml:4303
+#: Security.xml:4306
#, no-c-format
msgid "Raised just prior to user authentication."
msgstr ""
#. Tag: literal
-#: Security.xml:4311
+#: Security.xml:4314
#, no-c-format
msgid "org.jboss.seam.security.postAuthenticate"
msgstr ""
#. Tag: para
-#: Security.xml:4315
+#: Security.xml:4318
#, no-c-format
msgid "Raised just after user authentication."
msgstr ""
#. Tag: literal
-#: Security.xml:4323
+#: Security.xml:4326
#, no-c-format
msgid "org.jboss.seam.security.loggedOut"
msgstr ""
#. Tag: para
-#: Security.xml:4327
+#: Security.xml:4330
#, no-c-format
msgid "Raised after the user has logged out."
msgstr ""
#. Tag: literal
-#: Security.xml:4335
+#: Security.xml:4338
#, no-c-format
msgid "org.jboss.seam.security.credentialsUpdated"
msgstr ""
#. Tag: para
-#: Security.xml:4339
+#: Security.xml:4342
#, no-c-format
msgid "Raised when the user's credentials have been changed."
msgstr ""
#. Tag: literal
-#: Security.xml:4347
+#: Security.xml:4350
#, no-c-format
msgid "org.jboss.seam.security.rememberMe"
msgstr ""
#. Tag: para
-#: Security.xml:4351
+#: Security.xml:4354
#, no-c-format
msgid "Raised when the Identity's rememberMe property is changed."
msgstr ""
#. Tag: title
-#: Security.xml:4364
+#: Security.xml:4367
#, no-c-format
msgid "Run As"
msgstr ""
#. Tag: para
-#: Security.xml:4366
+#: Security.xml:4369
#, no-c-format
msgid ""
"Sometimes it may be necessary to perform certain operations with elevated "
@@ -5861,7 +5867,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4374
+#: Security.xml:4377
#, no-c-format
msgid ""
"The following code example demonstrates how <literal>RunAsOperation</"
@@ -5872,7 +5878,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4381
+#: Security.xml:4384
#, no-c-format
msgid ""
"<![CDATA[ new RunAsOperation() { \n"
@@ -5884,7 +5890,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4383
+#: Security.xml:4386
#, no-c-format
msgid ""
"In a similar way, the <literal>getPrincipal()</literal> or "
@@ -5895,13 +5901,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4394
+#: Security.xml:4397
#, no-c-format
msgid "Extending the Identity component"
msgstr ""
#. Tag: para
-#: Security.xml:4396
+#: Security.xml:4399
#, no-c-format
msgid ""
"Sometimes it might be necessary to extend the Identity component if your "
@@ -5914,7 +5920,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4404
+#: Security.xml:4407
#, no-c-format
msgid ""
"<![CDATA[@Name(\"org.jboss.seam.security.identity\")\n"
@@ -5949,7 +5955,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4407
+#: Security.xml:4410
#, no-c-format
msgid ""
"Note that an <literal>Identity</literal> component must be marked "
@@ -5959,13 +5965,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4419
+#: Security.xml:4422
#, no-c-format
msgid "OpenID"
msgstr ""
#. Tag: para
-#: Security.xml:4421
+#: Security.xml:4424
#, no-c-format
msgid ""
"OpenID is a community standard for external web-based authentication. The "
@@ -5978,7 +5984,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4430
+#: Security.xml:4433
#, no-c-format
msgid ""
"When using OpenID, the user selects an OpenID provider, and the provider "
@@ -5995,7 +6001,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4439
+#: Security.xml:4442
#, no-c-format
msgid ""
"It's important to realize at this point that authentication does not imply "
@@ -6008,13 +6014,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4449
+#: Security.xml:4452
#, no-c-format
msgid "Configuring OpenID"
msgstr ""
#. Tag: para
-#: Security.xml:4450
+#: Security.xml:4453
#, no-c-format
msgid ""
"Seam uses the openid4java package and requires four additional JARs to make "
@@ -6024,7 +6030,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4456
+#: Security.xml:4459
#, no-c-format
msgid ""
"OpenID processing requires the use of the <literal>OpenIdPhaseListener</"
@@ -6034,7 +6040,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4462
+#: Security.xml:4465
#, no-c-format
msgid ""
"<lifecycle>\n"
@@ -6044,7 +6050,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4465
+#: Security.xml:4468
#, no-c-format
msgid ""
"With this configuration, OpenID support is available to your application. "
@@ -6054,13 +6060,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4473
+#: Security.xml:4476
#, no-c-format
msgid "Presenting an OpenIdDLogin form"
msgstr ""
#. Tag: para
-#: Security.xml:4475
+#: Security.xml:4478
#, no-c-format
msgid ""
"To initiate an OpenID login, you can present a simply form to the user "
@@ -6070,7 +6076,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4480
+#: Security.xml:4483
#, no-c-format
msgid ""
"<h:form>\n"
@@ -6081,7 +6087,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4482
+#: Security.xml:4485
#, no-c-format
msgid ""
"When the user submits the login form, he will be redirected to his OpenID "
@@ -6093,13 +6099,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4491
+#: Security.xml:4494
#, no-c-format
msgid "Logging in immediately"
msgstr ""
#. Tag: para
-#: Security.xml:4493
+#: Security.xml:4496
#, no-c-format
msgid ""
"The simplest strategy is to simply login the user immediately. The following "
@@ -6108,7 +6114,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4497
+#: Security.xml:4500
#, no-c-format
msgid ""
"<page view-id="/openid.xhtml">\n"
@@ -6128,7 +6134,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4499
+#: Security.xml:4502
#, no-c-format
msgid ""
"Thie <literal>loginImmediately()</literal> action checks to see if the "
@@ -6142,13 +6148,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4510
+#: Security.xml:4513
#, no-c-format
msgid "Deferring login"
msgstr ""
#. Tag: para
-#: Security.xml:4512
+#: Security.xml:4515
#, no-c-format
msgid ""
"You may not want the user to be immediately logged in to your application. "
@@ -6165,13 +6171,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4526
+#: Security.xml:4529
#, no-c-format
msgid "Logging out"
msgstr ""
#. Tag: para
-#: Security.xml:4528
+#: Security.xml:4531
#, no-c-format
msgid ""
"Logging out (forgetting an OpenID association) is done by calling <literal>#"
@@ -6182,7 +6188,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4535
+#: Security.xml:4538
#, no-c-format
msgid ""
"<event type="org.jboss.seam.security.loggedOut">\n"
@@ -6191,7 +6197,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4537
+#: Security.xml:4540
#, no-c-format
msgid ""
"It's important that you do not leave this out or the user will not be able "
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/bn-IN/Dependencies.po
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/bn-IN/Dependencies.po 2009-06-11 20:41:36 UTC (rev 11125)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/bn-IN/Dependencies.po 2009-06-11 20:43:04 UTC (rev 11126)
@@ -5,7 +5,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-04-15 13:51+0000\n"
+"POT-Creation-Date: 2009-06-11 18:45+0000\n"
"PO-Revision-Date: 2008-04-04 01:24+0000\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -938,8 +938,8 @@
#: Dependencies.xml:1182
#, no-c-format
msgid ""
-"This sample POM will give you Seam, JPA (provided by Hibernate) and "
-"Hibernate Validator:"
+"This sample POM will give you Seam, JPA (provided by Hibernate), Hibernate "
+"Validator and Hibernate Search:"
msgstr ""
#. Tag: programlisting
@@ -970,25 +970,31 @@
" <dependency>\n"
" <groupId>org.hibernate</groupId>\n"
" <artifactId>hibernate-validator</artifactId>\n"
-" <version>3.0.0.GA</version>\n"
+" <version>3.1.0.GA</version>\n"
" </dependency>\n"
"\n"
" <dependency>\n"
" <groupId>org.hibernate</groupId>\n"
" <artifactId>hibernate-annotations</artifactId>\n"
-" <version>3.3.0.ga</version>\n"
+" <version>3.4.0.GA</version>\n"
" </dependency>\n"
"\n"
" <dependency>\n"
" <groupId>org.hibernate</groupId>\n"
" <artifactId>hibernate-entitymanager</artifactId>\n"
-" <version>3.3.1.ga</version>\n"
+" <version>3.4.0.GA</version>\n"
" </dependency>\n"
+" \n"
+" <dependency>\n"
+" <groupId>org.hibernate</groupId>\n"
+" <artifactId>hibernate-search</artifactId>\n"
+" <version>3.1.1.GA</version>\n"
+" </dependency>\n"
"\n"
" <dependency>\n"
" <groupId>org.jboss.seam</groupId>\n"
" <artifactId>jboss-seam</artifactId>\n"
-" <version>2.0.0.GA</version>\n"
+" <version>2.2.0.GA</version>\n"
" </dependency>\n"
" \n"
" </dependencies>\n"
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/bn-IN/Hsearch.po
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/bn-IN/Hsearch.po 2009-06-11 20:41:36 UTC (rev 11125)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/bn-IN/Hsearch.po 2009-06-11 20:43:04 UTC (rev 11126)
@@ -5,7 +5,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-04-15 13:51+0000\n"
+"POT-Creation-Date: 2009-06-11 18:45+0000\n"
"PO-Revision-Date: 2008-04-04 01:24+0000\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -45,7 +45,7 @@
#: Hsearch.xml:21
#, no-c-format
msgid ""
-"Hibernate Search has been designed to integrates nicely and as naturally as "
+"Hibernate Search has been designed to integrate nicely and as naturally as "
"possible with JPA and Hibernate. As a natural extension, JBoss Seam provides "
"an Hibernate Search integration."
msgstr ""
@@ -132,7 +132,7 @@
" <property name=\"hibernate.ejb.event.post-delete\" \n"
" value=\"org.hibernate.search.event.FullTextIndexEventListener"
"\"/>\n"
-"\n"
+" \n"
" </properties>\n"
"</persistence-unit>]]>"
msgstr ""
@@ -141,12 +141,15 @@
#: Hsearch.xml:52
#, no-c-format
msgid ""
-"This step is no longer necessary if Hibernate Annotation or EntityManager "
-"3.3.x are used."
+"It is not longer necessary the register the event listeners if Hibernate "
+"Annotations or EntityManager 3.3.x are used. When using Hibernate Search 3.1."
+"x more eventlisteners are needed, but these are registered automatically by "
+"Hibernate Annotations; refer to the Hibernate Search reference for "
+"configuring it without EntityManager and Annotations."
msgstr ""
#. Tag: para
-#: Hsearch.xml:56
+#: Hsearch.xml:60
#, no-c-format
msgid ""
"In addition to the configuration file, the following jars have to be "
@@ -154,25 +157,25 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:61
+#: Hsearch.xml:65
#, no-c-format
msgid "hibernate-search.jar"
msgstr ""
#. Tag: para
-#: Hsearch.xml:65
+#: Hsearch.xml:69
#, no-c-format
msgid "hibernate-commons-annotations.jar"
msgstr ""
#. Tag: para
-#: Hsearch.xml:69
+#: Hsearch.xml:73
#, no-c-format
msgid "lucene-core.jar"
msgstr ""
#. Tag: para
-#: Hsearch.xml:74
+#: Hsearch.xml:78
#, no-c-format
msgid ""
"If you deploy those in a EAR, don't forget to update <filename>application."
@@ -180,13 +183,13 @@
msgstr ""
#. Tag: title
-#: Hsearch.xml:80
+#: Hsearch.xml:84
#, no-c-format
msgid "Usage"
msgstr ""
#. Tag: para
-#: Hsearch.xml:82
+#: Hsearch.xml:86
#, no-c-format
msgid ""
"Hibernate Search uses annotations to map entities to a Lucene index, check "
@@ -195,7 +198,7 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:87
+#: Hsearch.xml:91
#, no-c-format
msgid ""
"Hibernate Search is fully integrated with the API and semantic of JPA / "
@@ -206,7 +209,7 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:93
+#: Hsearch.xml:97
#, no-c-format
msgid ""
"When Hibernate Search is present, JBoss Seam injects a "
@@ -214,7 +217,7 @@
msgstr ""
#. Tag: programlisting
-#: Hsearch.xml:96
+#: Hsearch.xml:100
#, no-c-format
msgid ""
"<![CDATA[@Stateful\n"
@@ -237,7 +240,7 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:99
+#: Hsearch.xml:103
#, no-c-format
msgid ""
"<classname>FullTextSession</classname> extends <classname>org.hibernate."
@@ -245,14 +248,14 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:104
+#: Hsearch.xml:108
#, no-c-format
msgid ""
"If the Java Persistence API is used, a smoother integration is proposed."
msgstr ""
#. Tag: programlisting
-#: Hsearch.xml:107
+#: Hsearch.xml:111
#, no-c-format
msgid ""
"<![CDATA[@Stateful\n"
@@ -275,7 +278,7 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:109
+#: Hsearch.xml:113
#, no-c-format
msgid ""
"When Hibernate Search is present, a <classname>FulltextEntityManager</"
@@ -286,7 +289,7 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:116
+#: Hsearch.xml:120
#, no-c-format
msgid ""
"When an EJB 3.0 Session or Message Driven Bean injection is used (i.e. via "
@@ -299,7 +302,7 @@
msgstr ""
#. Tag: programlisting
-#: Hsearch.xml:124
+#: Hsearch.xml:128
#, no-c-format
msgid ""
"<![CDATA[@Stateful\n"
@@ -323,15 +326,15 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:129
+#: Hsearch.xml:133
#, no-c-format
msgid ""
"For people accustomed to Hibernate Search out of Seam, note that using "
-"<methodname>Search.createFullTextSession</methodname> is not necessary."
+"<methodname>Search.getFullTextSession</methodname> is not necessary."
msgstr ""
#. Tag: para
-#: Hsearch.xml:134
+#: Hsearch.xml:138
#, no-c-format
msgid ""
"Check the DVDStore or the blog examples of the JBoss Seam distribution for a "
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/bn-IN/Security.po
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/bn-IN/Security.po 2009-06-11 20:41:36 UTC (rev 11125)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/bn-IN/Security.po 2009-06-11 20:43:04 UTC (rev 11126)
@@ -5,7 +5,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-06-11 07:43+0000\n"
+"POT-Creation-Date: 2009-06-11 18:45+0000\n"
"PO-Revision-Date: 2008-04-04 01:24+0000\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -1190,7 +1190,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:630 Security.xml:764 Security.xml:3382 Security.xml:3545
+#: Security.xml:630 Security.xml:764 Security.xml:3385 Security.xml:3548
#, no-c-format
msgid "Annotation"
msgstr ""
@@ -1203,8 +1203,8 @@
#. Tag: para
#: Security.xml:636 Security.xml:770 Security.xml:966 Security.xml:1418
-#: Security.xml:2147 Security.xml:2756 Security.xml:3171 Security.xml:3388
-#: Security.xml:3551 Security.xml:3792 Security.xml:4229
+#: Security.xml:2147 Security.xml:2756 Security.xml:3174 Security.xml:3391
+#: Security.xml:3554 Security.xml:3795 Security.xml:4232
#, no-c-format
msgid "Description"
msgstr ""
@@ -2228,8 +2228,8 @@
msgstr ""
#. Tag: para
-#: Security.xml:1412 Security.xml:1828 Security.xml:2753 Security.xml:3168
-#: Security.xml:3789 Security.xml:3958
+#: Security.xml:1412 Security.xml:1828 Security.xml:2753 Security.xml:3171
+#: Security.xml:3792 Security.xml:3961
#, no-c-format
msgid "Method"
msgstr ""
@@ -2250,9 +2250,9 @@
#: Security.xml:1433 Security.xml:1452 Security.xml:1471 Security.xml:1490
#: Security.xml:1509 Security.xml:1529 Security.xml:1548 Security.xml:1567
#: Security.xml:1586 Security.xml:1606 Security.xml:1626 Security.xml:1740
-#: Security.xml:1762 Security.xml:1780 Security.xml:2766 Security.xml:3239
-#: Security.xml:3258 Security.xml:3277 Security.xml:3295 Security.xml:3840
-#: Security.xml:3859 Security.xml:3878 Security.xml:3897
+#: Security.xml:1762 Security.xml:1780 Security.xml:2766 Security.xml:3242
+#: Security.xml:3261 Security.xml:3280 Security.xml:3298 Security.xml:3843
+#: Security.xml:3862 Security.xml:3881 Security.xml:3900
#, no-c-format
msgid "boolean"
msgstr ""
@@ -2558,13 +2558,13 @@
msgstr ""
#. Tag: para
-#: Security.xml:1831 Security.xml:3961
+#: Security.xml:1831 Security.xml:3964
#, no-c-format
msgid "Permission Target"
msgstr ""
#. Tag: para
-#: Security.xml:1834 Security.xml:3964
+#: Security.xml:1834 Security.xml:3967
#, no-c-format
msgid "Permission Action"
msgstr ""
@@ -3806,7 +3806,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2750 Security.xml:3165 Security.xml:3786
+#: Security.xml:2750 Security.xml:3168 Security.xml:3789
#, no-c-format
msgid "Return type"
msgstr ""
@@ -3986,41 +3986,47 @@
#. Tag: para
#: Security.xml:2917
#, no-c-format
-msgid "drools-compiler.jar"
+msgid "drools-api.jar"
msgstr ""
#. Tag: para
#: Security.xml:2920
#, no-c-format
-msgid "drools-core.jar"
+msgid "drools-compiler.jar"
msgstr ""
#. Tag: para
#: Security.xml:2923
#, no-c-format
-msgid "janino.jar"
+msgid "drools-core.jar"
msgstr ""
#. Tag: para
#: Security.xml:2926
#, no-c-format
-msgid "antlr-runtime.jar"
+msgid "janino.jar"
msgstr ""
#. Tag: para
#: Security.xml:2929
#, no-c-format
-msgid "mvel14.jar"
+msgid "antlr-runtime.jar"
msgstr ""
+#. Tag: para
+#: Security.xml:2932
+#, no-c-format
+msgid "mvel2.jar"
+msgstr ""
+
#. Tag: title
-#: Security.xml:2936 Security.xml:3128
+#: Security.xml:2939 Security.xml:3131
#, no-c-format
msgid "Configuration"
msgstr ""
#. Tag: para
-#: Security.xml:2938
+#: Security.xml:2941
#, no-c-format
msgid ""
"The configuration for <literal>RuleBasedPermissionResolver</literal> "
@@ -4030,7 +4036,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:2944
+#: Security.xml:2947
#, no-c-format
msgid ""
"<![CDATA[<components xmlns=\"http://jboss.com/products/seam/components\"\n"
@@ -4058,7 +4064,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2946
+#: Security.xml:2949
#, no-c-format
msgid ""
"The default rule base name can be overridden by specifying the "
@@ -4067,7 +4073,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:2951
+#: Security.xml:2954
#, no-c-format
msgid ""
"<![CDATA[\n"
@@ -4076,7 +4082,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2953
+#: Security.xml:2956
#, no-c-format
msgid ""
"Once the <literal>RuleBase</literal> component is configured, it's time to "
@@ -4084,13 +4090,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:2959
+#: Security.xml:2962
#, no-c-format
msgid "Writing Security Rules"
msgstr ""
#. Tag: para
-#: Security.xml:2961
+#: Security.xml:2964
#, no-c-format
msgid ""
"The first step to writing security rules is to create a new rule file in the "
@@ -4101,7 +4107,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2968
+#: Security.xml:2971
#, no-c-format
msgid ""
"So what should the security rules file contain? At this stage it might be a "
@@ -4110,7 +4116,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:2973
+#: Security.xml:2976
#, no-c-format
msgid ""
"<![CDATA[package MyApplicationPermissions;\n"
@@ -4128,7 +4134,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2975
+#: Security.xml:2978
#, no-c-format
msgid ""
"Let's break this down step by step. The first thing we see is the package "
@@ -4138,7 +4144,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2981
+#: Security.xml:2984
#, no-c-format
msgid ""
"The next thing we can notice is a couple of import statements for the "
@@ -4148,7 +4154,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2987
+#: Security.xml:2990
#, no-c-format
msgid ""
"Finally we have the code for the rule. Each rule within a package should be "
@@ -4158,7 +4164,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2993
+#: Security.xml:2996
#, no-c-format
msgid ""
"Looking at the body of the rule definition we can notice two distinct "
@@ -4173,7 +4179,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3002
+#: Security.xml:3005
#, no-c-format
msgid ""
"If we look at the LHS of the rule, we see two conditions listed there. Let's "
@@ -4181,14 +4187,14 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3006
+#: Security.xml:3009
#, no-c-format
msgid ""
"<![CDATA[c: PermissionCheck(target == \"customer\", action == \"delete\")]]>"
msgstr ""
#. Tag: para
-#: Security.xml:3008
+#: Security.xml:3011
#, no-c-format
msgid ""
"In plain english, this condition is stating that there must exist a "
@@ -4198,7 +4204,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3014
+#: Security.xml:3017
#, no-c-format
msgid ""
"So what is the working memory? Also known as a \"stateful session\" in "
@@ -4216,7 +4222,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3026
+#: Security.xml:3029
#, no-c-format
msgid ""
"Besides the <literal>PermissionCheck</literal> facts, there is also a "
@@ -4233,7 +4239,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3037
+#: Security.xml:3040
#, no-c-format
msgid ""
"It is also possible to insert additional long-lived facts into the working "
@@ -4244,7 +4250,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3044
+#: Security.xml:3047
#, no-c-format
msgid ""
"Getting back to our simple example, we can also notice that the first line "
@@ -4255,13 +4261,13 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3051
+#: Security.xml:3054
#, no-c-format
msgid "<![CDATA[Role(name == \"admin\")]]>"
msgstr ""
#. Tag: para
-#: Security.xml:3053
+#: Security.xml:3056
#, no-c-format
msgid ""
"This condition simply states that there must be a <literal>Role</literal> "
@@ -4274,7 +4280,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3061
+#: Security.xml:3064
#, no-c-format
msgid ""
"So what is the consequence of the rule firing? Let's take a look at the RHS "
@@ -4282,13 +4288,13 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3065
+#: Security.xml:3068
#, no-c-format
msgid "<![CDATA[c.grant()]]>"
msgstr ""
#. Tag: para
-#: Security.xml:3067
+#: Security.xml:3070
#, no-c-format
msgid ""
"The RHS consists of Java code, and in this case is invoking the "
@@ -4305,13 +4311,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3081
+#: Security.xml:3084
#, no-c-format
msgid "Non-String permission targets"
msgstr ""
#. Tag: para
-#: Security.xml:3083
+#: Security.xml:3086
#, no-c-format
msgid ""
"So far we have only seen permission checks for String-literal permission "
@@ -4325,7 +4331,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3092
+#: Security.xml:3095
#, no-c-format
msgid ""
"<![CDATA[rule CanCreateBlogComment\n"
@@ -4343,13 +4349,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3097
+#: Security.xml:3100
#, no-c-format
msgid "Wildcard permission checks"
msgstr ""
#. Tag: para
-#: Security.xml:3099
+#: Security.xml:3102
#, no-c-format
msgid ""
"It is possible to implement a wildcard permission check (which allows all "
@@ -4359,7 +4365,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3105
+#: Security.xml:3108
#, no-c-format
msgid ""
"<![CDATA[rule CanDoAnythingToCustomersIfYouAreAnAdmin\n"
@@ -4373,7 +4379,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3107
+#: Security.xml:3110
#, no-c-format
msgid ""
"This rule allows users with the <literal>admin</literal> role to perform "
@@ -4382,13 +4388,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3117
+#: Security.xml:3120
#, no-c-format
msgid "PersistentPermissionResolver"
msgstr ""
#. Tag: para
-#: Security.xml:3119
+#: Security.xml:3122
#, no-c-format
msgid ""
"Another built-in permission resolver provided by Seam, "
@@ -4401,7 +4407,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3130
+#: Security.xml:3133
#, no-c-format
msgid ""
"Before it can be used, <literal>PersistentPermissionResolver</literal> must "
@@ -4414,7 +4420,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3138
+#: Security.xml:3141
#, no-c-format
msgid ""
"<![CDATA[ <security:persistent-permission-resolver permission-store=\"#"
@@ -4422,13 +4428,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3143
+#: Security.xml:3146
#, no-c-format
msgid "Permission Stores"
msgstr ""
#. Tag: para
-#: Security.xml:3145
+#: Security.xml:3148
#, no-c-format
msgid ""
"A permission store is required for <literal>PersistentPermissionResolver</"
@@ -4441,26 +4447,26 @@
msgstr ""
#. Tag: title
-#: Security.xml:3155
+#: Security.xml:3158
#, no-c-format
msgid "PermissionStore interface"
msgstr ""
#. Tag: literal
-#: Security.xml:3181 Security.xml:3200 Security.xml:3219 Security.xml:3802
-#: Security.xml:3821
+#: Security.xml:3184 Security.xml:3203 Security.xml:3222 Security.xml:3805
+#: Security.xml:3824
#, no-c-format
msgid "List<Permission>"
msgstr ""
#. Tag: literal
-#: Security.xml:3186 Security.xml:3826
+#: Security.xml:3189 Security.xml:3829
#, no-c-format
msgid "listPermissions(Object target)"
msgstr ""
#. Tag: para
-#: Security.xml:3190
+#: Security.xml:3193
#, no-c-format
msgid ""
"This method should return a <literal>List</literal> of <literal>Permission</"
@@ -4469,13 +4475,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3205 Security.xml:3807
+#: Security.xml:3208 Security.xml:3810
#, no-c-format
msgid "listPermissions(Object target, String action)"
msgstr ""
#. Tag: para
-#: Security.xml:3209
+#: Security.xml:3212
#, no-c-format
msgid ""
"This method should return a <literal>List</literal> of <literal>Permission</"
@@ -4484,13 +4490,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3224
+#: Security.xml:3227
#, no-c-format
msgid "listPermissions(Set<Object> targets, String action)"
msgstr ""
#. Tag: para
-#: Security.xml:3228
+#: Security.xml:3231
#, no-c-format
msgid ""
"This method should return a <literal>List</literal> of <literal>Permission</"
@@ -4499,13 +4505,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3244
+#: Security.xml:3247
#, no-c-format
msgid "grantPermission(Permission)"
msgstr ""
#. Tag: para
-#: Security.xml:3248
+#: Security.xml:3251
#, no-c-format
msgid ""
"This method should persist the specified <literal>Permission</literal> "
@@ -4513,13 +4519,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3263 Security.xml:3864
+#: Security.xml:3266 Security.xml:3867
#, no-c-format
msgid "grantPermissions(List<Permission> permissions)"
msgstr ""
#. Tag: para
-#: Security.xml:3267
+#: Security.xml:3270
#, no-c-format
msgid ""
"This method should persist all of the <literal>Permission</literal> objects "
@@ -4528,13 +4534,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3282 Security.xml:3883
+#: Security.xml:3285 Security.xml:3886
#, no-c-format
msgid "revokePermission(Permission permission)"
msgstr ""
#. Tag: para
-#: Security.xml:3286
+#: Security.xml:3289
#, no-c-format
msgid ""
"This method should remove the specified <literal>Permission</literal> object "
@@ -4542,13 +4548,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3300 Security.xml:3902
+#: Security.xml:3303 Security.xml:3905
#, no-c-format
msgid "revokePermissions(List<Permission> permissions)"
msgstr ""
#. Tag: para
-#: Security.xml:3304
+#: Security.xml:3307
#, no-c-format
msgid ""
"This method should remove all of the <literal>Permission</literal> objects "
@@ -4556,19 +4562,19 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3314 Security.xml:3916
+#: Security.xml:3317 Security.xml:3919
#, no-c-format
msgid "List<String>"
msgstr ""
#. Tag: literal
-#: Security.xml:3319 Security.xml:3921
+#: Security.xml:3322 Security.xml:3924
#, no-c-format
msgid "listAvailableActions(Object target)"
msgstr ""
#. Tag: para
-#: Security.xml:3323
+#: Security.xml:3326
#, no-c-format
msgid ""
"This method should return a list of all the available actions (as Strings) "
@@ -4578,13 +4584,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3337
+#: Security.xml:3340
#, no-c-format
msgid "JpaPermissionStore"
msgstr ""
#. Tag: para
-#: Security.xml:3339
+#: Security.xml:3342
#, no-c-format
msgid ""
"This is the default <literal>PermissionStore</literal> implementation (and "
@@ -4597,7 +4603,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3347
+#: Security.xml:3350
#, no-c-format
msgid ""
"If you wish to use the same entity (i.e. a single database table) to store "
@@ -4609,7 +4615,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3354
+#: Security.xml:3357
#, no-c-format
msgid ""
"For example, to configure a single entity class to store both user and role "
@@ -4617,7 +4623,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3356
+#: Security.xml:3359
#, no-c-format
msgid ""
"<![CDATA[ <security:jpa-permission-store user-permission-class=\"com.acme."
@@ -4625,14 +4631,14 @@
msgstr ""
#. Tag: para
-#: Security.xml:3358
+#: Security.xml:3361
#, no-c-format
msgid ""
"To configure separate entity classes for storing user and role permissions:"
msgstr ""
#. Tag: programlisting
-#: Security.xml:3360
+#: Security.xml:3363
#, no-c-format
msgid ""
"<![CDATA[ <security:jpa-permission-store user-permission-class=\"com.acme."
@@ -4641,13 +4647,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3363
+#: Security.xml:3366
#, no-c-format
msgid "Permission annotations"
msgstr ""
#. Tag: para
-#: Security.xml:3365
+#: Security.xml:3368
#, no-c-format
msgid ""
"As mentioned, the entity classes that contain the user and role permissions "
@@ -4658,32 +4664,32 @@
msgstr ""
#. Tag: title
-#: Security.xml:3372
+#: Security.xml:3375
#, no-c-format
msgid "Entity Permission annotations"
msgstr ""
#. Tag: para
-#: Security.xml:3385 Security.xml:3548
+#: Security.xml:3388 Security.xml:3551
#, no-c-format
msgid "Target"
msgstr ""
#. Tag: literal
-#: Security.xml:3398
+#: Security.xml:3401
#, no-c-format
msgid "@PermissionTarget"
msgstr ""
#. Tag: literal
-#: Security.xml:3403 Security.xml:3422 Security.xml:3441 Security.xml:3460
-#: Security.xml:3479
+#: Security.xml:3406 Security.xml:3425 Security.xml:3444 Security.xml:3463
+#: Security.xml:3482
#, no-c-format
msgid "FIELD,METHOD"
msgstr ""
#. Tag: para
-#: Security.xml:3407
+#: Security.xml:3410
#, no-c-format
msgid ""
"This annotation identifies the property of the entity that will contain the "
@@ -4692,13 +4698,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3417
+#: Security.xml:3420
#, no-c-format
msgid "@PermissionAction"
msgstr ""
#. Tag: para
-#: Security.xml:3426
+#: Security.xml:3429
#, no-c-format
msgid ""
"This annotation identifies the property of the entity that will contain the "
@@ -4707,13 +4713,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3436
+#: Security.xml:3439
#, no-c-format
msgid "@PermissionUser"
msgstr ""
#. Tag: para
-#: Security.xml:3445
+#: Security.xml:3448
#, no-c-format
msgid ""
"This annotation identifies the property of the entity that will contain the "
@@ -4722,13 +4728,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3455
+#: Security.xml:3458
#, no-c-format
msgid "@PermissionRole"
msgstr ""
#. Tag: para
-#: Security.xml:3464
+#: Security.xml:3467
#, no-c-format
msgid ""
"This annotation identifies the property of the entity that will contain the "
@@ -4737,13 +4743,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3474
+#: Security.xml:3477
#, no-c-format
msgid "@PermissionDiscriminator"
msgstr ""
#. Tag: para
-#: Security.xml:3483
+#: Security.xml:3486
#, no-c-format
msgid ""
"This annotation should be used when the same entity/table is used to store "
@@ -4760,20 +4766,20 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3493
+#: Security.xml:3496
#, no-c-format
msgid ""
"<![CDATA[ @PermissionDiscriminator(userValue = \"u\", roleValue = \"r\")]]>"
msgstr ""
#. Tag: title
-#: Security.xml:3504
+#: Security.xml:3507
#, no-c-format
msgid "Example Entity"
msgstr ""
#. Tag: para
-#: Security.xml:3506
+#: Security.xml:3509
#, no-c-format
msgid ""
"Here is an example of an entity class that is used to store both user and "
@@ -4782,7 +4788,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3511
+#: Security.xml:3514
#, no-c-format
msgid ""
"<![CDATA[\n"
@@ -4843,7 +4849,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3513
+#: Security.xml:3516
#, no-c-format
msgid ""
"As can be seen in the above example, the <literal>getDiscriminator()</"
@@ -4860,13 +4866,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3526
+#: Security.xml:3529
#, no-c-format
msgid "Class-specific Permission Configuration"
msgstr ""
#. Tag: para
-#: Security.xml:3528
+#: Security.xml:3531
#, no-c-format
msgid ""
"A further set of class-specific annotations can be used to configure a "
@@ -4876,25 +4882,25 @@
msgstr ""
#. Tag: title
-#: Security.xml:3535
+#: Security.xml:3538
#, no-c-format
msgid "Class Permission Annotations"
msgstr ""
#. Tag: literal
-#: Security.xml:3561
+#: Security.xml:3564
#, no-c-format
msgid "@Permissions"
msgstr ""
#. Tag: literal
-#: Security.xml:3566 Security.xml:3584
+#: Security.xml:3569 Security.xml:3587
#, no-c-format
msgid "TYPE"
msgstr ""
#. Tag: para
-#: Security.xml:3570
+#: Security.xml:3573
#, no-c-format
msgid ""
"A container annotation, this annotation may contain an array of "
@@ -4902,13 +4908,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3579
+#: Security.xml:3582
#, no-c-format
msgid "@Permission"
msgstr ""
#. Tag: para
-#: Security.xml:3588
+#: Security.xml:3591
#, no-c-format
msgid ""
"This annotation defines a single allowable permission action for the target "
@@ -4919,7 +4925,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3600
+#: Security.xml:3603
#, no-c-format
msgid ""
"Here's an example of the above annotations in action. The following class "
@@ -4927,7 +4933,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3604
+#: Security.xml:3607
#, no-c-format
msgid ""
"<![CDATA[@Permissions({\n"
@@ -4939,7 +4945,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3606
+#: Security.xml:3609
#, no-c-format
msgid ""
"This example demonstrates how two allowable permission actions, "
@@ -4948,13 +4954,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3614
+#: Security.xml:3617
#, no-c-format
msgid "Permission masks"
msgstr ""
#. Tag: para
-#: Security.xml:3616
+#: Security.xml:3619
#, no-c-format
msgid ""
"By default, multiple permissions for the same target object and recipient "
@@ -4966,7 +4972,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3623
+#: Security.xml:3626
#, no-c-format
msgid ""
"For example, if recipient \"Bob\" is granted both the <literal>view</"
@@ -4979,7 +4985,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3630
+#: Security.xml:3633
#, no-c-format
msgid ""
"<![CDATA[@Permissions({\n"
@@ -4991,7 +4997,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3632
+#: Security.xml:3635
#, no-c-format
msgid ""
"The <literal>action</literal> property will instead simply contain \"3"
@@ -5001,7 +5007,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3638
+#: Security.xml:3641
#, no-c-format
msgid ""
"Obviously, it is very important that the <literal>mask</literal> values "
@@ -5009,13 +5015,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3644
+#: Security.xml:3647
#, no-c-format
msgid "Identifier Policy"
msgstr ""
#. Tag: para
-#: Security.xml:3646
+#: Security.xml:3649
#, no-c-format
msgid ""
"When storing or looking up permissions, <literal>JpaPermissionStore</"
@@ -5029,7 +5035,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3654
+#: Security.xml:3657
#, no-c-format
msgid ""
"The <literal>IdentifierStrategy</literal> interface is very simple, "
@@ -5037,7 +5043,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3658
+#: Security.xml:3661
#, no-c-format
msgid ""
"<![CDATA[public interface IdentifierStrategy {\n"
@@ -5047,7 +5053,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3660
+#: Security.xml:3663
#, no-c-format
msgid ""
"The first method, <literal>canIdentify()</literal> simply returns "
@@ -5058,7 +5064,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3666
+#: Security.xml:3669
#, no-c-format
msgid ""
"Seam provides two <literal>IdentifierStrategy</literal> implementations, "
@@ -5067,7 +5073,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3671
+#: Security.xml:3674
#, no-c-format
msgid ""
"To explicitly configure a specific identifier strategy to use for a "
@@ -5080,13 +5086,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3681
+#: Security.xml:3684
#, no-c-format
msgid "ClassIdentifierStrategy"
msgstr ""
#. Tag: para
-#: Security.xml:3683
+#: Security.xml:3686
#, no-c-format
msgid ""
"This identifier strategy is used to generate unique identifiers for classes, "
@@ -5100,7 +5106,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3692
+#: Security.xml:3695
#, no-c-format
msgid ""
"<![CDATA[@Identifier(name = \"customer\")\n"
@@ -5108,7 +5114,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3694
+#: Security.xml:3697
#, no-c-format
msgid ""
"The identifier for the following class will be \"<literal>customerAction</"
@@ -5116,7 +5122,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3698
+#: Security.xml:3701
#, no-c-format
msgid ""
"<![CDATA[@Name(\"customerAction\")\n"
@@ -5124,7 +5130,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3700
+#: Security.xml:3703
#, no-c-format
msgid ""
"Finally, the identifier for the following class will be \"<literal>Customer</"
@@ -5132,19 +5138,19 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3704
+#: Security.xml:3707
#, no-c-format
msgid "<![CDATA[public class Customer { ]]>"
msgstr ""
#. Tag: title
-#: Security.xml:3709
+#: Security.xml:3712
#, no-c-format
msgid "EntityIdentifierStrategy"
msgstr ""
#. Tag: para
-#: Security.xml:3711
+#: Security.xml:3714
#, no-c-format
msgid ""
"This identifier strategy is used to generate unique identifiers for entity "
@@ -5161,7 +5167,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3722
+#: Security.xml:3725
#, no-c-format
msgid ""
"<![CDATA[@Identifier(value = EntityIdentifierStrategy.class)\n"
@@ -5169,7 +5175,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3724
+#: Security.xml:3727
#, no-c-format
msgid ""
"For an example of the type of identifier values generated, assume we have "
@@ -5177,7 +5183,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3728
+#: Security.xml:3731
#, no-c-format
msgid ""
"<![CDATA[@Entity\n"
@@ -5200,7 +5206,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3730
+#: Security.xml:3733
#, no-c-format
msgid ""
"For a <literal>Customer</literal> instance with an <literal>id</literal> "
@@ -5210,7 +5216,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3736
+#: Security.xml:3739
#, no-c-format
msgid ""
"<![CDATA[@Entity\n"
@@ -5219,7 +5225,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3738
+#: Security.xml:3741
#, no-c-format
msgid ""
"Then a <literal>Customer</literal> with an <literal>id</literal> value of "
@@ -5228,13 +5234,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3751
+#: Security.xml:3754
#, no-c-format
msgid "Permission Management"
msgstr ""
#. Tag: para
-#: Security.xml:3753
+#: Security.xml:3756
#, no-c-format
msgid ""
"In much the same way that Seam Security provides an Identity Management API "
@@ -5244,13 +5250,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3760
+#: Security.xml:3763
#, no-c-format
msgid "PermissionManager"
msgstr ""
#. Tag: para
-#: Security.xml:3762
+#: Security.xml:3765
#, no-c-format
msgid ""
"The <literal>PermissionManager</literal> component is an application-scoped "
@@ -5263,7 +5269,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3769
+#: Security.xml:3772
#, no-c-format
msgid ""
"<![CDATA[\n"
@@ -5273,7 +5279,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3771
+#: Security.xml:3774
#, no-c-format
msgid ""
"The following table describes each of the available methods provided by "
@@ -5281,13 +5287,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3776
+#: Security.xml:3779
#, no-c-format
msgid "PermissionManager API methods"
msgstr ""
#. Tag: para
-#: Security.xml:3811 Security.xml:3830
+#: Security.xml:3814 Security.xml:3833
#, no-c-format
msgid ""
"Returns a list of <literal>Permission</literal> objects representing all of "
@@ -5295,13 +5301,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3845
+#: Security.xml:3848
#, no-c-format
msgid "grantPermission(Permission permission)"
msgstr ""
#. Tag: para
-#: Security.xml:3849
+#: Security.xml:3852
#, no-c-format
msgid ""
"Persists (grants) the specified <literal>Permission</literal> to the backend "
@@ -5309,7 +5315,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3868
+#: Security.xml:3871
#, no-c-format
msgid ""
"Persists (grants) the specified list of <literal>Permission</literal>s to "
@@ -5317,7 +5323,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3887
+#: Security.xml:3890
#, no-c-format
msgid ""
"Removes (revokes) the specified <literal>Permission</literal> from the "
@@ -5325,7 +5331,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3906
+#: Security.xml:3909
#, no-c-format
msgid ""
"Removes (revokes) the specified list of <literal>Permission</literal>s from "
@@ -5333,7 +5339,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3925
+#: Security.xml:3928
#, no-c-format
msgid ""
"Returns a list of the available actions for the specified target object. The "
@@ -5342,13 +5348,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3940
+#: Security.xml:3943
#, no-c-format
msgid "Permission checks for PermissionManager operations"
msgstr ""
#. Tag: para
-#: Security.xml:3942
+#: Security.xml:3945
#, no-c-format
msgid ""
"Invoking the methods of <literal>PermissionManager</literal> requires that "
@@ -5358,37 +5364,37 @@
msgstr ""
#. Tag: title
-#: Security.xml:3949
+#: Security.xml:3952
#, no-c-format
msgid "Permission Management Security Permissions"
msgstr ""
#. Tag: literal
-#: Security.xml:3973
+#: Security.xml:3976
#, no-c-format
msgid "listPermissions()"
msgstr ""
#. Tag: para
-#: Security.xml:3977
+#: Security.xml:3980
#, no-c-format
msgid "The specified <literal>target</literal>"
msgstr ""
#. Tag: literal
-#: Security.xml:3983
+#: Security.xml:3986
#, no-c-format
msgid "seam.read-permissions"
msgstr ""
#. Tag: literal
-#: Security.xml:3991 Security.xml:4011
+#: Security.xml:3994 Security.xml:4014
#, no-c-format
msgid "grantPermission()"
msgstr ""
#. Tag: para
-#: Security.xml:3995
+#: Security.xml:3998
#, no-c-format
msgid ""
"The target of the specified <literal>Permission</literal>, or each of the "
@@ -5397,56 +5403,56 @@
msgstr ""
#. Tag: literal
-#: Security.xml:4003 Security.xml:4021 Security.xml:4039
+#: Security.xml:4006 Security.xml:4024 Security.xml:4042
#, no-c-format
msgid "seam.grant-permission"
msgstr ""
#. Tag: para
-#: Security.xml:4015 Security.xml:4051
+#: Security.xml:4018 Security.xml:4054
#, no-c-format
msgid "The target of the specified <literal>Permission</literal>."
msgstr ""
#. Tag: literal
-#: Security.xml:4029
+#: Security.xml:4032
#, no-c-format
msgid "grantPermissions()"
msgstr ""
#. Tag: para
-#: Security.xml:4033 Security.xml:4069
+#: Security.xml:4036 Security.xml:4072
#, no-c-format
msgid ""
"Each of the targets of the specified list of <literal>Permission</literal>s."
msgstr ""
#. Tag: literal
-#: Security.xml:4047
+#: Security.xml:4050
#, no-c-format
msgid "revokePermission()"
msgstr ""
#. Tag: literal
-#: Security.xml:4057 Security.xml:4075
+#: Security.xml:4060 Security.xml:4078
#, no-c-format
msgid "seam.revoke-permission"
msgstr ""
#. Tag: literal
-#: Security.xml:4065
+#: Security.xml:4068
#, no-c-format
msgid "revokePermissions()"
msgstr ""
#. Tag: title
-#: Security.xml:4088
+#: Security.xml:4091
#, no-c-format
msgid "SSL Security"
msgstr ""
#. Tag: para
-#: Security.xml:4090
+#: Security.xml:4093
#, no-c-format
msgid ""
"Seam includes basic support for serving sensitive pages via the HTTPS "
@@ -5457,13 +5463,13 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4097
+#: Security.xml:4100
#, no-c-format
msgid "<![CDATA[<page view-id=\"/login.xhtml\" scheme=\"https\"/>]]>"
msgstr ""
#. Tag: para
-#: Security.xml:4099
+#: Security.xml:4102
#, no-c-format
msgid ""
"This configuration is automatically extended to both <literal>s:link</"
@@ -5475,13 +5481,13 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4106
+#: Security.xml:4109
#, no-c-format
msgid "<![CDATA[<s:link view=\"/login.xhtml\" value=\"Login\"/>]]>"
msgstr ""
#. Tag: para
-#: Security.xml:4108
+#: Security.xml:4111
#, no-c-format
msgid ""
"Browsing directly to a view when using the <emphasis>incorrect</emphasis> "
@@ -5492,7 +5498,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4115
+#: Security.xml:4118
#, no-c-format
msgid ""
"It is also possible to configure a <emphasis>default scheme</emphasis> for "
@@ -5506,13 +5512,13 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4124
+#: Security.xml:4127
#, no-c-format
msgid "<![CDATA[<page view-id=\"*\" scheme=\"http\" />]]>"
msgstr ""
#. Tag: para
-#: Security.xml:4126
+#: Security.xml:4129
#, no-c-format
msgid ""
"Of course, if <emphasis>none</emphasis> of the pages in your application use "
@@ -5520,7 +5526,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4131
+#: Security.xml:4134
#, no-c-format
msgid ""
"You may configure Seam to automatically invalidate the current HTTP session "
@@ -5529,13 +5535,13 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4136
+#: Security.xml:4139
#, no-c-format
msgid "<![CDATA[<web:session invalidate-on-scheme-change=\"true\"/>]]>"
msgstr ""
#. Tag: para
-#: Security.xml:4138
+#: Security.xml:4141
#, no-c-format
msgid ""
"This option helps make your system less vulnerable to sniffing of the "
@@ -5544,13 +5550,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4144
+#: Security.xml:4147
#, no-c-format
msgid "Overriding the default ports"
msgstr ""
#. Tag: para
-#: Security.xml:4146
+#: Security.xml:4149
#, no-c-format
msgid ""
"If you wish to configure the HTTP and HTTPS ports manually, they may be "
@@ -5560,7 +5566,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4152
+#: Security.xml:4155
#, no-c-format
msgid ""
"<![CDATA[\n"
@@ -5576,13 +5582,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4158
+#: Security.xml:4161
#, no-c-format
msgid "CAPTCHA"
msgstr ""
#. Tag: para
-#: Security.xml:4160
+#: Security.xml:4163
#, no-c-format
msgid ""
"Though strictly not part of the security API, Seam provides a built-in "
@@ -5594,13 +5600,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4168
+#: Security.xml:4171
#, no-c-format
msgid "Configuring the CAPTCHA Servlet"
msgstr ""
#. Tag: para
-#: Security.xml:4169
+#: Security.xml:4172
#, no-c-format
msgid ""
"To get up and running, it is necessary to configure the Seam Resource "
@@ -5609,7 +5615,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4174
+#: Security.xml:4177
#, no-c-format
msgid ""
"<![CDATA[<servlet>\n"
@@ -5625,20 +5631,20 @@
msgstr ""
#. Tag: title
-#: Security.xml:4179
+#: Security.xml:4182
#, no-c-format
msgid "Adding a CAPTCHA to a form"
msgstr ""
#. Tag: para
-#: Security.xml:4181
+#: Security.xml:4184
#, no-c-format
msgid ""
"Adding a CAPTCHA challenge to a form is extremely easy. Here's an example:"
msgstr ""
#. Tag: programlisting
-#: Security.xml:4185
+#: Security.xml:4188
#, no-c-format
msgid ""
"<![CDATA[<h:graphicImage value=\"/seam/resource/captcha\"/>\n"
@@ -5650,7 +5656,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4187
+#: Security.xml:4190
#, no-c-format
msgid ""
"That's all there is to it. The <literal>graphicImage</literal> control "
@@ -5660,20 +5666,20 @@
msgstr ""
#. Tag: title
-#: Security.xml:4196
+#: Security.xml:4199
#, no-c-format
msgid "Customising the CAPTCHA algorithm"
msgstr ""
#. Tag: para
-#: Security.xml:4198
+#: Security.xml:4201
#, no-c-format
msgid ""
"You may customize the CAPTCHA algorithm by overriding the built-in component:"
msgstr ""
#. Tag: programlisting
-#: Security.xml:4202
+#: Security.xml:4205
#, no-c-format
msgid ""
"<![CDATA[@Name(\"org.jboss.seam.captcha.captcha\")\n"
@@ -5700,13 +5706,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4209 Security.xml:4217
+#: Security.xml:4212 Security.xml:4220
#, no-c-format
msgid "Security Events"
msgstr ""
#. Tag: para
-#: Security.xml:4211
+#: Security.xml:4214
#, no-c-format
msgid ""
"The following table describes a number of events (see <xref linkend=\"events"
@@ -5714,68 +5720,68 @@
msgstr ""
#. Tag: para
-#: Security.xml:4226
+#: Security.xml:4229
#, no-c-format
msgid "Event Key"
msgstr ""
#. Tag: literal
-#: Security.xml:4239
+#: Security.xml:4242
#, no-c-format
msgid "org.jboss.seam.security.loginSuccessful"
msgstr ""
#. Tag: para
-#: Security.xml:4243
+#: Security.xml:4246
#, no-c-format
msgid "Raised when a login attempt is successful."
msgstr ""
#. Tag: literal
-#: Security.xml:4251
+#: Security.xml:4254
#, no-c-format
msgid "org.jboss.seam.security.loginFailed"
msgstr ""
#. Tag: para
-#: Security.xml:4255
+#: Security.xml:4258
#, no-c-format
msgid "Raised when a login attempt fails."
msgstr ""
#. Tag: literal
-#: Security.xml:4263
+#: Security.xml:4266
#, no-c-format
msgid "org.jboss.seam.security.alreadyLoggedIn"
msgstr ""
#. Tag: para
-#: Security.xml:4267
+#: Security.xml:4270
#, no-c-format
msgid ""
"Raised when a user that is already authenticated attempts to log in again."
msgstr ""
#. Tag: literal
-#: Security.xml:4275
+#: Security.xml:4278
#, no-c-format
msgid "org.jboss.seam.security.notLoggedIn"
msgstr ""
#. Tag: para
-#: Security.xml:4279
+#: Security.xml:4282
#, no-c-format
msgid "Raised when a security check fails when the user is not logged in."
msgstr ""
#. Tag: literal
-#: Security.xml:4287
+#: Security.xml:4290
#, no-c-format
msgid "org.jboss.seam.security.notAuthorized"
msgstr ""
#. Tag: para
-#: Security.xml:4291
+#: Security.xml:4294
#, no-c-format
msgid ""
"Raised when a security check fails when the user is logged in however "
@@ -5783,73 +5789,73 @@
msgstr ""
#. Tag: literal
-#: Security.xml:4299
+#: Security.xml:4302
#, no-c-format
msgid "org.jboss.seam.security.preAuthenticate"
msgstr ""
#. Tag: para
-#: Security.xml:4303
+#: Security.xml:4306
#, no-c-format
msgid "Raised just prior to user authentication."
msgstr ""
#. Tag: literal
-#: Security.xml:4311
+#: Security.xml:4314
#, no-c-format
msgid "org.jboss.seam.security.postAuthenticate"
msgstr ""
#. Tag: para
-#: Security.xml:4315
+#: Security.xml:4318
#, no-c-format
msgid "Raised just after user authentication."
msgstr ""
#. Tag: literal
-#: Security.xml:4323
+#: Security.xml:4326
#, no-c-format
msgid "org.jboss.seam.security.loggedOut"
msgstr ""
#. Tag: para
-#: Security.xml:4327
+#: Security.xml:4330
#, no-c-format
msgid "Raised after the user has logged out."
msgstr ""
#. Tag: literal
-#: Security.xml:4335
+#: Security.xml:4338
#, no-c-format
msgid "org.jboss.seam.security.credentialsUpdated"
msgstr ""
#. Tag: para
-#: Security.xml:4339
+#: Security.xml:4342
#, no-c-format
msgid "Raised when the user's credentials have been changed."
msgstr ""
#. Tag: literal
-#: Security.xml:4347
+#: Security.xml:4350
#, no-c-format
msgid "org.jboss.seam.security.rememberMe"
msgstr ""
#. Tag: para
-#: Security.xml:4351
+#: Security.xml:4354
#, no-c-format
msgid "Raised when the Identity's rememberMe property is changed."
msgstr ""
#. Tag: title
-#: Security.xml:4364
+#: Security.xml:4367
#, no-c-format
msgid "Run As"
msgstr ""
#. Tag: para
-#: Security.xml:4366
+#: Security.xml:4369
#, no-c-format
msgid ""
"Sometimes it may be necessary to perform certain operations with elevated "
@@ -5861,7 +5867,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4374
+#: Security.xml:4377
#, no-c-format
msgid ""
"The following code example demonstrates how <literal>RunAsOperation</"
@@ -5872,7 +5878,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4381
+#: Security.xml:4384
#, no-c-format
msgid ""
"<![CDATA[ new RunAsOperation() { \n"
@@ -5884,7 +5890,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4383
+#: Security.xml:4386
#, no-c-format
msgid ""
"In a similar way, the <literal>getPrincipal()</literal> or "
@@ -5895,13 +5901,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4394
+#: Security.xml:4397
#, no-c-format
msgid "Extending the Identity component"
msgstr ""
#. Tag: para
-#: Security.xml:4396
+#: Security.xml:4399
#, no-c-format
msgid ""
"Sometimes it might be necessary to extend the Identity component if your "
@@ -5914,7 +5920,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4404
+#: Security.xml:4407
#, no-c-format
msgid ""
"<![CDATA[@Name(\"org.jboss.seam.security.identity\")\n"
@@ -5949,7 +5955,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4407
+#: Security.xml:4410
#, no-c-format
msgid ""
"Note that an <literal>Identity</literal> component must be marked "
@@ -5959,13 +5965,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4419
+#: Security.xml:4422
#, no-c-format
msgid "OpenID"
msgstr ""
#. Tag: para
-#: Security.xml:4421
+#: Security.xml:4424
#, no-c-format
msgid ""
"OpenID is a community standard for external web-based authentication. The "
@@ -5978,7 +5984,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4430
+#: Security.xml:4433
#, no-c-format
msgid ""
"When using OpenID, the user selects an OpenID provider, and the provider "
@@ -5995,7 +6001,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4439
+#: Security.xml:4442
#, no-c-format
msgid ""
"It's important to realize at this point that authentication does not imply "
@@ -6008,13 +6014,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4449
+#: Security.xml:4452
#, no-c-format
msgid "Configuring OpenID"
msgstr ""
#. Tag: para
-#: Security.xml:4450
+#: Security.xml:4453
#, no-c-format
msgid ""
"Seam uses the openid4java package and requires four additional JARs to make "
@@ -6024,7 +6030,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4456
+#: Security.xml:4459
#, no-c-format
msgid ""
"OpenID processing requires the use of the <literal>OpenIdPhaseListener</"
@@ -6034,7 +6040,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4462
+#: Security.xml:4465
#, no-c-format
msgid ""
"<lifecycle>\n"
@@ -6044,7 +6050,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4465
+#: Security.xml:4468
#, no-c-format
msgid ""
"With this configuration, OpenID support is available to your application. "
@@ -6054,13 +6060,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4473
+#: Security.xml:4476
#, no-c-format
msgid "Presenting an OpenIdDLogin form"
msgstr ""
#. Tag: para
-#: Security.xml:4475
+#: Security.xml:4478
#, no-c-format
msgid ""
"To initiate an OpenID login, you can present a simply form to the user "
@@ -6070,7 +6076,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4480
+#: Security.xml:4483
#, no-c-format
msgid ""
"<h:form>\n"
@@ -6081,7 +6087,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4482
+#: Security.xml:4485
#, no-c-format
msgid ""
"When the user submits the login form, he will be redirected to his OpenID "
@@ -6093,13 +6099,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4491
+#: Security.xml:4494
#, no-c-format
msgid "Logging in immediately"
msgstr ""
#. Tag: para
-#: Security.xml:4493
+#: Security.xml:4496
#, no-c-format
msgid ""
"The simplest strategy is to simply login the user immediately. The following "
@@ -6108,7 +6114,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4497
+#: Security.xml:4500
#, no-c-format
msgid ""
"<page view-id="/openid.xhtml">\n"
@@ -6128,7 +6134,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4499
+#: Security.xml:4502
#, no-c-format
msgid ""
"Thie <literal>loginImmediately()</literal> action checks to see if the "
@@ -6142,13 +6148,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4510
+#: Security.xml:4513
#, no-c-format
msgid "Deferring login"
msgstr ""
#. Tag: para
-#: Security.xml:4512
+#: Security.xml:4515
#, no-c-format
msgid ""
"You may not want the user to be immediately logged in to your application. "
@@ -6165,13 +6171,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4526
+#: Security.xml:4529
#, no-c-format
msgid "Logging out"
msgstr ""
#. Tag: para
-#: Security.xml:4528
+#: Security.xml:4531
#, no-c-format
msgid ""
"Logging out (forgetting an OpenID association) is done by calling <literal>#"
@@ -6182,7 +6188,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4535
+#: Security.xml:4538
#, no-c-format
msgid ""
"<event type="org.jboss.seam.security.loggedOut">\n"
@@ -6191,7 +6197,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4537
+#: Security.xml:4540
#, no-c-format
msgid ""
"It's important that you do not leave this out or the user will not be able "
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/de-DE/Dependencies.po
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/de-DE/Dependencies.po 2009-06-11 20:41:36 UTC (rev 11125)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/de-DE/Dependencies.po 2009-06-11 20:43:04 UTC (rev 11126)
@@ -5,7 +5,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-04-15 13:51+0000\n"
+"POT-Creation-Date: 2009-06-11 18:45+0000\n"
"PO-Revision-Date: 2008-04-04 01:24+0000\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -938,8 +938,8 @@
#: Dependencies.xml:1182
#, no-c-format
msgid ""
-"This sample POM will give you Seam, JPA (provided by Hibernate) and "
-"Hibernate Validator:"
+"This sample POM will give you Seam, JPA (provided by Hibernate), Hibernate "
+"Validator and Hibernate Search:"
msgstr ""
#. Tag: programlisting
@@ -970,25 +970,31 @@
" <dependency>\n"
" <groupId>org.hibernate</groupId>\n"
" <artifactId>hibernate-validator</artifactId>\n"
-" <version>3.0.0.GA</version>\n"
+" <version>3.1.0.GA</version>\n"
" </dependency>\n"
"\n"
" <dependency>\n"
" <groupId>org.hibernate</groupId>\n"
" <artifactId>hibernate-annotations</artifactId>\n"
-" <version>3.3.0.ga</version>\n"
+" <version>3.4.0.GA</version>\n"
" </dependency>\n"
"\n"
" <dependency>\n"
" <groupId>org.hibernate</groupId>\n"
" <artifactId>hibernate-entitymanager</artifactId>\n"
-" <version>3.3.1.ga</version>\n"
+" <version>3.4.0.GA</version>\n"
" </dependency>\n"
+" \n"
+" <dependency>\n"
+" <groupId>org.hibernate</groupId>\n"
+" <artifactId>hibernate-search</artifactId>\n"
+" <version>3.1.1.GA</version>\n"
+" </dependency>\n"
"\n"
" <dependency>\n"
" <groupId>org.jboss.seam</groupId>\n"
" <artifactId>jboss-seam</artifactId>\n"
-" <version>2.0.0.GA</version>\n"
+" <version>2.2.0.GA</version>\n"
" </dependency>\n"
" \n"
" </dependencies>\n"
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/de-DE/Hsearch.po
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/de-DE/Hsearch.po 2009-06-11 20:41:36 UTC (rev 11125)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/de-DE/Hsearch.po 2009-06-11 20:43:04 UTC (rev 11126)
@@ -5,7 +5,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-04-15 13:51+0000\n"
+"POT-Creation-Date: 2009-06-11 18:45+0000\n"
"PO-Revision-Date: 2008-04-04 01:24+0000\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -45,7 +45,7 @@
#: Hsearch.xml:21
#, no-c-format
msgid ""
-"Hibernate Search has been designed to integrates nicely and as naturally as "
+"Hibernate Search has been designed to integrate nicely and as naturally as "
"possible with JPA and Hibernate. As a natural extension, JBoss Seam provides "
"an Hibernate Search integration."
msgstr ""
@@ -132,7 +132,7 @@
" <property name=\"hibernate.ejb.event.post-delete\" \n"
" value=\"org.hibernate.search.event.FullTextIndexEventListener"
"\"/>\n"
-"\n"
+" \n"
" </properties>\n"
"</persistence-unit>]]>"
msgstr ""
@@ -141,12 +141,15 @@
#: Hsearch.xml:52
#, no-c-format
msgid ""
-"This step is no longer necessary if Hibernate Annotation or EntityManager "
-"3.3.x are used."
+"It is not longer necessary the register the event listeners if Hibernate "
+"Annotations or EntityManager 3.3.x are used. When using Hibernate Search 3.1."
+"x more eventlisteners are needed, but these are registered automatically by "
+"Hibernate Annotations; refer to the Hibernate Search reference for "
+"configuring it without EntityManager and Annotations."
msgstr ""
#. Tag: para
-#: Hsearch.xml:56
+#: Hsearch.xml:60
#, no-c-format
msgid ""
"In addition to the configuration file, the following jars have to be "
@@ -154,25 +157,25 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:61
+#: Hsearch.xml:65
#, no-c-format
msgid "hibernate-search.jar"
msgstr ""
#. Tag: para
-#: Hsearch.xml:65
+#: Hsearch.xml:69
#, no-c-format
msgid "hibernate-commons-annotations.jar"
msgstr ""
#. Tag: para
-#: Hsearch.xml:69
+#: Hsearch.xml:73
#, no-c-format
msgid "lucene-core.jar"
msgstr ""
#. Tag: para
-#: Hsearch.xml:74
+#: Hsearch.xml:78
#, no-c-format
msgid ""
"If you deploy those in a EAR, don't forget to update <filename>application."
@@ -180,13 +183,13 @@
msgstr ""
#. Tag: title
-#: Hsearch.xml:80
+#: Hsearch.xml:84
#, no-c-format
msgid "Usage"
msgstr ""
#. Tag: para
-#: Hsearch.xml:82
+#: Hsearch.xml:86
#, no-c-format
msgid ""
"Hibernate Search uses annotations to map entities to a Lucene index, check "
@@ -195,7 +198,7 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:87
+#: Hsearch.xml:91
#, no-c-format
msgid ""
"Hibernate Search is fully integrated with the API and semantic of JPA / "
@@ -206,7 +209,7 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:93
+#: Hsearch.xml:97
#, no-c-format
msgid ""
"When Hibernate Search is present, JBoss Seam injects a "
@@ -214,7 +217,7 @@
msgstr ""
#. Tag: programlisting
-#: Hsearch.xml:96
+#: Hsearch.xml:100
#, no-c-format
msgid ""
"<![CDATA[@Stateful\n"
@@ -237,7 +240,7 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:99
+#: Hsearch.xml:103
#, no-c-format
msgid ""
"<classname>FullTextSession</classname> extends <classname>org.hibernate."
@@ -245,14 +248,14 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:104
+#: Hsearch.xml:108
#, no-c-format
msgid ""
"If the Java Persistence API is used, a smoother integration is proposed."
msgstr ""
#. Tag: programlisting
-#: Hsearch.xml:107
+#: Hsearch.xml:111
#, no-c-format
msgid ""
"<![CDATA[@Stateful\n"
@@ -275,7 +278,7 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:109
+#: Hsearch.xml:113
#, no-c-format
msgid ""
"When Hibernate Search is present, a <classname>FulltextEntityManager</"
@@ -286,7 +289,7 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:116
+#: Hsearch.xml:120
#, no-c-format
msgid ""
"When an EJB 3.0 Session or Message Driven Bean injection is used (i.e. via "
@@ -299,7 +302,7 @@
msgstr ""
#. Tag: programlisting
-#: Hsearch.xml:124
+#: Hsearch.xml:128
#, no-c-format
msgid ""
"<![CDATA[@Stateful\n"
@@ -323,15 +326,15 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:129
+#: Hsearch.xml:133
#, no-c-format
msgid ""
"For people accustomed to Hibernate Search out of Seam, note that using "
-"<methodname>Search.createFullTextSession</methodname> is not necessary."
+"<methodname>Search.getFullTextSession</methodname> is not necessary."
msgstr ""
#. Tag: para
-#: Hsearch.xml:134
+#: Hsearch.xml:138
#, no-c-format
msgid ""
"Check the DVDStore or the blog examples of the JBoss Seam distribution for a "
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/de-DE/Security.po
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/de-DE/Security.po 2009-06-11 20:41:36 UTC (rev 11125)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/de-DE/Security.po 2009-06-11 20:43:04 UTC (rev 11126)
@@ -5,7 +5,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-06-11 07:43+0000\n"
+"POT-Creation-Date: 2009-06-11 18:45+0000\n"
"PO-Revision-Date: 2008-04-04 01:24+0000\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -1190,7 +1190,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:630 Security.xml:764 Security.xml:3382 Security.xml:3545
+#: Security.xml:630 Security.xml:764 Security.xml:3385 Security.xml:3548
#, no-c-format
msgid "Annotation"
msgstr ""
@@ -1203,8 +1203,8 @@
#. Tag: para
#: Security.xml:636 Security.xml:770 Security.xml:966 Security.xml:1418
-#: Security.xml:2147 Security.xml:2756 Security.xml:3171 Security.xml:3388
-#: Security.xml:3551 Security.xml:3792 Security.xml:4229
+#: Security.xml:2147 Security.xml:2756 Security.xml:3174 Security.xml:3391
+#: Security.xml:3554 Security.xml:3795 Security.xml:4232
#, no-c-format
msgid "Description"
msgstr ""
@@ -2228,8 +2228,8 @@
msgstr ""
#. Tag: para
-#: Security.xml:1412 Security.xml:1828 Security.xml:2753 Security.xml:3168
-#: Security.xml:3789 Security.xml:3958
+#: Security.xml:1412 Security.xml:1828 Security.xml:2753 Security.xml:3171
+#: Security.xml:3792 Security.xml:3961
#, no-c-format
msgid "Method"
msgstr ""
@@ -2250,9 +2250,9 @@
#: Security.xml:1433 Security.xml:1452 Security.xml:1471 Security.xml:1490
#: Security.xml:1509 Security.xml:1529 Security.xml:1548 Security.xml:1567
#: Security.xml:1586 Security.xml:1606 Security.xml:1626 Security.xml:1740
-#: Security.xml:1762 Security.xml:1780 Security.xml:2766 Security.xml:3239
-#: Security.xml:3258 Security.xml:3277 Security.xml:3295 Security.xml:3840
-#: Security.xml:3859 Security.xml:3878 Security.xml:3897
+#: Security.xml:1762 Security.xml:1780 Security.xml:2766 Security.xml:3242
+#: Security.xml:3261 Security.xml:3280 Security.xml:3298 Security.xml:3843
+#: Security.xml:3862 Security.xml:3881 Security.xml:3900
#, no-c-format
msgid "boolean"
msgstr ""
@@ -2558,13 +2558,13 @@
msgstr ""
#. Tag: para
-#: Security.xml:1831 Security.xml:3961
+#: Security.xml:1831 Security.xml:3964
#, no-c-format
msgid "Permission Target"
msgstr ""
#. Tag: para
-#: Security.xml:1834 Security.xml:3964
+#: Security.xml:1834 Security.xml:3967
#, no-c-format
msgid "Permission Action"
msgstr ""
@@ -3806,7 +3806,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2750 Security.xml:3165 Security.xml:3786
+#: Security.xml:2750 Security.xml:3168 Security.xml:3789
#, no-c-format
msgid "Return type"
msgstr ""
@@ -3986,41 +3986,47 @@
#. Tag: para
#: Security.xml:2917
#, no-c-format
-msgid "drools-compiler.jar"
+msgid "drools-api.jar"
msgstr ""
#. Tag: para
#: Security.xml:2920
#, no-c-format
-msgid "drools-core.jar"
+msgid "drools-compiler.jar"
msgstr ""
#. Tag: para
#: Security.xml:2923
#, no-c-format
-msgid "janino.jar"
+msgid "drools-core.jar"
msgstr ""
#. Tag: para
#: Security.xml:2926
#, no-c-format
-msgid "antlr-runtime.jar"
+msgid "janino.jar"
msgstr ""
#. Tag: para
#: Security.xml:2929
#, no-c-format
-msgid "mvel14.jar"
+msgid "antlr-runtime.jar"
msgstr ""
+#. Tag: para
+#: Security.xml:2932
+#, no-c-format
+msgid "mvel2.jar"
+msgstr ""
+
#. Tag: title
-#: Security.xml:2936 Security.xml:3128
+#: Security.xml:2939 Security.xml:3131
#, no-c-format
msgid "Configuration"
msgstr ""
#. Tag: para
-#: Security.xml:2938
+#: Security.xml:2941
#, no-c-format
msgid ""
"The configuration for <literal>RuleBasedPermissionResolver</literal> "
@@ -4030,7 +4036,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:2944
+#: Security.xml:2947
#, no-c-format
msgid ""
"<![CDATA[<components xmlns=\"http://jboss.com/products/seam/components\"\n"
@@ -4058,7 +4064,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2946
+#: Security.xml:2949
#, no-c-format
msgid ""
"The default rule base name can be overridden by specifying the "
@@ -4067,7 +4073,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:2951
+#: Security.xml:2954
#, no-c-format
msgid ""
"<![CDATA[\n"
@@ -4076,7 +4082,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2953
+#: Security.xml:2956
#, no-c-format
msgid ""
"Once the <literal>RuleBase</literal> component is configured, it's time to "
@@ -4084,13 +4090,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:2959
+#: Security.xml:2962
#, no-c-format
msgid "Writing Security Rules"
msgstr ""
#. Tag: para
-#: Security.xml:2961
+#: Security.xml:2964
#, no-c-format
msgid ""
"The first step to writing security rules is to create a new rule file in the "
@@ -4101,7 +4107,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2968
+#: Security.xml:2971
#, no-c-format
msgid ""
"So what should the security rules file contain? At this stage it might be a "
@@ -4110,7 +4116,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:2973
+#: Security.xml:2976
#, no-c-format
msgid ""
"<![CDATA[package MyApplicationPermissions;\n"
@@ -4128,7 +4134,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2975
+#: Security.xml:2978
#, no-c-format
msgid ""
"Let's break this down step by step. The first thing we see is the package "
@@ -4138,7 +4144,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2981
+#: Security.xml:2984
#, no-c-format
msgid ""
"The next thing we can notice is a couple of import statements for the "
@@ -4148,7 +4154,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2987
+#: Security.xml:2990
#, no-c-format
msgid ""
"Finally we have the code for the rule. Each rule within a package should be "
@@ -4158,7 +4164,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2993
+#: Security.xml:2996
#, no-c-format
msgid ""
"Looking at the body of the rule definition we can notice two distinct "
@@ -4173,7 +4179,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3002
+#: Security.xml:3005
#, no-c-format
msgid ""
"If we look at the LHS of the rule, we see two conditions listed there. Let's "
@@ -4181,14 +4187,14 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3006
+#: Security.xml:3009
#, no-c-format
msgid ""
"<![CDATA[c: PermissionCheck(target == \"customer\", action == \"delete\")]]>"
msgstr ""
#. Tag: para
-#: Security.xml:3008
+#: Security.xml:3011
#, no-c-format
msgid ""
"In plain english, this condition is stating that there must exist a "
@@ -4198,7 +4204,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3014
+#: Security.xml:3017
#, no-c-format
msgid ""
"So what is the working memory? Also known as a \"stateful session\" in "
@@ -4216,7 +4222,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3026
+#: Security.xml:3029
#, no-c-format
msgid ""
"Besides the <literal>PermissionCheck</literal> facts, there is also a "
@@ -4233,7 +4239,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3037
+#: Security.xml:3040
#, no-c-format
msgid ""
"It is also possible to insert additional long-lived facts into the working "
@@ -4244,7 +4250,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3044
+#: Security.xml:3047
#, no-c-format
msgid ""
"Getting back to our simple example, we can also notice that the first line "
@@ -4255,13 +4261,13 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3051
+#: Security.xml:3054
#, no-c-format
msgid "<![CDATA[Role(name == \"admin\")]]>"
msgstr ""
#. Tag: para
-#: Security.xml:3053
+#: Security.xml:3056
#, no-c-format
msgid ""
"This condition simply states that there must be a <literal>Role</literal> "
@@ -4274,7 +4280,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3061
+#: Security.xml:3064
#, no-c-format
msgid ""
"So what is the consequence of the rule firing? Let's take a look at the RHS "
@@ -4282,13 +4288,13 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3065
+#: Security.xml:3068
#, no-c-format
msgid "<![CDATA[c.grant()]]>"
msgstr ""
#. Tag: para
-#: Security.xml:3067
+#: Security.xml:3070
#, no-c-format
msgid ""
"The RHS consists of Java code, and in this case is invoking the "
@@ -4305,13 +4311,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3081
+#: Security.xml:3084
#, no-c-format
msgid "Non-String permission targets"
msgstr ""
#. Tag: para
-#: Security.xml:3083
+#: Security.xml:3086
#, no-c-format
msgid ""
"So far we have only seen permission checks for String-literal permission "
@@ -4325,7 +4331,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3092
+#: Security.xml:3095
#, no-c-format
msgid ""
"<![CDATA[rule CanCreateBlogComment\n"
@@ -4343,13 +4349,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3097
+#: Security.xml:3100
#, no-c-format
msgid "Wildcard permission checks"
msgstr ""
#. Tag: para
-#: Security.xml:3099
+#: Security.xml:3102
#, no-c-format
msgid ""
"It is possible to implement a wildcard permission check (which allows all "
@@ -4359,7 +4365,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3105
+#: Security.xml:3108
#, no-c-format
msgid ""
"<![CDATA[rule CanDoAnythingToCustomersIfYouAreAnAdmin\n"
@@ -4373,7 +4379,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3107
+#: Security.xml:3110
#, no-c-format
msgid ""
"This rule allows users with the <literal>admin</literal> role to perform "
@@ -4382,13 +4388,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3117
+#: Security.xml:3120
#, no-c-format
msgid "PersistentPermissionResolver"
msgstr ""
#. Tag: para
-#: Security.xml:3119
+#: Security.xml:3122
#, no-c-format
msgid ""
"Another built-in permission resolver provided by Seam, "
@@ -4401,7 +4407,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3130
+#: Security.xml:3133
#, no-c-format
msgid ""
"Before it can be used, <literal>PersistentPermissionResolver</literal> must "
@@ -4414,7 +4420,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3138
+#: Security.xml:3141
#, no-c-format
msgid ""
"<![CDATA[ <security:persistent-permission-resolver permission-store=\"#"
@@ -4422,13 +4428,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3143
+#: Security.xml:3146
#, no-c-format
msgid "Permission Stores"
msgstr ""
#. Tag: para
-#: Security.xml:3145
+#: Security.xml:3148
#, no-c-format
msgid ""
"A permission store is required for <literal>PersistentPermissionResolver</"
@@ -4441,26 +4447,26 @@
msgstr ""
#. Tag: title
-#: Security.xml:3155
+#: Security.xml:3158
#, no-c-format
msgid "PermissionStore interface"
msgstr ""
#. Tag: literal
-#: Security.xml:3181 Security.xml:3200 Security.xml:3219 Security.xml:3802
-#: Security.xml:3821
+#: Security.xml:3184 Security.xml:3203 Security.xml:3222 Security.xml:3805
+#: Security.xml:3824
#, no-c-format
msgid "List<Permission>"
msgstr ""
#. Tag: literal
-#: Security.xml:3186 Security.xml:3826
+#: Security.xml:3189 Security.xml:3829
#, no-c-format
msgid "listPermissions(Object target)"
msgstr ""
#. Tag: para
-#: Security.xml:3190
+#: Security.xml:3193
#, no-c-format
msgid ""
"This method should return a <literal>List</literal> of <literal>Permission</"
@@ -4469,13 +4475,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3205 Security.xml:3807
+#: Security.xml:3208 Security.xml:3810
#, no-c-format
msgid "listPermissions(Object target, String action)"
msgstr ""
#. Tag: para
-#: Security.xml:3209
+#: Security.xml:3212
#, no-c-format
msgid ""
"This method should return a <literal>List</literal> of <literal>Permission</"
@@ -4484,13 +4490,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3224
+#: Security.xml:3227
#, no-c-format
msgid "listPermissions(Set<Object> targets, String action)"
msgstr ""
#. Tag: para
-#: Security.xml:3228
+#: Security.xml:3231
#, no-c-format
msgid ""
"This method should return a <literal>List</literal> of <literal>Permission</"
@@ -4499,13 +4505,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3244
+#: Security.xml:3247
#, no-c-format
msgid "grantPermission(Permission)"
msgstr ""
#. Tag: para
-#: Security.xml:3248
+#: Security.xml:3251
#, no-c-format
msgid ""
"This method should persist the specified <literal>Permission</literal> "
@@ -4513,13 +4519,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3263 Security.xml:3864
+#: Security.xml:3266 Security.xml:3867
#, no-c-format
msgid "grantPermissions(List<Permission> permissions)"
msgstr ""
#. Tag: para
-#: Security.xml:3267
+#: Security.xml:3270
#, no-c-format
msgid ""
"This method should persist all of the <literal>Permission</literal> objects "
@@ -4528,13 +4534,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3282 Security.xml:3883
+#: Security.xml:3285 Security.xml:3886
#, no-c-format
msgid "revokePermission(Permission permission)"
msgstr ""
#. Tag: para
-#: Security.xml:3286
+#: Security.xml:3289
#, no-c-format
msgid ""
"This method should remove the specified <literal>Permission</literal> object "
@@ -4542,13 +4548,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3300 Security.xml:3902
+#: Security.xml:3303 Security.xml:3905
#, no-c-format
msgid "revokePermissions(List<Permission> permissions)"
msgstr ""
#. Tag: para
-#: Security.xml:3304
+#: Security.xml:3307
#, no-c-format
msgid ""
"This method should remove all of the <literal>Permission</literal> objects "
@@ -4556,19 +4562,19 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3314 Security.xml:3916
+#: Security.xml:3317 Security.xml:3919
#, no-c-format
msgid "List<String>"
msgstr ""
#. Tag: literal
-#: Security.xml:3319 Security.xml:3921
+#: Security.xml:3322 Security.xml:3924
#, no-c-format
msgid "listAvailableActions(Object target)"
msgstr ""
#. Tag: para
-#: Security.xml:3323
+#: Security.xml:3326
#, no-c-format
msgid ""
"This method should return a list of all the available actions (as Strings) "
@@ -4578,13 +4584,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3337
+#: Security.xml:3340
#, no-c-format
msgid "JpaPermissionStore"
msgstr ""
#. Tag: para
-#: Security.xml:3339
+#: Security.xml:3342
#, no-c-format
msgid ""
"This is the default <literal>PermissionStore</literal> implementation (and "
@@ -4597,7 +4603,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3347
+#: Security.xml:3350
#, no-c-format
msgid ""
"If you wish to use the same entity (i.e. a single database table) to store "
@@ -4609,7 +4615,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3354
+#: Security.xml:3357
#, no-c-format
msgid ""
"For example, to configure a single entity class to store both user and role "
@@ -4617,7 +4623,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3356
+#: Security.xml:3359
#, no-c-format
msgid ""
"<![CDATA[ <security:jpa-permission-store user-permission-class=\"com.acme."
@@ -4625,14 +4631,14 @@
msgstr ""
#. Tag: para
-#: Security.xml:3358
+#: Security.xml:3361
#, no-c-format
msgid ""
"To configure separate entity classes for storing user and role permissions:"
msgstr ""
#. Tag: programlisting
-#: Security.xml:3360
+#: Security.xml:3363
#, no-c-format
msgid ""
"<![CDATA[ <security:jpa-permission-store user-permission-class=\"com.acme."
@@ -4641,13 +4647,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3363
+#: Security.xml:3366
#, no-c-format
msgid "Permission annotations"
msgstr ""
#. Tag: para
-#: Security.xml:3365
+#: Security.xml:3368
#, no-c-format
msgid ""
"As mentioned, the entity classes that contain the user and role permissions "
@@ -4658,32 +4664,32 @@
msgstr ""
#. Tag: title
-#: Security.xml:3372
+#: Security.xml:3375
#, no-c-format
msgid "Entity Permission annotations"
msgstr ""
#. Tag: para
-#: Security.xml:3385 Security.xml:3548
+#: Security.xml:3388 Security.xml:3551
#, no-c-format
msgid "Target"
msgstr ""
#. Tag: literal
-#: Security.xml:3398
+#: Security.xml:3401
#, no-c-format
msgid "@PermissionTarget"
msgstr ""
#. Tag: literal
-#: Security.xml:3403 Security.xml:3422 Security.xml:3441 Security.xml:3460
-#: Security.xml:3479
+#: Security.xml:3406 Security.xml:3425 Security.xml:3444 Security.xml:3463
+#: Security.xml:3482
#, no-c-format
msgid "FIELD,METHOD"
msgstr ""
#. Tag: para
-#: Security.xml:3407
+#: Security.xml:3410
#, no-c-format
msgid ""
"This annotation identifies the property of the entity that will contain the "
@@ -4692,13 +4698,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3417
+#: Security.xml:3420
#, no-c-format
msgid "@PermissionAction"
msgstr ""
#. Tag: para
-#: Security.xml:3426
+#: Security.xml:3429
#, no-c-format
msgid ""
"This annotation identifies the property of the entity that will contain the "
@@ -4707,13 +4713,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3436
+#: Security.xml:3439
#, no-c-format
msgid "@PermissionUser"
msgstr ""
#. Tag: para
-#: Security.xml:3445
+#: Security.xml:3448
#, no-c-format
msgid ""
"This annotation identifies the property of the entity that will contain the "
@@ -4722,13 +4728,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3455
+#: Security.xml:3458
#, no-c-format
msgid "@PermissionRole"
msgstr ""
#. Tag: para
-#: Security.xml:3464
+#: Security.xml:3467
#, no-c-format
msgid ""
"This annotation identifies the property of the entity that will contain the "
@@ -4737,13 +4743,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3474
+#: Security.xml:3477
#, no-c-format
msgid "@PermissionDiscriminator"
msgstr ""
#. Tag: para
-#: Security.xml:3483
+#: Security.xml:3486
#, no-c-format
msgid ""
"This annotation should be used when the same entity/table is used to store "
@@ -4760,20 +4766,20 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3493
+#: Security.xml:3496
#, no-c-format
msgid ""
"<![CDATA[ @PermissionDiscriminator(userValue = \"u\", roleValue = \"r\")]]>"
msgstr ""
#. Tag: title
-#: Security.xml:3504
+#: Security.xml:3507
#, no-c-format
msgid "Example Entity"
msgstr ""
#. Tag: para
-#: Security.xml:3506
+#: Security.xml:3509
#, no-c-format
msgid ""
"Here is an example of an entity class that is used to store both user and "
@@ -4782,7 +4788,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3511
+#: Security.xml:3514
#, no-c-format
msgid ""
"<![CDATA[\n"
@@ -4843,7 +4849,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3513
+#: Security.xml:3516
#, no-c-format
msgid ""
"As can be seen in the above example, the <literal>getDiscriminator()</"
@@ -4860,13 +4866,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3526
+#: Security.xml:3529
#, no-c-format
msgid "Class-specific Permission Configuration"
msgstr ""
#. Tag: para
-#: Security.xml:3528
+#: Security.xml:3531
#, no-c-format
msgid ""
"A further set of class-specific annotations can be used to configure a "
@@ -4876,25 +4882,25 @@
msgstr ""
#. Tag: title
-#: Security.xml:3535
+#: Security.xml:3538
#, no-c-format
msgid "Class Permission Annotations"
msgstr ""
#. Tag: literal
-#: Security.xml:3561
+#: Security.xml:3564
#, no-c-format
msgid "@Permissions"
msgstr ""
#. Tag: literal
-#: Security.xml:3566 Security.xml:3584
+#: Security.xml:3569 Security.xml:3587
#, no-c-format
msgid "TYPE"
msgstr ""
#. Tag: para
-#: Security.xml:3570
+#: Security.xml:3573
#, no-c-format
msgid ""
"A container annotation, this annotation may contain an array of "
@@ -4902,13 +4908,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3579
+#: Security.xml:3582
#, no-c-format
msgid "@Permission"
msgstr ""
#. Tag: para
-#: Security.xml:3588
+#: Security.xml:3591
#, no-c-format
msgid ""
"This annotation defines a single allowable permission action for the target "
@@ -4919,7 +4925,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3600
+#: Security.xml:3603
#, no-c-format
msgid ""
"Here's an example of the above annotations in action. The following class "
@@ -4927,7 +4933,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3604
+#: Security.xml:3607
#, no-c-format
msgid ""
"<![CDATA[@Permissions({\n"
@@ -4939,7 +4945,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3606
+#: Security.xml:3609
#, no-c-format
msgid ""
"This example demonstrates how two allowable permission actions, "
@@ -4948,13 +4954,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3614
+#: Security.xml:3617
#, no-c-format
msgid "Permission masks"
msgstr ""
#. Tag: para
-#: Security.xml:3616
+#: Security.xml:3619
#, no-c-format
msgid ""
"By default, multiple permissions for the same target object and recipient "
@@ -4966,7 +4972,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3623
+#: Security.xml:3626
#, no-c-format
msgid ""
"For example, if recipient \"Bob\" is granted both the <literal>view</"
@@ -4979,7 +4985,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3630
+#: Security.xml:3633
#, no-c-format
msgid ""
"<![CDATA[@Permissions({\n"
@@ -4991,7 +4997,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3632
+#: Security.xml:3635
#, no-c-format
msgid ""
"The <literal>action</literal> property will instead simply contain \"3"
@@ -5001,7 +5007,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3638
+#: Security.xml:3641
#, no-c-format
msgid ""
"Obviously, it is very important that the <literal>mask</literal> values "
@@ -5009,13 +5015,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3644
+#: Security.xml:3647
#, no-c-format
msgid "Identifier Policy"
msgstr ""
#. Tag: para
-#: Security.xml:3646
+#: Security.xml:3649
#, no-c-format
msgid ""
"When storing or looking up permissions, <literal>JpaPermissionStore</"
@@ -5029,7 +5035,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3654
+#: Security.xml:3657
#, no-c-format
msgid ""
"The <literal>IdentifierStrategy</literal> interface is very simple, "
@@ -5037,7 +5043,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3658
+#: Security.xml:3661
#, no-c-format
msgid ""
"<![CDATA[public interface IdentifierStrategy {\n"
@@ -5047,7 +5053,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3660
+#: Security.xml:3663
#, no-c-format
msgid ""
"The first method, <literal>canIdentify()</literal> simply returns "
@@ -5058,7 +5064,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3666
+#: Security.xml:3669
#, no-c-format
msgid ""
"Seam provides two <literal>IdentifierStrategy</literal> implementations, "
@@ -5067,7 +5073,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3671
+#: Security.xml:3674
#, no-c-format
msgid ""
"To explicitly configure a specific identifier strategy to use for a "
@@ -5080,13 +5086,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3681
+#: Security.xml:3684
#, no-c-format
msgid "ClassIdentifierStrategy"
msgstr ""
#. Tag: para
-#: Security.xml:3683
+#: Security.xml:3686
#, no-c-format
msgid ""
"This identifier strategy is used to generate unique identifiers for classes, "
@@ -5100,7 +5106,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3692
+#: Security.xml:3695
#, no-c-format
msgid ""
"<![CDATA[@Identifier(name = \"customer\")\n"
@@ -5108,7 +5114,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3694
+#: Security.xml:3697
#, no-c-format
msgid ""
"The identifier for the following class will be \"<literal>customerAction</"
@@ -5116,7 +5122,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3698
+#: Security.xml:3701
#, no-c-format
msgid ""
"<![CDATA[@Name(\"customerAction\")\n"
@@ -5124,7 +5130,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3700
+#: Security.xml:3703
#, no-c-format
msgid ""
"Finally, the identifier for the following class will be \"<literal>Customer</"
@@ -5132,19 +5138,19 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3704
+#: Security.xml:3707
#, no-c-format
msgid "<![CDATA[public class Customer { ]]>"
msgstr ""
#. Tag: title
-#: Security.xml:3709
+#: Security.xml:3712
#, no-c-format
msgid "EntityIdentifierStrategy"
msgstr ""
#. Tag: para
-#: Security.xml:3711
+#: Security.xml:3714
#, no-c-format
msgid ""
"This identifier strategy is used to generate unique identifiers for entity "
@@ -5161,7 +5167,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3722
+#: Security.xml:3725
#, no-c-format
msgid ""
"<![CDATA[@Identifier(value = EntityIdentifierStrategy.class)\n"
@@ -5169,7 +5175,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3724
+#: Security.xml:3727
#, no-c-format
msgid ""
"For an example of the type of identifier values generated, assume we have "
@@ -5177,7 +5183,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3728
+#: Security.xml:3731
#, no-c-format
msgid ""
"<![CDATA[@Entity\n"
@@ -5200,7 +5206,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3730
+#: Security.xml:3733
#, no-c-format
msgid ""
"For a <literal>Customer</literal> instance with an <literal>id</literal> "
@@ -5210,7 +5216,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3736
+#: Security.xml:3739
#, no-c-format
msgid ""
"<![CDATA[@Entity\n"
@@ -5219,7 +5225,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3738
+#: Security.xml:3741
#, no-c-format
msgid ""
"Then a <literal>Customer</literal> with an <literal>id</literal> value of "
@@ -5228,13 +5234,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3751
+#: Security.xml:3754
#, no-c-format
msgid "Permission Management"
msgstr ""
#. Tag: para
-#: Security.xml:3753
+#: Security.xml:3756
#, no-c-format
msgid ""
"In much the same way that Seam Security provides an Identity Management API "
@@ -5244,13 +5250,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3760
+#: Security.xml:3763
#, no-c-format
msgid "PermissionManager"
msgstr ""
#. Tag: para
-#: Security.xml:3762
+#: Security.xml:3765
#, no-c-format
msgid ""
"The <literal>PermissionManager</literal> component is an application-scoped "
@@ -5263,7 +5269,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3769
+#: Security.xml:3772
#, no-c-format
msgid ""
"<![CDATA[\n"
@@ -5273,7 +5279,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3771
+#: Security.xml:3774
#, no-c-format
msgid ""
"The following table describes each of the available methods provided by "
@@ -5281,13 +5287,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3776
+#: Security.xml:3779
#, no-c-format
msgid "PermissionManager API methods"
msgstr ""
#. Tag: para
-#: Security.xml:3811 Security.xml:3830
+#: Security.xml:3814 Security.xml:3833
#, no-c-format
msgid ""
"Returns a list of <literal>Permission</literal> objects representing all of "
@@ -5295,13 +5301,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3845
+#: Security.xml:3848
#, no-c-format
msgid "grantPermission(Permission permission)"
msgstr ""
#. Tag: para
-#: Security.xml:3849
+#: Security.xml:3852
#, no-c-format
msgid ""
"Persists (grants) the specified <literal>Permission</literal> to the backend "
@@ -5309,7 +5315,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3868
+#: Security.xml:3871
#, no-c-format
msgid ""
"Persists (grants) the specified list of <literal>Permission</literal>s to "
@@ -5317,7 +5323,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3887
+#: Security.xml:3890
#, no-c-format
msgid ""
"Removes (revokes) the specified <literal>Permission</literal> from the "
@@ -5325,7 +5331,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3906
+#: Security.xml:3909
#, no-c-format
msgid ""
"Removes (revokes) the specified list of <literal>Permission</literal>s from "
@@ -5333,7 +5339,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3925
+#: Security.xml:3928
#, no-c-format
msgid ""
"Returns a list of the available actions for the specified target object. The "
@@ -5342,13 +5348,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3940
+#: Security.xml:3943
#, no-c-format
msgid "Permission checks for PermissionManager operations"
msgstr ""
#. Tag: para
-#: Security.xml:3942
+#: Security.xml:3945
#, no-c-format
msgid ""
"Invoking the methods of <literal>PermissionManager</literal> requires that "
@@ -5358,37 +5364,37 @@
msgstr ""
#. Tag: title
-#: Security.xml:3949
+#: Security.xml:3952
#, no-c-format
msgid "Permission Management Security Permissions"
msgstr ""
#. Tag: literal
-#: Security.xml:3973
+#: Security.xml:3976
#, no-c-format
msgid "listPermissions()"
msgstr ""
#. Tag: para
-#: Security.xml:3977
+#: Security.xml:3980
#, no-c-format
msgid "The specified <literal>target</literal>"
msgstr ""
#. Tag: literal
-#: Security.xml:3983
+#: Security.xml:3986
#, no-c-format
msgid "seam.read-permissions"
msgstr ""
#. Tag: literal
-#: Security.xml:3991 Security.xml:4011
+#: Security.xml:3994 Security.xml:4014
#, no-c-format
msgid "grantPermission()"
msgstr ""
#. Tag: para
-#: Security.xml:3995
+#: Security.xml:3998
#, no-c-format
msgid ""
"The target of the specified <literal>Permission</literal>, or each of the "
@@ -5397,56 +5403,56 @@
msgstr ""
#. Tag: literal
-#: Security.xml:4003 Security.xml:4021 Security.xml:4039
+#: Security.xml:4006 Security.xml:4024 Security.xml:4042
#, no-c-format
msgid "seam.grant-permission"
msgstr ""
#. Tag: para
-#: Security.xml:4015 Security.xml:4051
+#: Security.xml:4018 Security.xml:4054
#, no-c-format
msgid "The target of the specified <literal>Permission</literal>."
msgstr ""
#. Tag: literal
-#: Security.xml:4029
+#: Security.xml:4032
#, no-c-format
msgid "grantPermissions()"
msgstr ""
#. Tag: para
-#: Security.xml:4033 Security.xml:4069
+#: Security.xml:4036 Security.xml:4072
#, no-c-format
msgid ""
"Each of the targets of the specified list of <literal>Permission</literal>s."
msgstr ""
#. Tag: literal
-#: Security.xml:4047
+#: Security.xml:4050
#, no-c-format
msgid "revokePermission()"
msgstr ""
#. Tag: literal
-#: Security.xml:4057 Security.xml:4075
+#: Security.xml:4060 Security.xml:4078
#, no-c-format
msgid "seam.revoke-permission"
msgstr ""
#. Tag: literal
-#: Security.xml:4065
+#: Security.xml:4068
#, no-c-format
msgid "revokePermissions()"
msgstr ""
#. Tag: title
-#: Security.xml:4088
+#: Security.xml:4091
#, no-c-format
msgid "SSL Security"
msgstr ""
#. Tag: para
-#: Security.xml:4090
+#: Security.xml:4093
#, no-c-format
msgid ""
"Seam includes basic support for serving sensitive pages via the HTTPS "
@@ -5457,13 +5463,13 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4097
+#: Security.xml:4100
#, no-c-format
msgid "<![CDATA[<page view-id=\"/login.xhtml\" scheme=\"https\"/>]]>"
msgstr ""
#. Tag: para
-#: Security.xml:4099
+#: Security.xml:4102
#, no-c-format
msgid ""
"This configuration is automatically extended to both <literal>s:link</"
@@ -5475,13 +5481,13 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4106
+#: Security.xml:4109
#, no-c-format
msgid "<![CDATA[<s:link view=\"/login.xhtml\" value=\"Login\"/>]]>"
msgstr ""
#. Tag: para
-#: Security.xml:4108
+#: Security.xml:4111
#, no-c-format
msgid ""
"Browsing directly to a view when using the <emphasis>incorrect</emphasis> "
@@ -5492,7 +5498,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4115
+#: Security.xml:4118
#, no-c-format
msgid ""
"It is also possible to configure a <emphasis>default scheme</emphasis> for "
@@ -5506,13 +5512,13 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4124
+#: Security.xml:4127
#, no-c-format
msgid "<![CDATA[<page view-id=\"*\" scheme=\"http\" />]]>"
msgstr ""
#. Tag: para
-#: Security.xml:4126
+#: Security.xml:4129
#, no-c-format
msgid ""
"Of course, if <emphasis>none</emphasis> of the pages in your application use "
@@ -5520,7 +5526,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4131
+#: Security.xml:4134
#, no-c-format
msgid ""
"You may configure Seam to automatically invalidate the current HTTP session "
@@ -5529,13 +5535,13 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4136
+#: Security.xml:4139
#, no-c-format
msgid "<![CDATA[<web:session invalidate-on-scheme-change=\"true\"/>]]>"
msgstr ""
#. Tag: para
-#: Security.xml:4138
+#: Security.xml:4141
#, no-c-format
msgid ""
"This option helps make your system less vulnerable to sniffing of the "
@@ -5544,13 +5550,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4144
+#: Security.xml:4147
#, no-c-format
msgid "Overriding the default ports"
msgstr ""
#. Tag: para
-#: Security.xml:4146
+#: Security.xml:4149
#, no-c-format
msgid ""
"If you wish to configure the HTTP and HTTPS ports manually, they may be "
@@ -5560,7 +5566,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4152
+#: Security.xml:4155
#, no-c-format
msgid ""
"<![CDATA[\n"
@@ -5576,13 +5582,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4158
+#: Security.xml:4161
#, no-c-format
msgid "CAPTCHA"
msgstr ""
#. Tag: para
-#: Security.xml:4160
+#: Security.xml:4163
#, no-c-format
msgid ""
"Though strictly not part of the security API, Seam provides a built-in "
@@ -5594,13 +5600,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4168
+#: Security.xml:4171
#, no-c-format
msgid "Configuring the CAPTCHA Servlet"
msgstr ""
#. Tag: para
-#: Security.xml:4169
+#: Security.xml:4172
#, no-c-format
msgid ""
"To get up and running, it is necessary to configure the Seam Resource "
@@ -5609,7 +5615,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4174
+#: Security.xml:4177
#, no-c-format
msgid ""
"<![CDATA[<servlet>\n"
@@ -5625,20 +5631,20 @@
msgstr ""
#. Tag: title
-#: Security.xml:4179
+#: Security.xml:4182
#, no-c-format
msgid "Adding a CAPTCHA to a form"
msgstr ""
#. Tag: para
-#: Security.xml:4181
+#: Security.xml:4184
#, no-c-format
msgid ""
"Adding a CAPTCHA challenge to a form is extremely easy. Here's an example:"
msgstr ""
#. Tag: programlisting
-#: Security.xml:4185
+#: Security.xml:4188
#, no-c-format
msgid ""
"<![CDATA[<h:graphicImage value=\"/seam/resource/captcha\"/>\n"
@@ -5650,7 +5656,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4187
+#: Security.xml:4190
#, no-c-format
msgid ""
"That's all there is to it. The <literal>graphicImage</literal> control "
@@ -5660,20 +5666,20 @@
msgstr ""
#. Tag: title
-#: Security.xml:4196
+#: Security.xml:4199
#, no-c-format
msgid "Customising the CAPTCHA algorithm"
msgstr ""
#. Tag: para
-#: Security.xml:4198
+#: Security.xml:4201
#, no-c-format
msgid ""
"You may customize the CAPTCHA algorithm by overriding the built-in component:"
msgstr ""
#. Tag: programlisting
-#: Security.xml:4202
+#: Security.xml:4205
#, no-c-format
msgid ""
"<![CDATA[@Name(\"org.jboss.seam.captcha.captcha\")\n"
@@ -5700,13 +5706,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4209 Security.xml:4217
+#: Security.xml:4212 Security.xml:4220
#, no-c-format
msgid "Security Events"
msgstr ""
#. Tag: para
-#: Security.xml:4211
+#: Security.xml:4214
#, no-c-format
msgid ""
"The following table describes a number of events (see <xref linkend=\"events"
@@ -5714,68 +5720,68 @@
msgstr ""
#. Tag: para
-#: Security.xml:4226
+#: Security.xml:4229
#, no-c-format
msgid "Event Key"
msgstr ""
#. Tag: literal
-#: Security.xml:4239
+#: Security.xml:4242
#, no-c-format
msgid "org.jboss.seam.security.loginSuccessful"
msgstr ""
#. Tag: para
-#: Security.xml:4243
+#: Security.xml:4246
#, no-c-format
msgid "Raised when a login attempt is successful."
msgstr ""
#. Tag: literal
-#: Security.xml:4251
+#: Security.xml:4254
#, no-c-format
msgid "org.jboss.seam.security.loginFailed"
msgstr ""
#. Tag: para
-#: Security.xml:4255
+#: Security.xml:4258
#, no-c-format
msgid "Raised when a login attempt fails."
msgstr ""
#. Tag: literal
-#: Security.xml:4263
+#: Security.xml:4266
#, no-c-format
msgid "org.jboss.seam.security.alreadyLoggedIn"
msgstr ""
#. Tag: para
-#: Security.xml:4267
+#: Security.xml:4270
#, no-c-format
msgid ""
"Raised when a user that is already authenticated attempts to log in again."
msgstr ""
#. Tag: literal
-#: Security.xml:4275
+#: Security.xml:4278
#, no-c-format
msgid "org.jboss.seam.security.notLoggedIn"
msgstr ""
#. Tag: para
-#: Security.xml:4279
+#: Security.xml:4282
#, no-c-format
msgid "Raised when a security check fails when the user is not logged in."
msgstr ""
#. Tag: literal
-#: Security.xml:4287
+#: Security.xml:4290
#, no-c-format
msgid "org.jboss.seam.security.notAuthorized"
msgstr ""
#. Tag: para
-#: Security.xml:4291
+#: Security.xml:4294
#, no-c-format
msgid ""
"Raised when a security check fails when the user is logged in however "
@@ -5783,73 +5789,73 @@
msgstr ""
#. Tag: literal
-#: Security.xml:4299
+#: Security.xml:4302
#, no-c-format
msgid "org.jboss.seam.security.preAuthenticate"
msgstr ""
#. Tag: para
-#: Security.xml:4303
+#: Security.xml:4306
#, no-c-format
msgid "Raised just prior to user authentication."
msgstr ""
#. Tag: literal
-#: Security.xml:4311
+#: Security.xml:4314
#, no-c-format
msgid "org.jboss.seam.security.postAuthenticate"
msgstr ""
#. Tag: para
-#: Security.xml:4315
+#: Security.xml:4318
#, no-c-format
msgid "Raised just after user authentication."
msgstr ""
#. Tag: literal
-#: Security.xml:4323
+#: Security.xml:4326
#, no-c-format
msgid "org.jboss.seam.security.loggedOut"
msgstr ""
#. Tag: para
-#: Security.xml:4327
+#: Security.xml:4330
#, no-c-format
msgid "Raised after the user has logged out."
msgstr ""
#. Tag: literal
-#: Security.xml:4335
+#: Security.xml:4338
#, no-c-format
msgid "org.jboss.seam.security.credentialsUpdated"
msgstr ""
#. Tag: para
-#: Security.xml:4339
+#: Security.xml:4342
#, no-c-format
msgid "Raised when the user's credentials have been changed."
msgstr ""
#. Tag: literal
-#: Security.xml:4347
+#: Security.xml:4350
#, no-c-format
msgid "org.jboss.seam.security.rememberMe"
msgstr ""
#. Tag: para
-#: Security.xml:4351
+#: Security.xml:4354
#, no-c-format
msgid "Raised when the Identity's rememberMe property is changed."
msgstr ""
#. Tag: title
-#: Security.xml:4364
+#: Security.xml:4367
#, no-c-format
msgid "Run As"
msgstr ""
#. Tag: para
-#: Security.xml:4366
+#: Security.xml:4369
#, no-c-format
msgid ""
"Sometimes it may be necessary to perform certain operations with elevated "
@@ -5861,7 +5867,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4374
+#: Security.xml:4377
#, no-c-format
msgid ""
"The following code example demonstrates how <literal>RunAsOperation</"
@@ -5872,7 +5878,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4381
+#: Security.xml:4384
#, no-c-format
msgid ""
"<![CDATA[ new RunAsOperation() { \n"
@@ -5884,7 +5890,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4383
+#: Security.xml:4386
#, no-c-format
msgid ""
"In a similar way, the <literal>getPrincipal()</literal> or "
@@ -5895,13 +5901,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4394
+#: Security.xml:4397
#, no-c-format
msgid "Extending the Identity component"
msgstr ""
#. Tag: para
-#: Security.xml:4396
+#: Security.xml:4399
#, no-c-format
msgid ""
"Sometimes it might be necessary to extend the Identity component if your "
@@ -5914,7 +5920,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4404
+#: Security.xml:4407
#, no-c-format
msgid ""
"<![CDATA[@Name(\"org.jboss.seam.security.identity\")\n"
@@ -5949,7 +5955,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4407
+#: Security.xml:4410
#, no-c-format
msgid ""
"Note that an <literal>Identity</literal> component must be marked "
@@ -5959,13 +5965,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4419
+#: Security.xml:4422
#, no-c-format
msgid "OpenID"
msgstr ""
#. Tag: para
-#: Security.xml:4421
+#: Security.xml:4424
#, no-c-format
msgid ""
"OpenID is a community standard for external web-based authentication. The "
@@ -5978,7 +5984,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4430
+#: Security.xml:4433
#, no-c-format
msgid ""
"When using OpenID, the user selects an OpenID provider, and the provider "
@@ -5995,7 +6001,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4439
+#: Security.xml:4442
#, no-c-format
msgid ""
"It's important to realize at this point that authentication does not imply "
@@ -6008,13 +6014,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4449
+#: Security.xml:4452
#, no-c-format
msgid "Configuring OpenID"
msgstr ""
#. Tag: para
-#: Security.xml:4450
+#: Security.xml:4453
#, no-c-format
msgid ""
"Seam uses the openid4java package and requires four additional JARs to make "
@@ -6024,7 +6030,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4456
+#: Security.xml:4459
#, no-c-format
msgid ""
"OpenID processing requires the use of the <literal>OpenIdPhaseListener</"
@@ -6034,7 +6040,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4462
+#: Security.xml:4465
#, no-c-format
msgid ""
"<lifecycle>\n"
@@ -6044,7 +6050,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4465
+#: Security.xml:4468
#, no-c-format
msgid ""
"With this configuration, OpenID support is available to your application. "
@@ -6054,13 +6060,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4473
+#: Security.xml:4476
#, no-c-format
msgid "Presenting an OpenIdDLogin form"
msgstr ""
#. Tag: para
-#: Security.xml:4475
+#: Security.xml:4478
#, no-c-format
msgid ""
"To initiate an OpenID login, you can present a simply form to the user "
@@ -6070,7 +6076,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4480
+#: Security.xml:4483
#, no-c-format
msgid ""
"<h:form>\n"
@@ -6081,7 +6087,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4482
+#: Security.xml:4485
#, no-c-format
msgid ""
"When the user submits the login form, he will be redirected to his OpenID "
@@ -6093,13 +6099,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4491
+#: Security.xml:4494
#, no-c-format
msgid "Logging in immediately"
msgstr ""
#. Tag: para
-#: Security.xml:4493
+#: Security.xml:4496
#, no-c-format
msgid ""
"The simplest strategy is to simply login the user immediately. The following "
@@ -6108,7 +6114,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4497
+#: Security.xml:4500
#, no-c-format
msgid ""
"<page view-id="/openid.xhtml">\n"
@@ -6128,7 +6134,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4499
+#: Security.xml:4502
#, no-c-format
msgid ""
"Thie <literal>loginImmediately()</literal> action checks to see if the "
@@ -6142,13 +6148,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4510
+#: Security.xml:4513
#, no-c-format
msgid "Deferring login"
msgstr ""
#. Tag: para
-#: Security.xml:4512
+#: Security.xml:4515
#, no-c-format
msgid ""
"You may not want the user to be immediately logged in to your application. "
@@ -6165,13 +6171,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4526
+#: Security.xml:4529
#, no-c-format
msgid "Logging out"
msgstr ""
#. Tag: para
-#: Security.xml:4528
+#: Security.xml:4531
#, no-c-format
msgid ""
"Logging out (forgetting an OpenID association) is done by calling <literal>#"
@@ -6182,7 +6188,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4535
+#: Security.xml:4538
#, no-c-format
msgid ""
"<event type="org.jboss.seam.security.loggedOut">\n"
@@ -6191,7 +6197,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4537
+#: Security.xml:4540
#, no-c-format
msgid ""
"It's important that you do not leave this out or the user will not be able "
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/es-ES/Dependencies.po
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/es-ES/Dependencies.po 2009-06-11 20:41:36 UTC (rev 11125)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/es-ES/Dependencies.po 2009-06-11 20:43:04 UTC (rev 11126)
@@ -5,7 +5,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-04-15 13:51+0000\n"
+"POT-Creation-Date: 2009-06-11 18:45+0000\n"
"PO-Revision-Date: 2008-04-04 01:24+0000\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -938,8 +938,8 @@
#: Dependencies.xml:1182
#, no-c-format
msgid ""
-"This sample POM will give you Seam, JPA (provided by Hibernate) and "
-"Hibernate Validator:"
+"This sample POM will give you Seam, JPA (provided by Hibernate), Hibernate "
+"Validator and Hibernate Search:"
msgstr ""
#. Tag: programlisting
@@ -970,25 +970,31 @@
" <dependency>\n"
" <groupId>org.hibernate</groupId>\n"
" <artifactId>hibernate-validator</artifactId>\n"
-" <version>3.0.0.GA</version>\n"
+" <version>3.1.0.GA</version>\n"
" </dependency>\n"
"\n"
" <dependency>\n"
" <groupId>org.hibernate</groupId>\n"
" <artifactId>hibernate-annotations</artifactId>\n"
-" <version>3.3.0.ga</version>\n"
+" <version>3.4.0.GA</version>\n"
" </dependency>\n"
"\n"
" <dependency>\n"
" <groupId>org.hibernate</groupId>\n"
" <artifactId>hibernate-entitymanager</artifactId>\n"
-" <version>3.3.1.ga</version>\n"
+" <version>3.4.0.GA</version>\n"
" </dependency>\n"
+" \n"
+" <dependency>\n"
+" <groupId>org.hibernate</groupId>\n"
+" <artifactId>hibernate-search</artifactId>\n"
+" <version>3.1.1.GA</version>\n"
+" </dependency>\n"
"\n"
" <dependency>\n"
" <groupId>org.jboss.seam</groupId>\n"
" <artifactId>jboss-seam</artifactId>\n"
-" <version>2.0.0.GA</version>\n"
+" <version>2.2.0.GA</version>\n"
" </dependency>\n"
" \n"
" </dependencies>\n"
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/es-ES/Hsearch.po
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/es-ES/Hsearch.po 2009-06-11 20:41:36 UTC (rev 11125)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/es-ES/Hsearch.po 2009-06-11 20:43:04 UTC (rev 11126)
@@ -5,7 +5,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-04-15 13:51+0000\n"
+"POT-Creation-Date: 2009-06-11 18:45+0000\n"
"PO-Revision-Date: 2008-04-04 01:24+0000\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -45,7 +45,7 @@
#: Hsearch.xml:21
#, no-c-format
msgid ""
-"Hibernate Search has been designed to integrates nicely and as naturally as "
+"Hibernate Search has been designed to integrate nicely and as naturally as "
"possible with JPA and Hibernate. As a natural extension, JBoss Seam provides "
"an Hibernate Search integration."
msgstr ""
@@ -132,7 +132,7 @@
" <property name=\"hibernate.ejb.event.post-delete\" \n"
" value=\"org.hibernate.search.event.FullTextIndexEventListener"
"\"/>\n"
-"\n"
+" \n"
" </properties>\n"
"</persistence-unit>]]>"
msgstr ""
@@ -141,12 +141,15 @@
#: Hsearch.xml:52
#, no-c-format
msgid ""
-"This step is no longer necessary if Hibernate Annotation or EntityManager "
-"3.3.x are used."
+"It is not longer necessary the register the event listeners if Hibernate "
+"Annotations or EntityManager 3.3.x are used. When using Hibernate Search 3.1."
+"x more eventlisteners are needed, but these are registered automatically by "
+"Hibernate Annotations; refer to the Hibernate Search reference for "
+"configuring it without EntityManager and Annotations."
msgstr ""
#. Tag: para
-#: Hsearch.xml:56
+#: Hsearch.xml:60
#, no-c-format
msgid ""
"In addition to the configuration file, the following jars have to be "
@@ -154,25 +157,25 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:61
+#: Hsearch.xml:65
#, no-c-format
msgid "hibernate-search.jar"
msgstr ""
#. Tag: para
-#: Hsearch.xml:65
+#: Hsearch.xml:69
#, no-c-format
msgid "hibernate-commons-annotations.jar"
msgstr ""
#. Tag: para
-#: Hsearch.xml:69
+#: Hsearch.xml:73
#, no-c-format
msgid "lucene-core.jar"
msgstr ""
#. Tag: para
-#: Hsearch.xml:74
+#: Hsearch.xml:78
#, no-c-format
msgid ""
"If you deploy those in a EAR, don't forget to update <filename>application."
@@ -180,13 +183,13 @@
msgstr ""
#. Tag: title
-#: Hsearch.xml:80
+#: Hsearch.xml:84
#, no-c-format
msgid "Usage"
msgstr ""
#. Tag: para
-#: Hsearch.xml:82
+#: Hsearch.xml:86
#, no-c-format
msgid ""
"Hibernate Search uses annotations to map entities to a Lucene index, check "
@@ -195,7 +198,7 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:87
+#: Hsearch.xml:91
#, no-c-format
msgid ""
"Hibernate Search is fully integrated with the API and semantic of JPA / "
@@ -206,7 +209,7 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:93
+#: Hsearch.xml:97
#, no-c-format
msgid ""
"When Hibernate Search is present, JBoss Seam injects a "
@@ -214,7 +217,7 @@
msgstr ""
#. Tag: programlisting
-#: Hsearch.xml:96
+#: Hsearch.xml:100
#, no-c-format
msgid ""
"<![CDATA[@Stateful\n"
@@ -237,7 +240,7 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:99
+#: Hsearch.xml:103
#, no-c-format
msgid ""
"<classname>FullTextSession</classname> extends <classname>org.hibernate."
@@ -245,14 +248,14 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:104
+#: Hsearch.xml:108
#, no-c-format
msgid ""
"If the Java Persistence API is used, a smoother integration is proposed."
msgstr ""
#. Tag: programlisting
-#: Hsearch.xml:107
+#: Hsearch.xml:111
#, no-c-format
msgid ""
"<![CDATA[@Stateful\n"
@@ -275,7 +278,7 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:109
+#: Hsearch.xml:113
#, no-c-format
msgid ""
"When Hibernate Search is present, a <classname>FulltextEntityManager</"
@@ -286,7 +289,7 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:116
+#: Hsearch.xml:120
#, no-c-format
msgid ""
"When an EJB 3.0 Session or Message Driven Bean injection is used (i.e. via "
@@ -299,7 +302,7 @@
msgstr ""
#. Tag: programlisting
-#: Hsearch.xml:124
+#: Hsearch.xml:128
#, no-c-format
msgid ""
"<![CDATA[@Stateful\n"
@@ -323,15 +326,15 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:129
+#: Hsearch.xml:133
#, no-c-format
msgid ""
"For people accustomed to Hibernate Search out of Seam, note that using "
-"<methodname>Search.createFullTextSession</methodname> is not necessary."
+"<methodname>Search.getFullTextSession</methodname> is not necessary."
msgstr ""
#. Tag: para
-#: Hsearch.xml:134
+#: Hsearch.xml:138
#, no-c-format
msgid ""
"Check the DVDStore or the blog examples of the JBoss Seam distribution for a "
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/es-ES/Security.po
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/es-ES/Security.po 2009-06-11 20:41:36 UTC (rev 11125)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/es-ES/Security.po 2009-06-11 20:43:04 UTC (rev 11126)
@@ -5,7 +5,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-06-11 07:43+0000\n"
+"POT-Creation-Date: 2009-06-11 18:45+0000\n"
"PO-Revision-Date: 2008-04-04 01:24+0000\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -1190,7 +1190,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:630 Security.xml:764 Security.xml:3382 Security.xml:3545
+#: Security.xml:630 Security.xml:764 Security.xml:3385 Security.xml:3548
#, no-c-format
msgid "Annotation"
msgstr ""
@@ -1203,8 +1203,8 @@
#. Tag: para
#: Security.xml:636 Security.xml:770 Security.xml:966 Security.xml:1418
-#: Security.xml:2147 Security.xml:2756 Security.xml:3171 Security.xml:3388
-#: Security.xml:3551 Security.xml:3792 Security.xml:4229
+#: Security.xml:2147 Security.xml:2756 Security.xml:3174 Security.xml:3391
+#: Security.xml:3554 Security.xml:3795 Security.xml:4232
#, no-c-format
msgid "Description"
msgstr ""
@@ -2228,8 +2228,8 @@
msgstr ""
#. Tag: para
-#: Security.xml:1412 Security.xml:1828 Security.xml:2753 Security.xml:3168
-#: Security.xml:3789 Security.xml:3958
+#: Security.xml:1412 Security.xml:1828 Security.xml:2753 Security.xml:3171
+#: Security.xml:3792 Security.xml:3961
#, no-c-format
msgid "Method"
msgstr ""
@@ -2250,9 +2250,9 @@
#: Security.xml:1433 Security.xml:1452 Security.xml:1471 Security.xml:1490
#: Security.xml:1509 Security.xml:1529 Security.xml:1548 Security.xml:1567
#: Security.xml:1586 Security.xml:1606 Security.xml:1626 Security.xml:1740
-#: Security.xml:1762 Security.xml:1780 Security.xml:2766 Security.xml:3239
-#: Security.xml:3258 Security.xml:3277 Security.xml:3295 Security.xml:3840
-#: Security.xml:3859 Security.xml:3878 Security.xml:3897
+#: Security.xml:1762 Security.xml:1780 Security.xml:2766 Security.xml:3242
+#: Security.xml:3261 Security.xml:3280 Security.xml:3298 Security.xml:3843
+#: Security.xml:3862 Security.xml:3881 Security.xml:3900
#, no-c-format
msgid "boolean"
msgstr ""
@@ -2558,13 +2558,13 @@
msgstr ""
#. Tag: para
-#: Security.xml:1831 Security.xml:3961
+#: Security.xml:1831 Security.xml:3964
#, no-c-format
msgid "Permission Target"
msgstr ""
#. Tag: para
-#: Security.xml:1834 Security.xml:3964
+#: Security.xml:1834 Security.xml:3967
#, no-c-format
msgid "Permission Action"
msgstr ""
@@ -3806,7 +3806,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2750 Security.xml:3165 Security.xml:3786
+#: Security.xml:2750 Security.xml:3168 Security.xml:3789
#, no-c-format
msgid "Return type"
msgstr ""
@@ -3986,41 +3986,47 @@
#. Tag: para
#: Security.xml:2917
#, no-c-format
-msgid "drools-compiler.jar"
+msgid "drools-api.jar"
msgstr ""
#. Tag: para
#: Security.xml:2920
#, no-c-format
-msgid "drools-core.jar"
+msgid "drools-compiler.jar"
msgstr ""
#. Tag: para
#: Security.xml:2923
#, no-c-format
-msgid "janino.jar"
+msgid "drools-core.jar"
msgstr ""
#. Tag: para
#: Security.xml:2926
#, no-c-format
-msgid "antlr-runtime.jar"
+msgid "janino.jar"
msgstr ""
#. Tag: para
#: Security.xml:2929
#, no-c-format
-msgid "mvel14.jar"
+msgid "antlr-runtime.jar"
msgstr ""
+#. Tag: para
+#: Security.xml:2932
+#, no-c-format
+msgid "mvel2.jar"
+msgstr ""
+
#. Tag: title
-#: Security.xml:2936 Security.xml:3128
+#: Security.xml:2939 Security.xml:3131
#, no-c-format
msgid "Configuration"
msgstr ""
#. Tag: para
-#: Security.xml:2938
+#: Security.xml:2941
#, no-c-format
msgid ""
"The configuration for <literal>RuleBasedPermissionResolver</literal> "
@@ -4030,7 +4036,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:2944
+#: Security.xml:2947
#, no-c-format
msgid ""
"<![CDATA[<components xmlns=\"http://jboss.com/products/seam/components\"\n"
@@ -4058,7 +4064,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2946
+#: Security.xml:2949
#, no-c-format
msgid ""
"The default rule base name can be overridden by specifying the "
@@ -4067,7 +4073,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:2951
+#: Security.xml:2954
#, no-c-format
msgid ""
"<![CDATA[\n"
@@ -4076,7 +4082,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2953
+#: Security.xml:2956
#, no-c-format
msgid ""
"Once the <literal>RuleBase</literal> component is configured, it's time to "
@@ -4084,13 +4090,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:2959
+#: Security.xml:2962
#, no-c-format
msgid "Writing Security Rules"
msgstr ""
#. Tag: para
-#: Security.xml:2961
+#: Security.xml:2964
#, no-c-format
msgid ""
"The first step to writing security rules is to create a new rule file in the "
@@ -4101,7 +4107,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2968
+#: Security.xml:2971
#, no-c-format
msgid ""
"So what should the security rules file contain? At this stage it might be a "
@@ -4110,7 +4116,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:2973
+#: Security.xml:2976
#, no-c-format
msgid ""
"<![CDATA[package MyApplicationPermissions;\n"
@@ -4128,7 +4134,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2975
+#: Security.xml:2978
#, no-c-format
msgid ""
"Let's break this down step by step. The first thing we see is the package "
@@ -4138,7 +4144,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2981
+#: Security.xml:2984
#, no-c-format
msgid ""
"The next thing we can notice is a couple of import statements for the "
@@ -4148,7 +4154,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2987
+#: Security.xml:2990
#, no-c-format
msgid ""
"Finally we have the code for the rule. Each rule within a package should be "
@@ -4158,7 +4164,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2993
+#: Security.xml:2996
#, no-c-format
msgid ""
"Looking at the body of the rule definition we can notice two distinct "
@@ -4173,7 +4179,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3002
+#: Security.xml:3005
#, no-c-format
msgid ""
"If we look at the LHS of the rule, we see two conditions listed there. Let's "
@@ -4181,14 +4187,14 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3006
+#: Security.xml:3009
#, no-c-format
msgid ""
"<![CDATA[c: PermissionCheck(target == \"customer\", action == \"delete\")]]>"
msgstr ""
#. Tag: para
-#: Security.xml:3008
+#: Security.xml:3011
#, no-c-format
msgid ""
"In plain english, this condition is stating that there must exist a "
@@ -4198,7 +4204,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3014
+#: Security.xml:3017
#, no-c-format
msgid ""
"So what is the working memory? Also known as a \"stateful session\" in "
@@ -4216,7 +4222,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3026
+#: Security.xml:3029
#, no-c-format
msgid ""
"Besides the <literal>PermissionCheck</literal> facts, there is also a "
@@ -4233,7 +4239,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3037
+#: Security.xml:3040
#, no-c-format
msgid ""
"It is also possible to insert additional long-lived facts into the working "
@@ -4244,7 +4250,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3044
+#: Security.xml:3047
#, no-c-format
msgid ""
"Getting back to our simple example, we can also notice that the first line "
@@ -4255,13 +4261,13 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3051
+#: Security.xml:3054
#, no-c-format
msgid "<![CDATA[Role(name == \"admin\")]]>"
msgstr ""
#. Tag: para
-#: Security.xml:3053
+#: Security.xml:3056
#, no-c-format
msgid ""
"This condition simply states that there must be a <literal>Role</literal> "
@@ -4274,7 +4280,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3061
+#: Security.xml:3064
#, no-c-format
msgid ""
"So what is the consequence of the rule firing? Let's take a look at the RHS "
@@ -4282,13 +4288,13 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3065
+#: Security.xml:3068
#, no-c-format
msgid "<![CDATA[c.grant()]]>"
msgstr ""
#. Tag: para
-#: Security.xml:3067
+#: Security.xml:3070
#, no-c-format
msgid ""
"The RHS consists of Java code, and in this case is invoking the "
@@ -4305,13 +4311,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3081
+#: Security.xml:3084
#, no-c-format
msgid "Non-String permission targets"
msgstr ""
#. Tag: para
-#: Security.xml:3083
+#: Security.xml:3086
#, no-c-format
msgid ""
"So far we have only seen permission checks for String-literal permission "
@@ -4325,7 +4331,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3092
+#: Security.xml:3095
#, no-c-format
msgid ""
"<![CDATA[rule CanCreateBlogComment\n"
@@ -4343,13 +4349,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3097
+#: Security.xml:3100
#, no-c-format
msgid "Wildcard permission checks"
msgstr ""
#. Tag: para
-#: Security.xml:3099
+#: Security.xml:3102
#, no-c-format
msgid ""
"It is possible to implement a wildcard permission check (which allows all "
@@ -4359,7 +4365,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3105
+#: Security.xml:3108
#, no-c-format
msgid ""
"<![CDATA[rule CanDoAnythingToCustomersIfYouAreAnAdmin\n"
@@ -4373,7 +4379,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3107
+#: Security.xml:3110
#, no-c-format
msgid ""
"This rule allows users with the <literal>admin</literal> role to perform "
@@ -4382,13 +4388,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3117
+#: Security.xml:3120
#, no-c-format
msgid "PersistentPermissionResolver"
msgstr ""
#. Tag: para
-#: Security.xml:3119
+#: Security.xml:3122
#, no-c-format
msgid ""
"Another built-in permission resolver provided by Seam, "
@@ -4401,7 +4407,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3130
+#: Security.xml:3133
#, no-c-format
msgid ""
"Before it can be used, <literal>PersistentPermissionResolver</literal> must "
@@ -4414,7 +4420,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3138
+#: Security.xml:3141
#, no-c-format
msgid ""
"<![CDATA[ <security:persistent-permission-resolver permission-store=\"#"
@@ -4422,13 +4428,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3143
+#: Security.xml:3146
#, no-c-format
msgid "Permission Stores"
msgstr ""
#. Tag: para
-#: Security.xml:3145
+#: Security.xml:3148
#, no-c-format
msgid ""
"A permission store is required for <literal>PersistentPermissionResolver</"
@@ -4441,26 +4447,26 @@
msgstr ""
#. Tag: title
-#: Security.xml:3155
+#: Security.xml:3158
#, no-c-format
msgid "PermissionStore interface"
msgstr ""
#. Tag: literal
-#: Security.xml:3181 Security.xml:3200 Security.xml:3219 Security.xml:3802
-#: Security.xml:3821
+#: Security.xml:3184 Security.xml:3203 Security.xml:3222 Security.xml:3805
+#: Security.xml:3824
#, no-c-format
msgid "List<Permission>"
msgstr ""
#. Tag: literal
-#: Security.xml:3186 Security.xml:3826
+#: Security.xml:3189 Security.xml:3829
#, no-c-format
msgid "listPermissions(Object target)"
msgstr ""
#. Tag: para
-#: Security.xml:3190
+#: Security.xml:3193
#, no-c-format
msgid ""
"This method should return a <literal>List</literal> of <literal>Permission</"
@@ -4469,13 +4475,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3205 Security.xml:3807
+#: Security.xml:3208 Security.xml:3810
#, no-c-format
msgid "listPermissions(Object target, String action)"
msgstr ""
#. Tag: para
-#: Security.xml:3209
+#: Security.xml:3212
#, no-c-format
msgid ""
"This method should return a <literal>List</literal> of <literal>Permission</"
@@ -4484,13 +4490,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3224
+#: Security.xml:3227
#, no-c-format
msgid "listPermissions(Set<Object> targets, String action)"
msgstr ""
#. Tag: para
-#: Security.xml:3228
+#: Security.xml:3231
#, no-c-format
msgid ""
"This method should return a <literal>List</literal> of <literal>Permission</"
@@ -4499,13 +4505,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3244
+#: Security.xml:3247
#, no-c-format
msgid "grantPermission(Permission)"
msgstr ""
#. Tag: para
-#: Security.xml:3248
+#: Security.xml:3251
#, no-c-format
msgid ""
"This method should persist the specified <literal>Permission</literal> "
@@ -4513,13 +4519,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3263 Security.xml:3864
+#: Security.xml:3266 Security.xml:3867
#, no-c-format
msgid "grantPermissions(List<Permission> permissions)"
msgstr ""
#. Tag: para
-#: Security.xml:3267
+#: Security.xml:3270
#, no-c-format
msgid ""
"This method should persist all of the <literal>Permission</literal> objects "
@@ -4528,13 +4534,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3282 Security.xml:3883
+#: Security.xml:3285 Security.xml:3886
#, no-c-format
msgid "revokePermission(Permission permission)"
msgstr ""
#. Tag: para
-#: Security.xml:3286
+#: Security.xml:3289
#, no-c-format
msgid ""
"This method should remove the specified <literal>Permission</literal> object "
@@ -4542,13 +4548,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3300 Security.xml:3902
+#: Security.xml:3303 Security.xml:3905
#, no-c-format
msgid "revokePermissions(List<Permission> permissions)"
msgstr ""
#. Tag: para
-#: Security.xml:3304
+#: Security.xml:3307
#, no-c-format
msgid ""
"This method should remove all of the <literal>Permission</literal> objects "
@@ -4556,19 +4562,19 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3314 Security.xml:3916
+#: Security.xml:3317 Security.xml:3919
#, no-c-format
msgid "List<String>"
msgstr ""
#. Tag: literal
-#: Security.xml:3319 Security.xml:3921
+#: Security.xml:3322 Security.xml:3924
#, no-c-format
msgid "listAvailableActions(Object target)"
msgstr ""
#. Tag: para
-#: Security.xml:3323
+#: Security.xml:3326
#, no-c-format
msgid ""
"This method should return a list of all the available actions (as Strings) "
@@ -4578,13 +4584,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3337
+#: Security.xml:3340
#, no-c-format
msgid "JpaPermissionStore"
msgstr ""
#. Tag: para
-#: Security.xml:3339
+#: Security.xml:3342
#, no-c-format
msgid ""
"This is the default <literal>PermissionStore</literal> implementation (and "
@@ -4597,7 +4603,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3347
+#: Security.xml:3350
#, no-c-format
msgid ""
"If you wish to use the same entity (i.e. a single database table) to store "
@@ -4609,7 +4615,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3354
+#: Security.xml:3357
#, no-c-format
msgid ""
"For example, to configure a single entity class to store both user and role "
@@ -4617,7 +4623,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3356
+#: Security.xml:3359
#, no-c-format
msgid ""
"<![CDATA[ <security:jpa-permission-store user-permission-class=\"com.acme."
@@ -4625,14 +4631,14 @@
msgstr ""
#. Tag: para
-#: Security.xml:3358
+#: Security.xml:3361
#, no-c-format
msgid ""
"To configure separate entity classes for storing user and role permissions:"
msgstr ""
#. Tag: programlisting
-#: Security.xml:3360
+#: Security.xml:3363
#, no-c-format
msgid ""
"<![CDATA[ <security:jpa-permission-store user-permission-class=\"com.acme."
@@ -4641,13 +4647,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3363
+#: Security.xml:3366
#, no-c-format
msgid "Permission annotations"
msgstr ""
#. Tag: para
-#: Security.xml:3365
+#: Security.xml:3368
#, no-c-format
msgid ""
"As mentioned, the entity classes that contain the user and role permissions "
@@ -4658,32 +4664,32 @@
msgstr ""
#. Tag: title
-#: Security.xml:3372
+#: Security.xml:3375
#, no-c-format
msgid "Entity Permission annotations"
msgstr ""
#. Tag: para
-#: Security.xml:3385 Security.xml:3548
+#: Security.xml:3388 Security.xml:3551
#, no-c-format
msgid "Target"
msgstr ""
#. Tag: literal
-#: Security.xml:3398
+#: Security.xml:3401
#, no-c-format
msgid "@PermissionTarget"
msgstr ""
#. Tag: literal
-#: Security.xml:3403 Security.xml:3422 Security.xml:3441 Security.xml:3460
-#: Security.xml:3479
+#: Security.xml:3406 Security.xml:3425 Security.xml:3444 Security.xml:3463
+#: Security.xml:3482
#, no-c-format
msgid "FIELD,METHOD"
msgstr ""
#. Tag: para
-#: Security.xml:3407
+#: Security.xml:3410
#, no-c-format
msgid ""
"This annotation identifies the property of the entity that will contain the "
@@ -4692,13 +4698,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3417
+#: Security.xml:3420
#, no-c-format
msgid "@PermissionAction"
msgstr ""
#. Tag: para
-#: Security.xml:3426
+#: Security.xml:3429
#, no-c-format
msgid ""
"This annotation identifies the property of the entity that will contain the "
@@ -4707,13 +4713,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3436
+#: Security.xml:3439
#, no-c-format
msgid "@PermissionUser"
msgstr ""
#. Tag: para
-#: Security.xml:3445
+#: Security.xml:3448
#, no-c-format
msgid ""
"This annotation identifies the property of the entity that will contain the "
@@ -4722,13 +4728,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3455
+#: Security.xml:3458
#, no-c-format
msgid "@PermissionRole"
msgstr ""
#. Tag: para
-#: Security.xml:3464
+#: Security.xml:3467
#, no-c-format
msgid ""
"This annotation identifies the property of the entity that will contain the "
@@ -4737,13 +4743,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3474
+#: Security.xml:3477
#, no-c-format
msgid "@PermissionDiscriminator"
msgstr ""
#. Tag: para
-#: Security.xml:3483
+#: Security.xml:3486
#, no-c-format
msgid ""
"This annotation should be used when the same entity/table is used to store "
@@ -4760,20 +4766,20 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3493
+#: Security.xml:3496
#, no-c-format
msgid ""
"<![CDATA[ @PermissionDiscriminator(userValue = \"u\", roleValue = \"r\")]]>"
msgstr ""
#. Tag: title
-#: Security.xml:3504
+#: Security.xml:3507
#, no-c-format
msgid "Example Entity"
msgstr ""
#. Tag: para
-#: Security.xml:3506
+#: Security.xml:3509
#, no-c-format
msgid ""
"Here is an example of an entity class that is used to store both user and "
@@ -4782,7 +4788,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3511
+#: Security.xml:3514
#, no-c-format
msgid ""
"<![CDATA[\n"
@@ -4843,7 +4849,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3513
+#: Security.xml:3516
#, no-c-format
msgid ""
"As can be seen in the above example, the <literal>getDiscriminator()</"
@@ -4860,13 +4866,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3526
+#: Security.xml:3529
#, no-c-format
msgid "Class-specific Permission Configuration"
msgstr ""
#. Tag: para
-#: Security.xml:3528
+#: Security.xml:3531
#, no-c-format
msgid ""
"A further set of class-specific annotations can be used to configure a "
@@ -4876,25 +4882,25 @@
msgstr ""
#. Tag: title
-#: Security.xml:3535
+#: Security.xml:3538
#, no-c-format
msgid "Class Permission Annotations"
msgstr ""
#. Tag: literal
-#: Security.xml:3561
+#: Security.xml:3564
#, no-c-format
msgid "@Permissions"
msgstr ""
#. Tag: literal
-#: Security.xml:3566 Security.xml:3584
+#: Security.xml:3569 Security.xml:3587
#, no-c-format
msgid "TYPE"
msgstr ""
#. Tag: para
-#: Security.xml:3570
+#: Security.xml:3573
#, no-c-format
msgid ""
"A container annotation, this annotation may contain an array of "
@@ -4902,13 +4908,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3579
+#: Security.xml:3582
#, no-c-format
msgid "@Permission"
msgstr ""
#. Tag: para
-#: Security.xml:3588
+#: Security.xml:3591
#, no-c-format
msgid ""
"This annotation defines a single allowable permission action for the target "
@@ -4919,7 +4925,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3600
+#: Security.xml:3603
#, no-c-format
msgid ""
"Here's an example of the above annotations in action. The following class "
@@ -4927,7 +4933,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3604
+#: Security.xml:3607
#, no-c-format
msgid ""
"<![CDATA[@Permissions({\n"
@@ -4939,7 +4945,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3606
+#: Security.xml:3609
#, no-c-format
msgid ""
"This example demonstrates how two allowable permission actions, "
@@ -4948,13 +4954,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3614
+#: Security.xml:3617
#, no-c-format
msgid "Permission masks"
msgstr ""
#. Tag: para
-#: Security.xml:3616
+#: Security.xml:3619
#, no-c-format
msgid ""
"By default, multiple permissions for the same target object and recipient "
@@ -4966,7 +4972,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3623
+#: Security.xml:3626
#, no-c-format
msgid ""
"For example, if recipient \"Bob\" is granted both the <literal>view</"
@@ -4979,7 +4985,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3630
+#: Security.xml:3633
#, no-c-format
msgid ""
"<![CDATA[@Permissions({\n"
@@ -4991,7 +4997,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3632
+#: Security.xml:3635
#, no-c-format
msgid ""
"The <literal>action</literal> property will instead simply contain \"3"
@@ -5001,7 +5007,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3638
+#: Security.xml:3641
#, no-c-format
msgid ""
"Obviously, it is very important that the <literal>mask</literal> values "
@@ -5009,13 +5015,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3644
+#: Security.xml:3647
#, no-c-format
msgid "Identifier Policy"
msgstr ""
#. Tag: para
-#: Security.xml:3646
+#: Security.xml:3649
#, no-c-format
msgid ""
"When storing or looking up permissions, <literal>JpaPermissionStore</"
@@ -5029,7 +5035,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3654
+#: Security.xml:3657
#, no-c-format
msgid ""
"The <literal>IdentifierStrategy</literal> interface is very simple, "
@@ -5037,7 +5043,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3658
+#: Security.xml:3661
#, no-c-format
msgid ""
"<![CDATA[public interface IdentifierStrategy {\n"
@@ -5047,7 +5053,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3660
+#: Security.xml:3663
#, no-c-format
msgid ""
"The first method, <literal>canIdentify()</literal> simply returns "
@@ -5058,7 +5064,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3666
+#: Security.xml:3669
#, no-c-format
msgid ""
"Seam provides two <literal>IdentifierStrategy</literal> implementations, "
@@ -5067,7 +5073,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3671
+#: Security.xml:3674
#, no-c-format
msgid ""
"To explicitly configure a specific identifier strategy to use for a "
@@ -5080,13 +5086,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3681
+#: Security.xml:3684
#, no-c-format
msgid "ClassIdentifierStrategy"
msgstr ""
#. Tag: para
-#: Security.xml:3683
+#: Security.xml:3686
#, no-c-format
msgid ""
"This identifier strategy is used to generate unique identifiers for classes, "
@@ -5100,7 +5106,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3692
+#: Security.xml:3695
#, no-c-format
msgid ""
"<![CDATA[@Identifier(name = \"customer\")\n"
@@ -5108,7 +5114,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3694
+#: Security.xml:3697
#, no-c-format
msgid ""
"The identifier for the following class will be \"<literal>customerAction</"
@@ -5116,7 +5122,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3698
+#: Security.xml:3701
#, no-c-format
msgid ""
"<![CDATA[@Name(\"customerAction\")\n"
@@ -5124,7 +5130,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3700
+#: Security.xml:3703
#, no-c-format
msgid ""
"Finally, the identifier for the following class will be \"<literal>Customer</"
@@ -5132,19 +5138,19 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3704
+#: Security.xml:3707
#, no-c-format
msgid "<![CDATA[public class Customer { ]]>"
msgstr ""
#. Tag: title
-#: Security.xml:3709
+#: Security.xml:3712
#, no-c-format
msgid "EntityIdentifierStrategy"
msgstr ""
#. Tag: para
-#: Security.xml:3711
+#: Security.xml:3714
#, no-c-format
msgid ""
"This identifier strategy is used to generate unique identifiers for entity "
@@ -5161,7 +5167,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3722
+#: Security.xml:3725
#, no-c-format
msgid ""
"<![CDATA[@Identifier(value = EntityIdentifierStrategy.class)\n"
@@ -5169,7 +5175,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3724
+#: Security.xml:3727
#, no-c-format
msgid ""
"For an example of the type of identifier values generated, assume we have "
@@ -5177,7 +5183,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3728
+#: Security.xml:3731
#, no-c-format
msgid ""
"<![CDATA[@Entity\n"
@@ -5200,7 +5206,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3730
+#: Security.xml:3733
#, no-c-format
msgid ""
"For a <literal>Customer</literal> instance with an <literal>id</literal> "
@@ -5210,7 +5216,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3736
+#: Security.xml:3739
#, no-c-format
msgid ""
"<![CDATA[@Entity\n"
@@ -5219,7 +5225,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3738
+#: Security.xml:3741
#, no-c-format
msgid ""
"Then a <literal>Customer</literal> with an <literal>id</literal> value of "
@@ -5228,13 +5234,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3751
+#: Security.xml:3754
#, no-c-format
msgid "Permission Management"
msgstr ""
#. Tag: para
-#: Security.xml:3753
+#: Security.xml:3756
#, no-c-format
msgid ""
"In much the same way that Seam Security provides an Identity Management API "
@@ -5244,13 +5250,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3760
+#: Security.xml:3763
#, no-c-format
msgid "PermissionManager"
msgstr ""
#. Tag: para
-#: Security.xml:3762
+#: Security.xml:3765
#, no-c-format
msgid ""
"The <literal>PermissionManager</literal> component is an application-scoped "
@@ -5263,7 +5269,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3769
+#: Security.xml:3772
#, no-c-format
msgid ""
"<![CDATA[\n"
@@ -5273,7 +5279,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3771
+#: Security.xml:3774
#, no-c-format
msgid ""
"The following table describes each of the available methods provided by "
@@ -5281,13 +5287,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3776
+#: Security.xml:3779
#, no-c-format
msgid "PermissionManager API methods"
msgstr ""
#. Tag: para
-#: Security.xml:3811 Security.xml:3830
+#: Security.xml:3814 Security.xml:3833
#, no-c-format
msgid ""
"Returns a list of <literal>Permission</literal> objects representing all of "
@@ -5295,13 +5301,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3845
+#: Security.xml:3848
#, no-c-format
msgid "grantPermission(Permission permission)"
msgstr ""
#. Tag: para
-#: Security.xml:3849
+#: Security.xml:3852
#, no-c-format
msgid ""
"Persists (grants) the specified <literal>Permission</literal> to the backend "
@@ -5309,7 +5315,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3868
+#: Security.xml:3871
#, no-c-format
msgid ""
"Persists (grants) the specified list of <literal>Permission</literal>s to "
@@ -5317,7 +5323,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3887
+#: Security.xml:3890
#, no-c-format
msgid ""
"Removes (revokes) the specified <literal>Permission</literal> from the "
@@ -5325,7 +5331,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3906
+#: Security.xml:3909
#, no-c-format
msgid ""
"Removes (revokes) the specified list of <literal>Permission</literal>s from "
@@ -5333,7 +5339,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3925
+#: Security.xml:3928
#, no-c-format
msgid ""
"Returns a list of the available actions for the specified target object. The "
@@ -5342,13 +5348,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3940
+#: Security.xml:3943
#, no-c-format
msgid "Permission checks for PermissionManager operations"
msgstr ""
#. Tag: para
-#: Security.xml:3942
+#: Security.xml:3945
#, no-c-format
msgid ""
"Invoking the methods of <literal>PermissionManager</literal> requires that "
@@ -5358,37 +5364,37 @@
msgstr ""
#. Tag: title
-#: Security.xml:3949
+#: Security.xml:3952
#, no-c-format
msgid "Permission Management Security Permissions"
msgstr ""
#. Tag: literal
-#: Security.xml:3973
+#: Security.xml:3976
#, no-c-format
msgid "listPermissions()"
msgstr ""
#. Tag: para
-#: Security.xml:3977
+#: Security.xml:3980
#, no-c-format
msgid "The specified <literal>target</literal>"
msgstr ""
#. Tag: literal
-#: Security.xml:3983
+#: Security.xml:3986
#, no-c-format
msgid "seam.read-permissions"
msgstr ""
#. Tag: literal
-#: Security.xml:3991 Security.xml:4011
+#: Security.xml:3994 Security.xml:4014
#, no-c-format
msgid "grantPermission()"
msgstr ""
#. Tag: para
-#: Security.xml:3995
+#: Security.xml:3998
#, no-c-format
msgid ""
"The target of the specified <literal>Permission</literal>, or each of the "
@@ -5397,56 +5403,56 @@
msgstr ""
#. Tag: literal
-#: Security.xml:4003 Security.xml:4021 Security.xml:4039
+#: Security.xml:4006 Security.xml:4024 Security.xml:4042
#, no-c-format
msgid "seam.grant-permission"
msgstr ""
#. Tag: para
-#: Security.xml:4015 Security.xml:4051
+#: Security.xml:4018 Security.xml:4054
#, no-c-format
msgid "The target of the specified <literal>Permission</literal>."
msgstr ""
#. Tag: literal
-#: Security.xml:4029
+#: Security.xml:4032
#, no-c-format
msgid "grantPermissions()"
msgstr ""
#. Tag: para
-#: Security.xml:4033 Security.xml:4069
+#: Security.xml:4036 Security.xml:4072
#, no-c-format
msgid ""
"Each of the targets of the specified list of <literal>Permission</literal>s."
msgstr ""
#. Tag: literal
-#: Security.xml:4047
+#: Security.xml:4050
#, no-c-format
msgid "revokePermission()"
msgstr ""
#. Tag: literal
-#: Security.xml:4057 Security.xml:4075
+#: Security.xml:4060 Security.xml:4078
#, no-c-format
msgid "seam.revoke-permission"
msgstr ""
#. Tag: literal
-#: Security.xml:4065
+#: Security.xml:4068
#, no-c-format
msgid "revokePermissions()"
msgstr ""
#. Tag: title
-#: Security.xml:4088
+#: Security.xml:4091
#, no-c-format
msgid "SSL Security"
msgstr ""
#. Tag: para
-#: Security.xml:4090
+#: Security.xml:4093
#, no-c-format
msgid ""
"Seam includes basic support for serving sensitive pages via the HTTPS "
@@ -5457,13 +5463,13 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4097
+#: Security.xml:4100
#, no-c-format
msgid "<![CDATA[<page view-id=\"/login.xhtml\" scheme=\"https\"/>]]>"
msgstr ""
#. Tag: para
-#: Security.xml:4099
+#: Security.xml:4102
#, no-c-format
msgid ""
"This configuration is automatically extended to both <literal>s:link</"
@@ -5475,13 +5481,13 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4106
+#: Security.xml:4109
#, no-c-format
msgid "<![CDATA[<s:link view=\"/login.xhtml\" value=\"Login\"/>]]>"
msgstr ""
#. Tag: para
-#: Security.xml:4108
+#: Security.xml:4111
#, no-c-format
msgid ""
"Browsing directly to a view when using the <emphasis>incorrect</emphasis> "
@@ -5492,7 +5498,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4115
+#: Security.xml:4118
#, no-c-format
msgid ""
"It is also possible to configure a <emphasis>default scheme</emphasis> for "
@@ -5506,13 +5512,13 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4124
+#: Security.xml:4127
#, no-c-format
msgid "<![CDATA[<page view-id=\"*\" scheme=\"http\" />]]>"
msgstr ""
#. Tag: para
-#: Security.xml:4126
+#: Security.xml:4129
#, no-c-format
msgid ""
"Of course, if <emphasis>none</emphasis> of the pages in your application use "
@@ -5520,7 +5526,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4131
+#: Security.xml:4134
#, no-c-format
msgid ""
"You may configure Seam to automatically invalidate the current HTTP session "
@@ -5529,13 +5535,13 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4136
+#: Security.xml:4139
#, no-c-format
msgid "<![CDATA[<web:session invalidate-on-scheme-change=\"true\"/>]]>"
msgstr ""
#. Tag: para
-#: Security.xml:4138
+#: Security.xml:4141
#, no-c-format
msgid ""
"This option helps make your system less vulnerable to sniffing of the "
@@ -5544,13 +5550,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4144
+#: Security.xml:4147
#, no-c-format
msgid "Overriding the default ports"
msgstr ""
#. Tag: para
-#: Security.xml:4146
+#: Security.xml:4149
#, no-c-format
msgid ""
"If you wish to configure the HTTP and HTTPS ports manually, they may be "
@@ -5560,7 +5566,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4152
+#: Security.xml:4155
#, no-c-format
msgid ""
"<![CDATA[\n"
@@ -5576,13 +5582,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4158
+#: Security.xml:4161
#, no-c-format
msgid "CAPTCHA"
msgstr ""
#. Tag: para
-#: Security.xml:4160
+#: Security.xml:4163
#, no-c-format
msgid ""
"Though strictly not part of the security API, Seam provides a built-in "
@@ -5594,13 +5600,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4168
+#: Security.xml:4171
#, no-c-format
msgid "Configuring the CAPTCHA Servlet"
msgstr ""
#. Tag: para
-#: Security.xml:4169
+#: Security.xml:4172
#, no-c-format
msgid ""
"To get up and running, it is necessary to configure the Seam Resource "
@@ -5609,7 +5615,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4174
+#: Security.xml:4177
#, no-c-format
msgid ""
"<![CDATA[<servlet>\n"
@@ -5625,20 +5631,20 @@
msgstr ""
#. Tag: title
-#: Security.xml:4179
+#: Security.xml:4182
#, no-c-format
msgid "Adding a CAPTCHA to a form"
msgstr ""
#. Tag: para
-#: Security.xml:4181
+#: Security.xml:4184
#, no-c-format
msgid ""
"Adding a CAPTCHA challenge to a form is extremely easy. Here's an example:"
msgstr ""
#. Tag: programlisting
-#: Security.xml:4185
+#: Security.xml:4188
#, no-c-format
msgid ""
"<![CDATA[<h:graphicImage value=\"/seam/resource/captcha\"/>\n"
@@ -5650,7 +5656,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4187
+#: Security.xml:4190
#, no-c-format
msgid ""
"That's all there is to it. The <literal>graphicImage</literal> control "
@@ -5660,20 +5666,20 @@
msgstr ""
#. Tag: title
-#: Security.xml:4196
+#: Security.xml:4199
#, no-c-format
msgid "Customising the CAPTCHA algorithm"
msgstr ""
#. Tag: para
-#: Security.xml:4198
+#: Security.xml:4201
#, no-c-format
msgid ""
"You may customize the CAPTCHA algorithm by overriding the built-in component:"
msgstr ""
#. Tag: programlisting
-#: Security.xml:4202
+#: Security.xml:4205
#, no-c-format
msgid ""
"<![CDATA[@Name(\"org.jboss.seam.captcha.captcha\")\n"
@@ -5700,13 +5706,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4209 Security.xml:4217
+#: Security.xml:4212 Security.xml:4220
#, no-c-format
msgid "Security Events"
msgstr ""
#. Tag: para
-#: Security.xml:4211
+#: Security.xml:4214
#, no-c-format
msgid ""
"The following table describes a number of events (see <xref linkend=\"events"
@@ -5714,68 +5720,68 @@
msgstr ""
#. Tag: para
-#: Security.xml:4226
+#: Security.xml:4229
#, no-c-format
msgid "Event Key"
msgstr ""
#. Tag: literal
-#: Security.xml:4239
+#: Security.xml:4242
#, no-c-format
msgid "org.jboss.seam.security.loginSuccessful"
msgstr ""
#. Tag: para
-#: Security.xml:4243
+#: Security.xml:4246
#, no-c-format
msgid "Raised when a login attempt is successful."
msgstr ""
#. Tag: literal
-#: Security.xml:4251
+#: Security.xml:4254
#, no-c-format
msgid "org.jboss.seam.security.loginFailed"
msgstr ""
#. Tag: para
-#: Security.xml:4255
+#: Security.xml:4258
#, no-c-format
msgid "Raised when a login attempt fails."
msgstr ""
#. Tag: literal
-#: Security.xml:4263
+#: Security.xml:4266
#, no-c-format
msgid "org.jboss.seam.security.alreadyLoggedIn"
msgstr ""
#. Tag: para
-#: Security.xml:4267
+#: Security.xml:4270
#, no-c-format
msgid ""
"Raised when a user that is already authenticated attempts to log in again."
msgstr ""
#. Tag: literal
-#: Security.xml:4275
+#: Security.xml:4278
#, no-c-format
msgid "org.jboss.seam.security.notLoggedIn"
msgstr ""
#. Tag: para
-#: Security.xml:4279
+#: Security.xml:4282
#, no-c-format
msgid "Raised when a security check fails when the user is not logged in."
msgstr ""
#. Tag: literal
-#: Security.xml:4287
+#: Security.xml:4290
#, no-c-format
msgid "org.jboss.seam.security.notAuthorized"
msgstr ""
#. Tag: para
-#: Security.xml:4291
+#: Security.xml:4294
#, no-c-format
msgid ""
"Raised when a security check fails when the user is logged in however "
@@ -5783,73 +5789,73 @@
msgstr ""
#. Tag: literal
-#: Security.xml:4299
+#: Security.xml:4302
#, no-c-format
msgid "org.jboss.seam.security.preAuthenticate"
msgstr ""
#. Tag: para
-#: Security.xml:4303
+#: Security.xml:4306
#, no-c-format
msgid "Raised just prior to user authentication."
msgstr ""
#. Tag: literal
-#: Security.xml:4311
+#: Security.xml:4314
#, no-c-format
msgid "org.jboss.seam.security.postAuthenticate"
msgstr ""
#. Tag: para
-#: Security.xml:4315
+#: Security.xml:4318
#, no-c-format
msgid "Raised just after user authentication."
msgstr ""
#. Tag: literal
-#: Security.xml:4323
+#: Security.xml:4326
#, no-c-format
msgid "org.jboss.seam.security.loggedOut"
msgstr ""
#. Tag: para
-#: Security.xml:4327
+#: Security.xml:4330
#, no-c-format
msgid "Raised after the user has logged out."
msgstr ""
#. Tag: literal
-#: Security.xml:4335
+#: Security.xml:4338
#, no-c-format
msgid "org.jboss.seam.security.credentialsUpdated"
msgstr ""
#. Tag: para
-#: Security.xml:4339
+#: Security.xml:4342
#, no-c-format
msgid "Raised when the user's credentials have been changed."
msgstr ""
#. Tag: literal
-#: Security.xml:4347
+#: Security.xml:4350
#, no-c-format
msgid "org.jboss.seam.security.rememberMe"
msgstr ""
#. Tag: para
-#: Security.xml:4351
+#: Security.xml:4354
#, no-c-format
msgid "Raised when the Identity's rememberMe property is changed."
msgstr ""
#. Tag: title
-#: Security.xml:4364
+#: Security.xml:4367
#, no-c-format
msgid "Run As"
msgstr ""
#. Tag: para
-#: Security.xml:4366
+#: Security.xml:4369
#, no-c-format
msgid ""
"Sometimes it may be necessary to perform certain operations with elevated "
@@ -5861,7 +5867,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4374
+#: Security.xml:4377
#, no-c-format
msgid ""
"The following code example demonstrates how <literal>RunAsOperation</"
@@ -5872,7 +5878,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4381
+#: Security.xml:4384
#, no-c-format
msgid ""
"<![CDATA[ new RunAsOperation() { \n"
@@ -5884,7 +5890,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4383
+#: Security.xml:4386
#, no-c-format
msgid ""
"In a similar way, the <literal>getPrincipal()</literal> or "
@@ -5895,13 +5901,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4394
+#: Security.xml:4397
#, no-c-format
msgid "Extending the Identity component"
msgstr ""
#. Tag: para
-#: Security.xml:4396
+#: Security.xml:4399
#, no-c-format
msgid ""
"Sometimes it might be necessary to extend the Identity component if your "
@@ -5914,7 +5920,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4404
+#: Security.xml:4407
#, no-c-format
msgid ""
"<![CDATA[@Name(\"org.jboss.seam.security.identity\")\n"
@@ -5949,7 +5955,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4407
+#: Security.xml:4410
#, no-c-format
msgid ""
"Note that an <literal>Identity</literal> component must be marked "
@@ -5959,13 +5965,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4419
+#: Security.xml:4422
#, no-c-format
msgid "OpenID"
msgstr ""
#. Tag: para
-#: Security.xml:4421
+#: Security.xml:4424
#, no-c-format
msgid ""
"OpenID is a community standard for external web-based authentication. The "
@@ -5978,7 +5984,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4430
+#: Security.xml:4433
#, no-c-format
msgid ""
"When using OpenID, the user selects an OpenID provider, and the provider "
@@ -5995,7 +6001,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4439
+#: Security.xml:4442
#, no-c-format
msgid ""
"It's important to realize at this point that authentication does not imply "
@@ -6008,13 +6014,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4449
+#: Security.xml:4452
#, no-c-format
msgid "Configuring OpenID"
msgstr ""
#. Tag: para
-#: Security.xml:4450
+#: Security.xml:4453
#, no-c-format
msgid ""
"Seam uses the openid4java package and requires four additional JARs to make "
@@ -6024,7 +6030,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4456
+#: Security.xml:4459
#, no-c-format
msgid ""
"OpenID processing requires the use of the <literal>OpenIdPhaseListener</"
@@ -6034,7 +6040,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4462
+#: Security.xml:4465
#, no-c-format
msgid ""
"<lifecycle>\n"
@@ -6044,7 +6050,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4465
+#: Security.xml:4468
#, no-c-format
msgid ""
"With this configuration, OpenID support is available to your application. "
@@ -6054,13 +6060,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4473
+#: Security.xml:4476
#, no-c-format
msgid "Presenting an OpenIdDLogin form"
msgstr ""
#. Tag: para
-#: Security.xml:4475
+#: Security.xml:4478
#, no-c-format
msgid ""
"To initiate an OpenID login, you can present a simply form to the user "
@@ -6070,7 +6076,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4480
+#: Security.xml:4483
#, no-c-format
msgid ""
"<h:form>\n"
@@ -6081,7 +6087,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4482
+#: Security.xml:4485
#, no-c-format
msgid ""
"When the user submits the login form, he will be redirected to his OpenID "
@@ -6093,13 +6099,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4491
+#: Security.xml:4494
#, no-c-format
msgid "Logging in immediately"
msgstr ""
#. Tag: para
-#: Security.xml:4493
+#: Security.xml:4496
#, no-c-format
msgid ""
"The simplest strategy is to simply login the user immediately. The following "
@@ -6108,7 +6114,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4497
+#: Security.xml:4500
#, no-c-format
msgid ""
"<page view-id="/openid.xhtml">\n"
@@ -6128,7 +6134,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4499
+#: Security.xml:4502
#, no-c-format
msgid ""
"Thie <literal>loginImmediately()</literal> action checks to see if the "
@@ -6142,13 +6148,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4510
+#: Security.xml:4513
#, no-c-format
msgid "Deferring login"
msgstr ""
#. Tag: para
-#: Security.xml:4512
+#: Security.xml:4515
#, no-c-format
msgid ""
"You may not want the user to be immediately logged in to your application. "
@@ -6165,13 +6171,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4526
+#: Security.xml:4529
#, no-c-format
msgid "Logging out"
msgstr ""
#. Tag: para
-#: Security.xml:4528
+#: Security.xml:4531
#, no-c-format
msgid ""
"Logging out (forgetting an OpenID association) is done by calling <literal>#"
@@ -6182,7 +6188,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4535
+#: Security.xml:4538
#, no-c-format
msgid ""
"<event type="org.jboss.seam.security.loggedOut">\n"
@@ -6191,7 +6197,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4537
+#: Security.xml:4540
#, no-c-format
msgid ""
"It's important that you do not leave this out or the user will not be able "
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/es-MX/Dependencies.po
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/es-MX/Dependencies.po 2009-06-11 20:41:36 UTC (rev 11125)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/es-MX/Dependencies.po 2009-06-11 20:43:04 UTC (rev 11126)
@@ -5,7 +5,7 @@
msgstr ""
"Project-Id-Version: Seam_-_Contextual_Components VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-04-15 13:51+0000\n"
+"POT-Creation-Date: 2009-06-11 18:45+0000\n"
"PO-Revision-Date: 2008-11-06 00:09+0000\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -938,8 +938,8 @@
#: Dependencies.xml:1182
#, no-c-format
msgid ""
-"This sample POM will give you Seam, JPA (provided by Hibernate) and "
-"Hibernate Validator:"
+"This sample POM will give you Seam, JPA (provided by Hibernate), Hibernate "
+"Validator and Hibernate Search:"
msgstr ""
#. Tag: programlisting
@@ -970,25 +970,31 @@
" <dependency>\n"
" <groupId>org.hibernate</groupId>\n"
" <artifactId>hibernate-validator</artifactId>\n"
-" <version>3.0.0.GA</version>\n"
+" <version>3.1.0.GA</version>\n"
" </dependency>\n"
"\n"
" <dependency>\n"
" <groupId>org.hibernate</groupId>\n"
" <artifactId>hibernate-annotations</artifactId>\n"
-" <version>3.3.0.ga</version>\n"
+" <version>3.4.0.GA</version>\n"
" </dependency>\n"
"\n"
" <dependency>\n"
" <groupId>org.hibernate</groupId>\n"
" <artifactId>hibernate-entitymanager</artifactId>\n"
-" <version>3.3.1.ga</version>\n"
+" <version>3.4.0.GA</version>\n"
" </dependency>\n"
+" \n"
+" <dependency>\n"
+" <groupId>org.hibernate</groupId>\n"
+" <artifactId>hibernate-search</artifactId>\n"
+" <version>3.1.1.GA</version>\n"
+" </dependency>\n"
"\n"
" <dependency>\n"
" <groupId>org.jboss.seam</groupId>\n"
" <artifactId>jboss-seam</artifactId>\n"
-" <version>2.0.0.GA</version>\n"
+" <version>2.2.0.GA</version>\n"
" </dependency>\n"
" \n"
" </dependencies>\n"
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/es-MX/Hsearch.po
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/es-MX/Hsearch.po 2009-06-11 20:41:36 UTC (rev 11125)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/es-MX/Hsearch.po 2009-06-11 20:43:04 UTC (rev 11126)
@@ -5,7 +5,7 @@
msgstr ""
"Project-Id-Version: Seam_-_Contextual_Components VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-04-15 13:51+0000\n"
+"POT-Creation-Date: 2009-06-11 18:45+0000\n"
"PO-Revision-Date: 2008-11-06 00:09+0000\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -45,7 +45,7 @@
#: Hsearch.xml:21
#, no-c-format
msgid ""
-"Hibernate Search has been designed to integrates nicely and as naturally as "
+"Hibernate Search has been designed to integrate nicely and as naturally as "
"possible with JPA and Hibernate. As a natural extension, JBoss Seam provides "
"an Hibernate Search integration."
msgstr ""
@@ -132,7 +132,7 @@
" <property name=\"hibernate.ejb.event.post-delete\" \n"
" value=\"org.hibernate.search.event.FullTextIndexEventListener"
"\"/>\n"
-"\n"
+" \n"
" </properties>\n"
"</persistence-unit>]]>"
msgstr ""
@@ -141,12 +141,15 @@
#: Hsearch.xml:52
#, no-c-format
msgid ""
-"This step is no longer necessary if Hibernate Annotation or EntityManager "
-"3.3.x are used."
+"It is not longer necessary the register the event listeners if Hibernate "
+"Annotations or EntityManager 3.3.x are used. When using Hibernate Search 3.1."
+"x more eventlisteners are needed, but these are registered automatically by "
+"Hibernate Annotations; refer to the Hibernate Search reference for "
+"configuring it without EntityManager and Annotations."
msgstr ""
#. Tag: para
-#: Hsearch.xml:56
+#: Hsearch.xml:60
#, no-c-format
msgid ""
"In addition to the configuration file, the following jars have to be "
@@ -154,25 +157,25 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:61
+#: Hsearch.xml:65
#, no-c-format
msgid "hibernate-search.jar"
msgstr ""
#. Tag: para
-#: Hsearch.xml:65
+#: Hsearch.xml:69
#, no-c-format
msgid "hibernate-commons-annotations.jar"
msgstr ""
#. Tag: para
-#: Hsearch.xml:69
+#: Hsearch.xml:73
#, no-c-format
msgid "lucene-core.jar"
msgstr ""
#. Tag: para
-#: Hsearch.xml:74
+#: Hsearch.xml:78
#, no-c-format
msgid ""
"If you deploy those in a EAR, don't forget to update <filename>application."
@@ -180,13 +183,13 @@
msgstr ""
#. Tag: title
-#: Hsearch.xml:80
+#: Hsearch.xml:84
#, no-c-format
msgid "Usage"
msgstr ""
#. Tag: para
-#: Hsearch.xml:82
+#: Hsearch.xml:86
#, no-c-format
msgid ""
"Hibernate Search uses annotations to map entities to a Lucene index, check "
@@ -195,7 +198,7 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:87
+#: Hsearch.xml:91
#, no-c-format
msgid ""
"Hibernate Search is fully integrated with the API and semantic of JPA / "
@@ -206,7 +209,7 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:93
+#: Hsearch.xml:97
#, no-c-format
msgid ""
"When Hibernate Search is present, JBoss Seam injects a "
@@ -214,7 +217,7 @@
msgstr ""
#. Tag: programlisting
-#: Hsearch.xml:96
+#: Hsearch.xml:100
#, no-c-format
msgid ""
"<![CDATA[@Stateful\n"
@@ -237,7 +240,7 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:99
+#: Hsearch.xml:103
#, no-c-format
msgid ""
"<classname>FullTextSession</classname> extends <classname>org.hibernate."
@@ -245,14 +248,14 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:104
+#: Hsearch.xml:108
#, no-c-format
msgid ""
"If the Java Persistence API is used, a smoother integration is proposed."
msgstr ""
#. Tag: programlisting
-#: Hsearch.xml:107
+#: Hsearch.xml:111
#, no-c-format
msgid ""
"<![CDATA[@Stateful\n"
@@ -275,7 +278,7 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:109
+#: Hsearch.xml:113
#, no-c-format
msgid ""
"When Hibernate Search is present, a <classname>FulltextEntityManager</"
@@ -286,7 +289,7 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:116
+#: Hsearch.xml:120
#, no-c-format
msgid ""
"When an EJB 3.0 Session or Message Driven Bean injection is used (i.e. via "
@@ -299,7 +302,7 @@
msgstr ""
#. Tag: programlisting
-#: Hsearch.xml:124
+#: Hsearch.xml:128
#, no-c-format
msgid ""
"<![CDATA[@Stateful\n"
@@ -323,15 +326,15 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:129
+#: Hsearch.xml:133
#, no-c-format
msgid ""
"For people accustomed to Hibernate Search out of Seam, note that using "
-"<methodname>Search.createFullTextSession</methodname> is not necessary."
+"<methodname>Search.getFullTextSession</methodname> is not necessary."
msgstr ""
#. Tag: para
-#: Hsearch.xml:134
+#: Hsearch.xml:138
#, no-c-format
msgid ""
"Check the DVDStore or the blog examples of the JBoss Seam distribution for a "
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/es-MX/Security.po
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/es-MX/Security.po 2009-06-11 20:41:36 UTC (rev 11125)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/es-MX/Security.po 2009-06-11 20:43:04 UTC (rev 11126)
@@ -5,7 +5,7 @@
msgstr ""
"Project-Id-Version: Seam_-_Contextual_Components VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-06-11 07:43+0000\n"
+"POT-Creation-Date: 2009-06-11 18:45+0000\n"
"PO-Revision-Date: 2008-11-06 00:09+0000\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -1190,7 +1190,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:630 Security.xml:764 Security.xml:3382 Security.xml:3545
+#: Security.xml:630 Security.xml:764 Security.xml:3385 Security.xml:3548
#, no-c-format
msgid "Annotation"
msgstr ""
@@ -1203,8 +1203,8 @@
#. Tag: para
#: Security.xml:636 Security.xml:770 Security.xml:966 Security.xml:1418
-#: Security.xml:2147 Security.xml:2756 Security.xml:3171 Security.xml:3388
-#: Security.xml:3551 Security.xml:3792 Security.xml:4229
+#: Security.xml:2147 Security.xml:2756 Security.xml:3174 Security.xml:3391
+#: Security.xml:3554 Security.xml:3795 Security.xml:4232
#, no-c-format
msgid "Description"
msgstr ""
@@ -2228,8 +2228,8 @@
msgstr ""
#. Tag: para
-#: Security.xml:1412 Security.xml:1828 Security.xml:2753 Security.xml:3168
-#: Security.xml:3789 Security.xml:3958
+#: Security.xml:1412 Security.xml:1828 Security.xml:2753 Security.xml:3171
+#: Security.xml:3792 Security.xml:3961
#, no-c-format
msgid "Method"
msgstr ""
@@ -2250,9 +2250,9 @@
#: Security.xml:1433 Security.xml:1452 Security.xml:1471 Security.xml:1490
#: Security.xml:1509 Security.xml:1529 Security.xml:1548 Security.xml:1567
#: Security.xml:1586 Security.xml:1606 Security.xml:1626 Security.xml:1740
-#: Security.xml:1762 Security.xml:1780 Security.xml:2766 Security.xml:3239
-#: Security.xml:3258 Security.xml:3277 Security.xml:3295 Security.xml:3840
-#: Security.xml:3859 Security.xml:3878 Security.xml:3897
+#: Security.xml:1762 Security.xml:1780 Security.xml:2766 Security.xml:3242
+#: Security.xml:3261 Security.xml:3280 Security.xml:3298 Security.xml:3843
+#: Security.xml:3862 Security.xml:3881 Security.xml:3900
#, no-c-format
msgid "boolean"
msgstr ""
@@ -2558,13 +2558,13 @@
msgstr ""
#. Tag: para
-#: Security.xml:1831 Security.xml:3961
+#: Security.xml:1831 Security.xml:3964
#, no-c-format
msgid "Permission Target"
msgstr ""
#. Tag: para
-#: Security.xml:1834 Security.xml:3964
+#: Security.xml:1834 Security.xml:3967
#, no-c-format
msgid "Permission Action"
msgstr ""
@@ -3806,7 +3806,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2750 Security.xml:3165 Security.xml:3786
+#: Security.xml:2750 Security.xml:3168 Security.xml:3789
#, no-c-format
msgid "Return type"
msgstr ""
@@ -3986,41 +3986,47 @@
#. Tag: para
#: Security.xml:2917
#, no-c-format
-msgid "drools-compiler.jar"
+msgid "drools-api.jar"
msgstr ""
#. Tag: para
#: Security.xml:2920
#, no-c-format
-msgid "drools-core.jar"
+msgid "drools-compiler.jar"
msgstr ""
#. Tag: para
#: Security.xml:2923
#, no-c-format
-msgid "janino.jar"
+msgid "drools-core.jar"
msgstr ""
#. Tag: para
#: Security.xml:2926
#, no-c-format
-msgid "antlr-runtime.jar"
+msgid "janino.jar"
msgstr ""
#. Tag: para
#: Security.xml:2929
#, no-c-format
-msgid "mvel14.jar"
+msgid "antlr-runtime.jar"
msgstr ""
+#. Tag: para
+#: Security.xml:2932
+#, no-c-format
+msgid "mvel2.jar"
+msgstr ""
+
#. Tag: title
-#: Security.xml:2936 Security.xml:3128
+#: Security.xml:2939 Security.xml:3131
#, no-c-format
msgid "Configuration"
msgstr ""
#. Tag: para
-#: Security.xml:2938
+#: Security.xml:2941
#, no-c-format
msgid ""
"The configuration for <literal>RuleBasedPermissionResolver</literal> "
@@ -4030,7 +4036,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:2944
+#: Security.xml:2947
#, no-c-format
msgid ""
"<![CDATA[<components xmlns=\"http://jboss.com/products/seam/components\"\n"
@@ -4058,7 +4064,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2946
+#: Security.xml:2949
#, no-c-format
msgid ""
"The default rule base name can be overridden by specifying the "
@@ -4067,7 +4073,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:2951
+#: Security.xml:2954
#, no-c-format
msgid ""
"<![CDATA[\n"
@@ -4076,7 +4082,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2953
+#: Security.xml:2956
#, no-c-format
msgid ""
"Once the <literal>RuleBase</literal> component is configured, it's time to "
@@ -4084,13 +4090,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:2959
+#: Security.xml:2962
#, no-c-format
msgid "Writing Security Rules"
msgstr ""
#. Tag: para
-#: Security.xml:2961
+#: Security.xml:2964
#, no-c-format
msgid ""
"The first step to writing security rules is to create a new rule file in the "
@@ -4101,7 +4107,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2968
+#: Security.xml:2971
#, no-c-format
msgid ""
"So what should the security rules file contain? At this stage it might be a "
@@ -4110,7 +4116,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:2973
+#: Security.xml:2976
#, no-c-format
msgid ""
"<![CDATA[package MyApplicationPermissions;\n"
@@ -4128,7 +4134,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2975
+#: Security.xml:2978
#, no-c-format
msgid ""
"Let's break this down step by step. The first thing we see is the package "
@@ -4138,7 +4144,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2981
+#: Security.xml:2984
#, no-c-format
msgid ""
"The next thing we can notice is a couple of import statements for the "
@@ -4148,7 +4154,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2987
+#: Security.xml:2990
#, no-c-format
msgid ""
"Finally we have the code for the rule. Each rule within a package should be "
@@ -4158,7 +4164,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2993
+#: Security.xml:2996
#, no-c-format
msgid ""
"Looking at the body of the rule definition we can notice two distinct "
@@ -4173,7 +4179,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3002
+#: Security.xml:3005
#, no-c-format
msgid ""
"If we look at the LHS of the rule, we see two conditions listed there. Let's "
@@ -4181,14 +4187,14 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3006
+#: Security.xml:3009
#, no-c-format
msgid ""
"<![CDATA[c: PermissionCheck(target == \"customer\", action == \"delete\")]]>"
msgstr ""
#. Tag: para
-#: Security.xml:3008
+#: Security.xml:3011
#, no-c-format
msgid ""
"In plain english, this condition is stating that there must exist a "
@@ -4198,7 +4204,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3014
+#: Security.xml:3017
#, no-c-format
msgid ""
"So what is the working memory? Also known as a \"stateful session\" in "
@@ -4216,7 +4222,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3026
+#: Security.xml:3029
#, no-c-format
msgid ""
"Besides the <literal>PermissionCheck</literal> facts, there is also a "
@@ -4233,7 +4239,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3037
+#: Security.xml:3040
#, no-c-format
msgid ""
"It is also possible to insert additional long-lived facts into the working "
@@ -4244,7 +4250,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3044
+#: Security.xml:3047
#, no-c-format
msgid ""
"Getting back to our simple example, we can also notice that the first line "
@@ -4255,13 +4261,13 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3051
+#: Security.xml:3054
#, no-c-format
msgid "<![CDATA[Role(name == \"admin\")]]>"
msgstr ""
#. Tag: para
-#: Security.xml:3053
+#: Security.xml:3056
#, no-c-format
msgid ""
"This condition simply states that there must be a <literal>Role</literal> "
@@ -4274,7 +4280,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3061
+#: Security.xml:3064
#, no-c-format
msgid ""
"So what is the consequence of the rule firing? Let's take a look at the RHS "
@@ -4282,13 +4288,13 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3065
+#: Security.xml:3068
#, no-c-format
msgid "<![CDATA[c.grant()]]>"
msgstr ""
#. Tag: para
-#: Security.xml:3067
+#: Security.xml:3070
#, no-c-format
msgid ""
"The RHS consists of Java code, and in this case is invoking the "
@@ -4305,13 +4311,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3081
+#: Security.xml:3084
#, no-c-format
msgid "Non-String permission targets"
msgstr ""
#. Tag: para
-#: Security.xml:3083
+#: Security.xml:3086
#, no-c-format
msgid ""
"So far we have only seen permission checks for String-literal permission "
@@ -4325,7 +4331,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3092
+#: Security.xml:3095
#, no-c-format
msgid ""
"<![CDATA[rule CanCreateBlogComment\n"
@@ -4343,13 +4349,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3097
+#: Security.xml:3100
#, no-c-format
msgid "Wildcard permission checks"
msgstr ""
#. Tag: para
-#: Security.xml:3099
+#: Security.xml:3102
#, no-c-format
msgid ""
"It is possible to implement a wildcard permission check (which allows all "
@@ -4359,7 +4365,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3105
+#: Security.xml:3108
#, no-c-format
msgid ""
"<![CDATA[rule CanDoAnythingToCustomersIfYouAreAnAdmin\n"
@@ -4373,7 +4379,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3107
+#: Security.xml:3110
#, no-c-format
msgid ""
"This rule allows users with the <literal>admin</literal> role to perform "
@@ -4382,13 +4388,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3117
+#: Security.xml:3120
#, no-c-format
msgid "PersistentPermissionResolver"
msgstr ""
#. Tag: para
-#: Security.xml:3119
+#: Security.xml:3122
#, no-c-format
msgid ""
"Another built-in permission resolver provided by Seam, "
@@ -4401,7 +4407,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3130
+#: Security.xml:3133
#, no-c-format
msgid ""
"Before it can be used, <literal>PersistentPermissionResolver</literal> must "
@@ -4414,7 +4420,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3138
+#: Security.xml:3141
#, no-c-format
msgid ""
"<![CDATA[ <security:persistent-permission-resolver permission-store=\"#"
@@ -4422,13 +4428,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3143
+#: Security.xml:3146
#, no-c-format
msgid "Permission Stores"
msgstr ""
#. Tag: para
-#: Security.xml:3145
+#: Security.xml:3148
#, no-c-format
msgid ""
"A permission store is required for <literal>PersistentPermissionResolver</"
@@ -4441,26 +4447,26 @@
msgstr ""
#. Tag: title
-#: Security.xml:3155
+#: Security.xml:3158
#, no-c-format
msgid "PermissionStore interface"
msgstr ""
#. Tag: literal
-#: Security.xml:3181 Security.xml:3200 Security.xml:3219 Security.xml:3802
-#: Security.xml:3821
+#: Security.xml:3184 Security.xml:3203 Security.xml:3222 Security.xml:3805
+#: Security.xml:3824
#, no-c-format
msgid "List<Permission>"
msgstr ""
#. Tag: literal
-#: Security.xml:3186 Security.xml:3826
+#: Security.xml:3189 Security.xml:3829
#, no-c-format
msgid "listPermissions(Object target)"
msgstr ""
#. Tag: para
-#: Security.xml:3190
+#: Security.xml:3193
#, no-c-format
msgid ""
"This method should return a <literal>List</literal> of <literal>Permission</"
@@ -4469,13 +4475,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3205 Security.xml:3807
+#: Security.xml:3208 Security.xml:3810
#, no-c-format
msgid "listPermissions(Object target, String action)"
msgstr ""
#. Tag: para
-#: Security.xml:3209
+#: Security.xml:3212
#, no-c-format
msgid ""
"This method should return a <literal>List</literal> of <literal>Permission</"
@@ -4484,13 +4490,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3224
+#: Security.xml:3227
#, no-c-format
msgid "listPermissions(Set<Object> targets, String action)"
msgstr ""
#. Tag: para
-#: Security.xml:3228
+#: Security.xml:3231
#, no-c-format
msgid ""
"This method should return a <literal>List</literal> of <literal>Permission</"
@@ -4499,13 +4505,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3244
+#: Security.xml:3247
#, no-c-format
msgid "grantPermission(Permission)"
msgstr ""
#. Tag: para
-#: Security.xml:3248
+#: Security.xml:3251
#, no-c-format
msgid ""
"This method should persist the specified <literal>Permission</literal> "
@@ -4513,13 +4519,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3263 Security.xml:3864
+#: Security.xml:3266 Security.xml:3867
#, no-c-format
msgid "grantPermissions(List<Permission> permissions)"
msgstr ""
#. Tag: para
-#: Security.xml:3267
+#: Security.xml:3270
#, no-c-format
msgid ""
"This method should persist all of the <literal>Permission</literal> objects "
@@ -4528,13 +4534,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3282 Security.xml:3883
+#: Security.xml:3285 Security.xml:3886
#, no-c-format
msgid "revokePermission(Permission permission)"
msgstr ""
#. Tag: para
-#: Security.xml:3286
+#: Security.xml:3289
#, no-c-format
msgid ""
"This method should remove the specified <literal>Permission</literal> object "
@@ -4542,13 +4548,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3300 Security.xml:3902
+#: Security.xml:3303 Security.xml:3905
#, no-c-format
msgid "revokePermissions(List<Permission> permissions)"
msgstr ""
#. Tag: para
-#: Security.xml:3304
+#: Security.xml:3307
#, no-c-format
msgid ""
"This method should remove all of the <literal>Permission</literal> objects "
@@ -4556,19 +4562,19 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3314 Security.xml:3916
+#: Security.xml:3317 Security.xml:3919
#, no-c-format
msgid "List<String>"
msgstr ""
#. Tag: literal
-#: Security.xml:3319 Security.xml:3921
+#: Security.xml:3322 Security.xml:3924
#, no-c-format
msgid "listAvailableActions(Object target)"
msgstr ""
#. Tag: para
-#: Security.xml:3323
+#: Security.xml:3326
#, no-c-format
msgid ""
"This method should return a list of all the available actions (as Strings) "
@@ -4578,13 +4584,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3337
+#: Security.xml:3340
#, no-c-format
msgid "JpaPermissionStore"
msgstr ""
#. Tag: para
-#: Security.xml:3339
+#: Security.xml:3342
#, no-c-format
msgid ""
"This is the default <literal>PermissionStore</literal> implementation (and "
@@ -4597,7 +4603,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3347
+#: Security.xml:3350
#, no-c-format
msgid ""
"If you wish to use the same entity (i.e. a single database table) to store "
@@ -4609,7 +4615,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3354
+#: Security.xml:3357
#, no-c-format
msgid ""
"For example, to configure a single entity class to store both user and role "
@@ -4617,7 +4623,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3356
+#: Security.xml:3359
#, no-c-format
msgid ""
"<![CDATA[ <security:jpa-permission-store user-permission-class=\"com.acme."
@@ -4625,14 +4631,14 @@
msgstr ""
#. Tag: para
-#: Security.xml:3358
+#: Security.xml:3361
#, no-c-format
msgid ""
"To configure separate entity classes for storing user and role permissions:"
msgstr ""
#. Tag: programlisting
-#: Security.xml:3360
+#: Security.xml:3363
#, no-c-format
msgid ""
"<![CDATA[ <security:jpa-permission-store user-permission-class=\"com.acme."
@@ -4641,13 +4647,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3363
+#: Security.xml:3366
#, no-c-format
msgid "Permission annotations"
msgstr ""
#. Tag: para
-#: Security.xml:3365
+#: Security.xml:3368
#, no-c-format
msgid ""
"As mentioned, the entity classes that contain the user and role permissions "
@@ -4658,32 +4664,32 @@
msgstr ""
#. Tag: title
-#: Security.xml:3372
+#: Security.xml:3375
#, no-c-format
msgid "Entity Permission annotations"
msgstr ""
#. Tag: para
-#: Security.xml:3385 Security.xml:3548
+#: Security.xml:3388 Security.xml:3551
#, no-c-format
msgid "Target"
msgstr ""
#. Tag: literal
-#: Security.xml:3398
+#: Security.xml:3401
#, no-c-format
msgid "@PermissionTarget"
msgstr ""
#. Tag: literal
-#: Security.xml:3403 Security.xml:3422 Security.xml:3441 Security.xml:3460
-#: Security.xml:3479
+#: Security.xml:3406 Security.xml:3425 Security.xml:3444 Security.xml:3463
+#: Security.xml:3482
#, no-c-format
msgid "FIELD,METHOD"
msgstr ""
#. Tag: para
-#: Security.xml:3407
+#: Security.xml:3410
#, no-c-format
msgid ""
"This annotation identifies the property of the entity that will contain the "
@@ -4692,13 +4698,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3417
+#: Security.xml:3420
#, no-c-format
msgid "@PermissionAction"
msgstr ""
#. Tag: para
-#: Security.xml:3426
+#: Security.xml:3429
#, no-c-format
msgid ""
"This annotation identifies the property of the entity that will contain the "
@@ -4707,13 +4713,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3436
+#: Security.xml:3439
#, no-c-format
msgid "@PermissionUser"
msgstr ""
#. Tag: para
-#: Security.xml:3445
+#: Security.xml:3448
#, no-c-format
msgid ""
"This annotation identifies the property of the entity that will contain the "
@@ -4722,13 +4728,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3455
+#: Security.xml:3458
#, no-c-format
msgid "@PermissionRole"
msgstr ""
#. Tag: para
-#: Security.xml:3464
+#: Security.xml:3467
#, no-c-format
msgid ""
"This annotation identifies the property of the entity that will contain the "
@@ -4737,13 +4743,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3474
+#: Security.xml:3477
#, no-c-format
msgid "@PermissionDiscriminator"
msgstr ""
#. Tag: para
-#: Security.xml:3483
+#: Security.xml:3486
#, no-c-format
msgid ""
"This annotation should be used when the same entity/table is used to store "
@@ -4760,20 +4766,20 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3493
+#: Security.xml:3496
#, no-c-format
msgid ""
"<![CDATA[ @PermissionDiscriminator(userValue = \"u\", roleValue = \"r\")]]>"
msgstr ""
#. Tag: title
-#: Security.xml:3504
+#: Security.xml:3507
#, no-c-format
msgid "Example Entity"
msgstr ""
#. Tag: para
-#: Security.xml:3506
+#: Security.xml:3509
#, no-c-format
msgid ""
"Here is an example of an entity class that is used to store both user and "
@@ -4782,7 +4788,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3511
+#: Security.xml:3514
#, no-c-format
msgid ""
"<![CDATA[\n"
@@ -4843,7 +4849,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3513
+#: Security.xml:3516
#, no-c-format
msgid ""
"As can be seen in the above example, the <literal>getDiscriminator()</"
@@ -4860,13 +4866,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3526
+#: Security.xml:3529
#, no-c-format
msgid "Class-specific Permission Configuration"
msgstr ""
#. Tag: para
-#: Security.xml:3528
+#: Security.xml:3531
#, no-c-format
msgid ""
"A further set of class-specific annotations can be used to configure a "
@@ -4876,25 +4882,25 @@
msgstr ""
#. Tag: title
-#: Security.xml:3535
+#: Security.xml:3538
#, no-c-format
msgid "Class Permission Annotations"
msgstr ""
#. Tag: literal
-#: Security.xml:3561
+#: Security.xml:3564
#, no-c-format
msgid "@Permissions"
msgstr ""
#. Tag: literal
-#: Security.xml:3566 Security.xml:3584
+#: Security.xml:3569 Security.xml:3587
#, no-c-format
msgid "TYPE"
msgstr ""
#. Tag: para
-#: Security.xml:3570
+#: Security.xml:3573
#, no-c-format
msgid ""
"A container annotation, this annotation may contain an array of "
@@ -4902,13 +4908,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3579
+#: Security.xml:3582
#, no-c-format
msgid "@Permission"
msgstr ""
#. Tag: para
-#: Security.xml:3588
+#: Security.xml:3591
#, no-c-format
msgid ""
"This annotation defines a single allowable permission action for the target "
@@ -4919,7 +4925,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3600
+#: Security.xml:3603
#, no-c-format
msgid ""
"Here's an example of the above annotations in action. The following class "
@@ -4927,7 +4933,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3604
+#: Security.xml:3607
#, no-c-format
msgid ""
"<![CDATA[@Permissions({\n"
@@ -4939,7 +4945,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3606
+#: Security.xml:3609
#, no-c-format
msgid ""
"This example demonstrates how two allowable permission actions, "
@@ -4948,13 +4954,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3614
+#: Security.xml:3617
#, no-c-format
msgid "Permission masks"
msgstr ""
#. Tag: para
-#: Security.xml:3616
+#: Security.xml:3619
#, no-c-format
msgid ""
"By default, multiple permissions for the same target object and recipient "
@@ -4966,7 +4972,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3623
+#: Security.xml:3626
#, no-c-format
msgid ""
"For example, if recipient \"Bob\" is granted both the <literal>view</"
@@ -4979,7 +4985,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3630
+#: Security.xml:3633
#, no-c-format
msgid ""
"<![CDATA[@Permissions({\n"
@@ -4991,7 +4997,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3632
+#: Security.xml:3635
#, no-c-format
msgid ""
"The <literal>action</literal> property will instead simply contain \"3"
@@ -5001,7 +5007,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3638
+#: Security.xml:3641
#, no-c-format
msgid ""
"Obviously, it is very important that the <literal>mask</literal> values "
@@ -5009,13 +5015,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3644
+#: Security.xml:3647
#, no-c-format
msgid "Identifier Policy"
msgstr ""
#. Tag: para
-#: Security.xml:3646
+#: Security.xml:3649
#, no-c-format
msgid ""
"When storing or looking up permissions, <literal>JpaPermissionStore</"
@@ -5029,7 +5035,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3654
+#: Security.xml:3657
#, no-c-format
msgid ""
"The <literal>IdentifierStrategy</literal> interface is very simple, "
@@ -5037,7 +5043,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3658
+#: Security.xml:3661
#, no-c-format
msgid ""
"<![CDATA[public interface IdentifierStrategy {\n"
@@ -5047,7 +5053,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3660
+#: Security.xml:3663
#, no-c-format
msgid ""
"The first method, <literal>canIdentify()</literal> simply returns "
@@ -5058,7 +5064,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3666
+#: Security.xml:3669
#, no-c-format
msgid ""
"Seam provides two <literal>IdentifierStrategy</literal> implementations, "
@@ -5067,7 +5073,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3671
+#: Security.xml:3674
#, no-c-format
msgid ""
"To explicitly configure a specific identifier strategy to use for a "
@@ -5080,13 +5086,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3681
+#: Security.xml:3684
#, no-c-format
msgid "ClassIdentifierStrategy"
msgstr ""
#. Tag: para
-#: Security.xml:3683
+#: Security.xml:3686
#, no-c-format
msgid ""
"This identifier strategy is used to generate unique identifiers for classes, "
@@ -5100,7 +5106,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3692
+#: Security.xml:3695
#, no-c-format
msgid ""
"<![CDATA[@Identifier(name = \"customer\")\n"
@@ -5108,7 +5114,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3694
+#: Security.xml:3697
#, no-c-format
msgid ""
"The identifier for the following class will be \"<literal>customerAction</"
@@ -5116,7 +5122,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3698
+#: Security.xml:3701
#, no-c-format
msgid ""
"<![CDATA[@Name(\"customerAction\")\n"
@@ -5124,7 +5130,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3700
+#: Security.xml:3703
#, no-c-format
msgid ""
"Finally, the identifier for the following class will be \"<literal>Customer</"
@@ -5132,19 +5138,19 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3704
+#: Security.xml:3707
#, no-c-format
msgid "<![CDATA[public class Customer { ]]>"
msgstr ""
#. Tag: title
-#: Security.xml:3709
+#: Security.xml:3712
#, no-c-format
msgid "EntityIdentifierStrategy"
msgstr ""
#. Tag: para
-#: Security.xml:3711
+#: Security.xml:3714
#, no-c-format
msgid ""
"This identifier strategy is used to generate unique identifiers for entity "
@@ -5161,7 +5167,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3722
+#: Security.xml:3725
#, no-c-format
msgid ""
"<![CDATA[@Identifier(value = EntityIdentifierStrategy.class)\n"
@@ -5169,7 +5175,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3724
+#: Security.xml:3727
#, no-c-format
msgid ""
"For an example of the type of identifier values generated, assume we have "
@@ -5177,7 +5183,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3728
+#: Security.xml:3731
#, no-c-format
msgid ""
"<![CDATA[@Entity\n"
@@ -5200,7 +5206,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3730
+#: Security.xml:3733
#, no-c-format
msgid ""
"For a <literal>Customer</literal> instance with an <literal>id</literal> "
@@ -5210,7 +5216,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3736
+#: Security.xml:3739
#, no-c-format
msgid ""
"<![CDATA[@Entity\n"
@@ -5219,7 +5225,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3738
+#: Security.xml:3741
#, no-c-format
msgid ""
"Then a <literal>Customer</literal> with an <literal>id</literal> value of "
@@ -5228,13 +5234,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3751
+#: Security.xml:3754
#, no-c-format
msgid "Permission Management"
msgstr ""
#. Tag: para
-#: Security.xml:3753
+#: Security.xml:3756
#, no-c-format
msgid ""
"In much the same way that Seam Security provides an Identity Management API "
@@ -5244,13 +5250,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3760
+#: Security.xml:3763
#, no-c-format
msgid "PermissionManager"
msgstr ""
#. Tag: para
-#: Security.xml:3762
+#: Security.xml:3765
#, no-c-format
msgid ""
"The <literal>PermissionManager</literal> component is an application-scoped "
@@ -5263,7 +5269,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3769
+#: Security.xml:3772
#, no-c-format
msgid ""
"<![CDATA[\n"
@@ -5273,7 +5279,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3771
+#: Security.xml:3774
#, no-c-format
msgid ""
"The following table describes each of the available methods provided by "
@@ -5281,13 +5287,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3776
+#: Security.xml:3779
#, no-c-format
msgid "PermissionManager API methods"
msgstr ""
#. Tag: para
-#: Security.xml:3811 Security.xml:3830
+#: Security.xml:3814 Security.xml:3833
#, no-c-format
msgid ""
"Returns a list of <literal>Permission</literal> objects representing all of "
@@ -5295,13 +5301,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3845
+#: Security.xml:3848
#, no-c-format
msgid "grantPermission(Permission permission)"
msgstr ""
#. Tag: para
-#: Security.xml:3849
+#: Security.xml:3852
#, no-c-format
msgid ""
"Persists (grants) the specified <literal>Permission</literal> to the backend "
@@ -5309,7 +5315,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3868
+#: Security.xml:3871
#, no-c-format
msgid ""
"Persists (grants) the specified list of <literal>Permission</literal>s to "
@@ -5317,7 +5323,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3887
+#: Security.xml:3890
#, no-c-format
msgid ""
"Removes (revokes) the specified <literal>Permission</literal> from the "
@@ -5325,7 +5331,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3906
+#: Security.xml:3909
#, no-c-format
msgid ""
"Removes (revokes) the specified list of <literal>Permission</literal>s from "
@@ -5333,7 +5339,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3925
+#: Security.xml:3928
#, no-c-format
msgid ""
"Returns a list of the available actions for the specified target object. The "
@@ -5342,13 +5348,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3940
+#: Security.xml:3943
#, no-c-format
msgid "Permission checks for PermissionManager operations"
msgstr ""
#. Tag: para
-#: Security.xml:3942
+#: Security.xml:3945
#, no-c-format
msgid ""
"Invoking the methods of <literal>PermissionManager</literal> requires that "
@@ -5358,37 +5364,37 @@
msgstr ""
#. Tag: title
-#: Security.xml:3949
+#: Security.xml:3952
#, no-c-format
msgid "Permission Management Security Permissions"
msgstr ""
#. Tag: literal
-#: Security.xml:3973
+#: Security.xml:3976
#, no-c-format
msgid "listPermissions()"
msgstr ""
#. Tag: para
-#: Security.xml:3977
+#: Security.xml:3980
#, no-c-format
msgid "The specified <literal>target</literal>"
msgstr ""
#. Tag: literal
-#: Security.xml:3983
+#: Security.xml:3986
#, no-c-format
msgid "seam.read-permissions"
msgstr ""
#. Tag: literal
-#: Security.xml:3991 Security.xml:4011
+#: Security.xml:3994 Security.xml:4014
#, no-c-format
msgid "grantPermission()"
msgstr ""
#. Tag: para
-#: Security.xml:3995
+#: Security.xml:3998
#, no-c-format
msgid ""
"The target of the specified <literal>Permission</literal>, or each of the "
@@ -5397,56 +5403,56 @@
msgstr ""
#. Tag: literal
-#: Security.xml:4003 Security.xml:4021 Security.xml:4039
+#: Security.xml:4006 Security.xml:4024 Security.xml:4042
#, no-c-format
msgid "seam.grant-permission"
msgstr ""
#. Tag: para
-#: Security.xml:4015 Security.xml:4051
+#: Security.xml:4018 Security.xml:4054
#, no-c-format
msgid "The target of the specified <literal>Permission</literal>."
msgstr ""
#. Tag: literal
-#: Security.xml:4029
+#: Security.xml:4032
#, no-c-format
msgid "grantPermissions()"
msgstr ""
#. Tag: para
-#: Security.xml:4033 Security.xml:4069
+#: Security.xml:4036 Security.xml:4072
#, no-c-format
msgid ""
"Each of the targets of the specified list of <literal>Permission</literal>s."
msgstr ""
#. Tag: literal
-#: Security.xml:4047
+#: Security.xml:4050
#, no-c-format
msgid "revokePermission()"
msgstr ""
#. Tag: literal
-#: Security.xml:4057 Security.xml:4075
+#: Security.xml:4060 Security.xml:4078
#, no-c-format
msgid "seam.revoke-permission"
msgstr ""
#. Tag: literal
-#: Security.xml:4065
+#: Security.xml:4068
#, no-c-format
msgid "revokePermissions()"
msgstr ""
#. Tag: title
-#: Security.xml:4088
+#: Security.xml:4091
#, no-c-format
msgid "SSL Security"
msgstr ""
#. Tag: para
-#: Security.xml:4090
+#: Security.xml:4093
#, no-c-format
msgid ""
"Seam includes basic support for serving sensitive pages via the HTTPS "
@@ -5457,13 +5463,13 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4097
+#: Security.xml:4100
#, no-c-format
msgid "<![CDATA[<page view-id=\"/login.xhtml\" scheme=\"https\"/>]]>"
msgstr ""
#. Tag: para
-#: Security.xml:4099
+#: Security.xml:4102
#, no-c-format
msgid ""
"This configuration is automatically extended to both <literal>s:link</"
@@ -5475,13 +5481,13 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4106
+#: Security.xml:4109
#, no-c-format
msgid "<![CDATA[<s:link view=\"/login.xhtml\" value=\"Login\"/>]]>"
msgstr ""
#. Tag: para
-#: Security.xml:4108
+#: Security.xml:4111
#, no-c-format
msgid ""
"Browsing directly to a view when using the <emphasis>incorrect</emphasis> "
@@ -5492,7 +5498,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4115
+#: Security.xml:4118
#, no-c-format
msgid ""
"It is also possible to configure a <emphasis>default scheme</emphasis> for "
@@ -5506,13 +5512,13 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4124
+#: Security.xml:4127
#, no-c-format
msgid "<![CDATA[<page view-id=\"*\" scheme=\"http\" />]]>"
msgstr ""
#. Tag: para
-#: Security.xml:4126
+#: Security.xml:4129
#, no-c-format
msgid ""
"Of course, if <emphasis>none</emphasis> of the pages in your application use "
@@ -5520,7 +5526,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4131
+#: Security.xml:4134
#, no-c-format
msgid ""
"You may configure Seam to automatically invalidate the current HTTP session "
@@ -5529,13 +5535,13 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4136
+#: Security.xml:4139
#, no-c-format
msgid "<![CDATA[<web:session invalidate-on-scheme-change=\"true\"/>]]>"
msgstr ""
#. Tag: para
-#: Security.xml:4138
+#: Security.xml:4141
#, no-c-format
msgid ""
"This option helps make your system less vulnerable to sniffing of the "
@@ -5544,13 +5550,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4144
+#: Security.xml:4147
#, no-c-format
msgid "Overriding the default ports"
msgstr ""
#. Tag: para
-#: Security.xml:4146
+#: Security.xml:4149
#, no-c-format
msgid ""
"If you wish to configure the HTTP and HTTPS ports manually, they may be "
@@ -5560,7 +5566,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4152
+#: Security.xml:4155
#, no-c-format
msgid ""
"<![CDATA[\n"
@@ -5576,13 +5582,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4158
+#: Security.xml:4161
#, no-c-format
msgid "CAPTCHA"
msgstr ""
#. Tag: para
-#: Security.xml:4160
+#: Security.xml:4163
#, no-c-format
msgid ""
"Though strictly not part of the security API, Seam provides a built-in "
@@ -5594,13 +5600,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4168
+#: Security.xml:4171
#, no-c-format
msgid "Configuring the CAPTCHA Servlet"
msgstr ""
#. Tag: para
-#: Security.xml:4169
+#: Security.xml:4172
#, no-c-format
msgid ""
"To get up and running, it is necessary to configure the Seam Resource "
@@ -5609,7 +5615,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4174
+#: Security.xml:4177
#, no-c-format
msgid ""
"<![CDATA[<servlet>\n"
@@ -5625,20 +5631,20 @@
msgstr ""
#. Tag: title
-#: Security.xml:4179
+#: Security.xml:4182
#, no-c-format
msgid "Adding a CAPTCHA to a form"
msgstr ""
#. Tag: para
-#: Security.xml:4181
+#: Security.xml:4184
#, no-c-format
msgid ""
"Adding a CAPTCHA challenge to a form is extremely easy. Here's an example:"
msgstr ""
#. Tag: programlisting
-#: Security.xml:4185
+#: Security.xml:4188
#, no-c-format
msgid ""
"<![CDATA[<h:graphicImage value=\"/seam/resource/captcha\"/>\n"
@@ -5650,7 +5656,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4187
+#: Security.xml:4190
#, no-c-format
msgid ""
"That's all there is to it. The <literal>graphicImage</literal> control "
@@ -5660,20 +5666,20 @@
msgstr ""
#. Tag: title
-#: Security.xml:4196
+#: Security.xml:4199
#, no-c-format
msgid "Customising the CAPTCHA algorithm"
msgstr ""
#. Tag: para
-#: Security.xml:4198
+#: Security.xml:4201
#, no-c-format
msgid ""
"You may customize the CAPTCHA algorithm by overriding the built-in component:"
msgstr ""
#. Tag: programlisting
-#: Security.xml:4202
+#: Security.xml:4205
#, no-c-format
msgid ""
"<![CDATA[@Name(\"org.jboss.seam.captcha.captcha\")\n"
@@ -5700,13 +5706,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4209 Security.xml:4217
+#: Security.xml:4212 Security.xml:4220
#, no-c-format
msgid "Security Events"
msgstr ""
#. Tag: para
-#: Security.xml:4211
+#: Security.xml:4214
#, no-c-format
msgid ""
"The following table describes a number of events (see <xref linkend=\"events"
@@ -5714,68 +5720,68 @@
msgstr ""
#. Tag: para
-#: Security.xml:4226
+#: Security.xml:4229
#, no-c-format
msgid "Event Key"
msgstr ""
#. Tag: literal
-#: Security.xml:4239
+#: Security.xml:4242
#, no-c-format
msgid "org.jboss.seam.security.loginSuccessful"
msgstr ""
#. Tag: para
-#: Security.xml:4243
+#: Security.xml:4246
#, no-c-format
msgid "Raised when a login attempt is successful."
msgstr ""
#. Tag: literal
-#: Security.xml:4251
+#: Security.xml:4254
#, no-c-format
msgid "org.jboss.seam.security.loginFailed"
msgstr ""
#. Tag: para
-#: Security.xml:4255
+#: Security.xml:4258
#, no-c-format
msgid "Raised when a login attempt fails."
msgstr ""
#. Tag: literal
-#: Security.xml:4263
+#: Security.xml:4266
#, no-c-format
msgid "org.jboss.seam.security.alreadyLoggedIn"
msgstr ""
#. Tag: para
-#: Security.xml:4267
+#: Security.xml:4270
#, no-c-format
msgid ""
"Raised when a user that is already authenticated attempts to log in again."
msgstr ""
#. Tag: literal
-#: Security.xml:4275
+#: Security.xml:4278
#, no-c-format
msgid "org.jboss.seam.security.notLoggedIn"
msgstr ""
#. Tag: para
-#: Security.xml:4279
+#: Security.xml:4282
#, no-c-format
msgid "Raised when a security check fails when the user is not logged in."
msgstr ""
#. Tag: literal
-#: Security.xml:4287
+#: Security.xml:4290
#, no-c-format
msgid "org.jboss.seam.security.notAuthorized"
msgstr ""
#. Tag: para
-#: Security.xml:4291
+#: Security.xml:4294
#, no-c-format
msgid ""
"Raised when a security check fails when the user is logged in however "
@@ -5783,73 +5789,73 @@
msgstr ""
#. Tag: literal
-#: Security.xml:4299
+#: Security.xml:4302
#, no-c-format
msgid "org.jboss.seam.security.preAuthenticate"
msgstr ""
#. Tag: para
-#: Security.xml:4303
+#: Security.xml:4306
#, no-c-format
msgid "Raised just prior to user authentication."
msgstr ""
#. Tag: literal
-#: Security.xml:4311
+#: Security.xml:4314
#, no-c-format
msgid "org.jboss.seam.security.postAuthenticate"
msgstr ""
#. Tag: para
-#: Security.xml:4315
+#: Security.xml:4318
#, no-c-format
msgid "Raised just after user authentication."
msgstr ""
#. Tag: literal
-#: Security.xml:4323
+#: Security.xml:4326
#, no-c-format
msgid "org.jboss.seam.security.loggedOut"
msgstr ""
#. Tag: para
-#: Security.xml:4327
+#: Security.xml:4330
#, no-c-format
msgid "Raised after the user has logged out."
msgstr ""
#. Tag: literal
-#: Security.xml:4335
+#: Security.xml:4338
#, no-c-format
msgid "org.jboss.seam.security.credentialsUpdated"
msgstr ""
#. Tag: para
-#: Security.xml:4339
+#: Security.xml:4342
#, no-c-format
msgid "Raised when the user's credentials have been changed."
msgstr ""
#. Tag: literal
-#: Security.xml:4347
+#: Security.xml:4350
#, no-c-format
msgid "org.jboss.seam.security.rememberMe"
msgstr ""
#. Tag: para
-#: Security.xml:4351
+#: Security.xml:4354
#, no-c-format
msgid "Raised when the Identity's rememberMe property is changed."
msgstr ""
#. Tag: title
-#: Security.xml:4364
+#: Security.xml:4367
#, no-c-format
msgid "Run As"
msgstr ""
#. Tag: para
-#: Security.xml:4366
+#: Security.xml:4369
#, no-c-format
msgid ""
"Sometimes it may be necessary to perform certain operations with elevated "
@@ -5861,7 +5867,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4374
+#: Security.xml:4377
#, no-c-format
msgid ""
"The following code example demonstrates how <literal>RunAsOperation</"
@@ -5872,7 +5878,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4381
+#: Security.xml:4384
#, no-c-format
msgid ""
"<![CDATA[ new RunAsOperation() { \n"
@@ -5884,7 +5890,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4383
+#: Security.xml:4386
#, no-c-format
msgid ""
"In a similar way, the <literal>getPrincipal()</literal> or "
@@ -5895,13 +5901,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4394
+#: Security.xml:4397
#, no-c-format
msgid "Extending the Identity component"
msgstr ""
#. Tag: para
-#: Security.xml:4396
+#: Security.xml:4399
#, no-c-format
msgid ""
"Sometimes it might be necessary to extend the Identity component if your "
@@ -5914,7 +5920,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4404
+#: Security.xml:4407
#, no-c-format
msgid ""
"<![CDATA[@Name(\"org.jboss.seam.security.identity\")\n"
@@ -5949,7 +5955,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4407
+#: Security.xml:4410
#, no-c-format
msgid ""
"Note that an <literal>Identity</literal> component must be marked "
@@ -5959,13 +5965,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4419
+#: Security.xml:4422
#, no-c-format
msgid "OpenID"
msgstr ""
#. Tag: para
-#: Security.xml:4421
+#: Security.xml:4424
#, no-c-format
msgid ""
"OpenID is a community standard for external web-based authentication. The "
@@ -5978,7 +5984,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4430
+#: Security.xml:4433
#, no-c-format
msgid ""
"When using OpenID, the user selects an OpenID provider, and the provider "
@@ -5995,7 +6001,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4439
+#: Security.xml:4442
#, no-c-format
msgid ""
"It's important to realize at this point that authentication does not imply "
@@ -6008,13 +6014,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4449
+#: Security.xml:4452
#, no-c-format
msgid "Configuring OpenID"
msgstr ""
#. Tag: para
-#: Security.xml:4450
+#: Security.xml:4453
#, no-c-format
msgid ""
"Seam uses the openid4java package and requires four additional JARs to make "
@@ -6024,7 +6030,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4456
+#: Security.xml:4459
#, no-c-format
msgid ""
"OpenID processing requires the use of the <literal>OpenIdPhaseListener</"
@@ -6034,7 +6040,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4462
+#: Security.xml:4465
#, no-c-format
msgid ""
"<lifecycle>\n"
@@ -6044,7 +6050,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4465
+#: Security.xml:4468
#, no-c-format
msgid ""
"With this configuration, OpenID support is available to your application. "
@@ -6054,13 +6060,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4473
+#: Security.xml:4476
#, no-c-format
msgid "Presenting an OpenIdDLogin form"
msgstr ""
#. Tag: para
-#: Security.xml:4475
+#: Security.xml:4478
#, no-c-format
msgid ""
"To initiate an OpenID login, you can present a simply form to the user "
@@ -6070,7 +6076,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4480
+#: Security.xml:4483
#, no-c-format
msgid ""
"<h:form>\n"
@@ -6081,7 +6087,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4482
+#: Security.xml:4485
#, no-c-format
msgid ""
"When the user submits the login form, he will be redirected to his OpenID "
@@ -6093,13 +6099,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4491
+#: Security.xml:4494
#, no-c-format
msgid "Logging in immediately"
msgstr ""
#. Tag: para
-#: Security.xml:4493
+#: Security.xml:4496
#, no-c-format
msgid ""
"The simplest strategy is to simply login the user immediately. The following "
@@ -6108,7 +6114,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4497
+#: Security.xml:4500
#, no-c-format
msgid ""
"<page view-id="/openid.xhtml">\n"
@@ -6128,7 +6134,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4499
+#: Security.xml:4502
#, no-c-format
msgid ""
"Thie <literal>loginImmediately()</literal> action checks to see if the "
@@ -6142,13 +6148,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4510
+#: Security.xml:4513
#, no-c-format
msgid "Deferring login"
msgstr ""
#. Tag: para
-#: Security.xml:4512
+#: Security.xml:4515
#, no-c-format
msgid ""
"You may not want the user to be immediately logged in to your application. "
@@ -6165,13 +6171,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4526
+#: Security.xml:4529
#, no-c-format
msgid "Logging out"
msgstr ""
#. Tag: para
-#: Security.xml:4528
+#: Security.xml:4531
#, no-c-format
msgid ""
"Logging out (forgetting an OpenID association) is done by calling <literal>#"
@@ -6182,7 +6188,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4535
+#: Security.xml:4538
#, no-c-format
msgid ""
"<event type="org.jboss.seam.security.loggedOut">\n"
@@ -6191,7 +6197,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4537
+#: Security.xml:4540
#, no-c-format
msgid ""
"It's important that you do not leave this out or the user will not be able "
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/fr-FR/Dependencies.po
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/fr-FR/Dependencies.po 2009-06-11 20:41:36 UTC (rev 11125)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/fr-FR/Dependencies.po 2009-06-11 20:43:04 UTC (rev 11126)
@@ -5,7 +5,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-04-15 13:51+0000\n"
+"POT-Creation-Date: 2009-06-11 18:45+0000\n"
"PO-Revision-Date: 2008-04-04 01:24+0000\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -938,8 +938,8 @@
#: Dependencies.xml:1182
#, no-c-format
msgid ""
-"This sample POM will give you Seam, JPA (provided by Hibernate) and "
-"Hibernate Validator:"
+"This sample POM will give you Seam, JPA (provided by Hibernate), Hibernate "
+"Validator and Hibernate Search:"
msgstr ""
#. Tag: programlisting
@@ -970,25 +970,31 @@
" <dependency>\n"
" <groupId>org.hibernate</groupId>\n"
" <artifactId>hibernate-validator</artifactId>\n"
-" <version>3.0.0.GA</version>\n"
+" <version>3.1.0.GA</version>\n"
" </dependency>\n"
"\n"
" <dependency>\n"
" <groupId>org.hibernate</groupId>\n"
" <artifactId>hibernate-annotations</artifactId>\n"
-" <version>3.3.0.ga</version>\n"
+" <version>3.4.0.GA</version>\n"
" </dependency>\n"
"\n"
" <dependency>\n"
" <groupId>org.hibernate</groupId>\n"
" <artifactId>hibernate-entitymanager</artifactId>\n"
-" <version>3.3.1.ga</version>\n"
+" <version>3.4.0.GA</version>\n"
" </dependency>\n"
+" \n"
+" <dependency>\n"
+" <groupId>org.hibernate</groupId>\n"
+" <artifactId>hibernate-search</artifactId>\n"
+" <version>3.1.1.GA</version>\n"
+" </dependency>\n"
"\n"
" <dependency>\n"
" <groupId>org.jboss.seam</groupId>\n"
" <artifactId>jboss-seam</artifactId>\n"
-" <version>2.0.0.GA</version>\n"
+" <version>2.2.0.GA</version>\n"
" </dependency>\n"
" \n"
" </dependencies>\n"
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/fr-FR/Hsearch.po
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/fr-FR/Hsearch.po 2009-06-11 20:41:36 UTC (rev 11125)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/fr-FR/Hsearch.po 2009-06-11 20:43:04 UTC (rev 11126)
@@ -5,7 +5,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-04-15 13:51+0000\n"
+"POT-Creation-Date: 2009-06-11 18:45+0000\n"
"PO-Revision-Date: 2008-04-04 01:24+0000\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -45,7 +45,7 @@
#: Hsearch.xml:21
#, no-c-format
msgid ""
-"Hibernate Search has been designed to integrates nicely and as naturally as "
+"Hibernate Search has been designed to integrate nicely and as naturally as "
"possible with JPA and Hibernate. As a natural extension, JBoss Seam provides "
"an Hibernate Search integration."
msgstr ""
@@ -132,7 +132,7 @@
" <property name=\"hibernate.ejb.event.post-delete\" \n"
" value=\"org.hibernate.search.event.FullTextIndexEventListener"
"\"/>\n"
-"\n"
+" \n"
" </properties>\n"
"</persistence-unit>]]>"
msgstr ""
@@ -141,12 +141,15 @@
#: Hsearch.xml:52
#, no-c-format
msgid ""
-"This step is no longer necessary if Hibernate Annotation or EntityManager "
-"3.3.x are used."
+"It is not longer necessary the register the event listeners if Hibernate "
+"Annotations or EntityManager 3.3.x are used. When using Hibernate Search 3.1."
+"x more eventlisteners are needed, but these are registered automatically by "
+"Hibernate Annotations; refer to the Hibernate Search reference for "
+"configuring it without EntityManager and Annotations."
msgstr ""
#. Tag: para
-#: Hsearch.xml:56
+#: Hsearch.xml:60
#, no-c-format
msgid ""
"In addition to the configuration file, the following jars have to be "
@@ -154,25 +157,25 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:61
+#: Hsearch.xml:65
#, no-c-format
msgid "hibernate-search.jar"
msgstr ""
#. Tag: para
-#: Hsearch.xml:65
+#: Hsearch.xml:69
#, no-c-format
msgid "hibernate-commons-annotations.jar"
msgstr ""
#. Tag: para
-#: Hsearch.xml:69
+#: Hsearch.xml:73
#, no-c-format
msgid "lucene-core.jar"
msgstr ""
#. Tag: para
-#: Hsearch.xml:74
+#: Hsearch.xml:78
#, no-c-format
msgid ""
"If you deploy those in a EAR, don't forget to update <filename>application."
@@ -180,13 +183,13 @@
msgstr ""
#. Tag: title
-#: Hsearch.xml:80
+#: Hsearch.xml:84
#, no-c-format
msgid "Usage"
msgstr ""
#. Tag: para
-#: Hsearch.xml:82
+#: Hsearch.xml:86
#, no-c-format
msgid ""
"Hibernate Search uses annotations to map entities to a Lucene index, check "
@@ -195,7 +198,7 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:87
+#: Hsearch.xml:91
#, no-c-format
msgid ""
"Hibernate Search is fully integrated with the API and semantic of JPA / "
@@ -206,7 +209,7 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:93
+#: Hsearch.xml:97
#, no-c-format
msgid ""
"When Hibernate Search is present, JBoss Seam injects a "
@@ -214,7 +217,7 @@
msgstr ""
#. Tag: programlisting
-#: Hsearch.xml:96
+#: Hsearch.xml:100
#, no-c-format
msgid ""
"<![CDATA[@Stateful\n"
@@ -237,7 +240,7 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:99
+#: Hsearch.xml:103
#, no-c-format
msgid ""
"<classname>FullTextSession</classname> extends <classname>org.hibernate."
@@ -245,14 +248,14 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:104
+#: Hsearch.xml:108
#, no-c-format
msgid ""
"If the Java Persistence API is used, a smoother integration is proposed."
msgstr ""
#. Tag: programlisting
-#: Hsearch.xml:107
+#: Hsearch.xml:111
#, no-c-format
msgid ""
"<![CDATA[@Stateful\n"
@@ -275,7 +278,7 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:109
+#: Hsearch.xml:113
#, no-c-format
msgid ""
"When Hibernate Search is present, a <classname>FulltextEntityManager</"
@@ -286,7 +289,7 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:116
+#: Hsearch.xml:120
#, no-c-format
msgid ""
"When an EJB 3.0 Session or Message Driven Bean injection is used (i.e. via "
@@ -299,7 +302,7 @@
msgstr ""
#. Tag: programlisting
-#: Hsearch.xml:124
+#: Hsearch.xml:128
#, no-c-format
msgid ""
"<![CDATA[@Stateful\n"
@@ -323,15 +326,15 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:129
+#: Hsearch.xml:133
#, no-c-format
msgid ""
"For people accustomed to Hibernate Search out of Seam, note that using "
-"<methodname>Search.createFullTextSession</methodname> is not necessary."
+"<methodname>Search.getFullTextSession</methodname> is not necessary."
msgstr ""
#. Tag: para
-#: Hsearch.xml:134
+#: Hsearch.xml:138
#, no-c-format
msgid ""
"Check the DVDStore or the blog examples of the JBoss Seam distribution for a "
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/fr-FR/Security.po
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/fr-FR/Security.po 2009-06-11 20:41:36 UTC (rev 11125)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/fr-FR/Security.po 2009-06-11 20:43:04 UTC (rev 11126)
@@ -5,7 +5,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-06-11 07:43+0000\n"
+"POT-Creation-Date: 2009-06-11 18:45+0000\n"
"PO-Revision-Date: 2008-04-04 01:24+0000\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -1190,7 +1190,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:630 Security.xml:764 Security.xml:3382 Security.xml:3545
+#: Security.xml:630 Security.xml:764 Security.xml:3385 Security.xml:3548
#, no-c-format
msgid "Annotation"
msgstr ""
@@ -1203,8 +1203,8 @@
#. Tag: para
#: Security.xml:636 Security.xml:770 Security.xml:966 Security.xml:1418
-#: Security.xml:2147 Security.xml:2756 Security.xml:3171 Security.xml:3388
-#: Security.xml:3551 Security.xml:3792 Security.xml:4229
+#: Security.xml:2147 Security.xml:2756 Security.xml:3174 Security.xml:3391
+#: Security.xml:3554 Security.xml:3795 Security.xml:4232
#, no-c-format
msgid "Description"
msgstr ""
@@ -2228,8 +2228,8 @@
msgstr ""
#. Tag: para
-#: Security.xml:1412 Security.xml:1828 Security.xml:2753 Security.xml:3168
-#: Security.xml:3789 Security.xml:3958
+#: Security.xml:1412 Security.xml:1828 Security.xml:2753 Security.xml:3171
+#: Security.xml:3792 Security.xml:3961
#, no-c-format
msgid "Method"
msgstr ""
@@ -2250,9 +2250,9 @@
#: Security.xml:1433 Security.xml:1452 Security.xml:1471 Security.xml:1490
#: Security.xml:1509 Security.xml:1529 Security.xml:1548 Security.xml:1567
#: Security.xml:1586 Security.xml:1606 Security.xml:1626 Security.xml:1740
-#: Security.xml:1762 Security.xml:1780 Security.xml:2766 Security.xml:3239
-#: Security.xml:3258 Security.xml:3277 Security.xml:3295 Security.xml:3840
-#: Security.xml:3859 Security.xml:3878 Security.xml:3897
+#: Security.xml:1762 Security.xml:1780 Security.xml:2766 Security.xml:3242
+#: Security.xml:3261 Security.xml:3280 Security.xml:3298 Security.xml:3843
+#: Security.xml:3862 Security.xml:3881 Security.xml:3900
#, no-c-format
msgid "boolean"
msgstr ""
@@ -2558,13 +2558,13 @@
msgstr ""
#. Tag: para
-#: Security.xml:1831 Security.xml:3961
+#: Security.xml:1831 Security.xml:3964
#, no-c-format
msgid "Permission Target"
msgstr ""
#. Tag: para
-#: Security.xml:1834 Security.xml:3964
+#: Security.xml:1834 Security.xml:3967
#, no-c-format
msgid "Permission Action"
msgstr ""
@@ -3806,7 +3806,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2750 Security.xml:3165 Security.xml:3786
+#: Security.xml:2750 Security.xml:3168 Security.xml:3789
#, no-c-format
msgid "Return type"
msgstr ""
@@ -3986,41 +3986,47 @@
#. Tag: para
#: Security.xml:2917
#, no-c-format
-msgid "drools-compiler.jar"
+msgid "drools-api.jar"
msgstr ""
#. Tag: para
#: Security.xml:2920
#, no-c-format
-msgid "drools-core.jar"
+msgid "drools-compiler.jar"
msgstr ""
#. Tag: para
#: Security.xml:2923
#, no-c-format
-msgid "janino.jar"
+msgid "drools-core.jar"
msgstr ""
#. Tag: para
#: Security.xml:2926
#, no-c-format
-msgid "antlr-runtime.jar"
+msgid "janino.jar"
msgstr ""
#. Tag: para
#: Security.xml:2929
#, no-c-format
-msgid "mvel14.jar"
+msgid "antlr-runtime.jar"
msgstr ""
+#. Tag: para
+#: Security.xml:2932
+#, no-c-format
+msgid "mvel2.jar"
+msgstr ""
+
#. Tag: title
-#: Security.xml:2936 Security.xml:3128
+#: Security.xml:2939 Security.xml:3131
#, no-c-format
msgid "Configuration"
msgstr ""
#. Tag: para
-#: Security.xml:2938
+#: Security.xml:2941
#, no-c-format
msgid ""
"The configuration for <literal>RuleBasedPermissionResolver</literal> "
@@ -4030,7 +4036,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:2944
+#: Security.xml:2947
#, no-c-format
msgid ""
"<![CDATA[<components xmlns=\"http://jboss.com/products/seam/components\"\n"
@@ -4058,7 +4064,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2946
+#: Security.xml:2949
#, no-c-format
msgid ""
"The default rule base name can be overridden by specifying the "
@@ -4067,7 +4073,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:2951
+#: Security.xml:2954
#, no-c-format
msgid ""
"<![CDATA[\n"
@@ -4076,7 +4082,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2953
+#: Security.xml:2956
#, no-c-format
msgid ""
"Once the <literal>RuleBase</literal> component is configured, it's time to "
@@ -4084,13 +4090,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:2959
+#: Security.xml:2962
#, no-c-format
msgid "Writing Security Rules"
msgstr ""
#. Tag: para
-#: Security.xml:2961
+#: Security.xml:2964
#, no-c-format
msgid ""
"The first step to writing security rules is to create a new rule file in the "
@@ -4101,7 +4107,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2968
+#: Security.xml:2971
#, no-c-format
msgid ""
"So what should the security rules file contain? At this stage it might be a "
@@ -4110,7 +4116,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:2973
+#: Security.xml:2976
#, no-c-format
msgid ""
"<![CDATA[package MyApplicationPermissions;\n"
@@ -4128,7 +4134,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2975
+#: Security.xml:2978
#, no-c-format
msgid ""
"Let's break this down step by step. The first thing we see is the package "
@@ -4138,7 +4144,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2981
+#: Security.xml:2984
#, no-c-format
msgid ""
"The next thing we can notice is a couple of import statements for the "
@@ -4148,7 +4154,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2987
+#: Security.xml:2990
#, no-c-format
msgid ""
"Finally we have the code for the rule. Each rule within a package should be "
@@ -4158,7 +4164,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2993
+#: Security.xml:2996
#, no-c-format
msgid ""
"Looking at the body of the rule definition we can notice two distinct "
@@ -4173,7 +4179,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3002
+#: Security.xml:3005
#, no-c-format
msgid ""
"If we look at the LHS of the rule, we see two conditions listed there. Let's "
@@ -4181,14 +4187,14 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3006
+#: Security.xml:3009
#, no-c-format
msgid ""
"<![CDATA[c: PermissionCheck(target == \"customer\", action == \"delete\")]]>"
msgstr ""
#. Tag: para
-#: Security.xml:3008
+#: Security.xml:3011
#, no-c-format
msgid ""
"In plain english, this condition is stating that there must exist a "
@@ -4198,7 +4204,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3014
+#: Security.xml:3017
#, no-c-format
msgid ""
"So what is the working memory? Also known as a \"stateful session\" in "
@@ -4216,7 +4222,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3026
+#: Security.xml:3029
#, no-c-format
msgid ""
"Besides the <literal>PermissionCheck</literal> facts, there is also a "
@@ -4233,7 +4239,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3037
+#: Security.xml:3040
#, no-c-format
msgid ""
"It is also possible to insert additional long-lived facts into the working "
@@ -4244,7 +4250,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3044
+#: Security.xml:3047
#, no-c-format
msgid ""
"Getting back to our simple example, we can also notice that the first line "
@@ -4255,13 +4261,13 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3051
+#: Security.xml:3054
#, no-c-format
msgid "<![CDATA[Role(name == \"admin\")]]>"
msgstr ""
#. Tag: para
-#: Security.xml:3053
+#: Security.xml:3056
#, no-c-format
msgid ""
"This condition simply states that there must be a <literal>Role</literal> "
@@ -4274,7 +4280,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3061
+#: Security.xml:3064
#, no-c-format
msgid ""
"So what is the consequence of the rule firing? Let's take a look at the RHS "
@@ -4282,13 +4288,13 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3065
+#: Security.xml:3068
#, no-c-format
msgid "<![CDATA[c.grant()]]>"
msgstr ""
#. Tag: para
-#: Security.xml:3067
+#: Security.xml:3070
#, no-c-format
msgid ""
"The RHS consists of Java code, and in this case is invoking the "
@@ -4305,13 +4311,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3081
+#: Security.xml:3084
#, no-c-format
msgid "Non-String permission targets"
msgstr ""
#. Tag: para
-#: Security.xml:3083
+#: Security.xml:3086
#, no-c-format
msgid ""
"So far we have only seen permission checks for String-literal permission "
@@ -4325,7 +4331,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3092
+#: Security.xml:3095
#, no-c-format
msgid ""
"<![CDATA[rule CanCreateBlogComment\n"
@@ -4343,13 +4349,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3097
+#: Security.xml:3100
#, no-c-format
msgid "Wildcard permission checks"
msgstr ""
#. Tag: para
-#: Security.xml:3099
+#: Security.xml:3102
#, no-c-format
msgid ""
"It is possible to implement a wildcard permission check (which allows all "
@@ -4359,7 +4365,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3105
+#: Security.xml:3108
#, no-c-format
msgid ""
"<![CDATA[rule CanDoAnythingToCustomersIfYouAreAnAdmin\n"
@@ -4373,7 +4379,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3107
+#: Security.xml:3110
#, no-c-format
msgid ""
"This rule allows users with the <literal>admin</literal> role to perform "
@@ -4382,13 +4388,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3117
+#: Security.xml:3120
#, no-c-format
msgid "PersistentPermissionResolver"
msgstr ""
#. Tag: para
-#: Security.xml:3119
+#: Security.xml:3122
#, no-c-format
msgid ""
"Another built-in permission resolver provided by Seam, "
@@ -4401,7 +4407,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3130
+#: Security.xml:3133
#, no-c-format
msgid ""
"Before it can be used, <literal>PersistentPermissionResolver</literal> must "
@@ -4414,7 +4420,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3138
+#: Security.xml:3141
#, no-c-format
msgid ""
"<![CDATA[ <security:persistent-permission-resolver permission-store=\"#"
@@ -4422,13 +4428,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3143
+#: Security.xml:3146
#, no-c-format
msgid "Permission Stores"
msgstr ""
#. Tag: para
-#: Security.xml:3145
+#: Security.xml:3148
#, no-c-format
msgid ""
"A permission store is required for <literal>PersistentPermissionResolver</"
@@ -4441,26 +4447,26 @@
msgstr ""
#. Tag: title
-#: Security.xml:3155
+#: Security.xml:3158
#, no-c-format
msgid "PermissionStore interface"
msgstr ""
#. Tag: literal
-#: Security.xml:3181 Security.xml:3200 Security.xml:3219 Security.xml:3802
-#: Security.xml:3821
+#: Security.xml:3184 Security.xml:3203 Security.xml:3222 Security.xml:3805
+#: Security.xml:3824
#, no-c-format
msgid "List<Permission>"
msgstr ""
#. Tag: literal
-#: Security.xml:3186 Security.xml:3826
+#: Security.xml:3189 Security.xml:3829
#, no-c-format
msgid "listPermissions(Object target)"
msgstr ""
#. Tag: para
-#: Security.xml:3190
+#: Security.xml:3193
#, no-c-format
msgid ""
"This method should return a <literal>List</literal> of <literal>Permission</"
@@ -4469,13 +4475,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3205 Security.xml:3807
+#: Security.xml:3208 Security.xml:3810
#, no-c-format
msgid "listPermissions(Object target, String action)"
msgstr ""
#. Tag: para
-#: Security.xml:3209
+#: Security.xml:3212
#, no-c-format
msgid ""
"This method should return a <literal>List</literal> of <literal>Permission</"
@@ -4484,13 +4490,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3224
+#: Security.xml:3227
#, no-c-format
msgid "listPermissions(Set<Object> targets, String action)"
msgstr ""
#. Tag: para
-#: Security.xml:3228
+#: Security.xml:3231
#, no-c-format
msgid ""
"This method should return a <literal>List</literal> of <literal>Permission</"
@@ -4499,13 +4505,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3244
+#: Security.xml:3247
#, no-c-format
msgid "grantPermission(Permission)"
msgstr ""
#. Tag: para
-#: Security.xml:3248
+#: Security.xml:3251
#, no-c-format
msgid ""
"This method should persist the specified <literal>Permission</literal> "
@@ -4513,13 +4519,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3263 Security.xml:3864
+#: Security.xml:3266 Security.xml:3867
#, no-c-format
msgid "grantPermissions(List<Permission> permissions)"
msgstr ""
#. Tag: para
-#: Security.xml:3267
+#: Security.xml:3270
#, no-c-format
msgid ""
"This method should persist all of the <literal>Permission</literal> objects "
@@ -4528,13 +4534,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3282 Security.xml:3883
+#: Security.xml:3285 Security.xml:3886
#, no-c-format
msgid "revokePermission(Permission permission)"
msgstr ""
#. Tag: para
-#: Security.xml:3286
+#: Security.xml:3289
#, no-c-format
msgid ""
"This method should remove the specified <literal>Permission</literal> object "
@@ -4542,13 +4548,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3300 Security.xml:3902
+#: Security.xml:3303 Security.xml:3905
#, no-c-format
msgid "revokePermissions(List<Permission> permissions)"
msgstr ""
#. Tag: para
-#: Security.xml:3304
+#: Security.xml:3307
#, no-c-format
msgid ""
"This method should remove all of the <literal>Permission</literal> objects "
@@ -4556,19 +4562,19 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3314 Security.xml:3916
+#: Security.xml:3317 Security.xml:3919
#, no-c-format
msgid "List<String>"
msgstr ""
#. Tag: literal
-#: Security.xml:3319 Security.xml:3921
+#: Security.xml:3322 Security.xml:3924
#, no-c-format
msgid "listAvailableActions(Object target)"
msgstr ""
#. Tag: para
-#: Security.xml:3323
+#: Security.xml:3326
#, no-c-format
msgid ""
"This method should return a list of all the available actions (as Strings) "
@@ -4578,13 +4584,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3337
+#: Security.xml:3340
#, no-c-format
msgid "JpaPermissionStore"
msgstr ""
#. Tag: para
-#: Security.xml:3339
+#: Security.xml:3342
#, no-c-format
msgid ""
"This is the default <literal>PermissionStore</literal> implementation (and "
@@ -4597,7 +4603,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3347
+#: Security.xml:3350
#, no-c-format
msgid ""
"If you wish to use the same entity (i.e. a single database table) to store "
@@ -4609,7 +4615,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3354
+#: Security.xml:3357
#, no-c-format
msgid ""
"For example, to configure a single entity class to store both user and role "
@@ -4617,7 +4623,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3356
+#: Security.xml:3359
#, no-c-format
msgid ""
"<![CDATA[ <security:jpa-permission-store user-permission-class=\"com.acme."
@@ -4625,14 +4631,14 @@
msgstr ""
#. Tag: para
-#: Security.xml:3358
+#: Security.xml:3361
#, no-c-format
msgid ""
"To configure separate entity classes for storing user and role permissions:"
msgstr ""
#. Tag: programlisting
-#: Security.xml:3360
+#: Security.xml:3363
#, no-c-format
msgid ""
"<![CDATA[ <security:jpa-permission-store user-permission-class=\"com.acme."
@@ -4641,13 +4647,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3363
+#: Security.xml:3366
#, no-c-format
msgid "Permission annotations"
msgstr ""
#. Tag: para
-#: Security.xml:3365
+#: Security.xml:3368
#, no-c-format
msgid ""
"As mentioned, the entity classes that contain the user and role permissions "
@@ -4658,32 +4664,32 @@
msgstr ""
#. Tag: title
-#: Security.xml:3372
+#: Security.xml:3375
#, no-c-format
msgid "Entity Permission annotations"
msgstr ""
#. Tag: para
-#: Security.xml:3385 Security.xml:3548
+#: Security.xml:3388 Security.xml:3551
#, no-c-format
msgid "Target"
msgstr ""
#. Tag: literal
-#: Security.xml:3398
+#: Security.xml:3401
#, no-c-format
msgid "@PermissionTarget"
msgstr ""
#. Tag: literal
-#: Security.xml:3403 Security.xml:3422 Security.xml:3441 Security.xml:3460
-#: Security.xml:3479
+#: Security.xml:3406 Security.xml:3425 Security.xml:3444 Security.xml:3463
+#: Security.xml:3482
#, no-c-format
msgid "FIELD,METHOD"
msgstr ""
#. Tag: para
-#: Security.xml:3407
+#: Security.xml:3410
#, no-c-format
msgid ""
"This annotation identifies the property of the entity that will contain the "
@@ -4692,13 +4698,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3417
+#: Security.xml:3420
#, no-c-format
msgid "@PermissionAction"
msgstr ""
#. Tag: para
-#: Security.xml:3426
+#: Security.xml:3429
#, no-c-format
msgid ""
"This annotation identifies the property of the entity that will contain the "
@@ -4707,13 +4713,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3436
+#: Security.xml:3439
#, no-c-format
msgid "@PermissionUser"
msgstr ""
#. Tag: para
-#: Security.xml:3445
+#: Security.xml:3448
#, no-c-format
msgid ""
"This annotation identifies the property of the entity that will contain the "
@@ -4722,13 +4728,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3455
+#: Security.xml:3458
#, no-c-format
msgid "@PermissionRole"
msgstr ""
#. Tag: para
-#: Security.xml:3464
+#: Security.xml:3467
#, no-c-format
msgid ""
"This annotation identifies the property of the entity that will contain the "
@@ -4737,13 +4743,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3474
+#: Security.xml:3477
#, no-c-format
msgid "@PermissionDiscriminator"
msgstr ""
#. Tag: para
-#: Security.xml:3483
+#: Security.xml:3486
#, no-c-format
msgid ""
"This annotation should be used when the same entity/table is used to store "
@@ -4760,20 +4766,20 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3493
+#: Security.xml:3496
#, no-c-format
msgid ""
"<![CDATA[ @PermissionDiscriminator(userValue = \"u\", roleValue = \"r\")]]>"
msgstr ""
#. Tag: title
-#: Security.xml:3504
+#: Security.xml:3507
#, no-c-format
msgid "Example Entity"
msgstr ""
#. Tag: para
-#: Security.xml:3506
+#: Security.xml:3509
#, no-c-format
msgid ""
"Here is an example of an entity class that is used to store both user and "
@@ -4782,7 +4788,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3511
+#: Security.xml:3514
#, no-c-format
msgid ""
"<![CDATA[\n"
@@ -4843,7 +4849,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3513
+#: Security.xml:3516
#, no-c-format
msgid ""
"As can be seen in the above example, the <literal>getDiscriminator()</"
@@ -4860,13 +4866,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3526
+#: Security.xml:3529
#, no-c-format
msgid "Class-specific Permission Configuration"
msgstr ""
#. Tag: para
-#: Security.xml:3528
+#: Security.xml:3531
#, no-c-format
msgid ""
"A further set of class-specific annotations can be used to configure a "
@@ -4876,25 +4882,25 @@
msgstr ""
#. Tag: title
-#: Security.xml:3535
+#: Security.xml:3538
#, no-c-format
msgid "Class Permission Annotations"
msgstr ""
#. Tag: literal
-#: Security.xml:3561
+#: Security.xml:3564
#, no-c-format
msgid "@Permissions"
msgstr ""
#. Tag: literal
-#: Security.xml:3566 Security.xml:3584
+#: Security.xml:3569 Security.xml:3587
#, no-c-format
msgid "TYPE"
msgstr ""
#. Tag: para
-#: Security.xml:3570
+#: Security.xml:3573
#, no-c-format
msgid ""
"A container annotation, this annotation may contain an array of "
@@ -4902,13 +4908,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3579
+#: Security.xml:3582
#, no-c-format
msgid "@Permission"
msgstr ""
#. Tag: para
-#: Security.xml:3588
+#: Security.xml:3591
#, no-c-format
msgid ""
"This annotation defines a single allowable permission action for the target "
@@ -4919,7 +4925,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3600
+#: Security.xml:3603
#, no-c-format
msgid ""
"Here's an example of the above annotations in action. The following class "
@@ -4927,7 +4933,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3604
+#: Security.xml:3607
#, no-c-format
msgid ""
"<![CDATA[@Permissions({\n"
@@ -4939,7 +4945,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3606
+#: Security.xml:3609
#, no-c-format
msgid ""
"This example demonstrates how two allowable permission actions, "
@@ -4948,13 +4954,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3614
+#: Security.xml:3617
#, no-c-format
msgid "Permission masks"
msgstr ""
#. Tag: para
-#: Security.xml:3616
+#: Security.xml:3619
#, no-c-format
msgid ""
"By default, multiple permissions for the same target object and recipient "
@@ -4966,7 +4972,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3623
+#: Security.xml:3626
#, no-c-format
msgid ""
"For example, if recipient \"Bob\" is granted both the <literal>view</"
@@ -4979,7 +4985,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3630
+#: Security.xml:3633
#, no-c-format
msgid ""
"<![CDATA[@Permissions({\n"
@@ -4991,7 +4997,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3632
+#: Security.xml:3635
#, no-c-format
msgid ""
"The <literal>action</literal> property will instead simply contain \"3"
@@ -5001,7 +5007,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3638
+#: Security.xml:3641
#, no-c-format
msgid ""
"Obviously, it is very important that the <literal>mask</literal> values "
@@ -5009,13 +5015,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3644
+#: Security.xml:3647
#, no-c-format
msgid "Identifier Policy"
msgstr ""
#. Tag: para
-#: Security.xml:3646
+#: Security.xml:3649
#, no-c-format
msgid ""
"When storing or looking up permissions, <literal>JpaPermissionStore</"
@@ -5029,7 +5035,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3654
+#: Security.xml:3657
#, no-c-format
msgid ""
"The <literal>IdentifierStrategy</literal> interface is very simple, "
@@ -5037,7 +5043,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3658
+#: Security.xml:3661
#, no-c-format
msgid ""
"<![CDATA[public interface IdentifierStrategy {\n"
@@ -5047,7 +5053,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3660
+#: Security.xml:3663
#, no-c-format
msgid ""
"The first method, <literal>canIdentify()</literal> simply returns "
@@ -5058,7 +5064,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3666
+#: Security.xml:3669
#, no-c-format
msgid ""
"Seam provides two <literal>IdentifierStrategy</literal> implementations, "
@@ -5067,7 +5073,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3671
+#: Security.xml:3674
#, no-c-format
msgid ""
"To explicitly configure a specific identifier strategy to use for a "
@@ -5080,13 +5086,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3681
+#: Security.xml:3684
#, no-c-format
msgid "ClassIdentifierStrategy"
msgstr ""
#. Tag: para
-#: Security.xml:3683
+#: Security.xml:3686
#, no-c-format
msgid ""
"This identifier strategy is used to generate unique identifiers for classes, "
@@ -5100,7 +5106,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3692
+#: Security.xml:3695
#, no-c-format
msgid ""
"<![CDATA[@Identifier(name = \"customer\")\n"
@@ -5108,7 +5114,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3694
+#: Security.xml:3697
#, no-c-format
msgid ""
"The identifier for the following class will be \"<literal>customerAction</"
@@ -5116,7 +5122,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3698
+#: Security.xml:3701
#, no-c-format
msgid ""
"<![CDATA[@Name(\"customerAction\")\n"
@@ -5124,7 +5130,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3700
+#: Security.xml:3703
#, no-c-format
msgid ""
"Finally, the identifier for the following class will be \"<literal>Customer</"
@@ -5132,19 +5138,19 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3704
+#: Security.xml:3707
#, no-c-format
msgid "<![CDATA[public class Customer { ]]>"
msgstr ""
#. Tag: title
-#: Security.xml:3709
+#: Security.xml:3712
#, no-c-format
msgid "EntityIdentifierStrategy"
msgstr ""
#. Tag: para
-#: Security.xml:3711
+#: Security.xml:3714
#, no-c-format
msgid ""
"This identifier strategy is used to generate unique identifiers for entity "
@@ -5161,7 +5167,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3722
+#: Security.xml:3725
#, no-c-format
msgid ""
"<![CDATA[@Identifier(value = EntityIdentifierStrategy.class)\n"
@@ -5169,7 +5175,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3724
+#: Security.xml:3727
#, no-c-format
msgid ""
"For an example of the type of identifier values generated, assume we have "
@@ -5177,7 +5183,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3728
+#: Security.xml:3731
#, no-c-format
msgid ""
"<![CDATA[@Entity\n"
@@ -5200,7 +5206,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3730
+#: Security.xml:3733
#, no-c-format
msgid ""
"For a <literal>Customer</literal> instance with an <literal>id</literal> "
@@ -5210,7 +5216,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3736
+#: Security.xml:3739
#, no-c-format
msgid ""
"<![CDATA[@Entity\n"
@@ -5219,7 +5225,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3738
+#: Security.xml:3741
#, no-c-format
msgid ""
"Then a <literal>Customer</literal> with an <literal>id</literal> value of "
@@ -5228,13 +5234,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3751
+#: Security.xml:3754
#, no-c-format
msgid "Permission Management"
msgstr ""
#. Tag: para
-#: Security.xml:3753
+#: Security.xml:3756
#, no-c-format
msgid ""
"In much the same way that Seam Security provides an Identity Management API "
@@ -5244,13 +5250,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3760
+#: Security.xml:3763
#, no-c-format
msgid "PermissionManager"
msgstr ""
#. Tag: para
-#: Security.xml:3762
+#: Security.xml:3765
#, no-c-format
msgid ""
"The <literal>PermissionManager</literal> component is an application-scoped "
@@ -5263,7 +5269,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3769
+#: Security.xml:3772
#, no-c-format
msgid ""
"<![CDATA[\n"
@@ -5273,7 +5279,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3771
+#: Security.xml:3774
#, no-c-format
msgid ""
"The following table describes each of the available methods provided by "
@@ -5281,13 +5287,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3776
+#: Security.xml:3779
#, no-c-format
msgid "PermissionManager API methods"
msgstr ""
#. Tag: para
-#: Security.xml:3811 Security.xml:3830
+#: Security.xml:3814 Security.xml:3833
#, no-c-format
msgid ""
"Returns a list of <literal>Permission</literal> objects representing all of "
@@ -5295,13 +5301,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3845
+#: Security.xml:3848
#, no-c-format
msgid "grantPermission(Permission permission)"
msgstr ""
#. Tag: para
-#: Security.xml:3849
+#: Security.xml:3852
#, no-c-format
msgid ""
"Persists (grants) the specified <literal>Permission</literal> to the backend "
@@ -5309,7 +5315,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3868
+#: Security.xml:3871
#, no-c-format
msgid ""
"Persists (grants) the specified list of <literal>Permission</literal>s to "
@@ -5317,7 +5323,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3887
+#: Security.xml:3890
#, no-c-format
msgid ""
"Removes (revokes) the specified <literal>Permission</literal> from the "
@@ -5325,7 +5331,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3906
+#: Security.xml:3909
#, no-c-format
msgid ""
"Removes (revokes) the specified list of <literal>Permission</literal>s from "
@@ -5333,7 +5339,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3925
+#: Security.xml:3928
#, no-c-format
msgid ""
"Returns a list of the available actions for the specified target object. The "
@@ -5342,13 +5348,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3940
+#: Security.xml:3943
#, no-c-format
msgid "Permission checks for PermissionManager operations"
msgstr ""
#. Tag: para
-#: Security.xml:3942
+#: Security.xml:3945
#, no-c-format
msgid ""
"Invoking the methods of <literal>PermissionManager</literal> requires that "
@@ -5358,37 +5364,37 @@
msgstr ""
#. Tag: title
-#: Security.xml:3949
+#: Security.xml:3952
#, no-c-format
msgid "Permission Management Security Permissions"
msgstr ""
#. Tag: literal
-#: Security.xml:3973
+#: Security.xml:3976
#, no-c-format
msgid "listPermissions()"
msgstr ""
#. Tag: para
-#: Security.xml:3977
+#: Security.xml:3980
#, no-c-format
msgid "The specified <literal>target</literal>"
msgstr ""
#. Tag: literal
-#: Security.xml:3983
+#: Security.xml:3986
#, no-c-format
msgid "seam.read-permissions"
msgstr ""
#. Tag: literal
-#: Security.xml:3991 Security.xml:4011
+#: Security.xml:3994 Security.xml:4014
#, no-c-format
msgid "grantPermission()"
msgstr ""
#. Tag: para
-#: Security.xml:3995
+#: Security.xml:3998
#, no-c-format
msgid ""
"The target of the specified <literal>Permission</literal>, or each of the "
@@ -5397,56 +5403,56 @@
msgstr ""
#. Tag: literal
-#: Security.xml:4003 Security.xml:4021 Security.xml:4039
+#: Security.xml:4006 Security.xml:4024 Security.xml:4042
#, no-c-format
msgid "seam.grant-permission"
msgstr ""
#. Tag: para
-#: Security.xml:4015 Security.xml:4051
+#: Security.xml:4018 Security.xml:4054
#, no-c-format
msgid "The target of the specified <literal>Permission</literal>."
msgstr ""
#. Tag: literal
-#: Security.xml:4029
+#: Security.xml:4032
#, no-c-format
msgid "grantPermissions()"
msgstr ""
#. Tag: para
-#: Security.xml:4033 Security.xml:4069
+#: Security.xml:4036 Security.xml:4072
#, no-c-format
msgid ""
"Each of the targets of the specified list of <literal>Permission</literal>s."
msgstr ""
#. Tag: literal
-#: Security.xml:4047
+#: Security.xml:4050
#, no-c-format
msgid "revokePermission()"
msgstr ""
#. Tag: literal
-#: Security.xml:4057 Security.xml:4075
+#: Security.xml:4060 Security.xml:4078
#, no-c-format
msgid "seam.revoke-permission"
msgstr ""
#. Tag: literal
-#: Security.xml:4065
+#: Security.xml:4068
#, no-c-format
msgid "revokePermissions()"
msgstr ""
#. Tag: title
-#: Security.xml:4088
+#: Security.xml:4091
#, no-c-format
msgid "SSL Security"
msgstr ""
#. Tag: para
-#: Security.xml:4090
+#: Security.xml:4093
#, no-c-format
msgid ""
"Seam includes basic support for serving sensitive pages via the HTTPS "
@@ -5457,13 +5463,13 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4097
+#: Security.xml:4100
#, no-c-format
msgid "<![CDATA[<page view-id=\"/login.xhtml\" scheme=\"https\"/>]]>"
msgstr ""
#. Tag: para
-#: Security.xml:4099
+#: Security.xml:4102
#, no-c-format
msgid ""
"This configuration is automatically extended to both <literal>s:link</"
@@ -5475,13 +5481,13 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4106
+#: Security.xml:4109
#, no-c-format
msgid "<![CDATA[<s:link view=\"/login.xhtml\" value=\"Login\"/>]]>"
msgstr ""
#. Tag: para
-#: Security.xml:4108
+#: Security.xml:4111
#, no-c-format
msgid ""
"Browsing directly to a view when using the <emphasis>incorrect</emphasis> "
@@ -5492,7 +5498,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4115
+#: Security.xml:4118
#, no-c-format
msgid ""
"It is also possible to configure a <emphasis>default scheme</emphasis> for "
@@ -5506,13 +5512,13 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4124
+#: Security.xml:4127
#, no-c-format
msgid "<![CDATA[<page view-id=\"*\" scheme=\"http\" />]]>"
msgstr ""
#. Tag: para
-#: Security.xml:4126
+#: Security.xml:4129
#, no-c-format
msgid ""
"Of course, if <emphasis>none</emphasis> of the pages in your application use "
@@ -5520,7 +5526,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4131
+#: Security.xml:4134
#, no-c-format
msgid ""
"You may configure Seam to automatically invalidate the current HTTP session "
@@ -5529,13 +5535,13 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4136
+#: Security.xml:4139
#, no-c-format
msgid "<![CDATA[<web:session invalidate-on-scheme-change=\"true\"/>]]>"
msgstr ""
#. Tag: para
-#: Security.xml:4138
+#: Security.xml:4141
#, no-c-format
msgid ""
"This option helps make your system less vulnerable to sniffing of the "
@@ -5544,13 +5550,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4144
+#: Security.xml:4147
#, no-c-format
msgid "Overriding the default ports"
msgstr ""
#. Tag: para
-#: Security.xml:4146
+#: Security.xml:4149
#, no-c-format
msgid ""
"If you wish to configure the HTTP and HTTPS ports manually, they may be "
@@ -5560,7 +5566,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4152
+#: Security.xml:4155
#, no-c-format
msgid ""
"<![CDATA[\n"
@@ -5576,13 +5582,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4158
+#: Security.xml:4161
#, no-c-format
msgid "CAPTCHA"
msgstr ""
#. Tag: para
-#: Security.xml:4160
+#: Security.xml:4163
#, no-c-format
msgid ""
"Though strictly not part of the security API, Seam provides a built-in "
@@ -5594,13 +5600,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4168
+#: Security.xml:4171
#, no-c-format
msgid "Configuring the CAPTCHA Servlet"
msgstr ""
#. Tag: para
-#: Security.xml:4169
+#: Security.xml:4172
#, no-c-format
msgid ""
"To get up and running, it is necessary to configure the Seam Resource "
@@ -5609,7 +5615,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4174
+#: Security.xml:4177
#, no-c-format
msgid ""
"<![CDATA[<servlet>\n"
@@ -5625,20 +5631,20 @@
msgstr ""
#. Tag: title
-#: Security.xml:4179
+#: Security.xml:4182
#, no-c-format
msgid "Adding a CAPTCHA to a form"
msgstr ""
#. Tag: para
-#: Security.xml:4181
+#: Security.xml:4184
#, no-c-format
msgid ""
"Adding a CAPTCHA challenge to a form is extremely easy. Here's an example:"
msgstr ""
#. Tag: programlisting
-#: Security.xml:4185
+#: Security.xml:4188
#, no-c-format
msgid ""
"<![CDATA[<h:graphicImage value=\"/seam/resource/captcha\"/>\n"
@@ -5650,7 +5656,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4187
+#: Security.xml:4190
#, no-c-format
msgid ""
"That's all there is to it. The <literal>graphicImage</literal> control "
@@ -5660,20 +5666,20 @@
msgstr ""
#. Tag: title
-#: Security.xml:4196
+#: Security.xml:4199
#, no-c-format
msgid "Customising the CAPTCHA algorithm"
msgstr ""
#. Tag: para
-#: Security.xml:4198
+#: Security.xml:4201
#, no-c-format
msgid ""
"You may customize the CAPTCHA algorithm by overriding the built-in component:"
msgstr ""
#. Tag: programlisting
-#: Security.xml:4202
+#: Security.xml:4205
#, no-c-format
msgid ""
"<![CDATA[@Name(\"org.jboss.seam.captcha.captcha\")\n"
@@ -5700,13 +5706,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4209 Security.xml:4217
+#: Security.xml:4212 Security.xml:4220
#, no-c-format
msgid "Security Events"
msgstr ""
#. Tag: para
-#: Security.xml:4211
+#: Security.xml:4214
#, no-c-format
msgid ""
"The following table describes a number of events (see <xref linkend=\"events"
@@ -5714,68 +5720,68 @@
msgstr ""
#. Tag: para
-#: Security.xml:4226
+#: Security.xml:4229
#, no-c-format
msgid "Event Key"
msgstr ""
#. Tag: literal
-#: Security.xml:4239
+#: Security.xml:4242
#, no-c-format
msgid "org.jboss.seam.security.loginSuccessful"
msgstr ""
#. Tag: para
-#: Security.xml:4243
+#: Security.xml:4246
#, no-c-format
msgid "Raised when a login attempt is successful."
msgstr ""
#. Tag: literal
-#: Security.xml:4251
+#: Security.xml:4254
#, no-c-format
msgid "org.jboss.seam.security.loginFailed"
msgstr ""
#. Tag: para
-#: Security.xml:4255
+#: Security.xml:4258
#, no-c-format
msgid "Raised when a login attempt fails."
msgstr ""
#. Tag: literal
-#: Security.xml:4263
+#: Security.xml:4266
#, no-c-format
msgid "org.jboss.seam.security.alreadyLoggedIn"
msgstr ""
#. Tag: para
-#: Security.xml:4267
+#: Security.xml:4270
#, no-c-format
msgid ""
"Raised when a user that is already authenticated attempts to log in again."
msgstr ""
#. Tag: literal
-#: Security.xml:4275
+#: Security.xml:4278
#, no-c-format
msgid "org.jboss.seam.security.notLoggedIn"
msgstr ""
#. Tag: para
-#: Security.xml:4279
+#: Security.xml:4282
#, no-c-format
msgid "Raised when a security check fails when the user is not logged in."
msgstr ""
#. Tag: literal
-#: Security.xml:4287
+#: Security.xml:4290
#, no-c-format
msgid "org.jboss.seam.security.notAuthorized"
msgstr ""
#. Tag: para
-#: Security.xml:4291
+#: Security.xml:4294
#, no-c-format
msgid ""
"Raised when a security check fails when the user is logged in however "
@@ -5783,73 +5789,73 @@
msgstr ""
#. Tag: literal
-#: Security.xml:4299
+#: Security.xml:4302
#, no-c-format
msgid "org.jboss.seam.security.preAuthenticate"
msgstr ""
#. Tag: para
-#: Security.xml:4303
+#: Security.xml:4306
#, no-c-format
msgid "Raised just prior to user authentication."
msgstr ""
#. Tag: literal
-#: Security.xml:4311
+#: Security.xml:4314
#, no-c-format
msgid "org.jboss.seam.security.postAuthenticate"
msgstr ""
#. Tag: para
-#: Security.xml:4315
+#: Security.xml:4318
#, no-c-format
msgid "Raised just after user authentication."
msgstr ""
#. Tag: literal
-#: Security.xml:4323
+#: Security.xml:4326
#, no-c-format
msgid "org.jboss.seam.security.loggedOut"
msgstr ""
#. Tag: para
-#: Security.xml:4327
+#: Security.xml:4330
#, no-c-format
msgid "Raised after the user has logged out."
msgstr ""
#. Tag: literal
-#: Security.xml:4335
+#: Security.xml:4338
#, no-c-format
msgid "org.jboss.seam.security.credentialsUpdated"
msgstr ""
#. Tag: para
-#: Security.xml:4339
+#: Security.xml:4342
#, no-c-format
msgid "Raised when the user's credentials have been changed."
msgstr ""
#. Tag: literal
-#: Security.xml:4347
+#: Security.xml:4350
#, no-c-format
msgid "org.jboss.seam.security.rememberMe"
msgstr ""
#. Tag: para
-#: Security.xml:4351
+#: Security.xml:4354
#, no-c-format
msgid "Raised when the Identity's rememberMe property is changed."
msgstr ""
#. Tag: title
-#: Security.xml:4364
+#: Security.xml:4367
#, no-c-format
msgid "Run As"
msgstr ""
#. Tag: para
-#: Security.xml:4366
+#: Security.xml:4369
#, no-c-format
msgid ""
"Sometimes it may be necessary to perform certain operations with elevated "
@@ -5861,7 +5867,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4374
+#: Security.xml:4377
#, no-c-format
msgid ""
"The following code example demonstrates how <literal>RunAsOperation</"
@@ -5872,7 +5878,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4381
+#: Security.xml:4384
#, no-c-format
msgid ""
"<![CDATA[ new RunAsOperation() { \n"
@@ -5884,7 +5890,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4383
+#: Security.xml:4386
#, no-c-format
msgid ""
"In a similar way, the <literal>getPrincipal()</literal> or "
@@ -5895,13 +5901,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4394
+#: Security.xml:4397
#, no-c-format
msgid "Extending the Identity component"
msgstr ""
#. Tag: para
-#: Security.xml:4396
+#: Security.xml:4399
#, no-c-format
msgid ""
"Sometimes it might be necessary to extend the Identity component if your "
@@ -5914,7 +5920,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4404
+#: Security.xml:4407
#, no-c-format
msgid ""
"<![CDATA[@Name(\"org.jboss.seam.security.identity\")\n"
@@ -5949,7 +5955,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4407
+#: Security.xml:4410
#, no-c-format
msgid ""
"Note that an <literal>Identity</literal> component must be marked "
@@ -5959,13 +5965,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4419
+#: Security.xml:4422
#, no-c-format
msgid "OpenID"
msgstr ""
#. Tag: para
-#: Security.xml:4421
+#: Security.xml:4424
#, no-c-format
msgid ""
"OpenID is a community standard for external web-based authentication. The "
@@ -5978,7 +5984,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4430
+#: Security.xml:4433
#, no-c-format
msgid ""
"When using OpenID, the user selects an OpenID provider, and the provider "
@@ -5995,7 +6001,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4439
+#: Security.xml:4442
#, no-c-format
msgid ""
"It's important to realize at this point that authentication does not imply "
@@ -6008,13 +6014,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4449
+#: Security.xml:4452
#, no-c-format
msgid "Configuring OpenID"
msgstr ""
#. Tag: para
-#: Security.xml:4450
+#: Security.xml:4453
#, no-c-format
msgid ""
"Seam uses the openid4java package and requires four additional JARs to make "
@@ -6024,7 +6030,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4456
+#: Security.xml:4459
#, no-c-format
msgid ""
"OpenID processing requires the use of the <literal>OpenIdPhaseListener</"
@@ -6034,7 +6040,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4462
+#: Security.xml:4465
#, no-c-format
msgid ""
"<lifecycle>\n"
@@ -6044,7 +6050,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4465
+#: Security.xml:4468
#, no-c-format
msgid ""
"With this configuration, OpenID support is available to your application. "
@@ -6054,13 +6060,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4473
+#: Security.xml:4476
#, no-c-format
msgid "Presenting an OpenIdDLogin form"
msgstr ""
#. Tag: para
-#: Security.xml:4475
+#: Security.xml:4478
#, no-c-format
msgid ""
"To initiate an OpenID login, you can present a simply form to the user "
@@ -6070,7 +6076,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4480
+#: Security.xml:4483
#, no-c-format
msgid ""
"<h:form>\n"
@@ -6081,7 +6087,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4482
+#: Security.xml:4485
#, no-c-format
msgid ""
"When the user submits the login form, he will be redirected to his OpenID "
@@ -6093,13 +6099,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4491
+#: Security.xml:4494
#, no-c-format
msgid "Logging in immediately"
msgstr ""
#. Tag: para
-#: Security.xml:4493
+#: Security.xml:4496
#, no-c-format
msgid ""
"The simplest strategy is to simply login the user immediately. The following "
@@ -6108,7 +6114,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4497
+#: Security.xml:4500
#, no-c-format
msgid ""
"<page view-id="/openid.xhtml">\n"
@@ -6128,7 +6134,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4499
+#: Security.xml:4502
#, no-c-format
msgid ""
"Thie <literal>loginImmediately()</literal> action checks to see if the "
@@ -6142,13 +6148,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4510
+#: Security.xml:4513
#, no-c-format
msgid "Deferring login"
msgstr ""
#. Tag: para
-#: Security.xml:4512
+#: Security.xml:4515
#, no-c-format
msgid ""
"You may not want the user to be immediately logged in to your application. "
@@ -6165,13 +6171,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4526
+#: Security.xml:4529
#, no-c-format
msgid "Logging out"
msgstr ""
#. Tag: para
-#: Security.xml:4528
+#: Security.xml:4531
#, no-c-format
msgid ""
"Logging out (forgetting an OpenID association) is done by calling <literal>#"
@@ -6182,7 +6188,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4535
+#: Security.xml:4538
#, no-c-format
msgid ""
"<event type="org.jboss.seam.security.loggedOut">\n"
@@ -6191,7 +6197,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4537
+#: Security.xml:4540
#, no-c-format
msgid ""
"It's important that you do not leave this out or the user will not be able "
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/gu-IN/Dependencies.po
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/gu-IN/Dependencies.po 2009-06-11 20:41:36 UTC (rev 11125)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/gu-IN/Dependencies.po 2009-06-11 20:43:04 UTC (rev 11126)
@@ -5,7 +5,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-04-15 13:51+0000\n"
+"POT-Creation-Date: 2009-06-11 18:45+0000\n"
"PO-Revision-Date: 2008-04-04 01:24+0000\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -938,8 +938,8 @@
#: Dependencies.xml:1182
#, no-c-format
msgid ""
-"This sample POM will give you Seam, JPA (provided by Hibernate) and "
-"Hibernate Validator:"
+"This sample POM will give you Seam, JPA (provided by Hibernate), Hibernate "
+"Validator and Hibernate Search:"
msgstr ""
#. Tag: programlisting
@@ -970,25 +970,31 @@
" <dependency>\n"
" <groupId>org.hibernate</groupId>\n"
" <artifactId>hibernate-validator</artifactId>\n"
-" <version>3.0.0.GA</version>\n"
+" <version>3.1.0.GA</version>\n"
" </dependency>\n"
"\n"
" <dependency>\n"
" <groupId>org.hibernate</groupId>\n"
" <artifactId>hibernate-annotations</artifactId>\n"
-" <version>3.3.0.ga</version>\n"
+" <version>3.4.0.GA</version>\n"
" </dependency>\n"
"\n"
" <dependency>\n"
" <groupId>org.hibernate</groupId>\n"
" <artifactId>hibernate-entitymanager</artifactId>\n"
-" <version>3.3.1.ga</version>\n"
+" <version>3.4.0.GA</version>\n"
" </dependency>\n"
+" \n"
+" <dependency>\n"
+" <groupId>org.hibernate</groupId>\n"
+" <artifactId>hibernate-search</artifactId>\n"
+" <version>3.1.1.GA</version>\n"
+" </dependency>\n"
"\n"
" <dependency>\n"
" <groupId>org.jboss.seam</groupId>\n"
" <artifactId>jboss-seam</artifactId>\n"
-" <version>2.0.0.GA</version>\n"
+" <version>2.2.0.GA</version>\n"
" </dependency>\n"
" \n"
" </dependencies>\n"
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/gu-IN/Hsearch.po
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/gu-IN/Hsearch.po 2009-06-11 20:41:36 UTC (rev 11125)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/gu-IN/Hsearch.po 2009-06-11 20:43:04 UTC (rev 11126)
@@ -5,7 +5,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-04-15 13:51+0000\n"
+"POT-Creation-Date: 2009-06-11 18:45+0000\n"
"PO-Revision-Date: 2008-04-04 01:24+0000\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -45,7 +45,7 @@
#: Hsearch.xml:21
#, no-c-format
msgid ""
-"Hibernate Search has been designed to integrates nicely and as naturally as "
+"Hibernate Search has been designed to integrate nicely and as naturally as "
"possible with JPA and Hibernate. As a natural extension, JBoss Seam provides "
"an Hibernate Search integration."
msgstr ""
@@ -132,7 +132,7 @@
" <property name=\"hibernate.ejb.event.post-delete\" \n"
" value=\"org.hibernate.search.event.FullTextIndexEventListener"
"\"/>\n"
-"\n"
+" \n"
" </properties>\n"
"</persistence-unit>]]>"
msgstr ""
@@ -141,12 +141,15 @@
#: Hsearch.xml:52
#, no-c-format
msgid ""
-"This step is no longer necessary if Hibernate Annotation or EntityManager "
-"3.3.x are used."
+"It is not longer necessary the register the event listeners if Hibernate "
+"Annotations or EntityManager 3.3.x are used. When using Hibernate Search 3.1."
+"x more eventlisteners are needed, but these are registered automatically by "
+"Hibernate Annotations; refer to the Hibernate Search reference for "
+"configuring it without EntityManager and Annotations."
msgstr ""
#. Tag: para
-#: Hsearch.xml:56
+#: Hsearch.xml:60
#, no-c-format
msgid ""
"In addition to the configuration file, the following jars have to be "
@@ -154,25 +157,25 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:61
+#: Hsearch.xml:65
#, no-c-format
msgid "hibernate-search.jar"
msgstr ""
#. Tag: para
-#: Hsearch.xml:65
+#: Hsearch.xml:69
#, no-c-format
msgid "hibernate-commons-annotations.jar"
msgstr ""
#. Tag: para
-#: Hsearch.xml:69
+#: Hsearch.xml:73
#, no-c-format
msgid "lucene-core.jar"
msgstr ""
#. Tag: para
-#: Hsearch.xml:74
+#: Hsearch.xml:78
#, no-c-format
msgid ""
"If you deploy those in a EAR, don't forget to update <filename>application."
@@ -180,13 +183,13 @@
msgstr ""
#. Tag: title
-#: Hsearch.xml:80
+#: Hsearch.xml:84
#, no-c-format
msgid "Usage"
msgstr ""
#. Tag: para
-#: Hsearch.xml:82
+#: Hsearch.xml:86
#, no-c-format
msgid ""
"Hibernate Search uses annotations to map entities to a Lucene index, check "
@@ -195,7 +198,7 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:87
+#: Hsearch.xml:91
#, no-c-format
msgid ""
"Hibernate Search is fully integrated with the API and semantic of JPA / "
@@ -206,7 +209,7 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:93
+#: Hsearch.xml:97
#, no-c-format
msgid ""
"When Hibernate Search is present, JBoss Seam injects a "
@@ -214,7 +217,7 @@
msgstr ""
#. Tag: programlisting
-#: Hsearch.xml:96
+#: Hsearch.xml:100
#, no-c-format
msgid ""
"<![CDATA[@Stateful\n"
@@ -237,7 +240,7 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:99
+#: Hsearch.xml:103
#, no-c-format
msgid ""
"<classname>FullTextSession</classname> extends <classname>org.hibernate."
@@ -245,14 +248,14 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:104
+#: Hsearch.xml:108
#, no-c-format
msgid ""
"If the Java Persistence API is used, a smoother integration is proposed."
msgstr ""
#. Tag: programlisting
-#: Hsearch.xml:107
+#: Hsearch.xml:111
#, no-c-format
msgid ""
"<![CDATA[@Stateful\n"
@@ -275,7 +278,7 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:109
+#: Hsearch.xml:113
#, no-c-format
msgid ""
"When Hibernate Search is present, a <classname>FulltextEntityManager</"
@@ -286,7 +289,7 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:116
+#: Hsearch.xml:120
#, no-c-format
msgid ""
"When an EJB 3.0 Session or Message Driven Bean injection is used (i.e. via "
@@ -299,7 +302,7 @@
msgstr ""
#. Tag: programlisting
-#: Hsearch.xml:124
+#: Hsearch.xml:128
#, no-c-format
msgid ""
"<![CDATA[@Stateful\n"
@@ -323,15 +326,15 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:129
+#: Hsearch.xml:133
#, no-c-format
msgid ""
"For people accustomed to Hibernate Search out of Seam, note that using "
-"<methodname>Search.createFullTextSession</methodname> is not necessary."
+"<methodname>Search.getFullTextSession</methodname> is not necessary."
msgstr ""
#. Tag: para
-#: Hsearch.xml:134
+#: Hsearch.xml:138
#, no-c-format
msgid ""
"Check the DVDStore or the blog examples of the JBoss Seam distribution for a "
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/gu-IN/Security.po
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/gu-IN/Security.po 2009-06-11 20:41:36 UTC (rev 11125)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/gu-IN/Security.po 2009-06-11 20:43:04 UTC (rev 11126)
@@ -5,7 +5,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-06-11 07:43+0000\n"
+"POT-Creation-Date: 2009-06-11 18:45+0000\n"
"PO-Revision-Date: 2008-04-04 01:24+0000\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -1190,7 +1190,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:630 Security.xml:764 Security.xml:3382 Security.xml:3545
+#: Security.xml:630 Security.xml:764 Security.xml:3385 Security.xml:3548
#, no-c-format
msgid "Annotation"
msgstr ""
@@ -1203,8 +1203,8 @@
#. Tag: para
#: Security.xml:636 Security.xml:770 Security.xml:966 Security.xml:1418
-#: Security.xml:2147 Security.xml:2756 Security.xml:3171 Security.xml:3388
-#: Security.xml:3551 Security.xml:3792 Security.xml:4229
+#: Security.xml:2147 Security.xml:2756 Security.xml:3174 Security.xml:3391
+#: Security.xml:3554 Security.xml:3795 Security.xml:4232
#, no-c-format
msgid "Description"
msgstr ""
@@ -2228,8 +2228,8 @@
msgstr ""
#. Tag: para
-#: Security.xml:1412 Security.xml:1828 Security.xml:2753 Security.xml:3168
-#: Security.xml:3789 Security.xml:3958
+#: Security.xml:1412 Security.xml:1828 Security.xml:2753 Security.xml:3171
+#: Security.xml:3792 Security.xml:3961
#, no-c-format
msgid "Method"
msgstr ""
@@ -2250,9 +2250,9 @@
#: Security.xml:1433 Security.xml:1452 Security.xml:1471 Security.xml:1490
#: Security.xml:1509 Security.xml:1529 Security.xml:1548 Security.xml:1567
#: Security.xml:1586 Security.xml:1606 Security.xml:1626 Security.xml:1740
-#: Security.xml:1762 Security.xml:1780 Security.xml:2766 Security.xml:3239
-#: Security.xml:3258 Security.xml:3277 Security.xml:3295 Security.xml:3840
-#: Security.xml:3859 Security.xml:3878 Security.xml:3897
+#: Security.xml:1762 Security.xml:1780 Security.xml:2766 Security.xml:3242
+#: Security.xml:3261 Security.xml:3280 Security.xml:3298 Security.xml:3843
+#: Security.xml:3862 Security.xml:3881 Security.xml:3900
#, no-c-format
msgid "boolean"
msgstr ""
@@ -2558,13 +2558,13 @@
msgstr ""
#. Tag: para
-#: Security.xml:1831 Security.xml:3961
+#: Security.xml:1831 Security.xml:3964
#, no-c-format
msgid "Permission Target"
msgstr ""
#. Tag: para
-#: Security.xml:1834 Security.xml:3964
+#: Security.xml:1834 Security.xml:3967
#, no-c-format
msgid "Permission Action"
msgstr ""
@@ -3806,7 +3806,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2750 Security.xml:3165 Security.xml:3786
+#: Security.xml:2750 Security.xml:3168 Security.xml:3789
#, no-c-format
msgid "Return type"
msgstr ""
@@ -3986,41 +3986,47 @@
#. Tag: para
#: Security.xml:2917
#, no-c-format
-msgid "drools-compiler.jar"
+msgid "drools-api.jar"
msgstr ""
#. Tag: para
#: Security.xml:2920
#, no-c-format
-msgid "drools-core.jar"
+msgid "drools-compiler.jar"
msgstr ""
#. Tag: para
#: Security.xml:2923
#, no-c-format
-msgid "janino.jar"
+msgid "drools-core.jar"
msgstr ""
#. Tag: para
#: Security.xml:2926
#, no-c-format
-msgid "antlr-runtime.jar"
+msgid "janino.jar"
msgstr ""
#. Tag: para
#: Security.xml:2929
#, no-c-format
-msgid "mvel14.jar"
+msgid "antlr-runtime.jar"
msgstr ""
+#. Tag: para
+#: Security.xml:2932
+#, no-c-format
+msgid "mvel2.jar"
+msgstr ""
+
#. Tag: title
-#: Security.xml:2936 Security.xml:3128
+#: Security.xml:2939 Security.xml:3131
#, no-c-format
msgid "Configuration"
msgstr ""
#. Tag: para
-#: Security.xml:2938
+#: Security.xml:2941
#, no-c-format
msgid ""
"The configuration for <literal>RuleBasedPermissionResolver</literal> "
@@ -4030,7 +4036,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:2944
+#: Security.xml:2947
#, no-c-format
msgid ""
"<![CDATA[<components xmlns=\"http://jboss.com/products/seam/components\"\n"
@@ -4058,7 +4064,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2946
+#: Security.xml:2949
#, no-c-format
msgid ""
"The default rule base name can be overridden by specifying the "
@@ -4067,7 +4073,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:2951
+#: Security.xml:2954
#, no-c-format
msgid ""
"<![CDATA[\n"
@@ -4076,7 +4082,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2953
+#: Security.xml:2956
#, no-c-format
msgid ""
"Once the <literal>RuleBase</literal> component is configured, it's time to "
@@ -4084,13 +4090,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:2959
+#: Security.xml:2962
#, no-c-format
msgid "Writing Security Rules"
msgstr ""
#. Tag: para
-#: Security.xml:2961
+#: Security.xml:2964
#, no-c-format
msgid ""
"The first step to writing security rules is to create a new rule file in the "
@@ -4101,7 +4107,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2968
+#: Security.xml:2971
#, no-c-format
msgid ""
"So what should the security rules file contain? At this stage it might be a "
@@ -4110,7 +4116,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:2973
+#: Security.xml:2976
#, no-c-format
msgid ""
"<![CDATA[package MyApplicationPermissions;\n"
@@ -4128,7 +4134,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2975
+#: Security.xml:2978
#, no-c-format
msgid ""
"Let's break this down step by step. The first thing we see is the package "
@@ -4138,7 +4144,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2981
+#: Security.xml:2984
#, no-c-format
msgid ""
"The next thing we can notice is a couple of import statements for the "
@@ -4148,7 +4154,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2987
+#: Security.xml:2990
#, no-c-format
msgid ""
"Finally we have the code for the rule. Each rule within a package should be "
@@ -4158,7 +4164,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2993
+#: Security.xml:2996
#, no-c-format
msgid ""
"Looking at the body of the rule definition we can notice two distinct "
@@ -4173,7 +4179,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3002
+#: Security.xml:3005
#, no-c-format
msgid ""
"If we look at the LHS of the rule, we see two conditions listed there. Let's "
@@ -4181,14 +4187,14 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3006
+#: Security.xml:3009
#, no-c-format
msgid ""
"<![CDATA[c: PermissionCheck(target == \"customer\", action == \"delete\")]]>"
msgstr ""
#. Tag: para
-#: Security.xml:3008
+#: Security.xml:3011
#, no-c-format
msgid ""
"In plain english, this condition is stating that there must exist a "
@@ -4198,7 +4204,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3014
+#: Security.xml:3017
#, no-c-format
msgid ""
"So what is the working memory? Also known as a \"stateful session\" in "
@@ -4216,7 +4222,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3026
+#: Security.xml:3029
#, no-c-format
msgid ""
"Besides the <literal>PermissionCheck</literal> facts, there is also a "
@@ -4233,7 +4239,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3037
+#: Security.xml:3040
#, no-c-format
msgid ""
"It is also possible to insert additional long-lived facts into the working "
@@ -4244,7 +4250,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3044
+#: Security.xml:3047
#, no-c-format
msgid ""
"Getting back to our simple example, we can also notice that the first line "
@@ -4255,13 +4261,13 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3051
+#: Security.xml:3054
#, no-c-format
msgid "<![CDATA[Role(name == \"admin\")]]>"
msgstr ""
#. Tag: para
-#: Security.xml:3053
+#: Security.xml:3056
#, no-c-format
msgid ""
"This condition simply states that there must be a <literal>Role</literal> "
@@ -4274,7 +4280,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3061
+#: Security.xml:3064
#, no-c-format
msgid ""
"So what is the consequence of the rule firing? Let's take a look at the RHS "
@@ -4282,13 +4288,13 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3065
+#: Security.xml:3068
#, no-c-format
msgid "<![CDATA[c.grant()]]>"
msgstr ""
#. Tag: para
-#: Security.xml:3067
+#: Security.xml:3070
#, no-c-format
msgid ""
"The RHS consists of Java code, and in this case is invoking the "
@@ -4305,13 +4311,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3081
+#: Security.xml:3084
#, no-c-format
msgid "Non-String permission targets"
msgstr ""
#. Tag: para
-#: Security.xml:3083
+#: Security.xml:3086
#, no-c-format
msgid ""
"So far we have only seen permission checks for String-literal permission "
@@ -4325,7 +4331,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3092
+#: Security.xml:3095
#, no-c-format
msgid ""
"<![CDATA[rule CanCreateBlogComment\n"
@@ -4343,13 +4349,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3097
+#: Security.xml:3100
#, no-c-format
msgid "Wildcard permission checks"
msgstr ""
#. Tag: para
-#: Security.xml:3099
+#: Security.xml:3102
#, no-c-format
msgid ""
"It is possible to implement a wildcard permission check (which allows all "
@@ -4359,7 +4365,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3105
+#: Security.xml:3108
#, no-c-format
msgid ""
"<![CDATA[rule CanDoAnythingToCustomersIfYouAreAnAdmin\n"
@@ -4373,7 +4379,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3107
+#: Security.xml:3110
#, no-c-format
msgid ""
"This rule allows users with the <literal>admin</literal> role to perform "
@@ -4382,13 +4388,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3117
+#: Security.xml:3120
#, no-c-format
msgid "PersistentPermissionResolver"
msgstr ""
#. Tag: para
-#: Security.xml:3119
+#: Security.xml:3122
#, no-c-format
msgid ""
"Another built-in permission resolver provided by Seam, "
@@ -4401,7 +4407,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3130
+#: Security.xml:3133
#, no-c-format
msgid ""
"Before it can be used, <literal>PersistentPermissionResolver</literal> must "
@@ -4414,7 +4420,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3138
+#: Security.xml:3141
#, no-c-format
msgid ""
"<![CDATA[ <security:persistent-permission-resolver permission-store=\"#"
@@ -4422,13 +4428,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3143
+#: Security.xml:3146
#, no-c-format
msgid "Permission Stores"
msgstr ""
#. Tag: para
-#: Security.xml:3145
+#: Security.xml:3148
#, no-c-format
msgid ""
"A permission store is required for <literal>PersistentPermissionResolver</"
@@ -4441,26 +4447,26 @@
msgstr ""
#. Tag: title
-#: Security.xml:3155
+#: Security.xml:3158
#, no-c-format
msgid "PermissionStore interface"
msgstr ""
#. Tag: literal
-#: Security.xml:3181 Security.xml:3200 Security.xml:3219 Security.xml:3802
-#: Security.xml:3821
+#: Security.xml:3184 Security.xml:3203 Security.xml:3222 Security.xml:3805
+#: Security.xml:3824
#, no-c-format
msgid "List<Permission>"
msgstr ""
#. Tag: literal
-#: Security.xml:3186 Security.xml:3826
+#: Security.xml:3189 Security.xml:3829
#, no-c-format
msgid "listPermissions(Object target)"
msgstr ""
#. Tag: para
-#: Security.xml:3190
+#: Security.xml:3193
#, no-c-format
msgid ""
"This method should return a <literal>List</literal> of <literal>Permission</"
@@ -4469,13 +4475,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3205 Security.xml:3807
+#: Security.xml:3208 Security.xml:3810
#, no-c-format
msgid "listPermissions(Object target, String action)"
msgstr ""
#. Tag: para
-#: Security.xml:3209
+#: Security.xml:3212
#, no-c-format
msgid ""
"This method should return a <literal>List</literal> of <literal>Permission</"
@@ -4484,13 +4490,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3224
+#: Security.xml:3227
#, no-c-format
msgid "listPermissions(Set<Object> targets, String action)"
msgstr ""
#. Tag: para
-#: Security.xml:3228
+#: Security.xml:3231
#, no-c-format
msgid ""
"This method should return a <literal>List</literal> of <literal>Permission</"
@@ -4499,13 +4505,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3244
+#: Security.xml:3247
#, no-c-format
msgid "grantPermission(Permission)"
msgstr ""
#. Tag: para
-#: Security.xml:3248
+#: Security.xml:3251
#, no-c-format
msgid ""
"This method should persist the specified <literal>Permission</literal> "
@@ -4513,13 +4519,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3263 Security.xml:3864
+#: Security.xml:3266 Security.xml:3867
#, no-c-format
msgid "grantPermissions(List<Permission> permissions)"
msgstr ""
#. Tag: para
-#: Security.xml:3267
+#: Security.xml:3270
#, no-c-format
msgid ""
"This method should persist all of the <literal>Permission</literal> objects "
@@ -4528,13 +4534,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3282 Security.xml:3883
+#: Security.xml:3285 Security.xml:3886
#, no-c-format
msgid "revokePermission(Permission permission)"
msgstr ""
#. Tag: para
-#: Security.xml:3286
+#: Security.xml:3289
#, no-c-format
msgid ""
"This method should remove the specified <literal>Permission</literal> object "
@@ -4542,13 +4548,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3300 Security.xml:3902
+#: Security.xml:3303 Security.xml:3905
#, no-c-format
msgid "revokePermissions(List<Permission> permissions)"
msgstr ""
#. Tag: para
-#: Security.xml:3304
+#: Security.xml:3307
#, no-c-format
msgid ""
"This method should remove all of the <literal>Permission</literal> objects "
@@ -4556,19 +4562,19 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3314 Security.xml:3916
+#: Security.xml:3317 Security.xml:3919
#, no-c-format
msgid "List<String>"
msgstr ""
#. Tag: literal
-#: Security.xml:3319 Security.xml:3921
+#: Security.xml:3322 Security.xml:3924
#, no-c-format
msgid "listAvailableActions(Object target)"
msgstr ""
#. Tag: para
-#: Security.xml:3323
+#: Security.xml:3326
#, no-c-format
msgid ""
"This method should return a list of all the available actions (as Strings) "
@@ -4578,13 +4584,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3337
+#: Security.xml:3340
#, no-c-format
msgid "JpaPermissionStore"
msgstr ""
#. Tag: para
-#: Security.xml:3339
+#: Security.xml:3342
#, no-c-format
msgid ""
"This is the default <literal>PermissionStore</literal> implementation (and "
@@ -4597,7 +4603,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3347
+#: Security.xml:3350
#, no-c-format
msgid ""
"If you wish to use the same entity (i.e. a single database table) to store "
@@ -4609,7 +4615,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3354
+#: Security.xml:3357
#, no-c-format
msgid ""
"For example, to configure a single entity class to store both user and role "
@@ -4617,7 +4623,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3356
+#: Security.xml:3359
#, no-c-format
msgid ""
"<![CDATA[ <security:jpa-permission-store user-permission-class=\"com.acme."
@@ -4625,14 +4631,14 @@
msgstr ""
#. Tag: para
-#: Security.xml:3358
+#: Security.xml:3361
#, no-c-format
msgid ""
"To configure separate entity classes for storing user and role permissions:"
msgstr ""
#. Tag: programlisting
-#: Security.xml:3360
+#: Security.xml:3363
#, no-c-format
msgid ""
"<![CDATA[ <security:jpa-permission-store user-permission-class=\"com.acme."
@@ -4641,13 +4647,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3363
+#: Security.xml:3366
#, no-c-format
msgid "Permission annotations"
msgstr ""
#. Tag: para
-#: Security.xml:3365
+#: Security.xml:3368
#, no-c-format
msgid ""
"As mentioned, the entity classes that contain the user and role permissions "
@@ -4658,32 +4664,32 @@
msgstr ""
#. Tag: title
-#: Security.xml:3372
+#: Security.xml:3375
#, no-c-format
msgid "Entity Permission annotations"
msgstr ""
#. Tag: para
-#: Security.xml:3385 Security.xml:3548
+#: Security.xml:3388 Security.xml:3551
#, no-c-format
msgid "Target"
msgstr ""
#. Tag: literal
-#: Security.xml:3398
+#: Security.xml:3401
#, no-c-format
msgid "@PermissionTarget"
msgstr ""
#. Tag: literal
-#: Security.xml:3403 Security.xml:3422 Security.xml:3441 Security.xml:3460
-#: Security.xml:3479
+#: Security.xml:3406 Security.xml:3425 Security.xml:3444 Security.xml:3463
+#: Security.xml:3482
#, no-c-format
msgid "FIELD,METHOD"
msgstr ""
#. Tag: para
-#: Security.xml:3407
+#: Security.xml:3410
#, no-c-format
msgid ""
"This annotation identifies the property of the entity that will contain the "
@@ -4692,13 +4698,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3417
+#: Security.xml:3420
#, no-c-format
msgid "@PermissionAction"
msgstr ""
#. Tag: para
-#: Security.xml:3426
+#: Security.xml:3429
#, no-c-format
msgid ""
"This annotation identifies the property of the entity that will contain the "
@@ -4707,13 +4713,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3436
+#: Security.xml:3439
#, no-c-format
msgid "@PermissionUser"
msgstr ""
#. Tag: para
-#: Security.xml:3445
+#: Security.xml:3448
#, no-c-format
msgid ""
"This annotation identifies the property of the entity that will contain the "
@@ -4722,13 +4728,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3455
+#: Security.xml:3458
#, no-c-format
msgid "@PermissionRole"
msgstr ""
#. Tag: para
-#: Security.xml:3464
+#: Security.xml:3467
#, no-c-format
msgid ""
"This annotation identifies the property of the entity that will contain the "
@@ -4737,13 +4743,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3474
+#: Security.xml:3477
#, no-c-format
msgid "@PermissionDiscriminator"
msgstr ""
#. Tag: para
-#: Security.xml:3483
+#: Security.xml:3486
#, no-c-format
msgid ""
"This annotation should be used when the same entity/table is used to store "
@@ -4760,20 +4766,20 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3493
+#: Security.xml:3496
#, no-c-format
msgid ""
"<![CDATA[ @PermissionDiscriminator(userValue = \"u\", roleValue = \"r\")]]>"
msgstr ""
#. Tag: title
-#: Security.xml:3504
+#: Security.xml:3507
#, no-c-format
msgid "Example Entity"
msgstr ""
#. Tag: para
-#: Security.xml:3506
+#: Security.xml:3509
#, no-c-format
msgid ""
"Here is an example of an entity class that is used to store both user and "
@@ -4782,7 +4788,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3511
+#: Security.xml:3514
#, no-c-format
msgid ""
"<![CDATA[\n"
@@ -4843,7 +4849,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3513
+#: Security.xml:3516
#, no-c-format
msgid ""
"As can be seen in the above example, the <literal>getDiscriminator()</"
@@ -4860,13 +4866,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3526
+#: Security.xml:3529
#, no-c-format
msgid "Class-specific Permission Configuration"
msgstr ""
#. Tag: para
-#: Security.xml:3528
+#: Security.xml:3531
#, no-c-format
msgid ""
"A further set of class-specific annotations can be used to configure a "
@@ -4876,25 +4882,25 @@
msgstr ""
#. Tag: title
-#: Security.xml:3535
+#: Security.xml:3538
#, no-c-format
msgid "Class Permission Annotations"
msgstr ""
#. Tag: literal
-#: Security.xml:3561
+#: Security.xml:3564
#, no-c-format
msgid "@Permissions"
msgstr ""
#. Tag: literal
-#: Security.xml:3566 Security.xml:3584
+#: Security.xml:3569 Security.xml:3587
#, no-c-format
msgid "TYPE"
msgstr ""
#. Tag: para
-#: Security.xml:3570
+#: Security.xml:3573
#, no-c-format
msgid ""
"A container annotation, this annotation may contain an array of "
@@ -4902,13 +4908,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3579
+#: Security.xml:3582
#, no-c-format
msgid "@Permission"
msgstr ""
#. Tag: para
-#: Security.xml:3588
+#: Security.xml:3591
#, no-c-format
msgid ""
"This annotation defines a single allowable permission action for the target "
@@ -4919,7 +4925,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3600
+#: Security.xml:3603
#, no-c-format
msgid ""
"Here's an example of the above annotations in action. The following class "
@@ -4927,7 +4933,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3604
+#: Security.xml:3607
#, no-c-format
msgid ""
"<![CDATA[@Permissions({\n"
@@ -4939,7 +4945,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3606
+#: Security.xml:3609
#, no-c-format
msgid ""
"This example demonstrates how two allowable permission actions, "
@@ -4948,13 +4954,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3614
+#: Security.xml:3617
#, no-c-format
msgid "Permission masks"
msgstr ""
#. Tag: para
-#: Security.xml:3616
+#: Security.xml:3619
#, no-c-format
msgid ""
"By default, multiple permissions for the same target object and recipient "
@@ -4966,7 +4972,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3623
+#: Security.xml:3626
#, no-c-format
msgid ""
"For example, if recipient \"Bob\" is granted both the <literal>view</"
@@ -4979,7 +4985,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3630
+#: Security.xml:3633
#, no-c-format
msgid ""
"<![CDATA[@Permissions({\n"
@@ -4991,7 +4997,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3632
+#: Security.xml:3635
#, no-c-format
msgid ""
"The <literal>action</literal> property will instead simply contain \"3"
@@ -5001,7 +5007,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3638
+#: Security.xml:3641
#, no-c-format
msgid ""
"Obviously, it is very important that the <literal>mask</literal> values "
@@ -5009,13 +5015,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3644
+#: Security.xml:3647
#, no-c-format
msgid "Identifier Policy"
msgstr ""
#. Tag: para
-#: Security.xml:3646
+#: Security.xml:3649
#, no-c-format
msgid ""
"When storing or looking up permissions, <literal>JpaPermissionStore</"
@@ -5029,7 +5035,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3654
+#: Security.xml:3657
#, no-c-format
msgid ""
"The <literal>IdentifierStrategy</literal> interface is very simple, "
@@ -5037,7 +5043,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3658
+#: Security.xml:3661
#, no-c-format
msgid ""
"<![CDATA[public interface IdentifierStrategy {\n"
@@ -5047,7 +5053,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3660
+#: Security.xml:3663
#, no-c-format
msgid ""
"The first method, <literal>canIdentify()</literal> simply returns "
@@ -5058,7 +5064,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3666
+#: Security.xml:3669
#, no-c-format
msgid ""
"Seam provides two <literal>IdentifierStrategy</literal> implementations, "
@@ -5067,7 +5073,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3671
+#: Security.xml:3674
#, no-c-format
msgid ""
"To explicitly configure a specific identifier strategy to use for a "
@@ -5080,13 +5086,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3681
+#: Security.xml:3684
#, no-c-format
msgid "ClassIdentifierStrategy"
msgstr ""
#. Tag: para
-#: Security.xml:3683
+#: Security.xml:3686
#, no-c-format
msgid ""
"This identifier strategy is used to generate unique identifiers for classes, "
@@ -5100,7 +5106,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3692
+#: Security.xml:3695
#, no-c-format
msgid ""
"<![CDATA[@Identifier(name = \"customer\")\n"
@@ -5108,7 +5114,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3694
+#: Security.xml:3697
#, no-c-format
msgid ""
"The identifier for the following class will be \"<literal>customerAction</"
@@ -5116,7 +5122,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3698
+#: Security.xml:3701
#, no-c-format
msgid ""
"<![CDATA[@Name(\"customerAction\")\n"
@@ -5124,7 +5130,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3700
+#: Security.xml:3703
#, no-c-format
msgid ""
"Finally, the identifier for the following class will be \"<literal>Customer</"
@@ -5132,19 +5138,19 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3704
+#: Security.xml:3707
#, no-c-format
msgid "<![CDATA[public class Customer { ]]>"
msgstr ""
#. Tag: title
-#: Security.xml:3709
+#: Security.xml:3712
#, no-c-format
msgid "EntityIdentifierStrategy"
msgstr ""
#. Tag: para
-#: Security.xml:3711
+#: Security.xml:3714
#, no-c-format
msgid ""
"This identifier strategy is used to generate unique identifiers for entity "
@@ -5161,7 +5167,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3722
+#: Security.xml:3725
#, no-c-format
msgid ""
"<![CDATA[@Identifier(value = EntityIdentifierStrategy.class)\n"
@@ -5169,7 +5175,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3724
+#: Security.xml:3727
#, no-c-format
msgid ""
"For an example of the type of identifier values generated, assume we have "
@@ -5177,7 +5183,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3728
+#: Security.xml:3731
#, no-c-format
msgid ""
"<![CDATA[@Entity\n"
@@ -5200,7 +5206,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3730
+#: Security.xml:3733
#, no-c-format
msgid ""
"For a <literal>Customer</literal> instance with an <literal>id</literal> "
@@ -5210,7 +5216,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3736
+#: Security.xml:3739
#, no-c-format
msgid ""
"<![CDATA[@Entity\n"
@@ -5219,7 +5225,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3738
+#: Security.xml:3741
#, no-c-format
msgid ""
"Then a <literal>Customer</literal> with an <literal>id</literal> value of "
@@ -5228,13 +5234,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3751
+#: Security.xml:3754
#, no-c-format
msgid "Permission Management"
msgstr ""
#. Tag: para
-#: Security.xml:3753
+#: Security.xml:3756
#, no-c-format
msgid ""
"In much the same way that Seam Security provides an Identity Management API "
@@ -5244,13 +5250,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3760
+#: Security.xml:3763
#, no-c-format
msgid "PermissionManager"
msgstr ""
#. Tag: para
-#: Security.xml:3762
+#: Security.xml:3765
#, no-c-format
msgid ""
"The <literal>PermissionManager</literal> component is an application-scoped "
@@ -5263,7 +5269,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3769
+#: Security.xml:3772
#, no-c-format
msgid ""
"<![CDATA[\n"
@@ -5273,7 +5279,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3771
+#: Security.xml:3774
#, no-c-format
msgid ""
"The following table describes each of the available methods provided by "
@@ -5281,13 +5287,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3776
+#: Security.xml:3779
#, no-c-format
msgid "PermissionManager API methods"
msgstr ""
#. Tag: para
-#: Security.xml:3811 Security.xml:3830
+#: Security.xml:3814 Security.xml:3833
#, no-c-format
msgid ""
"Returns a list of <literal>Permission</literal> objects representing all of "
@@ -5295,13 +5301,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3845
+#: Security.xml:3848
#, no-c-format
msgid "grantPermission(Permission permission)"
msgstr ""
#. Tag: para
-#: Security.xml:3849
+#: Security.xml:3852
#, no-c-format
msgid ""
"Persists (grants) the specified <literal>Permission</literal> to the backend "
@@ -5309,7 +5315,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3868
+#: Security.xml:3871
#, no-c-format
msgid ""
"Persists (grants) the specified list of <literal>Permission</literal>s to "
@@ -5317,7 +5323,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3887
+#: Security.xml:3890
#, no-c-format
msgid ""
"Removes (revokes) the specified <literal>Permission</literal> from the "
@@ -5325,7 +5331,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3906
+#: Security.xml:3909
#, no-c-format
msgid ""
"Removes (revokes) the specified list of <literal>Permission</literal>s from "
@@ -5333,7 +5339,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3925
+#: Security.xml:3928
#, no-c-format
msgid ""
"Returns a list of the available actions for the specified target object. The "
@@ -5342,13 +5348,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3940
+#: Security.xml:3943
#, no-c-format
msgid "Permission checks for PermissionManager operations"
msgstr ""
#. Tag: para
-#: Security.xml:3942
+#: Security.xml:3945
#, no-c-format
msgid ""
"Invoking the methods of <literal>PermissionManager</literal> requires that "
@@ -5358,37 +5364,37 @@
msgstr ""
#. Tag: title
-#: Security.xml:3949
+#: Security.xml:3952
#, no-c-format
msgid "Permission Management Security Permissions"
msgstr ""
#. Tag: literal
-#: Security.xml:3973
+#: Security.xml:3976
#, no-c-format
msgid "listPermissions()"
msgstr ""
#. Tag: para
-#: Security.xml:3977
+#: Security.xml:3980
#, no-c-format
msgid "The specified <literal>target</literal>"
msgstr ""
#. Tag: literal
-#: Security.xml:3983
+#: Security.xml:3986
#, no-c-format
msgid "seam.read-permissions"
msgstr ""
#. Tag: literal
-#: Security.xml:3991 Security.xml:4011
+#: Security.xml:3994 Security.xml:4014
#, no-c-format
msgid "grantPermission()"
msgstr ""
#. Tag: para
-#: Security.xml:3995
+#: Security.xml:3998
#, no-c-format
msgid ""
"The target of the specified <literal>Permission</literal>, or each of the "
@@ -5397,56 +5403,56 @@
msgstr ""
#. Tag: literal
-#: Security.xml:4003 Security.xml:4021 Security.xml:4039
+#: Security.xml:4006 Security.xml:4024 Security.xml:4042
#, no-c-format
msgid "seam.grant-permission"
msgstr ""
#. Tag: para
-#: Security.xml:4015 Security.xml:4051
+#: Security.xml:4018 Security.xml:4054
#, no-c-format
msgid "The target of the specified <literal>Permission</literal>."
msgstr ""
#. Tag: literal
-#: Security.xml:4029
+#: Security.xml:4032
#, no-c-format
msgid "grantPermissions()"
msgstr ""
#. Tag: para
-#: Security.xml:4033 Security.xml:4069
+#: Security.xml:4036 Security.xml:4072
#, no-c-format
msgid ""
"Each of the targets of the specified list of <literal>Permission</literal>s."
msgstr ""
#. Tag: literal
-#: Security.xml:4047
+#: Security.xml:4050
#, no-c-format
msgid "revokePermission()"
msgstr ""
#. Tag: literal
-#: Security.xml:4057 Security.xml:4075
+#: Security.xml:4060 Security.xml:4078
#, no-c-format
msgid "seam.revoke-permission"
msgstr ""
#. Tag: literal
-#: Security.xml:4065
+#: Security.xml:4068
#, no-c-format
msgid "revokePermissions()"
msgstr ""
#. Tag: title
-#: Security.xml:4088
+#: Security.xml:4091
#, no-c-format
msgid "SSL Security"
msgstr ""
#. Tag: para
-#: Security.xml:4090
+#: Security.xml:4093
#, no-c-format
msgid ""
"Seam includes basic support for serving sensitive pages via the HTTPS "
@@ -5457,13 +5463,13 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4097
+#: Security.xml:4100
#, no-c-format
msgid "<![CDATA[<page view-id=\"/login.xhtml\" scheme=\"https\"/>]]>"
msgstr ""
#. Tag: para
-#: Security.xml:4099
+#: Security.xml:4102
#, no-c-format
msgid ""
"This configuration is automatically extended to both <literal>s:link</"
@@ -5475,13 +5481,13 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4106
+#: Security.xml:4109
#, no-c-format
msgid "<![CDATA[<s:link view=\"/login.xhtml\" value=\"Login\"/>]]>"
msgstr ""
#. Tag: para
-#: Security.xml:4108
+#: Security.xml:4111
#, no-c-format
msgid ""
"Browsing directly to a view when using the <emphasis>incorrect</emphasis> "
@@ -5492,7 +5498,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4115
+#: Security.xml:4118
#, no-c-format
msgid ""
"It is also possible to configure a <emphasis>default scheme</emphasis> for "
@@ -5506,13 +5512,13 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4124
+#: Security.xml:4127
#, no-c-format
msgid "<![CDATA[<page view-id=\"*\" scheme=\"http\" />]]>"
msgstr ""
#. Tag: para
-#: Security.xml:4126
+#: Security.xml:4129
#, no-c-format
msgid ""
"Of course, if <emphasis>none</emphasis> of the pages in your application use "
@@ -5520,7 +5526,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4131
+#: Security.xml:4134
#, no-c-format
msgid ""
"You may configure Seam to automatically invalidate the current HTTP session "
@@ -5529,13 +5535,13 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4136
+#: Security.xml:4139
#, no-c-format
msgid "<![CDATA[<web:session invalidate-on-scheme-change=\"true\"/>]]>"
msgstr ""
#. Tag: para
-#: Security.xml:4138
+#: Security.xml:4141
#, no-c-format
msgid ""
"This option helps make your system less vulnerable to sniffing of the "
@@ -5544,13 +5550,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4144
+#: Security.xml:4147
#, no-c-format
msgid "Overriding the default ports"
msgstr ""
#. Tag: para
-#: Security.xml:4146
+#: Security.xml:4149
#, no-c-format
msgid ""
"If you wish to configure the HTTP and HTTPS ports manually, they may be "
@@ -5560,7 +5566,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4152
+#: Security.xml:4155
#, no-c-format
msgid ""
"<![CDATA[\n"
@@ -5576,13 +5582,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4158
+#: Security.xml:4161
#, no-c-format
msgid "CAPTCHA"
msgstr ""
#. Tag: para
-#: Security.xml:4160
+#: Security.xml:4163
#, no-c-format
msgid ""
"Though strictly not part of the security API, Seam provides a built-in "
@@ -5594,13 +5600,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4168
+#: Security.xml:4171
#, no-c-format
msgid "Configuring the CAPTCHA Servlet"
msgstr ""
#. Tag: para
-#: Security.xml:4169
+#: Security.xml:4172
#, no-c-format
msgid ""
"To get up and running, it is necessary to configure the Seam Resource "
@@ -5609,7 +5615,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4174
+#: Security.xml:4177
#, no-c-format
msgid ""
"<![CDATA[<servlet>\n"
@@ -5625,20 +5631,20 @@
msgstr ""
#. Tag: title
-#: Security.xml:4179
+#: Security.xml:4182
#, no-c-format
msgid "Adding a CAPTCHA to a form"
msgstr ""
#. Tag: para
-#: Security.xml:4181
+#: Security.xml:4184
#, no-c-format
msgid ""
"Adding a CAPTCHA challenge to a form is extremely easy. Here's an example:"
msgstr ""
#. Tag: programlisting
-#: Security.xml:4185
+#: Security.xml:4188
#, no-c-format
msgid ""
"<![CDATA[<h:graphicImage value=\"/seam/resource/captcha\"/>\n"
@@ -5650,7 +5656,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4187
+#: Security.xml:4190
#, no-c-format
msgid ""
"That's all there is to it. The <literal>graphicImage</literal> control "
@@ -5660,20 +5666,20 @@
msgstr ""
#. Tag: title
-#: Security.xml:4196
+#: Security.xml:4199
#, no-c-format
msgid "Customising the CAPTCHA algorithm"
msgstr ""
#. Tag: para
-#: Security.xml:4198
+#: Security.xml:4201
#, no-c-format
msgid ""
"You may customize the CAPTCHA algorithm by overriding the built-in component:"
msgstr ""
#. Tag: programlisting
-#: Security.xml:4202
+#: Security.xml:4205
#, no-c-format
msgid ""
"<![CDATA[@Name(\"org.jboss.seam.captcha.captcha\")\n"
@@ -5700,13 +5706,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4209 Security.xml:4217
+#: Security.xml:4212 Security.xml:4220
#, no-c-format
msgid "Security Events"
msgstr ""
#. Tag: para
-#: Security.xml:4211
+#: Security.xml:4214
#, no-c-format
msgid ""
"The following table describes a number of events (see <xref linkend=\"events"
@@ -5714,68 +5720,68 @@
msgstr ""
#. Tag: para
-#: Security.xml:4226
+#: Security.xml:4229
#, no-c-format
msgid "Event Key"
msgstr ""
#. Tag: literal
-#: Security.xml:4239
+#: Security.xml:4242
#, no-c-format
msgid "org.jboss.seam.security.loginSuccessful"
msgstr ""
#. Tag: para
-#: Security.xml:4243
+#: Security.xml:4246
#, no-c-format
msgid "Raised when a login attempt is successful."
msgstr ""
#. Tag: literal
-#: Security.xml:4251
+#: Security.xml:4254
#, no-c-format
msgid "org.jboss.seam.security.loginFailed"
msgstr ""
#. Tag: para
-#: Security.xml:4255
+#: Security.xml:4258
#, no-c-format
msgid "Raised when a login attempt fails."
msgstr ""
#. Tag: literal
-#: Security.xml:4263
+#: Security.xml:4266
#, no-c-format
msgid "org.jboss.seam.security.alreadyLoggedIn"
msgstr ""
#. Tag: para
-#: Security.xml:4267
+#: Security.xml:4270
#, no-c-format
msgid ""
"Raised when a user that is already authenticated attempts to log in again."
msgstr ""
#. Tag: literal
-#: Security.xml:4275
+#: Security.xml:4278
#, no-c-format
msgid "org.jboss.seam.security.notLoggedIn"
msgstr ""
#. Tag: para
-#: Security.xml:4279
+#: Security.xml:4282
#, no-c-format
msgid "Raised when a security check fails when the user is not logged in."
msgstr ""
#. Tag: literal
-#: Security.xml:4287
+#: Security.xml:4290
#, no-c-format
msgid "org.jboss.seam.security.notAuthorized"
msgstr ""
#. Tag: para
-#: Security.xml:4291
+#: Security.xml:4294
#, no-c-format
msgid ""
"Raised when a security check fails when the user is logged in however "
@@ -5783,73 +5789,73 @@
msgstr ""
#. Tag: literal
-#: Security.xml:4299
+#: Security.xml:4302
#, no-c-format
msgid "org.jboss.seam.security.preAuthenticate"
msgstr ""
#. Tag: para
-#: Security.xml:4303
+#: Security.xml:4306
#, no-c-format
msgid "Raised just prior to user authentication."
msgstr ""
#. Tag: literal
-#: Security.xml:4311
+#: Security.xml:4314
#, no-c-format
msgid "org.jboss.seam.security.postAuthenticate"
msgstr ""
#. Tag: para
-#: Security.xml:4315
+#: Security.xml:4318
#, no-c-format
msgid "Raised just after user authentication."
msgstr ""
#. Tag: literal
-#: Security.xml:4323
+#: Security.xml:4326
#, no-c-format
msgid "org.jboss.seam.security.loggedOut"
msgstr ""
#. Tag: para
-#: Security.xml:4327
+#: Security.xml:4330
#, no-c-format
msgid "Raised after the user has logged out."
msgstr ""
#. Tag: literal
-#: Security.xml:4335
+#: Security.xml:4338
#, no-c-format
msgid "org.jboss.seam.security.credentialsUpdated"
msgstr ""
#. Tag: para
-#: Security.xml:4339
+#: Security.xml:4342
#, no-c-format
msgid "Raised when the user's credentials have been changed."
msgstr ""
#. Tag: literal
-#: Security.xml:4347
+#: Security.xml:4350
#, no-c-format
msgid "org.jboss.seam.security.rememberMe"
msgstr ""
#. Tag: para
-#: Security.xml:4351
+#: Security.xml:4354
#, no-c-format
msgid "Raised when the Identity's rememberMe property is changed."
msgstr ""
#. Tag: title
-#: Security.xml:4364
+#: Security.xml:4367
#, no-c-format
msgid "Run As"
msgstr ""
#. Tag: para
-#: Security.xml:4366
+#: Security.xml:4369
#, no-c-format
msgid ""
"Sometimes it may be necessary to perform certain operations with elevated "
@@ -5861,7 +5867,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4374
+#: Security.xml:4377
#, no-c-format
msgid ""
"The following code example demonstrates how <literal>RunAsOperation</"
@@ -5872,7 +5878,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4381
+#: Security.xml:4384
#, no-c-format
msgid ""
"<![CDATA[ new RunAsOperation() { \n"
@@ -5884,7 +5890,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4383
+#: Security.xml:4386
#, no-c-format
msgid ""
"In a similar way, the <literal>getPrincipal()</literal> or "
@@ -5895,13 +5901,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4394
+#: Security.xml:4397
#, no-c-format
msgid "Extending the Identity component"
msgstr ""
#. Tag: para
-#: Security.xml:4396
+#: Security.xml:4399
#, no-c-format
msgid ""
"Sometimes it might be necessary to extend the Identity component if your "
@@ -5914,7 +5920,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4404
+#: Security.xml:4407
#, no-c-format
msgid ""
"<![CDATA[@Name(\"org.jboss.seam.security.identity\")\n"
@@ -5949,7 +5955,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4407
+#: Security.xml:4410
#, no-c-format
msgid ""
"Note that an <literal>Identity</literal> component must be marked "
@@ -5959,13 +5965,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4419
+#: Security.xml:4422
#, no-c-format
msgid "OpenID"
msgstr ""
#. Tag: para
-#: Security.xml:4421
+#: Security.xml:4424
#, no-c-format
msgid ""
"OpenID is a community standard for external web-based authentication. The "
@@ -5978,7 +5984,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4430
+#: Security.xml:4433
#, no-c-format
msgid ""
"When using OpenID, the user selects an OpenID provider, and the provider "
@@ -5995,7 +6001,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4439
+#: Security.xml:4442
#, no-c-format
msgid ""
"It's important to realize at this point that authentication does not imply "
@@ -6008,13 +6014,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4449
+#: Security.xml:4452
#, no-c-format
msgid "Configuring OpenID"
msgstr ""
#. Tag: para
-#: Security.xml:4450
+#: Security.xml:4453
#, no-c-format
msgid ""
"Seam uses the openid4java package and requires four additional JARs to make "
@@ -6024,7 +6030,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4456
+#: Security.xml:4459
#, no-c-format
msgid ""
"OpenID processing requires the use of the <literal>OpenIdPhaseListener</"
@@ -6034,7 +6040,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4462
+#: Security.xml:4465
#, no-c-format
msgid ""
"<lifecycle>\n"
@@ -6044,7 +6050,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4465
+#: Security.xml:4468
#, no-c-format
msgid ""
"With this configuration, OpenID support is available to your application. "
@@ -6054,13 +6060,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4473
+#: Security.xml:4476
#, no-c-format
msgid "Presenting an OpenIdDLogin form"
msgstr ""
#. Tag: para
-#: Security.xml:4475
+#: Security.xml:4478
#, no-c-format
msgid ""
"To initiate an OpenID login, you can present a simply form to the user "
@@ -6070,7 +6076,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4480
+#: Security.xml:4483
#, no-c-format
msgid ""
"<h:form>\n"
@@ -6081,7 +6087,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4482
+#: Security.xml:4485
#, no-c-format
msgid ""
"When the user submits the login form, he will be redirected to his OpenID "
@@ -6093,13 +6099,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4491
+#: Security.xml:4494
#, no-c-format
msgid "Logging in immediately"
msgstr ""
#. Tag: para
-#: Security.xml:4493
+#: Security.xml:4496
#, no-c-format
msgid ""
"The simplest strategy is to simply login the user immediately. The following "
@@ -6108,7 +6114,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4497
+#: Security.xml:4500
#, no-c-format
msgid ""
"<page view-id="/openid.xhtml">\n"
@@ -6128,7 +6134,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4499
+#: Security.xml:4502
#, no-c-format
msgid ""
"Thie <literal>loginImmediately()</literal> action checks to see if the "
@@ -6142,13 +6148,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4510
+#: Security.xml:4513
#, no-c-format
msgid "Deferring login"
msgstr ""
#. Tag: para
-#: Security.xml:4512
+#: Security.xml:4515
#, no-c-format
msgid ""
"You may not want the user to be immediately logged in to your application. "
@@ -6165,13 +6171,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4526
+#: Security.xml:4529
#, no-c-format
msgid "Logging out"
msgstr ""
#. Tag: para
-#: Security.xml:4528
+#: Security.xml:4531
#, no-c-format
msgid ""
"Logging out (forgetting an OpenID association) is done by calling <literal>#"
@@ -6182,7 +6188,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4535
+#: Security.xml:4538
#, no-c-format
msgid ""
"<event type="org.jboss.seam.security.loggedOut">\n"
@@ -6191,7 +6197,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4537
+#: Security.xml:4540
#, no-c-format
msgid ""
"It's important that you do not leave this out or the user will not be able "
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/hi-IN/Dependencies.po
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/hi-IN/Dependencies.po 2009-06-11 20:41:36 UTC (rev 11125)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/hi-IN/Dependencies.po 2009-06-11 20:43:04 UTC (rev 11126)
@@ -5,7 +5,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-04-15 13:51+0000\n"
+"POT-Creation-Date: 2009-06-11 18:45+0000\n"
"PO-Revision-Date: 2008-04-04 01:24+0000\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -938,8 +938,8 @@
#: Dependencies.xml:1182
#, no-c-format
msgid ""
-"This sample POM will give you Seam, JPA (provided by Hibernate) and "
-"Hibernate Validator:"
+"This sample POM will give you Seam, JPA (provided by Hibernate), Hibernate "
+"Validator and Hibernate Search:"
msgstr ""
#. Tag: programlisting
@@ -970,25 +970,31 @@
" <dependency>\n"
" <groupId>org.hibernate</groupId>\n"
" <artifactId>hibernate-validator</artifactId>\n"
-" <version>3.0.0.GA</version>\n"
+" <version>3.1.0.GA</version>\n"
" </dependency>\n"
"\n"
" <dependency>\n"
" <groupId>org.hibernate</groupId>\n"
" <artifactId>hibernate-annotations</artifactId>\n"
-" <version>3.3.0.ga</version>\n"
+" <version>3.4.0.GA</version>\n"
" </dependency>\n"
"\n"
" <dependency>\n"
" <groupId>org.hibernate</groupId>\n"
" <artifactId>hibernate-entitymanager</artifactId>\n"
-" <version>3.3.1.ga</version>\n"
+" <version>3.4.0.GA</version>\n"
" </dependency>\n"
+" \n"
+" <dependency>\n"
+" <groupId>org.hibernate</groupId>\n"
+" <artifactId>hibernate-search</artifactId>\n"
+" <version>3.1.1.GA</version>\n"
+" </dependency>\n"
"\n"
" <dependency>\n"
" <groupId>org.jboss.seam</groupId>\n"
" <artifactId>jboss-seam</artifactId>\n"
-" <version>2.0.0.GA</version>\n"
+" <version>2.2.0.GA</version>\n"
" </dependency>\n"
" \n"
" </dependencies>\n"
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/hi-IN/Hsearch.po
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/hi-IN/Hsearch.po 2009-06-11 20:41:36 UTC (rev 11125)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/hi-IN/Hsearch.po 2009-06-11 20:43:04 UTC (rev 11126)
@@ -5,7 +5,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-04-15 13:51+0000\n"
+"POT-Creation-Date: 2009-06-11 18:45+0000\n"
"PO-Revision-Date: 2008-04-04 01:24+0000\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -45,7 +45,7 @@
#: Hsearch.xml:21
#, no-c-format
msgid ""
-"Hibernate Search has been designed to integrates nicely and as naturally as "
+"Hibernate Search has been designed to integrate nicely and as naturally as "
"possible with JPA and Hibernate. As a natural extension, JBoss Seam provides "
"an Hibernate Search integration."
msgstr ""
@@ -132,7 +132,7 @@
" <property name=\"hibernate.ejb.event.post-delete\" \n"
" value=\"org.hibernate.search.event.FullTextIndexEventListener"
"\"/>\n"
-"\n"
+" \n"
" </properties>\n"
"</persistence-unit>]]>"
msgstr ""
@@ -141,12 +141,15 @@
#: Hsearch.xml:52
#, no-c-format
msgid ""
-"This step is no longer necessary if Hibernate Annotation or EntityManager "
-"3.3.x are used."
+"It is not longer necessary the register the event listeners if Hibernate "
+"Annotations or EntityManager 3.3.x are used. When using Hibernate Search 3.1."
+"x more eventlisteners are needed, but these are registered automatically by "
+"Hibernate Annotations; refer to the Hibernate Search reference for "
+"configuring it without EntityManager and Annotations."
msgstr ""
#. Tag: para
-#: Hsearch.xml:56
+#: Hsearch.xml:60
#, no-c-format
msgid ""
"In addition to the configuration file, the following jars have to be "
@@ -154,25 +157,25 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:61
+#: Hsearch.xml:65
#, no-c-format
msgid "hibernate-search.jar"
msgstr ""
#. Tag: para
-#: Hsearch.xml:65
+#: Hsearch.xml:69
#, no-c-format
msgid "hibernate-commons-annotations.jar"
msgstr ""
#. Tag: para
-#: Hsearch.xml:69
+#: Hsearch.xml:73
#, no-c-format
msgid "lucene-core.jar"
msgstr ""
#. Tag: para
-#: Hsearch.xml:74
+#: Hsearch.xml:78
#, no-c-format
msgid ""
"If you deploy those in a EAR, don't forget to update <filename>application."
@@ -180,13 +183,13 @@
msgstr ""
#. Tag: title
-#: Hsearch.xml:80
+#: Hsearch.xml:84
#, no-c-format
msgid "Usage"
msgstr ""
#. Tag: para
-#: Hsearch.xml:82
+#: Hsearch.xml:86
#, no-c-format
msgid ""
"Hibernate Search uses annotations to map entities to a Lucene index, check "
@@ -195,7 +198,7 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:87
+#: Hsearch.xml:91
#, no-c-format
msgid ""
"Hibernate Search is fully integrated with the API and semantic of JPA / "
@@ -206,7 +209,7 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:93
+#: Hsearch.xml:97
#, no-c-format
msgid ""
"When Hibernate Search is present, JBoss Seam injects a "
@@ -214,7 +217,7 @@
msgstr ""
#. Tag: programlisting
-#: Hsearch.xml:96
+#: Hsearch.xml:100
#, no-c-format
msgid ""
"<![CDATA[@Stateful\n"
@@ -237,7 +240,7 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:99
+#: Hsearch.xml:103
#, no-c-format
msgid ""
"<classname>FullTextSession</classname> extends <classname>org.hibernate."
@@ -245,14 +248,14 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:104
+#: Hsearch.xml:108
#, no-c-format
msgid ""
"If the Java Persistence API is used, a smoother integration is proposed."
msgstr ""
#. Tag: programlisting
-#: Hsearch.xml:107
+#: Hsearch.xml:111
#, no-c-format
msgid ""
"<![CDATA[@Stateful\n"
@@ -275,7 +278,7 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:109
+#: Hsearch.xml:113
#, no-c-format
msgid ""
"When Hibernate Search is present, a <classname>FulltextEntityManager</"
@@ -286,7 +289,7 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:116
+#: Hsearch.xml:120
#, no-c-format
msgid ""
"When an EJB 3.0 Session or Message Driven Bean injection is used (i.e. via "
@@ -299,7 +302,7 @@
msgstr ""
#. Tag: programlisting
-#: Hsearch.xml:124
+#: Hsearch.xml:128
#, no-c-format
msgid ""
"<![CDATA[@Stateful\n"
@@ -323,15 +326,15 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:129
+#: Hsearch.xml:133
#, no-c-format
msgid ""
"For people accustomed to Hibernate Search out of Seam, note that using "
-"<methodname>Search.createFullTextSession</methodname> is not necessary."
+"<methodname>Search.getFullTextSession</methodname> is not necessary."
msgstr ""
#. Tag: para
-#: Hsearch.xml:134
+#: Hsearch.xml:138
#, no-c-format
msgid ""
"Check the DVDStore or the blog examples of the JBoss Seam distribution for a "
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/hi-IN/Security.po
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/hi-IN/Security.po 2009-06-11 20:41:36 UTC (rev 11125)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/hi-IN/Security.po 2009-06-11 20:43:04 UTC (rev 11126)
@@ -5,7 +5,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-06-11 07:43+0000\n"
+"POT-Creation-Date: 2009-06-11 18:45+0000\n"
"PO-Revision-Date: 2008-04-04 01:24+0000\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -1190,7 +1190,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:630 Security.xml:764 Security.xml:3382 Security.xml:3545
+#: Security.xml:630 Security.xml:764 Security.xml:3385 Security.xml:3548
#, no-c-format
msgid "Annotation"
msgstr ""
@@ -1203,8 +1203,8 @@
#. Tag: para
#: Security.xml:636 Security.xml:770 Security.xml:966 Security.xml:1418
-#: Security.xml:2147 Security.xml:2756 Security.xml:3171 Security.xml:3388
-#: Security.xml:3551 Security.xml:3792 Security.xml:4229
+#: Security.xml:2147 Security.xml:2756 Security.xml:3174 Security.xml:3391
+#: Security.xml:3554 Security.xml:3795 Security.xml:4232
#, no-c-format
msgid "Description"
msgstr ""
@@ -2228,8 +2228,8 @@
msgstr ""
#. Tag: para
-#: Security.xml:1412 Security.xml:1828 Security.xml:2753 Security.xml:3168
-#: Security.xml:3789 Security.xml:3958
+#: Security.xml:1412 Security.xml:1828 Security.xml:2753 Security.xml:3171
+#: Security.xml:3792 Security.xml:3961
#, no-c-format
msgid "Method"
msgstr ""
@@ -2250,9 +2250,9 @@
#: Security.xml:1433 Security.xml:1452 Security.xml:1471 Security.xml:1490
#: Security.xml:1509 Security.xml:1529 Security.xml:1548 Security.xml:1567
#: Security.xml:1586 Security.xml:1606 Security.xml:1626 Security.xml:1740
-#: Security.xml:1762 Security.xml:1780 Security.xml:2766 Security.xml:3239
-#: Security.xml:3258 Security.xml:3277 Security.xml:3295 Security.xml:3840
-#: Security.xml:3859 Security.xml:3878 Security.xml:3897
+#: Security.xml:1762 Security.xml:1780 Security.xml:2766 Security.xml:3242
+#: Security.xml:3261 Security.xml:3280 Security.xml:3298 Security.xml:3843
+#: Security.xml:3862 Security.xml:3881 Security.xml:3900
#, no-c-format
msgid "boolean"
msgstr ""
@@ -2558,13 +2558,13 @@
msgstr ""
#. Tag: para
-#: Security.xml:1831 Security.xml:3961
+#: Security.xml:1831 Security.xml:3964
#, no-c-format
msgid "Permission Target"
msgstr ""
#. Tag: para
-#: Security.xml:1834 Security.xml:3964
+#: Security.xml:1834 Security.xml:3967
#, no-c-format
msgid "Permission Action"
msgstr ""
@@ -3806,7 +3806,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2750 Security.xml:3165 Security.xml:3786
+#: Security.xml:2750 Security.xml:3168 Security.xml:3789
#, no-c-format
msgid "Return type"
msgstr ""
@@ -3986,41 +3986,47 @@
#. Tag: para
#: Security.xml:2917
#, no-c-format
-msgid "drools-compiler.jar"
+msgid "drools-api.jar"
msgstr ""
#. Tag: para
#: Security.xml:2920
#, no-c-format
-msgid "drools-core.jar"
+msgid "drools-compiler.jar"
msgstr ""
#. Tag: para
#: Security.xml:2923
#, no-c-format
-msgid "janino.jar"
+msgid "drools-core.jar"
msgstr ""
#. Tag: para
#: Security.xml:2926
#, no-c-format
-msgid "antlr-runtime.jar"
+msgid "janino.jar"
msgstr ""
#. Tag: para
#: Security.xml:2929
#, no-c-format
-msgid "mvel14.jar"
+msgid "antlr-runtime.jar"
msgstr ""
+#. Tag: para
+#: Security.xml:2932
+#, no-c-format
+msgid "mvel2.jar"
+msgstr ""
+
#. Tag: title
-#: Security.xml:2936 Security.xml:3128
+#: Security.xml:2939 Security.xml:3131
#, no-c-format
msgid "Configuration"
msgstr ""
#. Tag: para
-#: Security.xml:2938
+#: Security.xml:2941
#, no-c-format
msgid ""
"The configuration for <literal>RuleBasedPermissionResolver</literal> "
@@ -4030,7 +4036,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:2944
+#: Security.xml:2947
#, no-c-format
msgid ""
"<![CDATA[<components xmlns=\"http://jboss.com/products/seam/components\"\n"
@@ -4058,7 +4064,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2946
+#: Security.xml:2949
#, no-c-format
msgid ""
"The default rule base name can be overridden by specifying the "
@@ -4067,7 +4073,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:2951
+#: Security.xml:2954
#, no-c-format
msgid ""
"<![CDATA[\n"
@@ -4076,7 +4082,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2953
+#: Security.xml:2956
#, no-c-format
msgid ""
"Once the <literal>RuleBase</literal> component is configured, it's time to "
@@ -4084,13 +4090,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:2959
+#: Security.xml:2962
#, no-c-format
msgid "Writing Security Rules"
msgstr ""
#. Tag: para
-#: Security.xml:2961
+#: Security.xml:2964
#, no-c-format
msgid ""
"The first step to writing security rules is to create a new rule file in the "
@@ -4101,7 +4107,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2968
+#: Security.xml:2971
#, no-c-format
msgid ""
"So what should the security rules file contain? At this stage it might be a "
@@ -4110,7 +4116,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:2973
+#: Security.xml:2976
#, no-c-format
msgid ""
"<![CDATA[package MyApplicationPermissions;\n"
@@ -4128,7 +4134,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2975
+#: Security.xml:2978
#, no-c-format
msgid ""
"Let's break this down step by step. The first thing we see is the package "
@@ -4138,7 +4144,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2981
+#: Security.xml:2984
#, no-c-format
msgid ""
"The next thing we can notice is a couple of import statements for the "
@@ -4148,7 +4154,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2987
+#: Security.xml:2990
#, no-c-format
msgid ""
"Finally we have the code for the rule. Each rule within a package should be "
@@ -4158,7 +4164,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2993
+#: Security.xml:2996
#, no-c-format
msgid ""
"Looking at the body of the rule definition we can notice two distinct "
@@ -4173,7 +4179,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3002
+#: Security.xml:3005
#, no-c-format
msgid ""
"If we look at the LHS of the rule, we see two conditions listed there. Let's "
@@ -4181,14 +4187,14 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3006
+#: Security.xml:3009
#, no-c-format
msgid ""
"<![CDATA[c: PermissionCheck(target == \"customer\", action == \"delete\")]]>"
msgstr ""
#. Tag: para
-#: Security.xml:3008
+#: Security.xml:3011
#, no-c-format
msgid ""
"In plain english, this condition is stating that there must exist a "
@@ -4198,7 +4204,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3014
+#: Security.xml:3017
#, no-c-format
msgid ""
"So what is the working memory? Also known as a \"stateful session\" in "
@@ -4216,7 +4222,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3026
+#: Security.xml:3029
#, no-c-format
msgid ""
"Besides the <literal>PermissionCheck</literal> facts, there is also a "
@@ -4233,7 +4239,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3037
+#: Security.xml:3040
#, no-c-format
msgid ""
"It is also possible to insert additional long-lived facts into the working "
@@ -4244,7 +4250,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3044
+#: Security.xml:3047
#, no-c-format
msgid ""
"Getting back to our simple example, we can also notice that the first line "
@@ -4255,13 +4261,13 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3051
+#: Security.xml:3054
#, no-c-format
msgid "<![CDATA[Role(name == \"admin\")]]>"
msgstr ""
#. Tag: para
-#: Security.xml:3053
+#: Security.xml:3056
#, no-c-format
msgid ""
"This condition simply states that there must be a <literal>Role</literal> "
@@ -4274,7 +4280,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3061
+#: Security.xml:3064
#, no-c-format
msgid ""
"So what is the consequence of the rule firing? Let's take a look at the RHS "
@@ -4282,13 +4288,13 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3065
+#: Security.xml:3068
#, no-c-format
msgid "<![CDATA[c.grant()]]>"
msgstr ""
#. Tag: para
-#: Security.xml:3067
+#: Security.xml:3070
#, no-c-format
msgid ""
"The RHS consists of Java code, and in this case is invoking the "
@@ -4305,13 +4311,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3081
+#: Security.xml:3084
#, no-c-format
msgid "Non-String permission targets"
msgstr ""
#. Tag: para
-#: Security.xml:3083
+#: Security.xml:3086
#, no-c-format
msgid ""
"So far we have only seen permission checks for String-literal permission "
@@ -4325,7 +4331,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3092
+#: Security.xml:3095
#, no-c-format
msgid ""
"<![CDATA[rule CanCreateBlogComment\n"
@@ -4343,13 +4349,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3097
+#: Security.xml:3100
#, no-c-format
msgid "Wildcard permission checks"
msgstr ""
#. Tag: para
-#: Security.xml:3099
+#: Security.xml:3102
#, no-c-format
msgid ""
"It is possible to implement a wildcard permission check (which allows all "
@@ -4359,7 +4365,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3105
+#: Security.xml:3108
#, no-c-format
msgid ""
"<![CDATA[rule CanDoAnythingToCustomersIfYouAreAnAdmin\n"
@@ -4373,7 +4379,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3107
+#: Security.xml:3110
#, no-c-format
msgid ""
"This rule allows users with the <literal>admin</literal> role to perform "
@@ -4382,13 +4388,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3117
+#: Security.xml:3120
#, no-c-format
msgid "PersistentPermissionResolver"
msgstr ""
#. Tag: para
-#: Security.xml:3119
+#: Security.xml:3122
#, no-c-format
msgid ""
"Another built-in permission resolver provided by Seam, "
@@ -4401,7 +4407,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3130
+#: Security.xml:3133
#, no-c-format
msgid ""
"Before it can be used, <literal>PersistentPermissionResolver</literal> must "
@@ -4414,7 +4420,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3138
+#: Security.xml:3141
#, no-c-format
msgid ""
"<![CDATA[ <security:persistent-permission-resolver permission-store=\"#"
@@ -4422,13 +4428,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3143
+#: Security.xml:3146
#, no-c-format
msgid "Permission Stores"
msgstr ""
#. Tag: para
-#: Security.xml:3145
+#: Security.xml:3148
#, no-c-format
msgid ""
"A permission store is required for <literal>PersistentPermissionResolver</"
@@ -4441,26 +4447,26 @@
msgstr ""
#. Tag: title
-#: Security.xml:3155
+#: Security.xml:3158
#, no-c-format
msgid "PermissionStore interface"
msgstr ""
#. Tag: literal
-#: Security.xml:3181 Security.xml:3200 Security.xml:3219 Security.xml:3802
-#: Security.xml:3821
+#: Security.xml:3184 Security.xml:3203 Security.xml:3222 Security.xml:3805
+#: Security.xml:3824
#, no-c-format
msgid "List<Permission>"
msgstr ""
#. Tag: literal
-#: Security.xml:3186 Security.xml:3826
+#: Security.xml:3189 Security.xml:3829
#, no-c-format
msgid "listPermissions(Object target)"
msgstr ""
#. Tag: para
-#: Security.xml:3190
+#: Security.xml:3193
#, no-c-format
msgid ""
"This method should return a <literal>List</literal> of <literal>Permission</"
@@ -4469,13 +4475,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3205 Security.xml:3807
+#: Security.xml:3208 Security.xml:3810
#, no-c-format
msgid "listPermissions(Object target, String action)"
msgstr ""
#. Tag: para
-#: Security.xml:3209
+#: Security.xml:3212
#, no-c-format
msgid ""
"This method should return a <literal>List</literal> of <literal>Permission</"
@@ -4484,13 +4490,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3224
+#: Security.xml:3227
#, no-c-format
msgid "listPermissions(Set<Object> targets, String action)"
msgstr ""
#. Tag: para
-#: Security.xml:3228
+#: Security.xml:3231
#, no-c-format
msgid ""
"This method should return a <literal>List</literal> of <literal>Permission</"
@@ -4499,13 +4505,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3244
+#: Security.xml:3247
#, no-c-format
msgid "grantPermission(Permission)"
msgstr ""
#. Tag: para
-#: Security.xml:3248
+#: Security.xml:3251
#, no-c-format
msgid ""
"This method should persist the specified <literal>Permission</literal> "
@@ -4513,13 +4519,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3263 Security.xml:3864
+#: Security.xml:3266 Security.xml:3867
#, no-c-format
msgid "grantPermissions(List<Permission> permissions)"
msgstr ""
#. Tag: para
-#: Security.xml:3267
+#: Security.xml:3270
#, no-c-format
msgid ""
"This method should persist all of the <literal>Permission</literal> objects "
@@ -4528,13 +4534,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3282 Security.xml:3883
+#: Security.xml:3285 Security.xml:3886
#, no-c-format
msgid "revokePermission(Permission permission)"
msgstr ""
#. Tag: para
-#: Security.xml:3286
+#: Security.xml:3289
#, no-c-format
msgid ""
"This method should remove the specified <literal>Permission</literal> object "
@@ -4542,13 +4548,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3300 Security.xml:3902
+#: Security.xml:3303 Security.xml:3905
#, no-c-format
msgid "revokePermissions(List<Permission> permissions)"
msgstr ""
#. Tag: para
-#: Security.xml:3304
+#: Security.xml:3307
#, no-c-format
msgid ""
"This method should remove all of the <literal>Permission</literal> objects "
@@ -4556,19 +4562,19 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3314 Security.xml:3916
+#: Security.xml:3317 Security.xml:3919
#, no-c-format
msgid "List<String>"
msgstr ""
#. Tag: literal
-#: Security.xml:3319 Security.xml:3921
+#: Security.xml:3322 Security.xml:3924
#, no-c-format
msgid "listAvailableActions(Object target)"
msgstr ""
#. Tag: para
-#: Security.xml:3323
+#: Security.xml:3326
#, no-c-format
msgid ""
"This method should return a list of all the available actions (as Strings) "
@@ -4578,13 +4584,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3337
+#: Security.xml:3340
#, no-c-format
msgid "JpaPermissionStore"
msgstr ""
#. Tag: para
-#: Security.xml:3339
+#: Security.xml:3342
#, no-c-format
msgid ""
"This is the default <literal>PermissionStore</literal> implementation (and "
@@ -4597,7 +4603,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3347
+#: Security.xml:3350
#, no-c-format
msgid ""
"If you wish to use the same entity (i.e. a single database table) to store "
@@ -4609,7 +4615,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3354
+#: Security.xml:3357
#, no-c-format
msgid ""
"For example, to configure a single entity class to store both user and role "
@@ -4617,7 +4623,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3356
+#: Security.xml:3359
#, no-c-format
msgid ""
"<![CDATA[ <security:jpa-permission-store user-permission-class=\"com.acme."
@@ -4625,14 +4631,14 @@
msgstr ""
#. Tag: para
-#: Security.xml:3358
+#: Security.xml:3361
#, no-c-format
msgid ""
"To configure separate entity classes for storing user and role permissions:"
msgstr ""
#. Tag: programlisting
-#: Security.xml:3360
+#: Security.xml:3363
#, no-c-format
msgid ""
"<![CDATA[ <security:jpa-permission-store user-permission-class=\"com.acme."
@@ -4641,13 +4647,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3363
+#: Security.xml:3366
#, no-c-format
msgid "Permission annotations"
msgstr ""
#. Tag: para
-#: Security.xml:3365
+#: Security.xml:3368
#, no-c-format
msgid ""
"As mentioned, the entity classes that contain the user and role permissions "
@@ -4658,32 +4664,32 @@
msgstr ""
#. Tag: title
-#: Security.xml:3372
+#: Security.xml:3375
#, no-c-format
msgid "Entity Permission annotations"
msgstr ""
#. Tag: para
-#: Security.xml:3385 Security.xml:3548
+#: Security.xml:3388 Security.xml:3551
#, no-c-format
msgid "Target"
msgstr ""
#. Tag: literal
-#: Security.xml:3398
+#: Security.xml:3401
#, no-c-format
msgid "@PermissionTarget"
msgstr ""
#. Tag: literal
-#: Security.xml:3403 Security.xml:3422 Security.xml:3441 Security.xml:3460
-#: Security.xml:3479
+#: Security.xml:3406 Security.xml:3425 Security.xml:3444 Security.xml:3463
+#: Security.xml:3482
#, no-c-format
msgid "FIELD,METHOD"
msgstr ""
#. Tag: para
-#: Security.xml:3407
+#: Security.xml:3410
#, no-c-format
msgid ""
"This annotation identifies the property of the entity that will contain the "
@@ -4692,13 +4698,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3417
+#: Security.xml:3420
#, no-c-format
msgid "@PermissionAction"
msgstr ""
#. Tag: para
-#: Security.xml:3426
+#: Security.xml:3429
#, no-c-format
msgid ""
"This annotation identifies the property of the entity that will contain the "
@@ -4707,13 +4713,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3436
+#: Security.xml:3439
#, no-c-format
msgid "@PermissionUser"
msgstr ""
#. Tag: para
-#: Security.xml:3445
+#: Security.xml:3448
#, no-c-format
msgid ""
"This annotation identifies the property of the entity that will contain the "
@@ -4722,13 +4728,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3455
+#: Security.xml:3458
#, no-c-format
msgid "@PermissionRole"
msgstr ""
#. Tag: para
-#: Security.xml:3464
+#: Security.xml:3467
#, no-c-format
msgid ""
"This annotation identifies the property of the entity that will contain the "
@@ -4737,13 +4743,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3474
+#: Security.xml:3477
#, no-c-format
msgid "@PermissionDiscriminator"
msgstr ""
#. Tag: para
-#: Security.xml:3483
+#: Security.xml:3486
#, no-c-format
msgid ""
"This annotation should be used when the same entity/table is used to store "
@@ -4760,20 +4766,20 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3493
+#: Security.xml:3496
#, no-c-format
msgid ""
"<![CDATA[ @PermissionDiscriminator(userValue = \"u\", roleValue = \"r\")]]>"
msgstr ""
#. Tag: title
-#: Security.xml:3504
+#: Security.xml:3507
#, no-c-format
msgid "Example Entity"
msgstr ""
#. Tag: para
-#: Security.xml:3506
+#: Security.xml:3509
#, no-c-format
msgid ""
"Here is an example of an entity class that is used to store both user and "
@@ -4782,7 +4788,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3511
+#: Security.xml:3514
#, no-c-format
msgid ""
"<![CDATA[\n"
@@ -4843,7 +4849,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3513
+#: Security.xml:3516
#, no-c-format
msgid ""
"As can be seen in the above example, the <literal>getDiscriminator()</"
@@ -4860,13 +4866,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3526
+#: Security.xml:3529
#, no-c-format
msgid "Class-specific Permission Configuration"
msgstr ""
#. Tag: para
-#: Security.xml:3528
+#: Security.xml:3531
#, no-c-format
msgid ""
"A further set of class-specific annotations can be used to configure a "
@@ -4876,25 +4882,25 @@
msgstr ""
#. Tag: title
-#: Security.xml:3535
+#: Security.xml:3538
#, no-c-format
msgid "Class Permission Annotations"
msgstr ""
#. Tag: literal
-#: Security.xml:3561
+#: Security.xml:3564
#, no-c-format
msgid "@Permissions"
msgstr ""
#. Tag: literal
-#: Security.xml:3566 Security.xml:3584
+#: Security.xml:3569 Security.xml:3587
#, no-c-format
msgid "TYPE"
msgstr ""
#. Tag: para
-#: Security.xml:3570
+#: Security.xml:3573
#, no-c-format
msgid ""
"A container annotation, this annotation may contain an array of "
@@ -4902,13 +4908,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3579
+#: Security.xml:3582
#, no-c-format
msgid "@Permission"
msgstr ""
#. Tag: para
-#: Security.xml:3588
+#: Security.xml:3591
#, no-c-format
msgid ""
"This annotation defines a single allowable permission action for the target "
@@ -4919,7 +4925,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3600
+#: Security.xml:3603
#, no-c-format
msgid ""
"Here's an example of the above annotations in action. The following class "
@@ -4927,7 +4933,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3604
+#: Security.xml:3607
#, no-c-format
msgid ""
"<![CDATA[@Permissions({\n"
@@ -4939,7 +4945,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3606
+#: Security.xml:3609
#, no-c-format
msgid ""
"This example demonstrates how two allowable permission actions, "
@@ -4948,13 +4954,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3614
+#: Security.xml:3617
#, no-c-format
msgid "Permission masks"
msgstr ""
#. Tag: para
-#: Security.xml:3616
+#: Security.xml:3619
#, no-c-format
msgid ""
"By default, multiple permissions for the same target object and recipient "
@@ -4966,7 +4972,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3623
+#: Security.xml:3626
#, no-c-format
msgid ""
"For example, if recipient \"Bob\" is granted both the <literal>view</"
@@ -4979,7 +4985,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3630
+#: Security.xml:3633
#, no-c-format
msgid ""
"<![CDATA[@Permissions({\n"
@@ -4991,7 +4997,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3632
+#: Security.xml:3635
#, no-c-format
msgid ""
"The <literal>action</literal> property will instead simply contain \"3"
@@ -5001,7 +5007,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3638
+#: Security.xml:3641
#, no-c-format
msgid ""
"Obviously, it is very important that the <literal>mask</literal> values "
@@ -5009,13 +5015,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3644
+#: Security.xml:3647
#, no-c-format
msgid "Identifier Policy"
msgstr ""
#. Tag: para
-#: Security.xml:3646
+#: Security.xml:3649
#, no-c-format
msgid ""
"When storing or looking up permissions, <literal>JpaPermissionStore</"
@@ -5029,7 +5035,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3654
+#: Security.xml:3657
#, no-c-format
msgid ""
"The <literal>IdentifierStrategy</literal> interface is very simple, "
@@ -5037,7 +5043,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3658
+#: Security.xml:3661
#, no-c-format
msgid ""
"<![CDATA[public interface IdentifierStrategy {\n"
@@ -5047,7 +5053,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3660
+#: Security.xml:3663
#, no-c-format
msgid ""
"The first method, <literal>canIdentify()</literal> simply returns "
@@ -5058,7 +5064,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3666
+#: Security.xml:3669
#, no-c-format
msgid ""
"Seam provides two <literal>IdentifierStrategy</literal> implementations, "
@@ -5067,7 +5073,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3671
+#: Security.xml:3674
#, no-c-format
msgid ""
"To explicitly configure a specific identifier strategy to use for a "
@@ -5080,13 +5086,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3681
+#: Security.xml:3684
#, no-c-format
msgid "ClassIdentifierStrategy"
msgstr ""
#. Tag: para
-#: Security.xml:3683
+#: Security.xml:3686
#, no-c-format
msgid ""
"This identifier strategy is used to generate unique identifiers for classes, "
@@ -5100,7 +5106,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3692
+#: Security.xml:3695
#, no-c-format
msgid ""
"<![CDATA[@Identifier(name = \"customer\")\n"
@@ -5108,7 +5114,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3694
+#: Security.xml:3697
#, no-c-format
msgid ""
"The identifier for the following class will be \"<literal>customerAction</"
@@ -5116,7 +5122,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3698
+#: Security.xml:3701
#, no-c-format
msgid ""
"<![CDATA[@Name(\"customerAction\")\n"
@@ -5124,7 +5130,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3700
+#: Security.xml:3703
#, no-c-format
msgid ""
"Finally, the identifier for the following class will be \"<literal>Customer</"
@@ -5132,19 +5138,19 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3704
+#: Security.xml:3707
#, no-c-format
msgid "<![CDATA[public class Customer { ]]>"
msgstr ""
#. Tag: title
-#: Security.xml:3709
+#: Security.xml:3712
#, no-c-format
msgid "EntityIdentifierStrategy"
msgstr ""
#. Tag: para
-#: Security.xml:3711
+#: Security.xml:3714
#, no-c-format
msgid ""
"This identifier strategy is used to generate unique identifiers for entity "
@@ -5161,7 +5167,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3722
+#: Security.xml:3725
#, no-c-format
msgid ""
"<![CDATA[@Identifier(value = EntityIdentifierStrategy.class)\n"
@@ -5169,7 +5175,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3724
+#: Security.xml:3727
#, no-c-format
msgid ""
"For an example of the type of identifier values generated, assume we have "
@@ -5177,7 +5183,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3728
+#: Security.xml:3731
#, no-c-format
msgid ""
"<![CDATA[@Entity\n"
@@ -5200,7 +5206,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3730
+#: Security.xml:3733
#, no-c-format
msgid ""
"For a <literal>Customer</literal> instance with an <literal>id</literal> "
@@ -5210,7 +5216,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3736
+#: Security.xml:3739
#, no-c-format
msgid ""
"<![CDATA[@Entity\n"
@@ -5219,7 +5225,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3738
+#: Security.xml:3741
#, no-c-format
msgid ""
"Then a <literal>Customer</literal> with an <literal>id</literal> value of "
@@ -5228,13 +5234,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3751
+#: Security.xml:3754
#, no-c-format
msgid "Permission Management"
msgstr ""
#. Tag: para
-#: Security.xml:3753
+#: Security.xml:3756
#, no-c-format
msgid ""
"In much the same way that Seam Security provides an Identity Management API "
@@ -5244,13 +5250,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3760
+#: Security.xml:3763
#, no-c-format
msgid "PermissionManager"
msgstr ""
#. Tag: para
-#: Security.xml:3762
+#: Security.xml:3765
#, no-c-format
msgid ""
"The <literal>PermissionManager</literal> component is an application-scoped "
@@ -5263,7 +5269,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3769
+#: Security.xml:3772
#, no-c-format
msgid ""
"<![CDATA[\n"
@@ -5273,7 +5279,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3771
+#: Security.xml:3774
#, no-c-format
msgid ""
"The following table describes each of the available methods provided by "
@@ -5281,13 +5287,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3776
+#: Security.xml:3779
#, no-c-format
msgid "PermissionManager API methods"
msgstr ""
#. Tag: para
-#: Security.xml:3811 Security.xml:3830
+#: Security.xml:3814 Security.xml:3833
#, no-c-format
msgid ""
"Returns a list of <literal>Permission</literal> objects representing all of "
@@ -5295,13 +5301,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3845
+#: Security.xml:3848
#, no-c-format
msgid "grantPermission(Permission permission)"
msgstr ""
#. Tag: para
-#: Security.xml:3849
+#: Security.xml:3852
#, no-c-format
msgid ""
"Persists (grants) the specified <literal>Permission</literal> to the backend "
@@ -5309,7 +5315,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3868
+#: Security.xml:3871
#, no-c-format
msgid ""
"Persists (grants) the specified list of <literal>Permission</literal>s to "
@@ -5317,7 +5323,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3887
+#: Security.xml:3890
#, no-c-format
msgid ""
"Removes (revokes) the specified <literal>Permission</literal> from the "
@@ -5325,7 +5331,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3906
+#: Security.xml:3909
#, no-c-format
msgid ""
"Removes (revokes) the specified list of <literal>Permission</literal>s from "
@@ -5333,7 +5339,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3925
+#: Security.xml:3928
#, no-c-format
msgid ""
"Returns a list of the available actions for the specified target object. The "
@@ -5342,13 +5348,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3940
+#: Security.xml:3943
#, no-c-format
msgid "Permission checks for PermissionManager operations"
msgstr ""
#. Tag: para
-#: Security.xml:3942
+#: Security.xml:3945
#, no-c-format
msgid ""
"Invoking the methods of <literal>PermissionManager</literal> requires that "
@@ -5358,37 +5364,37 @@
msgstr ""
#. Tag: title
-#: Security.xml:3949
+#: Security.xml:3952
#, no-c-format
msgid "Permission Management Security Permissions"
msgstr ""
#. Tag: literal
-#: Security.xml:3973
+#: Security.xml:3976
#, no-c-format
msgid "listPermissions()"
msgstr ""
#. Tag: para
-#: Security.xml:3977
+#: Security.xml:3980
#, no-c-format
msgid "The specified <literal>target</literal>"
msgstr ""
#. Tag: literal
-#: Security.xml:3983
+#: Security.xml:3986
#, no-c-format
msgid "seam.read-permissions"
msgstr ""
#. Tag: literal
-#: Security.xml:3991 Security.xml:4011
+#: Security.xml:3994 Security.xml:4014
#, no-c-format
msgid "grantPermission()"
msgstr ""
#. Tag: para
-#: Security.xml:3995
+#: Security.xml:3998
#, no-c-format
msgid ""
"The target of the specified <literal>Permission</literal>, or each of the "
@@ -5397,56 +5403,56 @@
msgstr ""
#. Tag: literal
-#: Security.xml:4003 Security.xml:4021 Security.xml:4039
+#: Security.xml:4006 Security.xml:4024 Security.xml:4042
#, no-c-format
msgid "seam.grant-permission"
msgstr ""
#. Tag: para
-#: Security.xml:4015 Security.xml:4051
+#: Security.xml:4018 Security.xml:4054
#, no-c-format
msgid "The target of the specified <literal>Permission</literal>."
msgstr ""
#. Tag: literal
-#: Security.xml:4029
+#: Security.xml:4032
#, no-c-format
msgid "grantPermissions()"
msgstr ""
#. Tag: para
-#: Security.xml:4033 Security.xml:4069
+#: Security.xml:4036 Security.xml:4072
#, no-c-format
msgid ""
"Each of the targets of the specified list of <literal>Permission</literal>s."
msgstr ""
#. Tag: literal
-#: Security.xml:4047
+#: Security.xml:4050
#, no-c-format
msgid "revokePermission()"
msgstr ""
#. Tag: literal
-#: Security.xml:4057 Security.xml:4075
+#: Security.xml:4060 Security.xml:4078
#, no-c-format
msgid "seam.revoke-permission"
msgstr ""
#. Tag: literal
-#: Security.xml:4065
+#: Security.xml:4068
#, no-c-format
msgid "revokePermissions()"
msgstr ""
#. Tag: title
-#: Security.xml:4088
+#: Security.xml:4091
#, no-c-format
msgid "SSL Security"
msgstr ""
#. Tag: para
-#: Security.xml:4090
+#: Security.xml:4093
#, no-c-format
msgid ""
"Seam includes basic support for serving sensitive pages via the HTTPS "
@@ -5457,13 +5463,13 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4097
+#: Security.xml:4100
#, no-c-format
msgid "<![CDATA[<page view-id=\"/login.xhtml\" scheme=\"https\"/>]]>"
msgstr ""
#. Tag: para
-#: Security.xml:4099
+#: Security.xml:4102
#, no-c-format
msgid ""
"This configuration is automatically extended to both <literal>s:link</"
@@ -5475,13 +5481,13 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4106
+#: Security.xml:4109
#, no-c-format
msgid "<![CDATA[<s:link view=\"/login.xhtml\" value=\"Login\"/>]]>"
msgstr ""
#. Tag: para
-#: Security.xml:4108
+#: Security.xml:4111
#, no-c-format
msgid ""
"Browsing directly to a view when using the <emphasis>incorrect</emphasis> "
@@ -5492,7 +5498,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4115
+#: Security.xml:4118
#, no-c-format
msgid ""
"It is also possible to configure a <emphasis>default scheme</emphasis> for "
@@ -5506,13 +5512,13 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4124
+#: Security.xml:4127
#, no-c-format
msgid "<![CDATA[<page view-id=\"*\" scheme=\"http\" />]]>"
msgstr ""
#. Tag: para
-#: Security.xml:4126
+#: Security.xml:4129
#, no-c-format
msgid ""
"Of course, if <emphasis>none</emphasis> of the pages in your application use "
@@ -5520,7 +5526,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4131
+#: Security.xml:4134
#, no-c-format
msgid ""
"You may configure Seam to automatically invalidate the current HTTP session "
@@ -5529,13 +5535,13 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4136
+#: Security.xml:4139
#, no-c-format
msgid "<![CDATA[<web:session invalidate-on-scheme-change=\"true\"/>]]>"
msgstr ""
#. Tag: para
-#: Security.xml:4138
+#: Security.xml:4141
#, no-c-format
msgid ""
"This option helps make your system less vulnerable to sniffing of the "
@@ -5544,13 +5550,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4144
+#: Security.xml:4147
#, no-c-format
msgid "Overriding the default ports"
msgstr ""
#. Tag: para
-#: Security.xml:4146
+#: Security.xml:4149
#, no-c-format
msgid ""
"If you wish to configure the HTTP and HTTPS ports manually, they may be "
@@ -5560,7 +5566,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4152
+#: Security.xml:4155
#, no-c-format
msgid ""
"<![CDATA[\n"
@@ -5576,13 +5582,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4158
+#: Security.xml:4161
#, no-c-format
msgid "CAPTCHA"
msgstr ""
#. Tag: para
-#: Security.xml:4160
+#: Security.xml:4163
#, no-c-format
msgid ""
"Though strictly not part of the security API, Seam provides a built-in "
@@ -5594,13 +5600,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4168
+#: Security.xml:4171
#, no-c-format
msgid "Configuring the CAPTCHA Servlet"
msgstr ""
#. Tag: para
-#: Security.xml:4169
+#: Security.xml:4172
#, no-c-format
msgid ""
"To get up and running, it is necessary to configure the Seam Resource "
@@ -5609,7 +5615,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4174
+#: Security.xml:4177
#, no-c-format
msgid ""
"<![CDATA[<servlet>\n"
@@ -5625,20 +5631,20 @@
msgstr ""
#. Tag: title
-#: Security.xml:4179
+#: Security.xml:4182
#, no-c-format
msgid "Adding a CAPTCHA to a form"
msgstr ""
#. Tag: para
-#: Security.xml:4181
+#: Security.xml:4184
#, no-c-format
msgid ""
"Adding a CAPTCHA challenge to a form is extremely easy. Here's an example:"
msgstr ""
#. Tag: programlisting
-#: Security.xml:4185
+#: Security.xml:4188
#, no-c-format
msgid ""
"<![CDATA[<h:graphicImage value=\"/seam/resource/captcha\"/>\n"
@@ -5650,7 +5656,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4187
+#: Security.xml:4190
#, no-c-format
msgid ""
"That's all there is to it. The <literal>graphicImage</literal> control "
@@ -5660,20 +5666,20 @@
msgstr ""
#. Tag: title
-#: Security.xml:4196
+#: Security.xml:4199
#, no-c-format
msgid "Customising the CAPTCHA algorithm"
msgstr ""
#. Tag: para
-#: Security.xml:4198
+#: Security.xml:4201
#, no-c-format
msgid ""
"You may customize the CAPTCHA algorithm by overriding the built-in component:"
msgstr ""
#. Tag: programlisting
-#: Security.xml:4202
+#: Security.xml:4205
#, no-c-format
msgid ""
"<![CDATA[@Name(\"org.jboss.seam.captcha.captcha\")\n"
@@ -5700,13 +5706,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4209 Security.xml:4217
+#: Security.xml:4212 Security.xml:4220
#, no-c-format
msgid "Security Events"
msgstr ""
#. Tag: para
-#: Security.xml:4211
+#: Security.xml:4214
#, no-c-format
msgid ""
"The following table describes a number of events (see <xref linkend=\"events"
@@ -5714,68 +5720,68 @@
msgstr ""
#. Tag: para
-#: Security.xml:4226
+#: Security.xml:4229
#, no-c-format
msgid "Event Key"
msgstr ""
#. Tag: literal
-#: Security.xml:4239
+#: Security.xml:4242
#, no-c-format
msgid "org.jboss.seam.security.loginSuccessful"
msgstr ""
#. Tag: para
-#: Security.xml:4243
+#: Security.xml:4246
#, no-c-format
msgid "Raised when a login attempt is successful."
msgstr ""
#. Tag: literal
-#: Security.xml:4251
+#: Security.xml:4254
#, no-c-format
msgid "org.jboss.seam.security.loginFailed"
msgstr ""
#. Tag: para
-#: Security.xml:4255
+#: Security.xml:4258
#, no-c-format
msgid "Raised when a login attempt fails."
msgstr ""
#. Tag: literal
-#: Security.xml:4263
+#: Security.xml:4266
#, no-c-format
msgid "org.jboss.seam.security.alreadyLoggedIn"
msgstr ""
#. Tag: para
-#: Security.xml:4267
+#: Security.xml:4270
#, no-c-format
msgid ""
"Raised when a user that is already authenticated attempts to log in again."
msgstr ""
#. Tag: literal
-#: Security.xml:4275
+#: Security.xml:4278
#, no-c-format
msgid "org.jboss.seam.security.notLoggedIn"
msgstr ""
#. Tag: para
-#: Security.xml:4279
+#: Security.xml:4282
#, no-c-format
msgid "Raised when a security check fails when the user is not logged in."
msgstr ""
#. Tag: literal
-#: Security.xml:4287
+#: Security.xml:4290
#, no-c-format
msgid "org.jboss.seam.security.notAuthorized"
msgstr ""
#. Tag: para
-#: Security.xml:4291
+#: Security.xml:4294
#, no-c-format
msgid ""
"Raised when a security check fails when the user is logged in however "
@@ -5783,73 +5789,73 @@
msgstr ""
#. Tag: literal
-#: Security.xml:4299
+#: Security.xml:4302
#, no-c-format
msgid "org.jboss.seam.security.preAuthenticate"
msgstr ""
#. Tag: para
-#: Security.xml:4303
+#: Security.xml:4306
#, no-c-format
msgid "Raised just prior to user authentication."
msgstr ""
#. Tag: literal
-#: Security.xml:4311
+#: Security.xml:4314
#, no-c-format
msgid "org.jboss.seam.security.postAuthenticate"
msgstr ""
#. Tag: para
-#: Security.xml:4315
+#: Security.xml:4318
#, no-c-format
msgid "Raised just after user authentication."
msgstr ""
#. Tag: literal
-#: Security.xml:4323
+#: Security.xml:4326
#, no-c-format
msgid "org.jboss.seam.security.loggedOut"
msgstr ""
#. Tag: para
-#: Security.xml:4327
+#: Security.xml:4330
#, no-c-format
msgid "Raised after the user has logged out."
msgstr ""
#. Tag: literal
-#: Security.xml:4335
+#: Security.xml:4338
#, no-c-format
msgid "org.jboss.seam.security.credentialsUpdated"
msgstr ""
#. Tag: para
-#: Security.xml:4339
+#: Security.xml:4342
#, no-c-format
msgid "Raised when the user's credentials have been changed."
msgstr ""
#. Tag: literal
-#: Security.xml:4347
+#: Security.xml:4350
#, no-c-format
msgid "org.jboss.seam.security.rememberMe"
msgstr ""
#. Tag: para
-#: Security.xml:4351
+#: Security.xml:4354
#, no-c-format
msgid "Raised when the Identity's rememberMe property is changed."
msgstr ""
#. Tag: title
-#: Security.xml:4364
+#: Security.xml:4367
#, no-c-format
msgid "Run As"
msgstr ""
#. Tag: para
-#: Security.xml:4366
+#: Security.xml:4369
#, no-c-format
msgid ""
"Sometimes it may be necessary to perform certain operations with elevated "
@@ -5861,7 +5867,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4374
+#: Security.xml:4377
#, no-c-format
msgid ""
"The following code example demonstrates how <literal>RunAsOperation</"
@@ -5872,7 +5878,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4381
+#: Security.xml:4384
#, no-c-format
msgid ""
"<![CDATA[ new RunAsOperation() { \n"
@@ -5884,7 +5890,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4383
+#: Security.xml:4386
#, no-c-format
msgid ""
"In a similar way, the <literal>getPrincipal()</literal> or "
@@ -5895,13 +5901,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4394
+#: Security.xml:4397
#, no-c-format
msgid "Extending the Identity component"
msgstr ""
#. Tag: para
-#: Security.xml:4396
+#: Security.xml:4399
#, no-c-format
msgid ""
"Sometimes it might be necessary to extend the Identity component if your "
@@ -5914,7 +5920,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4404
+#: Security.xml:4407
#, no-c-format
msgid ""
"<![CDATA[@Name(\"org.jboss.seam.security.identity\")\n"
@@ -5949,7 +5955,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4407
+#: Security.xml:4410
#, no-c-format
msgid ""
"Note that an <literal>Identity</literal> component must be marked "
@@ -5959,13 +5965,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4419
+#: Security.xml:4422
#, no-c-format
msgid "OpenID"
msgstr ""
#. Tag: para
-#: Security.xml:4421
+#: Security.xml:4424
#, no-c-format
msgid ""
"OpenID is a community standard for external web-based authentication. The "
@@ -5978,7 +5984,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4430
+#: Security.xml:4433
#, no-c-format
msgid ""
"When using OpenID, the user selects an OpenID provider, and the provider "
@@ -5995,7 +6001,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4439
+#: Security.xml:4442
#, no-c-format
msgid ""
"It's important to realize at this point that authentication does not imply "
@@ -6008,13 +6014,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4449
+#: Security.xml:4452
#, no-c-format
msgid "Configuring OpenID"
msgstr ""
#. Tag: para
-#: Security.xml:4450
+#: Security.xml:4453
#, no-c-format
msgid ""
"Seam uses the openid4java package and requires four additional JARs to make "
@@ -6024,7 +6030,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4456
+#: Security.xml:4459
#, no-c-format
msgid ""
"OpenID processing requires the use of the <literal>OpenIdPhaseListener</"
@@ -6034,7 +6040,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4462
+#: Security.xml:4465
#, no-c-format
msgid ""
"<lifecycle>\n"
@@ -6044,7 +6050,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4465
+#: Security.xml:4468
#, no-c-format
msgid ""
"With this configuration, OpenID support is available to your application. "
@@ -6054,13 +6060,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4473
+#: Security.xml:4476
#, no-c-format
msgid "Presenting an OpenIdDLogin form"
msgstr ""
#. Tag: para
-#: Security.xml:4475
+#: Security.xml:4478
#, no-c-format
msgid ""
"To initiate an OpenID login, you can present a simply form to the user "
@@ -6070,7 +6076,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4480
+#: Security.xml:4483
#, no-c-format
msgid ""
"<h:form>\n"
@@ -6081,7 +6087,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4482
+#: Security.xml:4485
#, no-c-format
msgid ""
"When the user submits the login form, he will be redirected to his OpenID "
@@ -6093,13 +6099,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4491
+#: Security.xml:4494
#, no-c-format
msgid "Logging in immediately"
msgstr ""
#. Tag: para
-#: Security.xml:4493
+#: Security.xml:4496
#, no-c-format
msgid ""
"The simplest strategy is to simply login the user immediately. The following "
@@ -6108,7 +6114,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4497
+#: Security.xml:4500
#, no-c-format
msgid ""
"<page view-id="/openid.xhtml">\n"
@@ -6128,7 +6134,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4499
+#: Security.xml:4502
#, no-c-format
msgid ""
"Thie <literal>loginImmediately()</literal> action checks to see if the "
@@ -6142,13 +6148,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4510
+#: Security.xml:4513
#, no-c-format
msgid "Deferring login"
msgstr ""
#. Tag: para
-#: Security.xml:4512
+#: Security.xml:4515
#, no-c-format
msgid ""
"You may not want the user to be immediately logged in to your application. "
@@ -6165,13 +6171,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4526
+#: Security.xml:4529
#, no-c-format
msgid "Logging out"
msgstr ""
#. Tag: para
-#: Security.xml:4528
+#: Security.xml:4531
#, no-c-format
msgid ""
"Logging out (forgetting an OpenID association) is done by calling <literal>#"
@@ -6182,7 +6188,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4535
+#: Security.xml:4538
#, no-c-format
msgid ""
"<event type="org.jboss.seam.security.loggedOut">\n"
@@ -6191,7 +6197,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4537
+#: Security.xml:4540
#, no-c-format
msgid ""
"It's important that you do not leave this out or the user will not be able "
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/ja-JP/Dependencies.po
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/ja-JP/Dependencies.po 2009-06-11 20:41:36 UTC (rev 11125)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/ja-JP/Dependencies.po 2009-06-11 20:43:04 UTC (rev 11126)
@@ -4,7 +4,7 @@
msgstr ""
"Project-Id-Version: Dependencies\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-04-15 13:51+0000\n"
+"POT-Creation-Date: 2009-06-11 18:45+0000\n"
"PO-Revision-Date: 2009-03-06 15:59+1000\n"
"Last-Translator: Noriko Mizumoto <noriko(a)redhat.com>\n"
"Language-Team: Japanese <fedora-trans-ja(a)redhat.com>\n"
@@ -1014,17 +1014,17 @@
#. Tag: para
#: Dependencies.xml:1182
-#, no-c-format
+#, fuzzy, no-c-format
msgid ""
-"This sample POM will give you Seam, JPA (provided by Hibernate) and "
-"Hibernate Validator:"
+"This sample POM will give you Seam, JPA (provided by Hibernate), Hibernate "
+"Validator and Hibernate Search:"
msgstr ""
"このサンプルの POM は Seam、 JPA (Hibernate により提供される)、 Hibernate "
"Validator を提供しています。"
#. Tag: programlisting
#: Dependencies.xml:1187
-#, no-c-format
+#, fuzzy, no-c-format
msgid ""
"<![CDATA[<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n"
"<project xmlns=\"http://maven.apache.org/POM/4.0.0\"\n"
@@ -1050,25 +1050,31 @@
" <dependency>\n"
" <groupId>org.hibernate</groupId>\n"
" <artifactId>hibernate-validator</artifactId>\n"
-" <version>3.0.0.GA</version>\n"
+" <version>3.1.0.GA</version>\n"
" </dependency>\n"
"\n"
" <dependency>\n"
" <groupId>org.hibernate</groupId>\n"
" <artifactId>hibernate-annotations</artifactId>\n"
-" <version>3.3.0.ga</version>\n"
+" <version>3.4.0.GA</version>\n"
" </dependency>\n"
"\n"
" <dependency>\n"
" <groupId>org.hibernate</groupId>\n"
" <artifactId>hibernate-entitymanager</artifactId>\n"
-" <version>3.3.1.ga</version>\n"
+" <version>3.4.0.GA</version>\n"
" </dependency>\n"
+" \n"
+" <dependency>\n"
+" <groupId>org.hibernate</groupId>\n"
+" <artifactId>hibernate-search</artifactId>\n"
+" <version>3.1.1.GA</version>\n"
+" </dependency>\n"
"\n"
" <dependency>\n"
" <groupId>org.jboss.seam</groupId>\n"
" <artifactId>jboss-seam</artifactId>\n"
-" <version>2.0.0.GA</version>\n"
+" <version>2.2.0.GA</version>\n"
" </dependency>\n"
" \n"
" </dependencies>\n"
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/ja-JP/Hsearch.po
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/ja-JP/Hsearch.po 2009-06-11 20:41:36 UTC (rev 11125)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/ja-JP/Hsearch.po 2009-06-11 20:43:04 UTC (rev 11126)
@@ -4,7 +4,7 @@
msgstr ""
"Project-Id-Version: Tools\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-04-15 13:51+0000\n"
+"POT-Creation-Date: 2009-06-11 18:45+0000\n"
"PO-Revision-Date: 2009-01-12 22:00+0900\n"
"Last-Translator: Ai Suzuki <tar_zcvf(a)yahoo.co.jp>\n"
"Language-Team: Japanese <fedora-trans-ja(a)redhat.com>\n"
@@ -53,9 +53,9 @@
#. Tag: para
#: Hsearch.xml:21
-#, no-c-format
+#, fuzzy, no-c-format
msgid ""
-"Hibernate Search has been designed to integrates nicely and as naturally as "
+"Hibernate Search has been designed to integrate nicely and as naturally as "
"possible with JPA and Hibernate. As a natural extension, JBoss Seam provides "
"an Hibernate Search integration."
msgstr ""
@@ -155,7 +155,7 @@
" <property name=\"hibernate.ejb.event.post-delete\" \n"
" value=\"org.hibernate.search.event.FullTextIndexEventListener"
"\"/>\n"
-"\n"
+" \n"
" </properties>\n"
"</persistence-unit>]]>"
msgstr ""
@@ -164,14 +164,15 @@
#: Hsearch.xml:52
#, no-c-format
msgid ""
-"This step is no longer necessary if Hibernate Annotation or EntityManager "
-"3.3.x are used."
+"It is not longer necessary the register the event listeners if Hibernate "
+"Annotations or EntityManager 3.3.x are used. When using Hibernate Search 3.1."
+"x more eventlisteners are needed, but these are registered automatically by "
+"Hibernate Annotations; refer to the Hibernate Search reference for "
+"configuring it without EntityManager and Annotations."
msgstr ""
-"Hibernate アノテーションか、EntityManager の 3.3.x が使用されているなら、この"
-"手順は必要がありません。"
#. Tag: para
-#: Hsearch.xml:56
+#: Hsearch.xml:60
#, no-c-format
msgid ""
"In addition to the configuration file, the following jars have to be "
@@ -179,25 +180,25 @@
msgstr "この設定ファイルに加えて、以下の jar ファイルがデプロイされます:"
#. Tag: para
-#: Hsearch.xml:61
+#: Hsearch.xml:65
#, no-c-format
msgid "hibernate-search.jar"
msgstr ""
#. Tag: para
-#: Hsearch.xml:65
+#: Hsearch.xml:69
#, no-c-format
msgid "hibernate-commons-annotations.jar"
msgstr ""
#. Tag: para
-#: Hsearch.xml:69
+#: Hsearch.xml:73
#, no-c-format
msgid "lucene-core.jar"
msgstr ""
#. Tag: para
-#: Hsearch.xml:74
+#: Hsearch.xml:78
#, no-c-format
msgid ""
"If you deploy those in a EAR, don't forget to update <filename>application."
@@ -207,13 +208,13 @@
"filename> の更新を忘れずに行ってください。"
#. Tag: title
-#: Hsearch.xml:80
+#: Hsearch.xml:84
#, no-c-format
msgid "Usage"
msgstr "使い方"
#. Tag: para
-#: Hsearch.xml:82
+#: Hsearch.xml:86
#, no-c-format
msgid ""
"Hibernate Search uses annotations to map entities to a Lucene index, check "
@@ -226,7 +227,7 @@
"アル</ulink> を参照してください。"
#. Tag: para
-#: Hsearch.xml:87
+#: Hsearch.xml:91
#, no-c-format
msgid ""
"Hibernate Search is fully integrated with the API and semantic of JPA / "
@@ -242,7 +243,7 @@
"<classname>Session</classname> のサブクラスです)。"
#. Tag: para
-#: Hsearch.xml:93
+#: Hsearch.xml:97
#, no-c-format
msgid ""
"When Hibernate Search is present, JBoss Seam injects a "
@@ -252,7 +253,7 @@
"す。"
#. Tag: programlisting
-#: Hsearch.xml:96
+#: Hsearch.xml:100
#, no-c-format
msgid ""
"<![CDATA[@Stateful\n"
@@ -275,7 +276,7 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:99
+#: Hsearch.xml:103
#, no-c-format
msgid ""
"<classname>FullTextSession</classname> extends <classname>org.hibernate."
@@ -286,7 +287,7 @@
"可能です。"
#. Tag: para
-#: Hsearch.xml:104
+#: Hsearch.xml:108
#, no-c-format
msgid ""
"If the Java Persistence API is used, a smoother integration is proposed."
@@ -294,7 +295,7 @@
"Java Persistance API が使用された場合には、より円滑な統合が提案されます。"
#. Tag: programlisting
-#: Hsearch.xml:107
+#: Hsearch.xml:111
#, no-c-format
msgid ""
"<![CDATA[@Stateful\n"
@@ -317,7 +318,7 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:109
+#: Hsearch.xml:113
#, no-c-format
msgid ""
"When Hibernate Search is present, a <classname>FulltextEntityManager</"
@@ -334,7 +335,7 @@
"承します。"
#. Tag: para
-#: Hsearch.xml:116
+#: Hsearch.xml:120
#, no-c-format
msgid ""
"When an EJB 3.0 Session or Message Driven Bean injection is used (i.e. via "
@@ -353,7 +354,7 @@
"classname> の実装になるでしょう。ダウンキャスト自体は可能です。"
#. Tag: programlisting
-#: Hsearch.xml:124
+#: Hsearch.xml:128
#, no-c-format
msgid ""
"<![CDATA[@Stateful\n"
@@ -377,18 +378,18 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:129
-#, no-c-format
+#: Hsearch.xml:133
+#, fuzzy, no-c-format
msgid ""
"For people accustomed to Hibernate Search out of Seam, note that using "
-"<methodname>Search.createFullTextSession</methodname> is not necessary."
+"<methodname>Search.getFullTextSession</methodname> is not necessary."
msgstr ""
"Seam 以外で Hibernate Search に慣れるためには、<methodname>Search."
"createFullTextSession</methodname> を使用する必要がないことを覚えておいてくだ"
"さい。"
#. Tag: para
-#: Hsearch.xml:134
+#: Hsearch.xml:138
#, no-c-format
msgid ""
"Check the DVDStore or the blog examples of the JBoss Seam distribution for a "
@@ -396,3 +397,10 @@
msgstr ""
"DVDStore か JBoss Seam の配布物である blog サンプルプログラムで、Hibernate "
"Search の具体的な使用例を確認してください。"
+
+#~ msgid ""
+#~ "This step is no longer necessary if Hibernate Annotation or EntityManager "
+#~ "3.3.x are used."
+#~ msgstr ""
+#~ "Hibernate アノテーションか、EntityManager の 3.3.x が使用されているなら、"
+#~ "この手順は必要がありません。"
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/ja-JP/Security.po
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/ja-JP/Security.po 2009-06-11 20:41:36 UTC (rev 11125)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/ja-JP/Security.po 2009-06-11 20:43:04 UTC (rev 11126)
@@ -4,7 +4,7 @@
msgstr ""
"Project-Id-Version: Tools\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-06-11 07:43+0000\n"
+"POT-Creation-Date: 2009-06-11 18:45+0000\n"
"PO-Revision-Date: 2009-02-17 15:35+0900\n"
"Last-Translator: Ken Yamada <ken(a)tydfam.jp>\n"
"Language-Team: Japanese <fedora-trans-ja(a)redhat.com>\n"
@@ -1636,7 +1636,7 @@
msgstr "ユーザーエンティティアノテーション"
#. Tag: para
-#: Security.xml:630 Security.xml:764 Security.xml:3382 Security.xml:3545
+#: Security.xml:630 Security.xml:764 Security.xml:3385 Security.xml:3548
#, no-c-format
msgid "Annotation"
msgstr "アノテーション"
@@ -1649,8 +1649,8 @@
#. Tag: para
#: Security.xml:636 Security.xml:770 Security.xml:966 Security.xml:1418
-#: Security.xml:2147 Security.xml:2756 Security.xml:3171 Security.xml:3388
-#: Security.xml:3551 Security.xml:3792 Security.xml:4229
+#: Security.xml:2147 Security.xml:2756 Security.xml:3174 Security.xml:3391
+#: Security.xml:3554 Security.xml:3795 Security.xml:4232
#, no-c-format
msgid "Description"
msgstr "詳細"
@@ -2906,8 +2906,8 @@
msgstr "ID管理のAPI"
#. Tag: para
-#: Security.xml:1412 Security.xml:1828 Security.xml:2753 Security.xml:3168
-#: Security.xml:3789 Security.xml:3958
+#: Security.xml:1412 Security.xml:1828 Security.xml:2753 Security.xml:3171
+#: Security.xml:3792 Security.xml:3961
#, no-c-format
msgid "Method"
msgstr "メソッド"
@@ -2928,9 +2928,9 @@
#: Security.xml:1433 Security.xml:1452 Security.xml:1471 Security.xml:1490
#: Security.xml:1509 Security.xml:1529 Security.xml:1548 Security.xml:1567
#: Security.xml:1586 Security.xml:1606 Security.xml:1626 Security.xml:1740
-#: Security.xml:1762 Security.xml:1780 Security.xml:2766 Security.xml:3239
-#: Security.xml:3258 Security.xml:3277 Security.xml:3295 Security.xml:3840
-#: Security.xml:3859 Security.xml:3878 Security.xml:3897
+#: Security.xml:1762 Security.xml:1780 Security.xml:2766 Security.xml:3242
+#: Security.xml:3261 Security.xml:3280 Security.xml:3298 Security.xml:3843
+#: Security.xml:3862 Security.xml:3881 Security.xml:3900
#, no-c-format
msgid "boolean"
msgstr "ブール型 "
@@ -3285,13 +3285,13 @@
msgstr "ID管理 セキュリティパーミッション"
#. Tag: para
-#: Security.xml:1831 Security.xml:3961
+#: Security.xml:1831 Security.xml:3964
#, no-c-format
msgid "Permission Target"
msgstr "パーミッションの対象"
#. Tag: para
-#: Security.xml:1834 Security.xml:3964
+#: Security.xml:1834 Security.xml:3967
#, no-c-format
msgid "Permission Action"
msgstr "パーミッションのアクション"
@@ -4924,7 +4924,7 @@
msgstr "パーミッションリゾルバーインタフェース"
#. Tag: para
-#: Security.xml:2750 Security.xml:3165 Security.xml:3786
+#: Security.xml:2750 Security.xml:3168 Security.xml:3789
#, no-c-format
msgid "Return type"
msgstr "戻り値の型"
@@ -5147,42 +5147,48 @@
#. Tag: para
#: Security.xml:2917
+#, fuzzy, no-c-format
+msgid "drools-api.jar"
+msgstr "drools-compiler.jar"
+
+#. Tag: para
+#: Security.xml:2920
#, no-c-format
msgid "drools-compiler.jar"
msgstr "drools-compiler.jar"
#. Tag: para
-#: Security.xml:2920
+#: Security.xml:2923
#, no-c-format
msgid "drools-core.jar"
msgstr "drools-core.jar"
#. Tag: para
-#: Security.xml:2923
+#: Security.xml:2926
#, no-c-format
msgid "janino.jar"
msgstr "janino.jar"
#. Tag: para
-#: Security.xml:2926
+#: Security.xml:2929
#, no-c-format
msgid "antlr-runtime.jar"
msgstr "antlr-runtime.jar"
#. Tag: para
-#: Security.xml:2929
-#, no-c-format
-msgid "mvel14.jar"
+#: Security.xml:2932
+#, fuzzy, no-c-format
+msgid "mvel2.jar"
msgstr "mvel14.jar"
#. Tag: title
-#: Security.xml:2936 Security.xml:3128
+#: Security.xml:2939 Security.xml:3131
#, no-c-format
msgid "Configuration"
msgstr "設定"
#. Tag: para
-#: Security.xml:2938
+#: Security.xml:2941
#, no-c-format
msgid ""
"The configuration for <literal>RuleBasedPermissionResolver</literal> "
@@ -5196,7 +5202,7 @@
"<literal>securityRules</literal>と命名されていることを仮定しています。"
#. Tag: programlisting
-#: Security.xml:2944
+#: Security.xml:2947
#, fuzzy, no-c-format
msgid ""
"<![CDATA[<components xmlns=\"http://jboss.com/products/seam/components\"\n"
@@ -5246,7 +5252,7 @@
" </components>]]>"
#. Tag: para
-#: Security.xml:2946
+#: Security.xml:2949
#, no-c-format
msgid ""
"The default rule base name can be overridden by specifying the "
@@ -5257,7 +5263,7 @@
"literal>の<literal>security-rules</literal>属性で上書きする事ができます。"
#. Tag: programlisting
-#: Security.xml:2951
+#: Security.xml:2954
#, no-c-format
msgid ""
"<![CDATA[\n"
@@ -5269,7 +5275,7 @@
"{prodSecurityRules}\"/>]]>"
#. Tag: para
-#: Security.xml:2953
+#: Security.xml:2956
#, no-c-format
msgid ""
"Once the <literal>RuleBase</literal> component is configured, it's time to "
@@ -5279,13 +5285,13 @@
"の記述をします。"
#. Tag: title
-#: Security.xml:2959
+#: Security.xml:2962
#, no-c-format
msgid "Writing Security Rules"
msgstr "セキュリティルールの記述"
#. Tag: para
-#: Security.xml:2961
+#: Security.xml:2964
#, no-c-format
msgid ""
"The first step to writing security rules is to create a new rule file in the "
@@ -5301,7 +5307,7 @@
"事ができます。"
#. Tag: para
-#: Security.xml:2968
+#: Security.xml:2971
#, no-c-format
msgid ""
"So what should the security rules file contain? At this stage it might be a "
@@ -5313,7 +5319,7 @@
"しょう"
#. Tag: programlisting
-#: Security.xml:2973
+#: Security.xml:2976
#, no-c-format
msgid ""
"<![CDATA[package MyApplicationPermissions;\n"
@@ -5343,7 +5349,7 @@
" end]]>"
#. Tag: para
-#: Security.xml:2975
+#: Security.xml:2978
#, no-c-format
msgid ""
"Let's break this down step by step. The first thing we see is the package "
@@ -5356,7 +5362,7 @@
"の名前は任意で構いません。"
#. Tag: para
-#: Security.xml:2981
+#: Security.xml:2984
#, no-c-format
msgid ""
"The next thing we can notice is a couple of import statements for the "
@@ -5369,7 +5375,7 @@
"使うルールでこれらのクラスを参照する事をルールエンジンに対して伝えています。"
#. Tag: para
-#: Security.xml:2987
+#: Security.xml:2990
#, no-c-format
msgid ""
"Finally we have the code for the rule. Each rule within a package should be "
@@ -5383,7 +5389,7 @@
"で字の如く、顧客レコードの削除をできるかできないかのチェックに使用します。"
#. Tag: para
-#: Security.xml:2993
+#: Security.xml:2996
#, no-c-format
msgid ""
"Looking at the body of the rule definition we can notice two distinct "
@@ -5405,7 +5411,7 @@
"は<literal>end</literal>で終了します。"
#. Tag: para
-#: Security.xml:3002
+#: Security.xml:3005
#, no-c-format
msgid ""
"If we look at the LHS of the rule, we see two conditions listed there. Let's "
@@ -5415,7 +5421,7 @@
"を見てみましょう。"
#. Tag: programlisting
-#: Security.xml:3006
+#: Security.xml:3009
#, no-c-format
msgid ""
"<![CDATA[c: PermissionCheck(target == \"customer\", action == \"delete\")]]>"
@@ -5423,7 +5429,7 @@
"<![CDATA[c: PermissionCheck(target == \"customer\", action == \"delete\")]]>"
#. Tag: para
-#: Security.xml:3008
+#: Security.xml:3011
#, no-c-format
msgid ""
"In plain english, this condition is stating that there must exist a "
@@ -5437,7 +5443,7 @@
"しています。"
#. Tag: para
-#: Security.xml:3014
+#: Security.xml:3017
#, no-c-format
msgid ""
"So what is the working memory? Also known as a \"stateful session\" in "
@@ -5466,7 +5472,7 @@
"了するまで存在します。"
#. Tag: para
-#: Security.xml:3026
+#: Security.xml:3029
#, no-c-format
msgid ""
"Besides the <literal>PermissionCheck</literal> facts, there is also a "
@@ -5492,7 +5498,7 @@
"security.Principal</literal>オブジェクトが保持されています。"
#. Tag: para
-#: Security.xml:3037
+#: Security.xml:3040
#, no-c-format
msgid ""
"It is also possible to insert additional long-lived facts into the working "
@@ -5509,7 +5515,7 @@
"ングメモリ中に長期に生存するファクトとする事はできません。"
#. Tag: para
-#: Security.xml:3044
+#: Security.xml:3047
#, no-c-format
msgid ""
"Getting back to our simple example, we can also notice that the first line "
@@ -5524,13 +5530,13 @@
"LHSの2行目には下の記述があります。"
#. Tag: programlisting
-#: Security.xml:3051
+#: Security.xml:3054
#, no-c-format
msgid "<![CDATA[Role(name == \"admin\")]]>"
msgstr "<![CDATA[Role(name == \"admin\")]]>"
#. Tag: para
-#: Security.xml:3053
+#: Security.xml:3056
#, no-c-format
msgid ""
"This condition simply states that there must be a <literal>Role</literal> "
@@ -5549,7 +5555,7 @@
"求めているのであれば、これを認めます」という事を示しています。"
#. Tag: para
-#: Security.xml:3061
+#: Security.xml:3064
#, no-c-format
msgid ""
"So what is the consequence of the rule firing? Let's take a look at the RHS "
@@ -5559,13 +5565,13 @@
"しょう。"
#. Tag: programlisting
-#: Security.xml:3065
+#: Security.xml:3068
#, no-c-format
msgid "<![CDATA[c.grant()]]>"
msgstr "<![CDATA[c.grant()]]>"
#. Tag: para
-#: Security.xml:3067
+#: Security.xml:3070
#, no-c-format
msgid ""
"The RHS consists of Java code, and in this case is invoking the "
@@ -5592,13 +5598,13 @@
"クションについて実行することができるようになります。"
#. Tag: title
-#: Security.xml:3081
+#: Security.xml:3084
#, no-c-format
msgid "Non-String permission targets"
msgstr "非文字列のパーミッションターゲット"
#. Tag: para
-#: Security.xml:3083
+#: Security.xml:3086
#, no-c-format
msgid ""
"So far we have only seen permission checks for String-literal permission "
@@ -5619,7 +5625,7 @@
"る、と表現されます。"
#. Tag: programlisting
-#: Security.xml:3092
+#: Security.xml:3095
#, no-c-format
msgid ""
"<![CDATA[rule CanCreateBlogComment\n"
@@ -5649,13 +5655,13 @@
"]]>"
#. Tag: title
-#: Security.xml:3097
+#: Security.xml:3100
#, no-c-format
msgid "Wildcard permission checks"
msgstr "ワイルドカードによるパーミッションチェック"
#. Tag: para
-#: Security.xml:3099
+#: Security.xml:3102
#, no-c-format
msgid ""
"It is possible to implement a wildcard permission check (which allows all "
@@ -5669,7 +5675,7 @@
"とにより、実装できます。"
#. Tag: programlisting
-#: Security.xml:3105
+#: Security.xml:3108
#, no-c-format
msgid ""
"<![CDATA[rule CanDoAnythingToCustomersIfYouAreAnAdmin\n"
@@ -5691,7 +5697,7 @@
" ]]>"
#. Tag: para
-#: Security.xml:3107
+#: Security.xml:3110
#, no-c-format
msgid ""
"This rule allows users with the <literal>admin</literal> role to perform "
@@ -5703,13 +5709,13 @@
"なパーミッションチェックになっています。"
#. Tag: title
-#: Security.xml:3117
+#: Security.xml:3120
#, no-c-format
msgid "PersistentPermissionResolver"
msgstr "永続的パーミッションリゾルバー"
#. Tag: para
-#: Security.xml:3119
+#: Security.xml:3122
#, no-c-format
msgid ""
"Another built-in permission resolver provided by Seam, "
@@ -5728,7 +5734,7 @@
"パーミッションターゲットを指定して保存する事が可能です。"
#. Tag: para
-#: Security.xml:3130
+#: Security.xml:3133
#, no-c-format
msgid ""
"Before it can be used, <literal>PersistentPermissionResolver</literal> must "
@@ -5747,7 +5753,7 @@
"<literal>permission-store</literal>属性を下のように記述します。"
#. Tag: programlisting
-#: Security.xml:3138
+#: Security.xml:3141
#, no-c-format
msgid ""
"<![CDATA[ <security:persistent-permission-resolver permission-store=\"#"
@@ -5757,13 +5763,13 @@
"{myCustomPermissionStore}\"/>]]>"
#. Tag: title
-#: Security.xml:3143
+#: Security.xml:3146
#, no-c-format
msgid "Permission Stores"
msgstr "パーミッションストアについて"
#. Tag: para
-#: Security.xml:3145
+#: Security.xml:3148
#, no-c-format
msgid ""
"A permission store is required for <literal>PersistentPermissionResolver</"
@@ -5783,26 +5789,26 @@
"パーミッションストアを作成する事も可能です。"
#. Tag: title
-#: Security.xml:3155
+#: Security.xml:3158
#, no-c-format
msgid "PermissionStore interface"
msgstr "パーミッションストアのインタフェース"
#. Tag: literal
-#: Security.xml:3181 Security.xml:3200 Security.xml:3219 Security.xml:3802
-#: Security.xml:3821
+#: Security.xml:3184 Security.xml:3203 Security.xml:3222 Security.xml:3805
+#: Security.xml:3824
#, no-c-format
msgid "List<Permission>"
msgstr "List<Permission>"
#. Tag: literal
-#: Security.xml:3186 Security.xml:3826
+#: Security.xml:3189 Security.xml:3829
#, no-c-format
msgid "listPermissions(Object target)"
msgstr "listPermissions(Object target)"
#. Tag: para
-#: Security.xml:3190
+#: Security.xml:3193
#, no-c-format
msgid ""
"This method should return a <literal>List</literal> of <literal>Permission</"
@@ -5814,13 +5820,13 @@
"す。"
#. Tag: literal
-#: Security.xml:3205 Security.xml:3807
+#: Security.xml:3208 Security.xml:3810
#, no-c-format
msgid "listPermissions(Object target, String action)"
msgstr "listPermissions(Object target, String action)"
#. Tag: para
-#: Security.xml:3209
+#: Security.xml:3212
#, no-c-format
msgid ""
"This method should return a <literal>List</literal> of <literal>Permission</"
@@ -5832,13 +5838,13 @@
"literal>を返します。"
#. Tag: literal
-#: Security.xml:3224
+#: Security.xml:3227
#, no-c-format
msgid "listPermissions(Set<Object> targets, String action)"
msgstr "listPermissions(Set<Object> targets, String action)"
#. Tag: para
-#: Security.xml:3228
+#: Security.xml:3231
#, no-c-format
msgid ""
"This method should return a <literal>List</literal> of <literal>Permission</"
@@ -5850,13 +5856,13 @@
"<literal>List</literal>を返します"
#. Tag: literal
-#: Security.xml:3244
+#: Security.xml:3247
#, no-c-format
msgid "grantPermission(Permission)"
msgstr "grantPermission(Permission)"
#. Tag: para
-#: Security.xml:3248
+#: Security.xml:3251
#, no-c-format
msgid ""
"This method should persist the specified <literal>Permission</literal> "
@@ -5866,13 +5872,13 @@
"ストレージに保持し、成功すればtrueを返します。"
#. Tag: literal
-#: Security.xml:3263 Security.xml:3864
+#: Security.xml:3266 Security.xml:3867
#, no-c-format
msgid "grantPermissions(List<Permission> permissions)"
msgstr "grantPermissions(List<Permission> permissions)"
#. Tag: para
-#: Security.xml:3267
+#: Security.xml:3270
#, no-c-format
msgid ""
"This method should persist all of the <literal>Permission</literal> objects "
@@ -5884,13 +5890,13 @@
"成功すればtrueを返します。"
#. Tag: literal
-#: Security.xml:3282 Security.xml:3883
+#: Security.xml:3285 Security.xml:3886
#, no-c-format
msgid "revokePermission(Permission permission)"
msgstr "revokePermission(Permission permission)"
#. Tag: para
-#: Security.xml:3286
+#: Security.xml:3289
#, no-c-format
msgid ""
"This method should remove the specified <literal>Permission</literal> object "
@@ -5900,13 +5906,13 @@
"から削除します。"
#. Tag: literal
-#: Security.xml:3300 Security.xml:3902
+#: Security.xml:3303 Security.xml:3905
#, no-c-format
msgid "revokePermissions(List<Permission> permissions)"
msgstr "revokePermissions(List<Permission> permissions)"
#. Tag: para
-#: Security.xml:3304
+#: Security.xml:3307
#, no-c-format
msgid ""
"This method should remove all of the <literal>Permission</literal> objects "
@@ -5916,19 +5922,19 @@
"ジェクトをストレージから削除します。"
#. Tag: literal
-#: Security.xml:3314 Security.xml:3916
+#: Security.xml:3317 Security.xml:3919
#, no-c-format
msgid "List<String>"
msgstr "List<String>"
#. Tag: literal
-#: Security.xml:3319 Security.xml:3921
+#: Security.xml:3322 Security.xml:3924
#, no-c-format
msgid "listAvailableActions(Object target)"
msgstr "listAvailableActions(Object target)"
#. Tag: para
-#: Security.xml:3323
+#: Security.xml:3326
#, no-c-format
msgid ""
"This method should return a list of all the available actions (as Strings) "
@@ -5941,13 +5947,13 @@
"ザーインタフェースを作成するためにパーミッション管理と共に使用されます。"
#. Tag: title
-#: Security.xml:3337
+#: Security.xml:3340
#, no-c-format
msgid "JpaPermissionStore"
msgstr "JpaPermissionStoreについて"
#. Tag: para
-#: Security.xml:3339
+#: Security.xml:3342
#, no-c-format
msgid ""
"This is the default <literal>PermissionStore</literal> implementation (and "
@@ -5967,7 +5973,7 @@
"ている必要があります。"
#. Tag: para
-#: Security.xml:3347
+#: Security.xml:3350
#, no-c-format
msgid ""
"If you wish to use the same entity (i.e. a single database table) to store "
@@ -5984,7 +5990,7 @@
"<literal>role-permission-class</literal>属性を設定する必要があります。"
#. Tag: para
-#: Security.xml:3354
+#: Security.xml:3357
#, no-c-format
msgid ""
"For example, to configure a single entity class to store both user and role "
@@ -5994,7 +6000,7 @@
"よう設定する場合は次のようになります。"
#. Tag: programlisting
-#: Security.xml:3356
+#: Security.xml:3359
#, no-c-format
msgid ""
"<![CDATA[ <security:jpa-permission-store user-permission-class=\"com.acme."
@@ -6004,7 +6010,7 @@
"model.AccountPermission\"/>]]>"
#. Tag: para
-#: Security.xml:3358
+#: Security.xml:3361
#, no-c-format
msgid ""
"To configure separate entity classes for storing user and role permissions:"
@@ -6013,7 +6019,7 @@
"る場合の設定は次のようになります。"
#. Tag: programlisting
-#: Security.xml:3360
+#: Security.xml:3363
#, no-c-format
msgid ""
"<![CDATA[ <security:jpa-permission-store user-permission-class=\"com.acme."
@@ -6025,13 +6031,13 @@
" role-permission-class=\"com.acme.model.RolePermission\"/>]]>"
#. Tag: title
-#: Security.xml:3363
+#: Security.xml:3366
#, no-c-format
msgid "Permission annotations"
msgstr "パーミッション アノテーション"
#. Tag: para
-#: Security.xml:3365
+#: Security.xml:3368
#, no-c-format
msgid ""
"As mentioned, the entity classes that contain the user and role permissions "
@@ -6046,32 +6052,32 @@
"テーションと、その使用方法の説明を示します。"
#. Tag: title
-#: Security.xml:3372
+#: Security.xml:3375
#, no-c-format
msgid "Entity Permission annotations"
msgstr "エンティティ パーミッション アノテーション"
#. Tag: para
-#: Security.xml:3385 Security.xml:3548
+#: Security.xml:3388 Security.xml:3551
#, no-c-format
msgid "Target"
msgstr "ターゲット"
#. Tag: literal
-#: Security.xml:3398
+#: Security.xml:3401
#, no-c-format
msgid "@PermissionTarget"
msgstr "@PermissionTarget"
#. Tag: literal
-#: Security.xml:3403 Security.xml:3422 Security.xml:3441 Security.xml:3460
-#: Security.xml:3479
+#: Security.xml:3406 Security.xml:3425 Security.xml:3444 Security.xml:3463
+#: Security.xml:3482
#, no-c-format
msgid "FIELD,METHOD"
msgstr "フィールド、メソッド"
#. Tag: para
-#: Security.xml:3407
+#: Security.xml:3410
#, no-c-format
msgid ""
"This annotation identifies the property of the entity that will contain the "
@@ -6082,13 +6088,13 @@
"ます。 この属性は<literal>java.lang.String</literal>でなければなりません。"
#. Tag: literal
-#: Security.xml:3417
+#: Security.xml:3420
#, no-c-format
msgid "@PermissionAction"
msgstr "@PermissionAction"
#. Tag: para
-#: Security.xml:3426
+#: Security.xml:3429
#, no-c-format
msgid ""
"This annotation identifies the property of the entity that will contain the "
@@ -6100,13 +6106,13 @@
"ん。"
#. Tag: literal
-#: Security.xml:3436
+#: Security.xml:3439
#, no-c-format
msgid "@PermissionUser"
msgstr "@PermissionUser"
#. Tag: para
-#: Security.xml:3445
+#: Security.xml:3448
#, no-c-format
msgid ""
"This annotation identifies the property of the entity that will contain the "
@@ -6118,13 +6124,13 @@
"のusernameを含んでいなければなりません。"
#. Tag: literal
-#: Security.xml:3455
+#: Security.xml:3458
#, no-c-format
msgid "@PermissionRole"
msgstr "@PermissionRole"
#. Tag: para
-#: Security.xml:3464
+#: Security.xml:3467
#, no-c-format
msgid ""
"This annotation identifies the property of the entity that will contain the "
@@ -6136,13 +6142,13 @@
"含んでいなければなりません。"
#. Tag: literal
-#: Security.xml:3474
+#: Security.xml:3477
#, no-c-format
msgid "@PermissionDiscriminator"
msgstr "@PermissionDiscriminator"
#. Tag: para
-#: Security.xml:3483
+#: Security.xml:3486
#, no-c-format
msgid ""
"This annotation should be used when the same entity/table is used to store "
@@ -6169,7 +6175,7 @@
"と、アノテーションは下のようになります。"
#. Tag: programlisting
-#: Security.xml:3493
+#: Security.xml:3496
#, no-c-format
msgid ""
"<![CDATA[ @PermissionDiscriminator(userValue = \"u\", roleValue = \"r\")]]>"
@@ -6177,13 +6183,13 @@
"<![CDATA[ @PermissionDiscriminator(userValue = \"u\", roleValue = \"r\")]]>"
#. Tag: title
-#: Security.xml:3504
+#: Security.xml:3507
#, no-c-format
msgid "Example Entity"
msgstr "エンティティの例"
#. Tag: para
-#: Security.xml:3506
+#: Security.xml:3509
#, no-c-format
msgid ""
"Here is an example of an entity class that is used to store both user and "
@@ -6194,7 +6200,7 @@
"ています。 下に示したクラスはサンプルのSeamSpaceからのものです。"
#. Tag: programlisting
-#: Security.xml:3511
+#: Security.xml:3514
#, no-c-format
msgid ""
"<![CDATA[\n"
@@ -6308,7 +6314,7 @@
"}"
#. Tag: para
-#: Security.xml:3513
+#: Security.xml:3516
#, no-c-format
msgid ""
"As can be seen in the above example, the <literal>getDiscriminator()</"
@@ -6334,13 +6340,13 @@
"として処理する事を示しています。"
#. Tag: title
-#: Security.xml:3526
+#: Security.xml:3529
#, no-c-format
msgid "Class-specific Permission Configuration"
msgstr "クラスに特定されたパーミッションの設定"
#. Tag: para
-#: Security.xml:3528
+#: Security.xml:3531
#, no-c-format
msgid ""
"A further set of class-specific annotations can be used to configure a "
@@ -6353,25 +6359,25 @@
"jboss.seam.annotation.security.permission</literal>パッケージにあります。"
#. Tag: title
-#: Security.xml:3535
+#: Security.xml:3538
#, no-c-format
msgid "Class Permission Annotations"
msgstr "クラス パーミッション アノテーション"
#. Tag: literal
-#: Security.xml:3561
+#: Security.xml:3564
#, no-c-format
msgid "@Permissions"
msgstr "@Permissions"
#. Tag: literal
-#: Security.xml:3566 Security.xml:3584
+#: Security.xml:3569 Security.xml:3587
#, no-c-format
msgid "TYPE"
msgstr "タイプ"
#. Tag: para
-#: Security.xml:3570
+#: Security.xml:3573
#, no-c-format
msgid ""
"A container annotation, this annotation may contain an array of "
@@ -6381,13 +6387,13 @@
"の配列を含んでいます。"
#. Tag: literal
-#: Security.xml:3579
+#: Security.xml:3582
#, no-c-format
msgid "@Permission"
msgstr "@Permission"
#. Tag: para
-#: Security.xml:3588
+#: Security.xml:3591
#, no-c-format
msgid ""
"This annotation defines a single allowable permission action for the target "
@@ -6402,7 +6408,7 @@
"<literal>mask</literal>が指定されていなければなりません。"
#. Tag: para
-#: Security.xml:3600
+#: Security.xml:3603
#, no-c-format
msgid ""
"Here's an example of the above annotations in action. The following class "
@@ -6412,7 +6418,7 @@
"SeamSpaceにもあります。"
#. Tag: programlisting
-#: Security.xml:3604
+#: Security.xml:3607
#, no-c-format
msgid ""
"<![CDATA[@Permissions({\n"
@@ -6430,7 +6436,7 @@
"public class MemberImage implements Serializable {]]>"
#. Tag: para
-#: Security.xml:3606
+#: Security.xml:3609
#, no-c-format
msgid ""
"This example demonstrates how two allowable permission actions, "
@@ -6442,13 +6448,13 @@
"言する方法を示しています。"
#. Tag: title
-#: Security.xml:3614
+#: Security.xml:3617
#, no-c-format
msgid "Permission masks"
msgstr "パーミッション マスク"
#. Tag: para
-#: Security.xml:3616
+#: Security.xml:3619
#, no-c-format
msgid ""
"By default, multiple permissions for the same target object and recipient "
@@ -6466,7 +6472,7 @@
"ク値を使用する事ができます。"
#. Tag: para
-#: Security.xml:3623
+#: Security.xml:3626
#, no-c-format
msgid ""
"For example, if recipient \"Bob\" is granted both the <literal>view</"
@@ -6485,7 +6491,7 @@
"ビットマスクをパーミッションアクションに使用すると下のようになります。"
#. Tag: programlisting
-#: Security.xml:3630
+#: Security.xml:3633
#, no-c-format
msgid ""
"<![CDATA[@Permissions({\n"
@@ -6503,7 +6509,7 @@
"public class MemberImage implements Serializable {]]>"
#. Tag: para
-#: Security.xml:3632
+#: Security.xml:3635
#, no-c-format
msgid ""
"The <literal>action</literal> property will instead simply contain \"3"
@@ -6517,7 +6523,7 @@
"存に必要な容量を圧縮する事ができます。"
#. Tag: para
-#: Security.xml:3638
+#: Security.xml:3641
#, no-c-format
msgid ""
"Obviously, it is very important that the <literal>mask</literal> values "
@@ -6525,13 +6531,13 @@
msgstr "<literal>mask</literal>の値が2のn乗になっている事は明らかに重要です。"
#. Tag: title
-#: Security.xml:3644
+#: Security.xml:3647
#, no-c-format
msgid "Identifier Policy"
msgstr "識別子ポリシー"
#. Tag: para
-#: Security.xml:3646
+#: Security.xml:3649
#, no-c-format
msgid ""
"When storing or looking up permissions, <literal>JpaPermissionStore</"
@@ -6551,7 +6557,7 @@
"タイプに応じてユニークなIDの生成が行われます。"
#. Tag: para
-#: Security.xml:3654
+#: Security.xml:3657
#, no-c-format
msgid ""
"The <literal>IdentifierStrategy</literal> interface is very simple, "
@@ -6561,7 +6567,7 @@
"メソッドを宣言しているだけです。"
#. Tag: programlisting
-#: Security.xml:3658
+#: Security.xml:3661
#, no-c-format
msgid ""
"<![CDATA[public interface IdentifierStrategy {\n"
@@ -6575,7 +6581,7 @@
"}]]>"
#. Tag: para
-#: Security.xml:3660
+#: Security.xml:3663
#, no-c-format
msgid ""
"The first method, <literal>canIdentify()</literal> simply returns "
@@ -6590,7 +6596,7 @@
"れたターゲットオブジェクトに対してユニークな識別子の値を返します。"
#. Tag: para
-#: Security.xml:3666
+#: Security.xml:3669
#, no-c-format
msgid ""
"Seam provides two <literal>IdentifierStrategy</literal> implementations, "
@@ -6603,7 +6609,7 @@
"ション)。"
#. Tag: para
-#: Security.xml:3671
+#: Security.xml:3674
#, no-c-format
msgid ""
"To explicitly configure a specific identifier strategy to use for a "
@@ -6622,13 +6628,13 @@
"<literal>IdentifierStrategy</literal>の実際の実装に依存します。"
#. Tag: title
-#: Security.xml:3681
+#: Security.xml:3684
#, no-c-format
msgid "ClassIdentifierStrategy"
msgstr "クラス識別子ストラテジー"
#. Tag: para
-#: Security.xml:3683
+#: Security.xml:3686
#, no-c-format
msgid ""
"This identifier strategy is used to generate unique identifiers for classes, "
@@ -6648,7 +6654,7 @@
"は\"<literal>customer</literal>\"となります。"
#. Tag: programlisting
-#: Security.xml:3692
+#: Security.xml:3695
#, no-c-format
msgid ""
"<![CDATA[@Identifier(name = \"customer\")\n"
@@ -6658,7 +6664,7 @@
"public class Customer {]]>"
#. Tag: para
-#: Security.xml:3694
+#: Security.xml:3697
#, no-c-format
msgid ""
"The identifier for the following class will be \"<literal>customerAction</"
@@ -6666,7 +6672,7 @@
msgstr "以下のクラスの識別子は\"<literal>customerAction</literal>\"となります:"
#. Tag: programlisting
-#: Security.xml:3698
+#: Security.xml:3701
#, no-c-format
msgid ""
"<![CDATA[@Name(\"customerAction\")\n"
@@ -6676,7 +6682,7 @@
"public class CustomerAction { ]]>"
#. Tag: para
-#: Security.xml:3700
+#: Security.xml:3703
#, no-c-format
msgid ""
"Finally, the identifier for the following class will be \"<literal>Customer</"
@@ -6685,19 +6691,19 @@
"最終的に、以下のクラスの識別子は \"<literal>Customer</literal>\"となります:"
#. Tag: programlisting
-#: Security.xml:3704
+#: Security.xml:3707
#, no-c-format
msgid "<![CDATA[public class Customer { ]]>"
msgstr "<![CDATA[public class Customer { ]]>"
#. Tag: title
-#: Security.xml:3709
+#: Security.xml:3712
#, no-c-format
msgid "EntityIdentifierStrategy"
msgstr "エンティティ識別子ストラテジー"
#. Tag: para
-#: Security.xml:3711
+#: Security.xml:3714
#, no-c-format
msgid ""
"This identifier strategy is used to generate unique identifiers for entity "
@@ -6723,7 +6729,7 @@
"する事が必要です。"
#. Tag: programlisting
-#: Security.xml:3722
+#: Security.xml:3725
#, no-c-format
msgid ""
"<![CDATA[@Identifier(value = EntityIdentifierStrategy.class)\n"
@@ -6733,7 +6739,7 @@
"public class Customer { ]]>"
#. Tag: para
-#: Security.xml:3724
+#: Security.xml:3727
#, no-c-format
msgid ""
"For an example of the type of identifier values generated, assume we have "
@@ -6742,7 +6748,7 @@
"生成される識別子の例として、下のようなエンティティクラスを考えてみましょう。"
#. Tag: programlisting
-#: Security.xml:3728
+#: Security.xml:3731
#, no-c-format
msgid ""
"<![CDATA[@Entity\n"
@@ -6782,7 +6788,7 @@
"}]]>"
#. Tag: para
-#: Security.xml:3730
+#: Security.xml:3733
#, no-c-format
msgid ""
"For a <literal>Customer</literal> instance with an <literal>id</literal> "
@@ -6795,7 +6801,7 @@
"し、エンティティクラスに明示的な識別子名のアノテーションがあれば、"
#. Tag: programlisting
-#: Security.xml:3736
+#: Security.xml:3739
#, no-c-format
msgid ""
"<![CDATA[@Entity\n"
@@ -6807,7 +6813,7 @@
"public class Customer { ]]>"
#. Tag: para
-#: Security.xml:3738
+#: Security.xml:3741
#, no-c-format
msgid ""
"Then a <literal>Customer</literal> with an <literal>id</literal> value of "
@@ -6819,13 +6825,13 @@
"つことになります。"
#. Tag: title
-#: Security.xml:3751
+#: Security.xml:3754
#, no-c-format
msgid "Permission Management"
msgstr "パーミッションの管理"
#. Tag: para
-#: Security.xml:3753
+#: Security.xml:3756
#, no-c-format
msgid ""
"In much the same way that Seam Security provides an Identity Management API "
@@ -6838,13 +6844,13 @@
"を <literal>PermissionManager</literal>により提供しています。"
#. Tag: title
-#: Security.xml:3760
+#: Security.xml:3763
#, no-c-format
msgid "PermissionManager"
msgstr "パーミッションマネージャ"
#. Tag: para
-#: Security.xml:3762
+#: Security.xml:3765
#, no-c-format
msgid ""
"The <literal>PermissionManager</literal> component is an application-scoped "
@@ -6864,7 +6870,7 @@
"します。"
#. Tag: programlisting
-#: Security.xml:3769
+#: Security.xml:3772
#, no-c-format
msgid ""
"<![CDATA[\n"
@@ -6878,7 +6884,7 @@
" ]]>"
#. Tag: para
-#: Security.xml:3771
+#: Security.xml:3774
#, no-c-format
msgid ""
"The following table describes each of the available methods provided by "
@@ -6888,13 +6894,13 @@
"ます。"
#. Tag: title
-#: Security.xml:3776
+#: Security.xml:3779
#, no-c-format
msgid "PermissionManager API methods"
msgstr "パーミッションマネージャAPIのメソッド"
#. Tag: para
-#: Security.xml:3811 Security.xml:3830
+#: Security.xml:3814 Security.xml:3833
#, no-c-format
msgid ""
"Returns a list of <literal>Permission</literal> objects representing all of "
@@ -6904,13 +6910,13 @@
"す<literal>Permission</literal>オブジェクトを返します。"
#. Tag: literal
-#: Security.xml:3845
+#: Security.xml:3848
#, no-c-format
msgid "grantPermission(Permission permission)"
msgstr "grantPermission(Permission permission)"
#. Tag: para
-#: Security.xml:3849
+#: Security.xml:3852
#, no-c-format
msgid ""
"Persists (grants) the specified <literal>Permission</literal> to the backend "
@@ -6920,7 +6926,7 @@
"セーブする。 操作に成功した場合trueを返す。"
#. Tag: para
-#: Security.xml:3868
+#: Security.xml:3871
#, no-c-format
msgid ""
"Persists (grants) the specified list of <literal>Permission</literal>s to "
@@ -6930,7 +6936,7 @@
"literal>sをセーブする。 操作に成功した場合trueを返す。"
#. Tag: para
-#: Security.xml:3887
+#: Security.xml:3890
#, no-c-format
msgid ""
"Removes (revokes) the specified <literal>Permission</literal> from the "
@@ -6940,7 +6946,7 @@
"を取り除く(削除する)。操作に成功した場合trueを返す。"
#. Tag: para
-#: Security.xml:3906
+#: Security.xml:3909
#, no-c-format
msgid ""
"Removes (revokes) the specified list of <literal>Permission</literal>s from "
@@ -6950,7 +6956,7 @@
"literal>sを取り除く(削除する)。 操作に成功した場合trueを返す。"
#. Tag: para
-#: Security.xml:3925
+#: Security.xml:3928
#, no-c-format
msgid ""
"Returns a list of the available actions for the specified target object. The "
@@ -6962,13 +6968,13 @@
"アノテーションに依存する。"
#. Tag: title
-#: Security.xml:3940
+#: Security.xml:3943
#, no-c-format
msgid "Permission checks for PermissionManager operations"
msgstr "パーミッションマネージャ操作のためのパーミッションチェック"
#. Tag: para
-#: Security.xml:3942
+#: Security.xml:3945
#, no-c-format
msgid ""
"Invoking the methods of <literal>PermissionManager</literal> requires that "
@@ -6982,37 +6988,37 @@
"覧を示します。"
#. Tag: title
-#: Security.xml:3949
+#: Security.xml:3952
#, no-c-format
msgid "Permission Management Security Permissions"
msgstr "パーミッション管理 セキュリティパーミッション"
#. Tag: literal
-#: Security.xml:3973
+#: Security.xml:3976
#, no-c-format
msgid "listPermissions()"
msgstr "listPermissions()"
#. Tag: para
-#: Security.xml:3977
+#: Security.xml:3980
#, no-c-format
msgid "The specified <literal>target</literal>"
msgstr "特定の<literal>target</literal>"
#. Tag: literal
-#: Security.xml:3983
+#: Security.xml:3986
#, no-c-format
msgid "seam.read-permissions"
msgstr "seam.read-permissions"
#. Tag: literal
-#: Security.xml:3991 Security.xml:4011
+#: Security.xml:3994 Security.xml:4014
#, no-c-format
msgid "grantPermission()"
msgstr "grantPermission()"
#. Tag: para
-#: Security.xml:3995
+#: Security.xml:3998
#, no-c-format
msgid ""
"The target of the specified <literal>Permission</literal>, or each of the "
@@ -7024,56 +7030,56 @@
"る)"
#. Tag: literal
-#: Security.xml:4003 Security.xml:4021 Security.xml:4039
+#: Security.xml:4006 Security.xml:4024 Security.xml:4042
#, no-c-format
msgid "seam.grant-permission"
msgstr "seam.grant-permission"
#. Tag: para
-#: Security.xml:4015 Security.xml:4051
+#: Security.xml:4018 Security.xml:4054
#, no-c-format
msgid "The target of the specified <literal>Permission</literal>."
msgstr "ターゲットの特定の<literal>Permission</literal>"
#. Tag: literal
-#: Security.xml:4029
+#: Security.xml:4032
#, no-c-format
msgid "grantPermissions()"
msgstr "grantPermissions()"
#. Tag: para
-#: Security.xml:4033 Security.xml:4069
+#: Security.xml:4036 Security.xml:4072
#, no-c-format
msgid ""
"Each of the targets of the specified list of <literal>Permission</literal>s."
msgstr "それぞれのターゲットの特定の<literal>Permission</literal>s"
#. Tag: literal
-#: Security.xml:4047
+#: Security.xml:4050
#, no-c-format
msgid "revokePermission()"
msgstr "revokePermission()"
#. Tag: literal
-#: Security.xml:4057 Security.xml:4075
+#: Security.xml:4060 Security.xml:4078
#, no-c-format
msgid "seam.revoke-permission"
msgstr "seam.revoke-permission"
#. Tag: literal
-#: Security.xml:4065
+#: Security.xml:4068
#, no-c-format
msgid "revokePermissions()"
msgstr "revokePermissions()"
#. Tag: title
-#: Security.xml:4088
+#: Security.xml:4091
#, no-c-format
msgid "SSL Security"
msgstr "SSLによるセキュリティ"
#. Tag: para
-#: Security.xml:4090
+#: Security.xml:4093
#, no-c-format
msgid ""
"Seam includes basic support for serving sensitive pages via the HTTPS "
@@ -7088,13 +7094,13 @@
"下の例では<literal>/login.xhtml</literal>でHTTPSを使う様に設定しています。"
#. Tag: programlisting
-#: Security.xml:4097
+#: Security.xml:4100
#, no-c-format
msgid "<![CDATA[<page view-id=\"/login.xhtml\" scheme=\"https\"/>]]>"
msgstr "<![CDATA[<page view-id=\"/login.xhtml\" scheme=\"https\"/>]]>"
#. Tag: para
-#: Security.xml:4099
+#: Security.xml:4102
#, no-c-format
msgid ""
"This configuration is automatically extended to both <literal>s:link</"
@@ -7112,13 +7118,13 @@
"用されます。"
#. Tag: programlisting
-#: Security.xml:4106
+#: Security.xml:4109
#, no-c-format
msgid "<![CDATA[<s:link view=\"/login.xhtml\" value=\"Login\"/>]]>"
msgstr "<![CDATA[<s:link view=\"/login.xhtml\" value=\"Login\"/>]]>"
#. Tag: para
-#: Security.xml:4108
+#: Security.xml:4111
#, no-c-format
msgid ""
"Browsing directly to a view when using the <emphasis>incorrect</emphasis> "
@@ -7134,7 +7140,7 @@
"イレクトされます。"
#. Tag: para
-#: Security.xml:4115
+#: Security.xml:4118
#, no-c-format
msgid ""
"It is also possible to configure a <emphasis>default scheme</emphasis> for "
@@ -7156,13 +7162,13 @@
"literal>に追加してください。"
#. Tag: programlisting
-#: Security.xml:4124
+#: Security.xml:4127
#, no-c-format
msgid "<![CDATA[<page view-id=\"*\" scheme=\"http\" />]]>"
msgstr "<![CDATA[<page view-id=\"*\" scheme=\"http\" />]]>"
#. Tag: para
-#: Security.xml:4126
+#: Security.xml:4129
#, no-c-format
msgid ""
"Of course, if <emphasis>none</emphasis> of the pages in your application use "
@@ -7172,7 +7178,7 @@
"せん。"
#. Tag: para
-#: Security.xml:4131
+#: Security.xml:4134
#, no-c-format
msgid ""
"You may configure Seam to automatically invalidate the current HTTP session "
@@ -7183,13 +7189,13 @@
"が変さらになるたびに現在のHTTPセッションを自動的に無効にする事ができます。"
#. Tag: programlisting
-#: Security.xml:4136
+#: Security.xml:4139
#, no-c-format
msgid "<![CDATA[<web:session invalidate-on-scheme-change=\"true\"/>]]>"
msgstr "<![CDATA[<web:session invalidate-on-scheme-change=\"true\"/>]]>"
#. Tag: para
-#: Security.xml:4138
+#: Security.xml:4141
#, no-c-format
msgid ""
"This option helps make your system less vulnerable to sniffing of the "
@@ -7200,13 +7206,13 @@
"ションIDの盗聴に対する脆弱性を減少させます。"
#. Tag: title
-#: Security.xml:4144
+#: Security.xml:4147
#, no-c-format
msgid "Overriding the default ports"
msgstr "デフォルトのポートの上書き"
#. Tag: para
-#: Security.xml:4146
+#: Security.xml:4149
#, no-c-format
msgid ""
"If you wish to configure the HTTP and HTTPS ports manually, they may be "
@@ -7219,7 +7225,7 @@
"literal> あるいは <literal>https-port</literal>を設定することにより行えます。"
#. Tag: programlisting
-#: Security.xml:4152
+#: Security.xml:4155
#, fuzzy, no-c-format
msgid ""
"<![CDATA[\n"
@@ -7245,13 +7251,13 @@
" ]]>"
#. Tag: title
-#: Security.xml:4158
+#: Security.xml:4161
#, no-c-format
msgid "CAPTCHA"
msgstr "キャプチャ"
#. Tag: para
-#: Security.xml:4160
+#: Security.xml:4163
#, no-c-format
msgid ""
"Though strictly not part of the security API, Seam provides a built-in "
@@ -7269,13 +7275,13 @@
"ンが動作しないようにする事を可能にしています。"
#. Tag: title
-#: Security.xml:4168
+#: Security.xml:4171
#, no-c-format
msgid "Configuring the CAPTCHA Servlet"
msgstr "キャプチャ サーブレットの設定"
#. Tag: para
-#: Security.xml:4169
+#: Security.xml:4172
#, no-c-format
msgid ""
"To get up and running, it is necessary to configure the Seam Resource "
@@ -7287,7 +7293,7 @@
"ケーションのページにキャプチャチャレンジのイメージを提供するようになります。"
#. Tag: programlisting
-#: Security.xml:4174
+#: Security.xml:4177
#, no-c-format
msgid ""
"<![CDATA[<servlet>\n"
@@ -7313,13 +7319,13 @@
"</servlet-mapping>]]>"
#. Tag: title
-#: Security.xml:4179
+#: Security.xml:4182
#, no-c-format
msgid "Adding a CAPTCHA to a form"
msgstr "キャプチャのフォームへの追加"
#. Tag: para
-#: Security.xml:4181
+#: Security.xml:4184
#, no-c-format
msgid ""
"Adding a CAPTCHA challenge to a form is extremely easy. Here's an example:"
@@ -7327,7 +7333,7 @@
"キャプチャチャレンジをフォームに追加するのは以下のようにいたって簡単です:"
#. Tag: programlisting
-#: Security.xml:4185
+#: Security.xml:4188
#, no-c-format
msgid ""
"<![CDATA[<h:graphicImage value=\"/seam/resource/captcha\"/>\n"
@@ -7345,7 +7351,7 @@
"<h:message for=\"verifyCaptcha\"/>]]>"
#. Tag: para
-#: Security.xml:4187
+#: Security.xml:4190
#, no-c-format
msgid ""
"That's all there is to it. The <literal>graphicImage</literal> control "
@@ -7358,13 +7364,13 @@
"ユーザーの入力はフォームが送信された時に自動的にキャプチャと照合されます。"
#. Tag: title
-#: Security.xml:4196
+#: Security.xml:4199
#, no-c-format
msgid "Customising the CAPTCHA algorithm"
msgstr "キャプチャアルゴリズムのカスタム化"
#. Tag: para
-#: Security.xml:4198
+#: Security.xml:4201
#, no-c-format
msgid ""
"You may customize the CAPTCHA algorithm by overriding the built-in component:"
@@ -7373,7 +7379,7 @@
"スタマイズすることができます。"
#. Tag: programlisting
-#: Security.xml:4202
+#: Security.xml:4205
#, no-c-format
msgid ""
"<![CDATA[@Name(\"org.jboss.seam.captcha.captcha\")\n"
@@ -7421,13 +7427,13 @@
"}]]>"
#. Tag: title
-#: Security.xml:4209 Security.xml:4217
+#: Security.xml:4212 Security.xml:4220
#, no-c-format
msgid "Security Events"
msgstr "セキュリティ イベント"
#. Tag: para
-#: Security.xml:4211
+#: Security.xml:4214
#, no-c-format
msgid ""
"The following table describes a number of events (see <xref linkend=\"events"
@@ -7437,69 +7443,69 @@
"ント(<xref linkend=\"events\"/>)を一覧にしました。"
#. Tag: para
-#: Security.xml:4226
+#: Security.xml:4229
#, no-c-format
msgid "Event Key"
msgstr "イベントキー"
#. Tag: literal
-#: Security.xml:4239
+#: Security.xml:4242
#, no-c-format
msgid "org.jboss.seam.security.loginSuccessful"
msgstr "org.jboss.seam.security.loginSuccessful"
#. Tag: para
-#: Security.xml:4243
+#: Security.xml:4246
#, no-c-format
msgid "Raised when a login attempt is successful."
msgstr "ログインに成功した時に発生"
#. Tag: literal
-#: Security.xml:4251
+#: Security.xml:4254
#, no-c-format
msgid "org.jboss.seam.security.loginFailed"
msgstr "org.jboss.seam.security.loginFailed"
#. Tag: para
-#: Security.xml:4255
+#: Security.xml:4258
#, no-c-format
msgid "Raised when a login attempt fails."
msgstr "ログインに失敗した時に発生"
#. Tag: literal
-#: Security.xml:4263
+#: Security.xml:4266
#, no-c-format
msgid "org.jboss.seam.security.alreadyLoggedIn"
msgstr "org.jboss.seam.security.alreadyLoggedIn"
#. Tag: para
-#: Security.xml:4267
+#: Security.xml:4270
#, no-c-format
msgid ""
"Raised when a user that is already authenticated attempts to log in again."
msgstr "ユーザーがすでに認証されていて再度ログインした時に発生"
#. Tag: literal
-#: Security.xml:4275
+#: Security.xml:4278
#, no-c-format
msgid "org.jboss.seam.security.notLoggedIn"
msgstr "org.jboss.seam.security.notLoggedIn"
#. Tag: para
-#: Security.xml:4279
+#: Security.xml:4282
#, no-c-format
msgid "Raised when a security check fails when the user is not logged in."
msgstr ""
"ユーザーがログインしていないためにセキュリティチェックに失敗した時に発生"
#. Tag: literal
-#: Security.xml:4287
+#: Security.xml:4290
#, no-c-format
msgid "org.jboss.seam.security.notAuthorized"
msgstr "org.jboss.seam.security.notAuthorized"
#. Tag: para
-#: Security.xml:4291
+#: Security.xml:4294
#, no-c-format
msgid ""
"Raised when a security check fails when the user is logged in however "
@@ -7509,73 +7515,73 @@
"発生"
#. Tag: literal
-#: Security.xml:4299
+#: Security.xml:4302
#, no-c-format
msgid "org.jboss.seam.security.preAuthenticate"
msgstr "org.jboss.seam.security.preAuthenticate"
#. Tag: para
-#: Security.xml:4303
+#: Security.xml:4306
#, no-c-format
msgid "Raised just prior to user authentication."
msgstr "ユーザーが認証される直前に発生"
#. Tag: literal
-#: Security.xml:4311
+#: Security.xml:4314
#, no-c-format
msgid "org.jboss.seam.security.postAuthenticate"
msgstr "org.jboss.seam.security.postAuthenticate"
#. Tag: para
-#: Security.xml:4315
+#: Security.xml:4318
#, no-c-format
msgid "Raised just after user authentication."
msgstr "ユーザーが認証された直後に発生"
#. Tag: literal
-#: Security.xml:4323
+#: Security.xml:4326
#, no-c-format
msgid "org.jboss.seam.security.loggedOut"
msgstr "org.jboss.seam.security.loggedOut"
#. Tag: para
-#: Security.xml:4327
+#: Security.xml:4330
#, no-c-format
msgid "Raised after the user has logged out."
msgstr "ユーザーがログアウトした後に発生"
#. Tag: literal
-#: Security.xml:4335
+#: Security.xml:4338
#, no-c-format
msgid "org.jboss.seam.security.credentialsUpdated"
msgstr "org.jboss.seam.security.credentialsUpdated"
#. Tag: para
-#: Security.xml:4339
+#: Security.xml:4342
#, no-c-format
msgid "Raised when the user's credentials have been changed."
msgstr "ユーザーのクレデンシャル(信用情報)が変更された時に発生"
#. Tag: literal
-#: Security.xml:4347
+#: Security.xml:4350
#, no-c-format
msgid "org.jboss.seam.security.rememberMe"
msgstr "org.jboss.seam.security.rememberMe"
#. Tag: para
-#: Security.xml:4351
+#: Security.xml:4354
#, no-c-format
msgid "Raised when the Identity's rememberMe property is changed."
msgstr "IdentityのrememberMeプロパティが変更された時に発生"
#. Tag: title
-#: Security.xml:4364
+#: Security.xml:4367
#, no-c-format
msgid "Run As"
msgstr "自分とは別の権限での実行"
#. Tag: para
-#: Security.xml:4366
+#: Security.xml:4369
#, no-c-format
msgid ""
"Sometimes it may be necessary to perform certain operations with elevated "
@@ -7593,7 +7599,7 @@
"可能にします。"
#. Tag: para
-#: Security.xml:4374
+#: Security.xml:4377
#, no-c-format
msgid ""
"The following code example demonstrates how <literal>RunAsOperation</"
@@ -7608,7 +7614,7 @@
"で実行するためのコードを持っています。"
#. Tag: programlisting
-#: Security.xml:4381
+#: Security.xml:4384
#, no-c-format
msgid ""
"<![CDATA[ new RunAsOperation() { \n"
@@ -7626,7 +7632,7 @@
" .run();]]>"
#. Tag: para
-#: Security.xml:4383
+#: Security.xml:4386
#, no-c-format
msgid ""
"In a similar way, the <literal>getPrincipal()</literal> or "
@@ -7642,13 +7648,13 @@
"ソッドを使用します。"
#. Tag: title
-#: Security.xml:4394
+#: Security.xml:4397
#, no-c-format
msgid "Extending the Identity component"
msgstr "IDコンポーネント(Identity component)の拡張"
#. Tag: para
-#: Security.xml:4396
+#: Security.xml:4399
#, no-c-format
msgid ""
"Sometimes it might be necessary to extend the Identity component if your "
@@ -7667,7 +7673,7 @@
"が内蔵Identityよりも優先されてインストールされることを保証しています。"
#. Tag: programlisting
-#: Security.xml:4404
+#: Security.xml:4407
#, no-c-format
msgid ""
"<![CDATA[@Name(\"org.jboss.seam.security.identity\")\n"
@@ -7731,7 +7737,7 @@
"}]]>"
#. Tag: para
-#: Security.xml:4407
+#: Security.xml:4410
#, no-c-format
msgid ""
"Note that an <literal>Identity</literal> component must be marked "
@@ -7745,13 +7751,13 @@
"と、Seamのいくつかの機能が動作しないことがあります。"
#. Tag: title
-#: Security.xml:4419
+#: Security.xml:4422
#, no-c-format
msgid "OpenID"
msgstr ""
#. Tag: para
-#: Security.xml:4421
+#: Security.xml:4424
#, no-c-format
msgid ""
"OpenID is a community standard for external web-based authentication. The "
@@ -7764,7 +7770,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4430
+#: Security.xml:4433
#, no-c-format
msgid ""
"When using OpenID, the user selects an OpenID provider, and the provider "
@@ -7781,7 +7787,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4439
+#: Security.xml:4442
#, no-c-format
msgid ""
"It's important to realize at this point that authentication does not imply "
@@ -7794,13 +7800,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4449
+#: Security.xml:4452
#, fuzzy, no-c-format
msgid "Configuring OpenID"
msgstr "エンティティの設定"
#. Tag: para
-#: Security.xml:4450
+#: Security.xml:4453
#, no-c-format
msgid ""
"Seam uses the openid4java package and requires four additional JARs to make "
@@ -7810,7 +7816,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4456
+#: Security.xml:4459
#, no-c-format
msgid ""
"OpenID processing requires the use of the <literal>OpenIdPhaseListener</"
@@ -7820,7 +7826,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4462
+#: Security.xml:4465
#, no-c-format
msgid ""
"<lifecycle>\n"
@@ -7830,7 +7836,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4465
+#: Security.xml:4468
#, no-c-format
msgid ""
"With this configuration, OpenID support is available to your application. "
@@ -7840,13 +7846,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4473
+#: Security.xml:4476
#, fuzzy, no-c-format
msgid "Presenting an OpenIdDLogin form"
msgstr "ログインフォームの記述"
#. Tag: para
-#: Security.xml:4475
+#: Security.xml:4478
#, no-c-format
msgid ""
"To initiate an OpenID login, you can present a simply form to the user "
@@ -7856,7 +7862,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4480
+#: Security.xml:4483
#, no-c-format
msgid ""
"<h:form>\n"
@@ -7867,7 +7873,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4482
+#: Security.xml:4485
#, no-c-format
msgid ""
"When the user submits the login form, he will be redirected to his OpenID "
@@ -7879,13 +7885,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4491
+#: Security.xml:4494
#, no-c-format
msgid "Logging in immediately"
msgstr ""
#. Tag: para
-#: Security.xml:4493
+#: Security.xml:4496
#, no-c-format
msgid ""
"The simplest strategy is to simply login the user immediately. The following "
@@ -7894,7 +7900,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4497
+#: Security.xml:4500
#, no-c-format
msgid ""
"<page view-id="/openid.xhtml">\n"
@@ -7914,7 +7920,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4499
+#: Security.xml:4502
#, no-c-format
msgid ""
"Thie <literal>loginImmediately()</literal> action checks to see if the "
@@ -7928,13 +7934,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4510
+#: Security.xml:4513
#, no-c-format
msgid "Deferring login"
msgstr ""
#. Tag: para
-#: Security.xml:4512
+#: Security.xml:4515
#, no-c-format
msgid ""
"You may not want the user to be immediately logged in to your application. "
@@ -7951,13 +7957,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4526
+#: Security.xml:4529
#, no-c-format
msgid "Logging out"
msgstr ""
#. Tag: para
-#: Security.xml:4528
+#: Security.xml:4531
#, no-c-format
msgid ""
"Logging out (forgetting an OpenID association) is done by calling <literal>#"
@@ -7968,7 +7974,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4535
+#: Security.xml:4538
#, no-c-format
msgid ""
"<event type="org.jboss.seam.security.loggedOut">\n"
@@ -7977,7 +7983,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4537
+#: Security.xml:4540
#, no-c-format
msgid ""
"It's important that you do not leave this out or the user will not be able "
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/kn-IN/Dependencies.po
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/kn-IN/Dependencies.po 2009-06-11 20:41:36 UTC (rev 11125)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/kn-IN/Dependencies.po 2009-06-11 20:43:04 UTC (rev 11126)
@@ -5,7 +5,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-04-15 13:51+0000\n"
+"POT-Creation-Date: 2009-06-11 18:45+0000\n"
"PO-Revision-Date: 2008-04-04 01:24+0000\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -938,8 +938,8 @@
#: Dependencies.xml:1182
#, no-c-format
msgid ""
-"This sample POM will give you Seam, JPA (provided by Hibernate) and "
-"Hibernate Validator:"
+"This sample POM will give you Seam, JPA (provided by Hibernate), Hibernate "
+"Validator and Hibernate Search:"
msgstr ""
#. Tag: programlisting
@@ -970,25 +970,31 @@
" <dependency>\n"
" <groupId>org.hibernate</groupId>\n"
" <artifactId>hibernate-validator</artifactId>\n"
-" <version>3.0.0.GA</version>\n"
+" <version>3.1.0.GA</version>\n"
" </dependency>\n"
"\n"
" <dependency>\n"
" <groupId>org.hibernate</groupId>\n"
" <artifactId>hibernate-annotations</artifactId>\n"
-" <version>3.3.0.ga</version>\n"
+" <version>3.4.0.GA</version>\n"
" </dependency>\n"
"\n"
" <dependency>\n"
" <groupId>org.hibernate</groupId>\n"
" <artifactId>hibernate-entitymanager</artifactId>\n"
-" <version>3.3.1.ga</version>\n"
+" <version>3.4.0.GA</version>\n"
" </dependency>\n"
+" \n"
+" <dependency>\n"
+" <groupId>org.hibernate</groupId>\n"
+" <artifactId>hibernate-search</artifactId>\n"
+" <version>3.1.1.GA</version>\n"
+" </dependency>\n"
"\n"
" <dependency>\n"
" <groupId>org.jboss.seam</groupId>\n"
" <artifactId>jboss-seam</artifactId>\n"
-" <version>2.0.0.GA</version>\n"
+" <version>2.2.0.GA</version>\n"
" </dependency>\n"
" \n"
" </dependencies>\n"
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/kn-IN/Hsearch.po
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/kn-IN/Hsearch.po 2009-06-11 20:41:36 UTC (rev 11125)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/kn-IN/Hsearch.po 2009-06-11 20:43:04 UTC (rev 11126)
@@ -5,7 +5,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-04-15 13:51+0000\n"
+"POT-Creation-Date: 2009-06-11 18:45+0000\n"
"PO-Revision-Date: 2008-04-04 01:24+0000\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -45,7 +45,7 @@
#: Hsearch.xml:21
#, no-c-format
msgid ""
-"Hibernate Search has been designed to integrates nicely and as naturally as "
+"Hibernate Search has been designed to integrate nicely and as naturally as "
"possible with JPA and Hibernate. As a natural extension, JBoss Seam provides "
"an Hibernate Search integration."
msgstr ""
@@ -132,7 +132,7 @@
" <property name=\"hibernate.ejb.event.post-delete\" \n"
" value=\"org.hibernate.search.event.FullTextIndexEventListener"
"\"/>\n"
-"\n"
+" \n"
" </properties>\n"
"</persistence-unit>]]>"
msgstr ""
@@ -141,12 +141,15 @@
#: Hsearch.xml:52
#, no-c-format
msgid ""
-"This step is no longer necessary if Hibernate Annotation or EntityManager "
-"3.3.x are used."
+"It is not longer necessary the register the event listeners if Hibernate "
+"Annotations or EntityManager 3.3.x are used. When using Hibernate Search 3.1."
+"x more eventlisteners are needed, but these are registered automatically by "
+"Hibernate Annotations; refer to the Hibernate Search reference for "
+"configuring it without EntityManager and Annotations."
msgstr ""
#. Tag: para
-#: Hsearch.xml:56
+#: Hsearch.xml:60
#, no-c-format
msgid ""
"In addition to the configuration file, the following jars have to be "
@@ -154,25 +157,25 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:61
+#: Hsearch.xml:65
#, no-c-format
msgid "hibernate-search.jar"
msgstr ""
#. Tag: para
-#: Hsearch.xml:65
+#: Hsearch.xml:69
#, no-c-format
msgid "hibernate-commons-annotations.jar"
msgstr ""
#. Tag: para
-#: Hsearch.xml:69
+#: Hsearch.xml:73
#, no-c-format
msgid "lucene-core.jar"
msgstr ""
#. Tag: para
-#: Hsearch.xml:74
+#: Hsearch.xml:78
#, no-c-format
msgid ""
"If you deploy those in a EAR, don't forget to update <filename>application."
@@ -180,13 +183,13 @@
msgstr ""
#. Tag: title
-#: Hsearch.xml:80
+#: Hsearch.xml:84
#, no-c-format
msgid "Usage"
msgstr ""
#. Tag: para
-#: Hsearch.xml:82
+#: Hsearch.xml:86
#, no-c-format
msgid ""
"Hibernate Search uses annotations to map entities to a Lucene index, check "
@@ -195,7 +198,7 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:87
+#: Hsearch.xml:91
#, no-c-format
msgid ""
"Hibernate Search is fully integrated with the API and semantic of JPA / "
@@ -206,7 +209,7 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:93
+#: Hsearch.xml:97
#, no-c-format
msgid ""
"When Hibernate Search is present, JBoss Seam injects a "
@@ -214,7 +217,7 @@
msgstr ""
#. Tag: programlisting
-#: Hsearch.xml:96
+#: Hsearch.xml:100
#, no-c-format
msgid ""
"<![CDATA[@Stateful\n"
@@ -237,7 +240,7 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:99
+#: Hsearch.xml:103
#, no-c-format
msgid ""
"<classname>FullTextSession</classname> extends <classname>org.hibernate."
@@ -245,14 +248,14 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:104
+#: Hsearch.xml:108
#, no-c-format
msgid ""
"If the Java Persistence API is used, a smoother integration is proposed."
msgstr ""
#. Tag: programlisting
-#: Hsearch.xml:107
+#: Hsearch.xml:111
#, no-c-format
msgid ""
"<![CDATA[@Stateful\n"
@@ -275,7 +278,7 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:109
+#: Hsearch.xml:113
#, no-c-format
msgid ""
"When Hibernate Search is present, a <classname>FulltextEntityManager</"
@@ -286,7 +289,7 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:116
+#: Hsearch.xml:120
#, no-c-format
msgid ""
"When an EJB 3.0 Session or Message Driven Bean injection is used (i.e. via "
@@ -299,7 +302,7 @@
msgstr ""
#. Tag: programlisting
-#: Hsearch.xml:124
+#: Hsearch.xml:128
#, no-c-format
msgid ""
"<![CDATA[@Stateful\n"
@@ -323,15 +326,15 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:129
+#: Hsearch.xml:133
#, no-c-format
msgid ""
"For people accustomed to Hibernate Search out of Seam, note that using "
-"<methodname>Search.createFullTextSession</methodname> is not necessary."
+"<methodname>Search.getFullTextSession</methodname> is not necessary."
msgstr ""
#. Tag: para
-#: Hsearch.xml:134
+#: Hsearch.xml:138
#, no-c-format
msgid ""
"Check the DVDStore or the blog examples of the JBoss Seam distribution for a "
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/kn-IN/Security.po
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/kn-IN/Security.po 2009-06-11 20:41:36 UTC (rev 11125)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/kn-IN/Security.po 2009-06-11 20:43:04 UTC (rev 11126)
@@ -5,7 +5,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-06-11 07:43+0000\n"
+"POT-Creation-Date: 2009-06-11 18:45+0000\n"
"PO-Revision-Date: 2008-04-04 01:24+0000\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -1190,7 +1190,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:630 Security.xml:764 Security.xml:3382 Security.xml:3545
+#: Security.xml:630 Security.xml:764 Security.xml:3385 Security.xml:3548
#, no-c-format
msgid "Annotation"
msgstr ""
@@ -1203,8 +1203,8 @@
#. Tag: para
#: Security.xml:636 Security.xml:770 Security.xml:966 Security.xml:1418
-#: Security.xml:2147 Security.xml:2756 Security.xml:3171 Security.xml:3388
-#: Security.xml:3551 Security.xml:3792 Security.xml:4229
+#: Security.xml:2147 Security.xml:2756 Security.xml:3174 Security.xml:3391
+#: Security.xml:3554 Security.xml:3795 Security.xml:4232
#, no-c-format
msgid "Description"
msgstr ""
@@ -2228,8 +2228,8 @@
msgstr ""
#. Tag: para
-#: Security.xml:1412 Security.xml:1828 Security.xml:2753 Security.xml:3168
-#: Security.xml:3789 Security.xml:3958
+#: Security.xml:1412 Security.xml:1828 Security.xml:2753 Security.xml:3171
+#: Security.xml:3792 Security.xml:3961
#, no-c-format
msgid "Method"
msgstr ""
@@ -2250,9 +2250,9 @@
#: Security.xml:1433 Security.xml:1452 Security.xml:1471 Security.xml:1490
#: Security.xml:1509 Security.xml:1529 Security.xml:1548 Security.xml:1567
#: Security.xml:1586 Security.xml:1606 Security.xml:1626 Security.xml:1740
-#: Security.xml:1762 Security.xml:1780 Security.xml:2766 Security.xml:3239
-#: Security.xml:3258 Security.xml:3277 Security.xml:3295 Security.xml:3840
-#: Security.xml:3859 Security.xml:3878 Security.xml:3897
+#: Security.xml:1762 Security.xml:1780 Security.xml:2766 Security.xml:3242
+#: Security.xml:3261 Security.xml:3280 Security.xml:3298 Security.xml:3843
+#: Security.xml:3862 Security.xml:3881 Security.xml:3900
#, no-c-format
msgid "boolean"
msgstr ""
@@ -2558,13 +2558,13 @@
msgstr ""
#. Tag: para
-#: Security.xml:1831 Security.xml:3961
+#: Security.xml:1831 Security.xml:3964
#, no-c-format
msgid "Permission Target"
msgstr ""
#. Tag: para
-#: Security.xml:1834 Security.xml:3964
+#: Security.xml:1834 Security.xml:3967
#, no-c-format
msgid "Permission Action"
msgstr ""
@@ -3806,7 +3806,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2750 Security.xml:3165 Security.xml:3786
+#: Security.xml:2750 Security.xml:3168 Security.xml:3789
#, no-c-format
msgid "Return type"
msgstr ""
@@ -3986,41 +3986,47 @@
#. Tag: para
#: Security.xml:2917
#, no-c-format
-msgid "drools-compiler.jar"
+msgid "drools-api.jar"
msgstr ""
#. Tag: para
#: Security.xml:2920
#, no-c-format
-msgid "drools-core.jar"
+msgid "drools-compiler.jar"
msgstr ""
#. Tag: para
#: Security.xml:2923
#, no-c-format
-msgid "janino.jar"
+msgid "drools-core.jar"
msgstr ""
#. Tag: para
#: Security.xml:2926
#, no-c-format
-msgid "antlr-runtime.jar"
+msgid "janino.jar"
msgstr ""
#. Tag: para
#: Security.xml:2929
#, no-c-format
-msgid "mvel14.jar"
+msgid "antlr-runtime.jar"
msgstr ""
+#. Tag: para
+#: Security.xml:2932
+#, no-c-format
+msgid "mvel2.jar"
+msgstr ""
+
#. Tag: title
-#: Security.xml:2936 Security.xml:3128
+#: Security.xml:2939 Security.xml:3131
#, no-c-format
msgid "Configuration"
msgstr ""
#. Tag: para
-#: Security.xml:2938
+#: Security.xml:2941
#, no-c-format
msgid ""
"The configuration for <literal>RuleBasedPermissionResolver</literal> "
@@ -4030,7 +4036,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:2944
+#: Security.xml:2947
#, no-c-format
msgid ""
"<![CDATA[<components xmlns=\"http://jboss.com/products/seam/components\"\n"
@@ -4058,7 +4064,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2946
+#: Security.xml:2949
#, no-c-format
msgid ""
"The default rule base name can be overridden by specifying the "
@@ -4067,7 +4073,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:2951
+#: Security.xml:2954
#, no-c-format
msgid ""
"<![CDATA[\n"
@@ -4076,7 +4082,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2953
+#: Security.xml:2956
#, no-c-format
msgid ""
"Once the <literal>RuleBase</literal> component is configured, it's time to "
@@ -4084,13 +4090,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:2959
+#: Security.xml:2962
#, no-c-format
msgid "Writing Security Rules"
msgstr ""
#. Tag: para
-#: Security.xml:2961
+#: Security.xml:2964
#, no-c-format
msgid ""
"The first step to writing security rules is to create a new rule file in the "
@@ -4101,7 +4107,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2968
+#: Security.xml:2971
#, no-c-format
msgid ""
"So what should the security rules file contain? At this stage it might be a "
@@ -4110,7 +4116,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:2973
+#: Security.xml:2976
#, no-c-format
msgid ""
"<![CDATA[package MyApplicationPermissions;\n"
@@ -4128,7 +4134,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2975
+#: Security.xml:2978
#, no-c-format
msgid ""
"Let's break this down step by step. The first thing we see is the package "
@@ -4138,7 +4144,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2981
+#: Security.xml:2984
#, no-c-format
msgid ""
"The next thing we can notice is a couple of import statements for the "
@@ -4148,7 +4154,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2987
+#: Security.xml:2990
#, no-c-format
msgid ""
"Finally we have the code for the rule. Each rule within a package should be "
@@ -4158,7 +4164,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2993
+#: Security.xml:2996
#, no-c-format
msgid ""
"Looking at the body of the rule definition we can notice two distinct "
@@ -4173,7 +4179,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3002
+#: Security.xml:3005
#, no-c-format
msgid ""
"If we look at the LHS of the rule, we see two conditions listed there. Let's "
@@ -4181,14 +4187,14 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3006
+#: Security.xml:3009
#, no-c-format
msgid ""
"<![CDATA[c: PermissionCheck(target == \"customer\", action == \"delete\")]]>"
msgstr ""
#. Tag: para
-#: Security.xml:3008
+#: Security.xml:3011
#, no-c-format
msgid ""
"In plain english, this condition is stating that there must exist a "
@@ -4198,7 +4204,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3014
+#: Security.xml:3017
#, no-c-format
msgid ""
"So what is the working memory? Also known as a \"stateful session\" in "
@@ -4216,7 +4222,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3026
+#: Security.xml:3029
#, no-c-format
msgid ""
"Besides the <literal>PermissionCheck</literal> facts, there is also a "
@@ -4233,7 +4239,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3037
+#: Security.xml:3040
#, no-c-format
msgid ""
"It is also possible to insert additional long-lived facts into the working "
@@ -4244,7 +4250,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3044
+#: Security.xml:3047
#, no-c-format
msgid ""
"Getting back to our simple example, we can also notice that the first line "
@@ -4255,13 +4261,13 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3051
+#: Security.xml:3054
#, no-c-format
msgid "<![CDATA[Role(name == \"admin\")]]>"
msgstr ""
#. Tag: para
-#: Security.xml:3053
+#: Security.xml:3056
#, no-c-format
msgid ""
"This condition simply states that there must be a <literal>Role</literal> "
@@ -4274,7 +4280,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3061
+#: Security.xml:3064
#, no-c-format
msgid ""
"So what is the consequence of the rule firing? Let's take a look at the RHS "
@@ -4282,13 +4288,13 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3065
+#: Security.xml:3068
#, no-c-format
msgid "<![CDATA[c.grant()]]>"
msgstr ""
#. Tag: para
-#: Security.xml:3067
+#: Security.xml:3070
#, no-c-format
msgid ""
"The RHS consists of Java code, and in this case is invoking the "
@@ -4305,13 +4311,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3081
+#: Security.xml:3084
#, no-c-format
msgid "Non-String permission targets"
msgstr ""
#. Tag: para
-#: Security.xml:3083
+#: Security.xml:3086
#, no-c-format
msgid ""
"So far we have only seen permission checks for String-literal permission "
@@ -4325,7 +4331,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3092
+#: Security.xml:3095
#, no-c-format
msgid ""
"<![CDATA[rule CanCreateBlogComment\n"
@@ -4343,13 +4349,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3097
+#: Security.xml:3100
#, no-c-format
msgid "Wildcard permission checks"
msgstr ""
#. Tag: para
-#: Security.xml:3099
+#: Security.xml:3102
#, no-c-format
msgid ""
"It is possible to implement a wildcard permission check (which allows all "
@@ -4359,7 +4365,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3105
+#: Security.xml:3108
#, no-c-format
msgid ""
"<![CDATA[rule CanDoAnythingToCustomersIfYouAreAnAdmin\n"
@@ -4373,7 +4379,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3107
+#: Security.xml:3110
#, no-c-format
msgid ""
"This rule allows users with the <literal>admin</literal> role to perform "
@@ -4382,13 +4388,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3117
+#: Security.xml:3120
#, no-c-format
msgid "PersistentPermissionResolver"
msgstr ""
#. Tag: para
-#: Security.xml:3119
+#: Security.xml:3122
#, no-c-format
msgid ""
"Another built-in permission resolver provided by Seam, "
@@ -4401,7 +4407,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3130
+#: Security.xml:3133
#, no-c-format
msgid ""
"Before it can be used, <literal>PersistentPermissionResolver</literal> must "
@@ -4414,7 +4420,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3138
+#: Security.xml:3141
#, no-c-format
msgid ""
"<![CDATA[ <security:persistent-permission-resolver permission-store=\"#"
@@ -4422,13 +4428,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3143
+#: Security.xml:3146
#, no-c-format
msgid "Permission Stores"
msgstr ""
#. Tag: para
-#: Security.xml:3145
+#: Security.xml:3148
#, no-c-format
msgid ""
"A permission store is required for <literal>PersistentPermissionResolver</"
@@ -4441,26 +4447,26 @@
msgstr ""
#. Tag: title
-#: Security.xml:3155
+#: Security.xml:3158
#, no-c-format
msgid "PermissionStore interface"
msgstr ""
#. Tag: literal
-#: Security.xml:3181 Security.xml:3200 Security.xml:3219 Security.xml:3802
-#: Security.xml:3821
+#: Security.xml:3184 Security.xml:3203 Security.xml:3222 Security.xml:3805
+#: Security.xml:3824
#, no-c-format
msgid "List<Permission>"
msgstr ""
#. Tag: literal
-#: Security.xml:3186 Security.xml:3826
+#: Security.xml:3189 Security.xml:3829
#, no-c-format
msgid "listPermissions(Object target)"
msgstr ""
#. Tag: para
-#: Security.xml:3190
+#: Security.xml:3193
#, no-c-format
msgid ""
"This method should return a <literal>List</literal> of <literal>Permission</"
@@ -4469,13 +4475,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3205 Security.xml:3807
+#: Security.xml:3208 Security.xml:3810
#, no-c-format
msgid "listPermissions(Object target, String action)"
msgstr ""
#. Tag: para
-#: Security.xml:3209
+#: Security.xml:3212
#, no-c-format
msgid ""
"This method should return a <literal>List</literal> of <literal>Permission</"
@@ -4484,13 +4490,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3224
+#: Security.xml:3227
#, no-c-format
msgid "listPermissions(Set<Object> targets, String action)"
msgstr ""
#. Tag: para
-#: Security.xml:3228
+#: Security.xml:3231
#, no-c-format
msgid ""
"This method should return a <literal>List</literal> of <literal>Permission</"
@@ -4499,13 +4505,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3244
+#: Security.xml:3247
#, no-c-format
msgid "grantPermission(Permission)"
msgstr ""
#. Tag: para
-#: Security.xml:3248
+#: Security.xml:3251
#, no-c-format
msgid ""
"This method should persist the specified <literal>Permission</literal> "
@@ -4513,13 +4519,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3263 Security.xml:3864
+#: Security.xml:3266 Security.xml:3867
#, no-c-format
msgid "grantPermissions(List<Permission> permissions)"
msgstr ""
#. Tag: para
-#: Security.xml:3267
+#: Security.xml:3270
#, no-c-format
msgid ""
"This method should persist all of the <literal>Permission</literal> objects "
@@ -4528,13 +4534,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3282 Security.xml:3883
+#: Security.xml:3285 Security.xml:3886
#, no-c-format
msgid "revokePermission(Permission permission)"
msgstr ""
#. Tag: para
-#: Security.xml:3286
+#: Security.xml:3289
#, no-c-format
msgid ""
"This method should remove the specified <literal>Permission</literal> object "
@@ -4542,13 +4548,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3300 Security.xml:3902
+#: Security.xml:3303 Security.xml:3905
#, no-c-format
msgid "revokePermissions(List<Permission> permissions)"
msgstr ""
#. Tag: para
-#: Security.xml:3304
+#: Security.xml:3307
#, no-c-format
msgid ""
"This method should remove all of the <literal>Permission</literal> objects "
@@ -4556,19 +4562,19 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3314 Security.xml:3916
+#: Security.xml:3317 Security.xml:3919
#, no-c-format
msgid "List<String>"
msgstr ""
#. Tag: literal
-#: Security.xml:3319 Security.xml:3921
+#: Security.xml:3322 Security.xml:3924
#, no-c-format
msgid "listAvailableActions(Object target)"
msgstr ""
#. Tag: para
-#: Security.xml:3323
+#: Security.xml:3326
#, no-c-format
msgid ""
"This method should return a list of all the available actions (as Strings) "
@@ -4578,13 +4584,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3337
+#: Security.xml:3340
#, no-c-format
msgid "JpaPermissionStore"
msgstr ""
#. Tag: para
-#: Security.xml:3339
+#: Security.xml:3342
#, no-c-format
msgid ""
"This is the default <literal>PermissionStore</literal> implementation (and "
@@ -4597,7 +4603,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3347
+#: Security.xml:3350
#, no-c-format
msgid ""
"If you wish to use the same entity (i.e. a single database table) to store "
@@ -4609,7 +4615,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3354
+#: Security.xml:3357
#, no-c-format
msgid ""
"For example, to configure a single entity class to store both user and role "
@@ -4617,7 +4623,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3356
+#: Security.xml:3359
#, no-c-format
msgid ""
"<![CDATA[ <security:jpa-permission-store user-permission-class=\"com.acme."
@@ -4625,14 +4631,14 @@
msgstr ""
#. Tag: para
-#: Security.xml:3358
+#: Security.xml:3361
#, no-c-format
msgid ""
"To configure separate entity classes for storing user and role permissions:"
msgstr ""
#. Tag: programlisting
-#: Security.xml:3360
+#: Security.xml:3363
#, no-c-format
msgid ""
"<![CDATA[ <security:jpa-permission-store user-permission-class=\"com.acme."
@@ -4641,13 +4647,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3363
+#: Security.xml:3366
#, no-c-format
msgid "Permission annotations"
msgstr ""
#. Tag: para
-#: Security.xml:3365
+#: Security.xml:3368
#, no-c-format
msgid ""
"As mentioned, the entity classes that contain the user and role permissions "
@@ -4658,32 +4664,32 @@
msgstr ""
#. Tag: title
-#: Security.xml:3372
+#: Security.xml:3375
#, no-c-format
msgid "Entity Permission annotations"
msgstr ""
#. Tag: para
-#: Security.xml:3385 Security.xml:3548
+#: Security.xml:3388 Security.xml:3551
#, no-c-format
msgid "Target"
msgstr ""
#. Tag: literal
-#: Security.xml:3398
+#: Security.xml:3401
#, no-c-format
msgid "@PermissionTarget"
msgstr ""
#. Tag: literal
-#: Security.xml:3403 Security.xml:3422 Security.xml:3441 Security.xml:3460
-#: Security.xml:3479
+#: Security.xml:3406 Security.xml:3425 Security.xml:3444 Security.xml:3463
+#: Security.xml:3482
#, no-c-format
msgid "FIELD,METHOD"
msgstr ""
#. Tag: para
-#: Security.xml:3407
+#: Security.xml:3410
#, no-c-format
msgid ""
"This annotation identifies the property of the entity that will contain the "
@@ -4692,13 +4698,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3417
+#: Security.xml:3420
#, no-c-format
msgid "@PermissionAction"
msgstr ""
#. Tag: para
-#: Security.xml:3426
+#: Security.xml:3429
#, no-c-format
msgid ""
"This annotation identifies the property of the entity that will contain the "
@@ -4707,13 +4713,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3436
+#: Security.xml:3439
#, no-c-format
msgid "@PermissionUser"
msgstr ""
#. Tag: para
-#: Security.xml:3445
+#: Security.xml:3448
#, no-c-format
msgid ""
"This annotation identifies the property of the entity that will contain the "
@@ -4722,13 +4728,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3455
+#: Security.xml:3458
#, no-c-format
msgid "@PermissionRole"
msgstr ""
#. Tag: para
-#: Security.xml:3464
+#: Security.xml:3467
#, no-c-format
msgid ""
"This annotation identifies the property of the entity that will contain the "
@@ -4737,13 +4743,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3474
+#: Security.xml:3477
#, no-c-format
msgid "@PermissionDiscriminator"
msgstr ""
#. Tag: para
-#: Security.xml:3483
+#: Security.xml:3486
#, no-c-format
msgid ""
"This annotation should be used when the same entity/table is used to store "
@@ -4760,20 +4766,20 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3493
+#: Security.xml:3496
#, no-c-format
msgid ""
"<![CDATA[ @PermissionDiscriminator(userValue = \"u\", roleValue = \"r\")]]>"
msgstr ""
#. Tag: title
-#: Security.xml:3504
+#: Security.xml:3507
#, no-c-format
msgid "Example Entity"
msgstr ""
#. Tag: para
-#: Security.xml:3506
+#: Security.xml:3509
#, no-c-format
msgid ""
"Here is an example of an entity class that is used to store both user and "
@@ -4782,7 +4788,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3511
+#: Security.xml:3514
#, no-c-format
msgid ""
"<![CDATA[\n"
@@ -4843,7 +4849,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3513
+#: Security.xml:3516
#, no-c-format
msgid ""
"As can be seen in the above example, the <literal>getDiscriminator()</"
@@ -4860,13 +4866,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3526
+#: Security.xml:3529
#, no-c-format
msgid "Class-specific Permission Configuration"
msgstr ""
#. Tag: para
-#: Security.xml:3528
+#: Security.xml:3531
#, no-c-format
msgid ""
"A further set of class-specific annotations can be used to configure a "
@@ -4876,25 +4882,25 @@
msgstr ""
#. Tag: title
-#: Security.xml:3535
+#: Security.xml:3538
#, no-c-format
msgid "Class Permission Annotations"
msgstr ""
#. Tag: literal
-#: Security.xml:3561
+#: Security.xml:3564
#, no-c-format
msgid "@Permissions"
msgstr ""
#. Tag: literal
-#: Security.xml:3566 Security.xml:3584
+#: Security.xml:3569 Security.xml:3587
#, no-c-format
msgid "TYPE"
msgstr ""
#. Tag: para
-#: Security.xml:3570
+#: Security.xml:3573
#, no-c-format
msgid ""
"A container annotation, this annotation may contain an array of "
@@ -4902,13 +4908,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3579
+#: Security.xml:3582
#, no-c-format
msgid "@Permission"
msgstr ""
#. Tag: para
-#: Security.xml:3588
+#: Security.xml:3591
#, no-c-format
msgid ""
"This annotation defines a single allowable permission action for the target "
@@ -4919,7 +4925,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3600
+#: Security.xml:3603
#, no-c-format
msgid ""
"Here's an example of the above annotations in action. The following class "
@@ -4927,7 +4933,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3604
+#: Security.xml:3607
#, no-c-format
msgid ""
"<![CDATA[@Permissions({\n"
@@ -4939,7 +4945,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3606
+#: Security.xml:3609
#, no-c-format
msgid ""
"This example demonstrates how two allowable permission actions, "
@@ -4948,13 +4954,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3614
+#: Security.xml:3617
#, no-c-format
msgid "Permission masks"
msgstr ""
#. Tag: para
-#: Security.xml:3616
+#: Security.xml:3619
#, no-c-format
msgid ""
"By default, multiple permissions for the same target object and recipient "
@@ -4966,7 +4972,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3623
+#: Security.xml:3626
#, no-c-format
msgid ""
"For example, if recipient \"Bob\" is granted both the <literal>view</"
@@ -4979,7 +4985,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3630
+#: Security.xml:3633
#, no-c-format
msgid ""
"<![CDATA[@Permissions({\n"
@@ -4991,7 +4997,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3632
+#: Security.xml:3635
#, no-c-format
msgid ""
"The <literal>action</literal> property will instead simply contain \"3"
@@ -5001,7 +5007,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3638
+#: Security.xml:3641
#, no-c-format
msgid ""
"Obviously, it is very important that the <literal>mask</literal> values "
@@ -5009,13 +5015,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3644
+#: Security.xml:3647
#, no-c-format
msgid "Identifier Policy"
msgstr ""
#. Tag: para
-#: Security.xml:3646
+#: Security.xml:3649
#, no-c-format
msgid ""
"When storing or looking up permissions, <literal>JpaPermissionStore</"
@@ -5029,7 +5035,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3654
+#: Security.xml:3657
#, no-c-format
msgid ""
"The <literal>IdentifierStrategy</literal> interface is very simple, "
@@ -5037,7 +5043,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3658
+#: Security.xml:3661
#, no-c-format
msgid ""
"<![CDATA[public interface IdentifierStrategy {\n"
@@ -5047,7 +5053,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3660
+#: Security.xml:3663
#, no-c-format
msgid ""
"The first method, <literal>canIdentify()</literal> simply returns "
@@ -5058,7 +5064,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3666
+#: Security.xml:3669
#, no-c-format
msgid ""
"Seam provides two <literal>IdentifierStrategy</literal> implementations, "
@@ -5067,7 +5073,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3671
+#: Security.xml:3674
#, no-c-format
msgid ""
"To explicitly configure a specific identifier strategy to use for a "
@@ -5080,13 +5086,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3681
+#: Security.xml:3684
#, no-c-format
msgid "ClassIdentifierStrategy"
msgstr ""
#. Tag: para
-#: Security.xml:3683
+#: Security.xml:3686
#, no-c-format
msgid ""
"This identifier strategy is used to generate unique identifiers for classes, "
@@ -5100,7 +5106,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3692
+#: Security.xml:3695
#, no-c-format
msgid ""
"<![CDATA[@Identifier(name = \"customer\")\n"
@@ -5108,7 +5114,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3694
+#: Security.xml:3697
#, no-c-format
msgid ""
"The identifier for the following class will be \"<literal>customerAction</"
@@ -5116,7 +5122,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3698
+#: Security.xml:3701
#, no-c-format
msgid ""
"<![CDATA[@Name(\"customerAction\")\n"
@@ -5124,7 +5130,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3700
+#: Security.xml:3703
#, no-c-format
msgid ""
"Finally, the identifier for the following class will be \"<literal>Customer</"
@@ -5132,19 +5138,19 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3704
+#: Security.xml:3707
#, no-c-format
msgid "<![CDATA[public class Customer { ]]>"
msgstr ""
#. Tag: title
-#: Security.xml:3709
+#: Security.xml:3712
#, no-c-format
msgid "EntityIdentifierStrategy"
msgstr ""
#. Tag: para
-#: Security.xml:3711
+#: Security.xml:3714
#, no-c-format
msgid ""
"This identifier strategy is used to generate unique identifiers for entity "
@@ -5161,7 +5167,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3722
+#: Security.xml:3725
#, no-c-format
msgid ""
"<![CDATA[@Identifier(value = EntityIdentifierStrategy.class)\n"
@@ -5169,7 +5175,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3724
+#: Security.xml:3727
#, no-c-format
msgid ""
"For an example of the type of identifier values generated, assume we have "
@@ -5177,7 +5183,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3728
+#: Security.xml:3731
#, no-c-format
msgid ""
"<![CDATA[@Entity\n"
@@ -5200,7 +5206,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3730
+#: Security.xml:3733
#, no-c-format
msgid ""
"For a <literal>Customer</literal> instance with an <literal>id</literal> "
@@ -5210,7 +5216,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3736
+#: Security.xml:3739
#, no-c-format
msgid ""
"<![CDATA[@Entity\n"
@@ -5219,7 +5225,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3738
+#: Security.xml:3741
#, no-c-format
msgid ""
"Then a <literal>Customer</literal> with an <literal>id</literal> value of "
@@ -5228,13 +5234,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3751
+#: Security.xml:3754
#, no-c-format
msgid "Permission Management"
msgstr ""
#. Tag: para
-#: Security.xml:3753
+#: Security.xml:3756
#, no-c-format
msgid ""
"In much the same way that Seam Security provides an Identity Management API "
@@ -5244,13 +5250,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3760
+#: Security.xml:3763
#, no-c-format
msgid "PermissionManager"
msgstr ""
#. Tag: para
-#: Security.xml:3762
+#: Security.xml:3765
#, no-c-format
msgid ""
"The <literal>PermissionManager</literal> component is an application-scoped "
@@ -5263,7 +5269,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3769
+#: Security.xml:3772
#, no-c-format
msgid ""
"<![CDATA[\n"
@@ -5273,7 +5279,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3771
+#: Security.xml:3774
#, no-c-format
msgid ""
"The following table describes each of the available methods provided by "
@@ -5281,13 +5287,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3776
+#: Security.xml:3779
#, no-c-format
msgid "PermissionManager API methods"
msgstr ""
#. Tag: para
-#: Security.xml:3811 Security.xml:3830
+#: Security.xml:3814 Security.xml:3833
#, no-c-format
msgid ""
"Returns a list of <literal>Permission</literal> objects representing all of "
@@ -5295,13 +5301,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3845
+#: Security.xml:3848
#, no-c-format
msgid "grantPermission(Permission permission)"
msgstr ""
#. Tag: para
-#: Security.xml:3849
+#: Security.xml:3852
#, no-c-format
msgid ""
"Persists (grants) the specified <literal>Permission</literal> to the backend "
@@ -5309,7 +5315,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3868
+#: Security.xml:3871
#, no-c-format
msgid ""
"Persists (grants) the specified list of <literal>Permission</literal>s to "
@@ -5317,7 +5323,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3887
+#: Security.xml:3890
#, no-c-format
msgid ""
"Removes (revokes) the specified <literal>Permission</literal> from the "
@@ -5325,7 +5331,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3906
+#: Security.xml:3909
#, no-c-format
msgid ""
"Removes (revokes) the specified list of <literal>Permission</literal>s from "
@@ -5333,7 +5339,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3925
+#: Security.xml:3928
#, no-c-format
msgid ""
"Returns a list of the available actions for the specified target object. The "
@@ -5342,13 +5348,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3940
+#: Security.xml:3943
#, no-c-format
msgid "Permission checks for PermissionManager operations"
msgstr ""
#. Tag: para
-#: Security.xml:3942
+#: Security.xml:3945
#, no-c-format
msgid ""
"Invoking the methods of <literal>PermissionManager</literal> requires that "
@@ -5358,37 +5364,37 @@
msgstr ""
#. Tag: title
-#: Security.xml:3949
+#: Security.xml:3952
#, no-c-format
msgid "Permission Management Security Permissions"
msgstr ""
#. Tag: literal
-#: Security.xml:3973
+#: Security.xml:3976
#, no-c-format
msgid "listPermissions()"
msgstr ""
#. Tag: para
-#: Security.xml:3977
+#: Security.xml:3980
#, no-c-format
msgid "The specified <literal>target</literal>"
msgstr ""
#. Tag: literal
-#: Security.xml:3983
+#: Security.xml:3986
#, no-c-format
msgid "seam.read-permissions"
msgstr ""
#. Tag: literal
-#: Security.xml:3991 Security.xml:4011
+#: Security.xml:3994 Security.xml:4014
#, no-c-format
msgid "grantPermission()"
msgstr ""
#. Tag: para
-#: Security.xml:3995
+#: Security.xml:3998
#, no-c-format
msgid ""
"The target of the specified <literal>Permission</literal>, or each of the "
@@ -5397,56 +5403,56 @@
msgstr ""
#. Tag: literal
-#: Security.xml:4003 Security.xml:4021 Security.xml:4039
+#: Security.xml:4006 Security.xml:4024 Security.xml:4042
#, no-c-format
msgid "seam.grant-permission"
msgstr ""
#. Tag: para
-#: Security.xml:4015 Security.xml:4051
+#: Security.xml:4018 Security.xml:4054
#, no-c-format
msgid "The target of the specified <literal>Permission</literal>."
msgstr ""
#. Tag: literal
-#: Security.xml:4029
+#: Security.xml:4032
#, no-c-format
msgid "grantPermissions()"
msgstr ""
#. Tag: para
-#: Security.xml:4033 Security.xml:4069
+#: Security.xml:4036 Security.xml:4072
#, no-c-format
msgid ""
"Each of the targets of the specified list of <literal>Permission</literal>s."
msgstr ""
#. Tag: literal
-#: Security.xml:4047
+#: Security.xml:4050
#, no-c-format
msgid "revokePermission()"
msgstr ""
#. Tag: literal
-#: Security.xml:4057 Security.xml:4075
+#: Security.xml:4060 Security.xml:4078
#, no-c-format
msgid "seam.revoke-permission"
msgstr ""
#. Tag: literal
-#: Security.xml:4065
+#: Security.xml:4068
#, no-c-format
msgid "revokePermissions()"
msgstr ""
#. Tag: title
-#: Security.xml:4088
+#: Security.xml:4091
#, no-c-format
msgid "SSL Security"
msgstr ""
#. Tag: para
-#: Security.xml:4090
+#: Security.xml:4093
#, no-c-format
msgid ""
"Seam includes basic support for serving sensitive pages via the HTTPS "
@@ -5457,13 +5463,13 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4097
+#: Security.xml:4100
#, no-c-format
msgid "<![CDATA[<page view-id=\"/login.xhtml\" scheme=\"https\"/>]]>"
msgstr ""
#. Tag: para
-#: Security.xml:4099
+#: Security.xml:4102
#, no-c-format
msgid ""
"This configuration is automatically extended to both <literal>s:link</"
@@ -5475,13 +5481,13 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4106
+#: Security.xml:4109
#, no-c-format
msgid "<![CDATA[<s:link view=\"/login.xhtml\" value=\"Login\"/>]]>"
msgstr ""
#. Tag: para
-#: Security.xml:4108
+#: Security.xml:4111
#, no-c-format
msgid ""
"Browsing directly to a view when using the <emphasis>incorrect</emphasis> "
@@ -5492,7 +5498,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4115
+#: Security.xml:4118
#, no-c-format
msgid ""
"It is also possible to configure a <emphasis>default scheme</emphasis> for "
@@ -5506,13 +5512,13 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4124
+#: Security.xml:4127
#, no-c-format
msgid "<![CDATA[<page view-id=\"*\" scheme=\"http\" />]]>"
msgstr ""
#. Tag: para
-#: Security.xml:4126
+#: Security.xml:4129
#, no-c-format
msgid ""
"Of course, if <emphasis>none</emphasis> of the pages in your application use "
@@ -5520,7 +5526,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4131
+#: Security.xml:4134
#, no-c-format
msgid ""
"You may configure Seam to automatically invalidate the current HTTP session "
@@ -5529,13 +5535,13 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4136
+#: Security.xml:4139
#, no-c-format
msgid "<![CDATA[<web:session invalidate-on-scheme-change=\"true\"/>]]>"
msgstr ""
#. Tag: para
-#: Security.xml:4138
+#: Security.xml:4141
#, no-c-format
msgid ""
"This option helps make your system less vulnerable to sniffing of the "
@@ -5544,13 +5550,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4144
+#: Security.xml:4147
#, no-c-format
msgid "Overriding the default ports"
msgstr ""
#. Tag: para
-#: Security.xml:4146
+#: Security.xml:4149
#, no-c-format
msgid ""
"If you wish to configure the HTTP and HTTPS ports manually, they may be "
@@ -5560,7 +5566,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4152
+#: Security.xml:4155
#, no-c-format
msgid ""
"<![CDATA[\n"
@@ -5576,13 +5582,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4158
+#: Security.xml:4161
#, no-c-format
msgid "CAPTCHA"
msgstr ""
#. Tag: para
-#: Security.xml:4160
+#: Security.xml:4163
#, no-c-format
msgid ""
"Though strictly not part of the security API, Seam provides a built-in "
@@ -5594,13 +5600,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4168
+#: Security.xml:4171
#, no-c-format
msgid "Configuring the CAPTCHA Servlet"
msgstr ""
#. Tag: para
-#: Security.xml:4169
+#: Security.xml:4172
#, no-c-format
msgid ""
"To get up and running, it is necessary to configure the Seam Resource "
@@ -5609,7 +5615,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4174
+#: Security.xml:4177
#, no-c-format
msgid ""
"<![CDATA[<servlet>\n"
@@ -5625,20 +5631,20 @@
msgstr ""
#. Tag: title
-#: Security.xml:4179
+#: Security.xml:4182
#, no-c-format
msgid "Adding a CAPTCHA to a form"
msgstr ""
#. Tag: para
-#: Security.xml:4181
+#: Security.xml:4184
#, no-c-format
msgid ""
"Adding a CAPTCHA challenge to a form is extremely easy. Here's an example:"
msgstr ""
#. Tag: programlisting
-#: Security.xml:4185
+#: Security.xml:4188
#, no-c-format
msgid ""
"<![CDATA[<h:graphicImage value=\"/seam/resource/captcha\"/>\n"
@@ -5650,7 +5656,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4187
+#: Security.xml:4190
#, no-c-format
msgid ""
"That's all there is to it. The <literal>graphicImage</literal> control "
@@ -5660,20 +5666,20 @@
msgstr ""
#. Tag: title
-#: Security.xml:4196
+#: Security.xml:4199
#, no-c-format
msgid "Customising the CAPTCHA algorithm"
msgstr ""
#. Tag: para
-#: Security.xml:4198
+#: Security.xml:4201
#, no-c-format
msgid ""
"You may customize the CAPTCHA algorithm by overriding the built-in component:"
msgstr ""
#. Tag: programlisting
-#: Security.xml:4202
+#: Security.xml:4205
#, no-c-format
msgid ""
"<![CDATA[@Name(\"org.jboss.seam.captcha.captcha\")\n"
@@ -5700,13 +5706,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4209 Security.xml:4217
+#: Security.xml:4212 Security.xml:4220
#, no-c-format
msgid "Security Events"
msgstr ""
#. Tag: para
-#: Security.xml:4211
+#: Security.xml:4214
#, no-c-format
msgid ""
"The following table describes a number of events (see <xref linkend=\"events"
@@ -5714,68 +5720,68 @@
msgstr ""
#. Tag: para
-#: Security.xml:4226
+#: Security.xml:4229
#, no-c-format
msgid "Event Key"
msgstr ""
#. Tag: literal
-#: Security.xml:4239
+#: Security.xml:4242
#, no-c-format
msgid "org.jboss.seam.security.loginSuccessful"
msgstr ""
#. Tag: para
-#: Security.xml:4243
+#: Security.xml:4246
#, no-c-format
msgid "Raised when a login attempt is successful."
msgstr ""
#. Tag: literal
-#: Security.xml:4251
+#: Security.xml:4254
#, no-c-format
msgid "org.jboss.seam.security.loginFailed"
msgstr ""
#. Tag: para
-#: Security.xml:4255
+#: Security.xml:4258
#, no-c-format
msgid "Raised when a login attempt fails."
msgstr ""
#. Tag: literal
-#: Security.xml:4263
+#: Security.xml:4266
#, no-c-format
msgid "org.jboss.seam.security.alreadyLoggedIn"
msgstr ""
#. Tag: para
-#: Security.xml:4267
+#: Security.xml:4270
#, no-c-format
msgid ""
"Raised when a user that is already authenticated attempts to log in again."
msgstr ""
#. Tag: literal
-#: Security.xml:4275
+#: Security.xml:4278
#, no-c-format
msgid "org.jboss.seam.security.notLoggedIn"
msgstr ""
#. Tag: para
-#: Security.xml:4279
+#: Security.xml:4282
#, no-c-format
msgid "Raised when a security check fails when the user is not logged in."
msgstr ""
#. Tag: literal
-#: Security.xml:4287
+#: Security.xml:4290
#, no-c-format
msgid "org.jboss.seam.security.notAuthorized"
msgstr ""
#. Tag: para
-#: Security.xml:4291
+#: Security.xml:4294
#, no-c-format
msgid ""
"Raised when a security check fails when the user is logged in however "
@@ -5783,73 +5789,73 @@
msgstr ""
#. Tag: literal
-#: Security.xml:4299
+#: Security.xml:4302
#, no-c-format
msgid "org.jboss.seam.security.preAuthenticate"
msgstr ""
#. Tag: para
-#: Security.xml:4303
+#: Security.xml:4306
#, no-c-format
msgid "Raised just prior to user authentication."
msgstr ""
#. Tag: literal
-#: Security.xml:4311
+#: Security.xml:4314
#, no-c-format
msgid "org.jboss.seam.security.postAuthenticate"
msgstr ""
#. Tag: para
-#: Security.xml:4315
+#: Security.xml:4318
#, no-c-format
msgid "Raised just after user authentication."
msgstr ""
#. Tag: literal
-#: Security.xml:4323
+#: Security.xml:4326
#, no-c-format
msgid "org.jboss.seam.security.loggedOut"
msgstr ""
#. Tag: para
-#: Security.xml:4327
+#: Security.xml:4330
#, no-c-format
msgid "Raised after the user has logged out."
msgstr ""
#. Tag: literal
-#: Security.xml:4335
+#: Security.xml:4338
#, no-c-format
msgid "org.jboss.seam.security.credentialsUpdated"
msgstr ""
#. Tag: para
-#: Security.xml:4339
+#: Security.xml:4342
#, no-c-format
msgid "Raised when the user's credentials have been changed."
msgstr ""
#. Tag: literal
-#: Security.xml:4347
+#: Security.xml:4350
#, no-c-format
msgid "org.jboss.seam.security.rememberMe"
msgstr ""
#. Tag: para
-#: Security.xml:4351
+#: Security.xml:4354
#, no-c-format
msgid "Raised when the Identity's rememberMe property is changed."
msgstr ""
#. Tag: title
-#: Security.xml:4364
+#: Security.xml:4367
#, no-c-format
msgid "Run As"
msgstr ""
#. Tag: para
-#: Security.xml:4366
+#: Security.xml:4369
#, no-c-format
msgid ""
"Sometimes it may be necessary to perform certain operations with elevated "
@@ -5861,7 +5867,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4374
+#: Security.xml:4377
#, no-c-format
msgid ""
"The following code example demonstrates how <literal>RunAsOperation</"
@@ -5872,7 +5878,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4381
+#: Security.xml:4384
#, no-c-format
msgid ""
"<![CDATA[ new RunAsOperation() { \n"
@@ -5884,7 +5890,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4383
+#: Security.xml:4386
#, no-c-format
msgid ""
"In a similar way, the <literal>getPrincipal()</literal> or "
@@ -5895,13 +5901,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4394
+#: Security.xml:4397
#, no-c-format
msgid "Extending the Identity component"
msgstr ""
#. Tag: para
-#: Security.xml:4396
+#: Security.xml:4399
#, no-c-format
msgid ""
"Sometimes it might be necessary to extend the Identity component if your "
@@ -5914,7 +5920,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4404
+#: Security.xml:4407
#, no-c-format
msgid ""
"<![CDATA[@Name(\"org.jboss.seam.security.identity\")\n"
@@ -5949,7 +5955,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4407
+#: Security.xml:4410
#, no-c-format
msgid ""
"Note that an <literal>Identity</literal> component must be marked "
@@ -5959,13 +5965,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4419
+#: Security.xml:4422
#, no-c-format
msgid "OpenID"
msgstr ""
#. Tag: para
-#: Security.xml:4421
+#: Security.xml:4424
#, no-c-format
msgid ""
"OpenID is a community standard for external web-based authentication. The "
@@ -5978,7 +5984,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4430
+#: Security.xml:4433
#, no-c-format
msgid ""
"When using OpenID, the user selects an OpenID provider, and the provider "
@@ -5995,7 +6001,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4439
+#: Security.xml:4442
#, no-c-format
msgid ""
"It's important to realize at this point that authentication does not imply "
@@ -6008,13 +6014,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4449
+#: Security.xml:4452
#, no-c-format
msgid "Configuring OpenID"
msgstr ""
#. Tag: para
-#: Security.xml:4450
+#: Security.xml:4453
#, no-c-format
msgid ""
"Seam uses the openid4java package and requires four additional JARs to make "
@@ -6024,7 +6030,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4456
+#: Security.xml:4459
#, no-c-format
msgid ""
"OpenID processing requires the use of the <literal>OpenIdPhaseListener</"
@@ -6034,7 +6040,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4462
+#: Security.xml:4465
#, no-c-format
msgid ""
"<lifecycle>\n"
@@ -6044,7 +6050,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4465
+#: Security.xml:4468
#, no-c-format
msgid ""
"With this configuration, OpenID support is available to your application. "
@@ -6054,13 +6060,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4473
+#: Security.xml:4476
#, no-c-format
msgid "Presenting an OpenIdDLogin form"
msgstr ""
#. Tag: para
-#: Security.xml:4475
+#: Security.xml:4478
#, no-c-format
msgid ""
"To initiate an OpenID login, you can present a simply form to the user "
@@ -6070,7 +6076,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4480
+#: Security.xml:4483
#, no-c-format
msgid ""
"<h:form>\n"
@@ -6081,7 +6087,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4482
+#: Security.xml:4485
#, no-c-format
msgid ""
"When the user submits the login form, he will be redirected to his OpenID "
@@ -6093,13 +6099,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4491
+#: Security.xml:4494
#, no-c-format
msgid "Logging in immediately"
msgstr ""
#. Tag: para
-#: Security.xml:4493
+#: Security.xml:4496
#, no-c-format
msgid ""
"The simplest strategy is to simply login the user immediately. The following "
@@ -6108,7 +6114,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4497
+#: Security.xml:4500
#, no-c-format
msgid ""
"<page view-id="/openid.xhtml">\n"
@@ -6128,7 +6134,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4499
+#: Security.xml:4502
#, no-c-format
msgid ""
"Thie <literal>loginImmediately()</literal> action checks to see if the "
@@ -6142,13 +6148,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4510
+#: Security.xml:4513
#, no-c-format
msgid "Deferring login"
msgstr ""
#. Tag: para
-#: Security.xml:4512
+#: Security.xml:4515
#, no-c-format
msgid ""
"You may not want the user to be immediately logged in to your application. "
@@ -6165,13 +6171,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4526
+#: Security.xml:4529
#, no-c-format
msgid "Logging out"
msgstr ""
#. Tag: para
-#: Security.xml:4528
+#: Security.xml:4531
#, no-c-format
msgid ""
"Logging out (forgetting an OpenID association) is done by calling <literal>#"
@@ -6182,7 +6188,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4535
+#: Security.xml:4538
#, no-c-format
msgid ""
"<event type="org.jboss.seam.security.loggedOut">\n"
@@ -6191,7 +6197,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4537
+#: Security.xml:4540
#, no-c-format
msgid ""
"It's important that you do not leave this out or the user will not be able "
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/ko-KR/Dependencies.po
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/ko-KR/Dependencies.po 2009-06-11 20:41:36 UTC (rev 11125)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/ko-KR/Dependencies.po 2009-06-11 20:43:04 UTC (rev 11126)
@@ -5,7 +5,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-04-15 13:51+0000\n"
+"POT-Creation-Date: 2009-06-11 18:45+0000\n"
"PO-Revision-Date: 2008-04-04 01:24+0000\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -938,8 +938,8 @@
#: Dependencies.xml:1182
#, no-c-format
msgid ""
-"This sample POM will give you Seam, JPA (provided by Hibernate) and "
-"Hibernate Validator:"
+"This sample POM will give you Seam, JPA (provided by Hibernate), Hibernate "
+"Validator and Hibernate Search:"
msgstr ""
#. Tag: programlisting
@@ -970,25 +970,31 @@
" <dependency>\n"
" <groupId>org.hibernate</groupId>\n"
" <artifactId>hibernate-validator</artifactId>\n"
-" <version>3.0.0.GA</version>\n"
+" <version>3.1.0.GA</version>\n"
" </dependency>\n"
"\n"
" <dependency>\n"
" <groupId>org.hibernate</groupId>\n"
" <artifactId>hibernate-annotations</artifactId>\n"
-" <version>3.3.0.ga</version>\n"
+" <version>3.4.0.GA</version>\n"
" </dependency>\n"
"\n"
" <dependency>\n"
" <groupId>org.hibernate</groupId>\n"
" <artifactId>hibernate-entitymanager</artifactId>\n"
-" <version>3.3.1.ga</version>\n"
+" <version>3.4.0.GA</version>\n"
" </dependency>\n"
+" \n"
+" <dependency>\n"
+" <groupId>org.hibernate</groupId>\n"
+" <artifactId>hibernate-search</artifactId>\n"
+" <version>3.1.1.GA</version>\n"
+" </dependency>\n"
"\n"
" <dependency>\n"
" <groupId>org.jboss.seam</groupId>\n"
" <artifactId>jboss-seam</artifactId>\n"
-" <version>2.0.0.GA</version>\n"
+" <version>2.2.0.GA</version>\n"
" </dependency>\n"
" \n"
" </dependencies>\n"
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/ko-KR/Hsearch.po
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/ko-KR/Hsearch.po 2009-06-11 20:41:36 UTC (rev 11125)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/ko-KR/Hsearch.po 2009-06-11 20:43:04 UTC (rev 11126)
@@ -5,7 +5,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-04-15 13:51+0000\n"
+"POT-Creation-Date: 2009-06-11 18:45+0000\n"
"PO-Revision-Date: 2008-04-04 01:24+0000\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -45,7 +45,7 @@
#: Hsearch.xml:21
#, no-c-format
msgid ""
-"Hibernate Search has been designed to integrates nicely and as naturally as "
+"Hibernate Search has been designed to integrate nicely and as naturally as "
"possible with JPA and Hibernate. As a natural extension, JBoss Seam provides "
"an Hibernate Search integration."
msgstr ""
@@ -132,7 +132,7 @@
" <property name=\"hibernate.ejb.event.post-delete\" \n"
" value=\"org.hibernate.search.event.FullTextIndexEventListener"
"\"/>\n"
-"\n"
+" \n"
" </properties>\n"
"</persistence-unit>]]>"
msgstr ""
@@ -141,12 +141,15 @@
#: Hsearch.xml:52
#, no-c-format
msgid ""
-"This step is no longer necessary if Hibernate Annotation or EntityManager "
-"3.3.x are used."
+"It is not longer necessary the register the event listeners if Hibernate "
+"Annotations or EntityManager 3.3.x are used. When using Hibernate Search 3.1."
+"x more eventlisteners are needed, but these are registered automatically by "
+"Hibernate Annotations; refer to the Hibernate Search reference for "
+"configuring it without EntityManager and Annotations."
msgstr ""
#. Tag: para
-#: Hsearch.xml:56
+#: Hsearch.xml:60
#, no-c-format
msgid ""
"In addition to the configuration file, the following jars have to be "
@@ -154,25 +157,25 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:61
+#: Hsearch.xml:65
#, no-c-format
msgid "hibernate-search.jar"
msgstr ""
#. Tag: para
-#: Hsearch.xml:65
+#: Hsearch.xml:69
#, no-c-format
msgid "hibernate-commons-annotations.jar"
msgstr ""
#. Tag: para
-#: Hsearch.xml:69
+#: Hsearch.xml:73
#, no-c-format
msgid "lucene-core.jar"
msgstr ""
#. Tag: para
-#: Hsearch.xml:74
+#: Hsearch.xml:78
#, no-c-format
msgid ""
"If you deploy those in a EAR, don't forget to update <filename>application."
@@ -180,13 +183,13 @@
msgstr ""
#. Tag: title
-#: Hsearch.xml:80
+#: Hsearch.xml:84
#, no-c-format
msgid "Usage"
msgstr ""
#. Tag: para
-#: Hsearch.xml:82
+#: Hsearch.xml:86
#, no-c-format
msgid ""
"Hibernate Search uses annotations to map entities to a Lucene index, check "
@@ -195,7 +198,7 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:87
+#: Hsearch.xml:91
#, no-c-format
msgid ""
"Hibernate Search is fully integrated with the API and semantic of JPA / "
@@ -206,7 +209,7 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:93
+#: Hsearch.xml:97
#, no-c-format
msgid ""
"When Hibernate Search is present, JBoss Seam injects a "
@@ -214,7 +217,7 @@
msgstr ""
#. Tag: programlisting
-#: Hsearch.xml:96
+#: Hsearch.xml:100
#, no-c-format
msgid ""
"<![CDATA[@Stateful\n"
@@ -237,7 +240,7 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:99
+#: Hsearch.xml:103
#, no-c-format
msgid ""
"<classname>FullTextSession</classname> extends <classname>org.hibernate."
@@ -245,14 +248,14 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:104
+#: Hsearch.xml:108
#, no-c-format
msgid ""
"If the Java Persistence API is used, a smoother integration is proposed."
msgstr ""
#. Tag: programlisting
-#: Hsearch.xml:107
+#: Hsearch.xml:111
#, no-c-format
msgid ""
"<![CDATA[@Stateful\n"
@@ -275,7 +278,7 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:109
+#: Hsearch.xml:113
#, no-c-format
msgid ""
"When Hibernate Search is present, a <classname>FulltextEntityManager</"
@@ -286,7 +289,7 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:116
+#: Hsearch.xml:120
#, no-c-format
msgid ""
"When an EJB 3.0 Session or Message Driven Bean injection is used (i.e. via "
@@ -299,7 +302,7 @@
msgstr ""
#. Tag: programlisting
-#: Hsearch.xml:124
+#: Hsearch.xml:128
#, no-c-format
msgid ""
"<![CDATA[@Stateful\n"
@@ -323,15 +326,15 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:129
+#: Hsearch.xml:133
#, no-c-format
msgid ""
"For people accustomed to Hibernate Search out of Seam, note that using "
-"<methodname>Search.createFullTextSession</methodname> is not necessary."
+"<methodname>Search.getFullTextSession</methodname> is not necessary."
msgstr ""
#. Tag: para
-#: Hsearch.xml:134
+#: Hsearch.xml:138
#, no-c-format
msgid ""
"Check the DVDStore or the blog examples of the JBoss Seam distribution for a "
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/ko-KR/Security.po
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/ko-KR/Security.po 2009-06-11 20:41:36 UTC (rev 11125)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/ko-KR/Security.po 2009-06-11 20:43:04 UTC (rev 11126)
@@ -5,7 +5,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-06-11 07:43+0000\n"
+"POT-Creation-Date: 2009-06-11 18:45+0000\n"
"PO-Revision-Date: 2008-04-04 01:24+0000\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -1190,7 +1190,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:630 Security.xml:764 Security.xml:3382 Security.xml:3545
+#: Security.xml:630 Security.xml:764 Security.xml:3385 Security.xml:3548
#, no-c-format
msgid "Annotation"
msgstr ""
@@ -1203,8 +1203,8 @@
#. Tag: para
#: Security.xml:636 Security.xml:770 Security.xml:966 Security.xml:1418
-#: Security.xml:2147 Security.xml:2756 Security.xml:3171 Security.xml:3388
-#: Security.xml:3551 Security.xml:3792 Security.xml:4229
+#: Security.xml:2147 Security.xml:2756 Security.xml:3174 Security.xml:3391
+#: Security.xml:3554 Security.xml:3795 Security.xml:4232
#, no-c-format
msgid "Description"
msgstr ""
@@ -2228,8 +2228,8 @@
msgstr ""
#. Tag: para
-#: Security.xml:1412 Security.xml:1828 Security.xml:2753 Security.xml:3168
-#: Security.xml:3789 Security.xml:3958
+#: Security.xml:1412 Security.xml:1828 Security.xml:2753 Security.xml:3171
+#: Security.xml:3792 Security.xml:3961
#, no-c-format
msgid "Method"
msgstr ""
@@ -2250,9 +2250,9 @@
#: Security.xml:1433 Security.xml:1452 Security.xml:1471 Security.xml:1490
#: Security.xml:1509 Security.xml:1529 Security.xml:1548 Security.xml:1567
#: Security.xml:1586 Security.xml:1606 Security.xml:1626 Security.xml:1740
-#: Security.xml:1762 Security.xml:1780 Security.xml:2766 Security.xml:3239
-#: Security.xml:3258 Security.xml:3277 Security.xml:3295 Security.xml:3840
-#: Security.xml:3859 Security.xml:3878 Security.xml:3897
+#: Security.xml:1762 Security.xml:1780 Security.xml:2766 Security.xml:3242
+#: Security.xml:3261 Security.xml:3280 Security.xml:3298 Security.xml:3843
+#: Security.xml:3862 Security.xml:3881 Security.xml:3900
#, no-c-format
msgid "boolean"
msgstr ""
@@ -2558,13 +2558,13 @@
msgstr ""
#. Tag: para
-#: Security.xml:1831 Security.xml:3961
+#: Security.xml:1831 Security.xml:3964
#, no-c-format
msgid "Permission Target"
msgstr ""
#. Tag: para
-#: Security.xml:1834 Security.xml:3964
+#: Security.xml:1834 Security.xml:3967
#, no-c-format
msgid "Permission Action"
msgstr ""
@@ -3806,7 +3806,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2750 Security.xml:3165 Security.xml:3786
+#: Security.xml:2750 Security.xml:3168 Security.xml:3789
#, no-c-format
msgid "Return type"
msgstr ""
@@ -3986,41 +3986,47 @@
#. Tag: para
#: Security.xml:2917
#, no-c-format
-msgid "drools-compiler.jar"
+msgid "drools-api.jar"
msgstr ""
#. Tag: para
#: Security.xml:2920
#, no-c-format
-msgid "drools-core.jar"
+msgid "drools-compiler.jar"
msgstr ""
#. Tag: para
#: Security.xml:2923
#, no-c-format
-msgid "janino.jar"
+msgid "drools-core.jar"
msgstr ""
#. Tag: para
#: Security.xml:2926
#, no-c-format
-msgid "antlr-runtime.jar"
+msgid "janino.jar"
msgstr ""
#. Tag: para
#: Security.xml:2929
#, no-c-format
-msgid "mvel14.jar"
+msgid "antlr-runtime.jar"
msgstr ""
+#. Tag: para
+#: Security.xml:2932
+#, no-c-format
+msgid "mvel2.jar"
+msgstr ""
+
#. Tag: title
-#: Security.xml:2936 Security.xml:3128
+#: Security.xml:2939 Security.xml:3131
#, no-c-format
msgid "Configuration"
msgstr ""
#. Tag: para
-#: Security.xml:2938
+#: Security.xml:2941
#, no-c-format
msgid ""
"The configuration for <literal>RuleBasedPermissionResolver</literal> "
@@ -4030,7 +4036,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:2944
+#: Security.xml:2947
#, no-c-format
msgid ""
"<![CDATA[<components xmlns=\"http://jboss.com/products/seam/components\"\n"
@@ -4058,7 +4064,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2946
+#: Security.xml:2949
#, no-c-format
msgid ""
"The default rule base name can be overridden by specifying the "
@@ -4067,7 +4073,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:2951
+#: Security.xml:2954
#, no-c-format
msgid ""
"<![CDATA[\n"
@@ -4076,7 +4082,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2953
+#: Security.xml:2956
#, no-c-format
msgid ""
"Once the <literal>RuleBase</literal> component is configured, it's time to "
@@ -4084,13 +4090,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:2959
+#: Security.xml:2962
#, no-c-format
msgid "Writing Security Rules"
msgstr ""
#. Tag: para
-#: Security.xml:2961
+#: Security.xml:2964
#, no-c-format
msgid ""
"The first step to writing security rules is to create a new rule file in the "
@@ -4101,7 +4107,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2968
+#: Security.xml:2971
#, no-c-format
msgid ""
"So what should the security rules file contain? At this stage it might be a "
@@ -4110,7 +4116,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:2973
+#: Security.xml:2976
#, no-c-format
msgid ""
"<![CDATA[package MyApplicationPermissions;\n"
@@ -4128,7 +4134,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2975
+#: Security.xml:2978
#, no-c-format
msgid ""
"Let's break this down step by step. The first thing we see is the package "
@@ -4138,7 +4144,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2981
+#: Security.xml:2984
#, no-c-format
msgid ""
"The next thing we can notice is a couple of import statements for the "
@@ -4148,7 +4154,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2987
+#: Security.xml:2990
#, no-c-format
msgid ""
"Finally we have the code for the rule. Each rule within a package should be "
@@ -4158,7 +4164,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2993
+#: Security.xml:2996
#, no-c-format
msgid ""
"Looking at the body of the rule definition we can notice two distinct "
@@ -4173,7 +4179,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3002
+#: Security.xml:3005
#, no-c-format
msgid ""
"If we look at the LHS of the rule, we see two conditions listed there. Let's "
@@ -4181,14 +4187,14 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3006
+#: Security.xml:3009
#, no-c-format
msgid ""
"<![CDATA[c: PermissionCheck(target == \"customer\", action == \"delete\")]]>"
msgstr ""
#. Tag: para
-#: Security.xml:3008
+#: Security.xml:3011
#, no-c-format
msgid ""
"In plain english, this condition is stating that there must exist a "
@@ -4198,7 +4204,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3014
+#: Security.xml:3017
#, no-c-format
msgid ""
"So what is the working memory? Also known as a \"stateful session\" in "
@@ -4216,7 +4222,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3026
+#: Security.xml:3029
#, no-c-format
msgid ""
"Besides the <literal>PermissionCheck</literal> facts, there is also a "
@@ -4233,7 +4239,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3037
+#: Security.xml:3040
#, no-c-format
msgid ""
"It is also possible to insert additional long-lived facts into the working "
@@ -4244,7 +4250,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3044
+#: Security.xml:3047
#, no-c-format
msgid ""
"Getting back to our simple example, we can also notice that the first line "
@@ -4255,13 +4261,13 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3051
+#: Security.xml:3054
#, no-c-format
msgid "<![CDATA[Role(name == \"admin\")]]>"
msgstr ""
#. Tag: para
-#: Security.xml:3053
+#: Security.xml:3056
#, no-c-format
msgid ""
"This condition simply states that there must be a <literal>Role</literal> "
@@ -4274,7 +4280,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3061
+#: Security.xml:3064
#, no-c-format
msgid ""
"So what is the consequence of the rule firing? Let's take a look at the RHS "
@@ -4282,13 +4288,13 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3065
+#: Security.xml:3068
#, no-c-format
msgid "<![CDATA[c.grant()]]>"
msgstr ""
#. Tag: para
-#: Security.xml:3067
+#: Security.xml:3070
#, no-c-format
msgid ""
"The RHS consists of Java code, and in this case is invoking the "
@@ -4305,13 +4311,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3081
+#: Security.xml:3084
#, no-c-format
msgid "Non-String permission targets"
msgstr ""
#. Tag: para
-#: Security.xml:3083
+#: Security.xml:3086
#, no-c-format
msgid ""
"So far we have only seen permission checks for String-literal permission "
@@ -4325,7 +4331,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3092
+#: Security.xml:3095
#, no-c-format
msgid ""
"<![CDATA[rule CanCreateBlogComment\n"
@@ -4343,13 +4349,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3097
+#: Security.xml:3100
#, no-c-format
msgid "Wildcard permission checks"
msgstr ""
#. Tag: para
-#: Security.xml:3099
+#: Security.xml:3102
#, no-c-format
msgid ""
"It is possible to implement a wildcard permission check (which allows all "
@@ -4359,7 +4365,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3105
+#: Security.xml:3108
#, no-c-format
msgid ""
"<![CDATA[rule CanDoAnythingToCustomersIfYouAreAnAdmin\n"
@@ -4373,7 +4379,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3107
+#: Security.xml:3110
#, no-c-format
msgid ""
"This rule allows users with the <literal>admin</literal> role to perform "
@@ -4382,13 +4388,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3117
+#: Security.xml:3120
#, no-c-format
msgid "PersistentPermissionResolver"
msgstr ""
#. Tag: para
-#: Security.xml:3119
+#: Security.xml:3122
#, no-c-format
msgid ""
"Another built-in permission resolver provided by Seam, "
@@ -4401,7 +4407,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3130
+#: Security.xml:3133
#, no-c-format
msgid ""
"Before it can be used, <literal>PersistentPermissionResolver</literal> must "
@@ -4414,7 +4420,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3138
+#: Security.xml:3141
#, no-c-format
msgid ""
"<![CDATA[ <security:persistent-permission-resolver permission-store=\"#"
@@ -4422,13 +4428,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3143
+#: Security.xml:3146
#, no-c-format
msgid "Permission Stores"
msgstr ""
#. Tag: para
-#: Security.xml:3145
+#: Security.xml:3148
#, no-c-format
msgid ""
"A permission store is required for <literal>PersistentPermissionResolver</"
@@ -4441,26 +4447,26 @@
msgstr ""
#. Tag: title
-#: Security.xml:3155
+#: Security.xml:3158
#, no-c-format
msgid "PermissionStore interface"
msgstr ""
#. Tag: literal
-#: Security.xml:3181 Security.xml:3200 Security.xml:3219 Security.xml:3802
-#: Security.xml:3821
+#: Security.xml:3184 Security.xml:3203 Security.xml:3222 Security.xml:3805
+#: Security.xml:3824
#, no-c-format
msgid "List<Permission>"
msgstr ""
#. Tag: literal
-#: Security.xml:3186 Security.xml:3826
+#: Security.xml:3189 Security.xml:3829
#, no-c-format
msgid "listPermissions(Object target)"
msgstr ""
#. Tag: para
-#: Security.xml:3190
+#: Security.xml:3193
#, no-c-format
msgid ""
"This method should return a <literal>List</literal> of <literal>Permission</"
@@ -4469,13 +4475,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3205 Security.xml:3807
+#: Security.xml:3208 Security.xml:3810
#, no-c-format
msgid "listPermissions(Object target, String action)"
msgstr ""
#. Tag: para
-#: Security.xml:3209
+#: Security.xml:3212
#, no-c-format
msgid ""
"This method should return a <literal>List</literal> of <literal>Permission</"
@@ -4484,13 +4490,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3224
+#: Security.xml:3227
#, no-c-format
msgid "listPermissions(Set<Object> targets, String action)"
msgstr ""
#. Tag: para
-#: Security.xml:3228
+#: Security.xml:3231
#, no-c-format
msgid ""
"This method should return a <literal>List</literal> of <literal>Permission</"
@@ -4499,13 +4505,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3244
+#: Security.xml:3247
#, no-c-format
msgid "grantPermission(Permission)"
msgstr ""
#. Tag: para
-#: Security.xml:3248
+#: Security.xml:3251
#, no-c-format
msgid ""
"This method should persist the specified <literal>Permission</literal> "
@@ -4513,13 +4519,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3263 Security.xml:3864
+#: Security.xml:3266 Security.xml:3867
#, no-c-format
msgid "grantPermissions(List<Permission> permissions)"
msgstr ""
#. Tag: para
-#: Security.xml:3267
+#: Security.xml:3270
#, no-c-format
msgid ""
"This method should persist all of the <literal>Permission</literal> objects "
@@ -4528,13 +4534,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3282 Security.xml:3883
+#: Security.xml:3285 Security.xml:3886
#, no-c-format
msgid "revokePermission(Permission permission)"
msgstr ""
#. Tag: para
-#: Security.xml:3286
+#: Security.xml:3289
#, no-c-format
msgid ""
"This method should remove the specified <literal>Permission</literal> object "
@@ -4542,13 +4548,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3300 Security.xml:3902
+#: Security.xml:3303 Security.xml:3905
#, no-c-format
msgid "revokePermissions(List<Permission> permissions)"
msgstr ""
#. Tag: para
-#: Security.xml:3304
+#: Security.xml:3307
#, no-c-format
msgid ""
"This method should remove all of the <literal>Permission</literal> objects "
@@ -4556,19 +4562,19 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3314 Security.xml:3916
+#: Security.xml:3317 Security.xml:3919
#, no-c-format
msgid "List<String>"
msgstr ""
#. Tag: literal
-#: Security.xml:3319 Security.xml:3921
+#: Security.xml:3322 Security.xml:3924
#, no-c-format
msgid "listAvailableActions(Object target)"
msgstr ""
#. Tag: para
-#: Security.xml:3323
+#: Security.xml:3326
#, no-c-format
msgid ""
"This method should return a list of all the available actions (as Strings) "
@@ -4578,13 +4584,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3337
+#: Security.xml:3340
#, no-c-format
msgid "JpaPermissionStore"
msgstr ""
#. Tag: para
-#: Security.xml:3339
+#: Security.xml:3342
#, no-c-format
msgid ""
"This is the default <literal>PermissionStore</literal> implementation (and "
@@ -4597,7 +4603,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3347
+#: Security.xml:3350
#, no-c-format
msgid ""
"If you wish to use the same entity (i.e. a single database table) to store "
@@ -4609,7 +4615,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3354
+#: Security.xml:3357
#, no-c-format
msgid ""
"For example, to configure a single entity class to store both user and role "
@@ -4617,7 +4623,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3356
+#: Security.xml:3359
#, no-c-format
msgid ""
"<![CDATA[ <security:jpa-permission-store user-permission-class=\"com.acme."
@@ -4625,14 +4631,14 @@
msgstr ""
#. Tag: para
-#: Security.xml:3358
+#: Security.xml:3361
#, no-c-format
msgid ""
"To configure separate entity classes for storing user and role permissions:"
msgstr ""
#. Tag: programlisting
-#: Security.xml:3360
+#: Security.xml:3363
#, no-c-format
msgid ""
"<![CDATA[ <security:jpa-permission-store user-permission-class=\"com.acme."
@@ -4641,13 +4647,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3363
+#: Security.xml:3366
#, no-c-format
msgid "Permission annotations"
msgstr ""
#. Tag: para
-#: Security.xml:3365
+#: Security.xml:3368
#, no-c-format
msgid ""
"As mentioned, the entity classes that contain the user and role permissions "
@@ -4658,32 +4664,32 @@
msgstr ""
#. Tag: title
-#: Security.xml:3372
+#: Security.xml:3375
#, no-c-format
msgid "Entity Permission annotations"
msgstr ""
#. Tag: para
-#: Security.xml:3385 Security.xml:3548
+#: Security.xml:3388 Security.xml:3551
#, no-c-format
msgid "Target"
msgstr ""
#. Tag: literal
-#: Security.xml:3398
+#: Security.xml:3401
#, no-c-format
msgid "@PermissionTarget"
msgstr ""
#. Tag: literal
-#: Security.xml:3403 Security.xml:3422 Security.xml:3441 Security.xml:3460
-#: Security.xml:3479
+#: Security.xml:3406 Security.xml:3425 Security.xml:3444 Security.xml:3463
+#: Security.xml:3482
#, no-c-format
msgid "FIELD,METHOD"
msgstr ""
#. Tag: para
-#: Security.xml:3407
+#: Security.xml:3410
#, no-c-format
msgid ""
"This annotation identifies the property of the entity that will contain the "
@@ -4692,13 +4698,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3417
+#: Security.xml:3420
#, no-c-format
msgid "@PermissionAction"
msgstr ""
#. Tag: para
-#: Security.xml:3426
+#: Security.xml:3429
#, no-c-format
msgid ""
"This annotation identifies the property of the entity that will contain the "
@@ -4707,13 +4713,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3436
+#: Security.xml:3439
#, no-c-format
msgid "@PermissionUser"
msgstr ""
#. Tag: para
-#: Security.xml:3445
+#: Security.xml:3448
#, no-c-format
msgid ""
"This annotation identifies the property of the entity that will contain the "
@@ -4722,13 +4728,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3455
+#: Security.xml:3458
#, no-c-format
msgid "@PermissionRole"
msgstr ""
#. Tag: para
-#: Security.xml:3464
+#: Security.xml:3467
#, no-c-format
msgid ""
"This annotation identifies the property of the entity that will contain the "
@@ -4737,13 +4743,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3474
+#: Security.xml:3477
#, no-c-format
msgid "@PermissionDiscriminator"
msgstr ""
#. Tag: para
-#: Security.xml:3483
+#: Security.xml:3486
#, no-c-format
msgid ""
"This annotation should be used when the same entity/table is used to store "
@@ -4760,20 +4766,20 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3493
+#: Security.xml:3496
#, no-c-format
msgid ""
"<![CDATA[ @PermissionDiscriminator(userValue = \"u\", roleValue = \"r\")]]>"
msgstr ""
#. Tag: title
-#: Security.xml:3504
+#: Security.xml:3507
#, no-c-format
msgid "Example Entity"
msgstr ""
#. Tag: para
-#: Security.xml:3506
+#: Security.xml:3509
#, no-c-format
msgid ""
"Here is an example of an entity class that is used to store both user and "
@@ -4782,7 +4788,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3511
+#: Security.xml:3514
#, no-c-format
msgid ""
"<![CDATA[\n"
@@ -4843,7 +4849,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3513
+#: Security.xml:3516
#, no-c-format
msgid ""
"As can be seen in the above example, the <literal>getDiscriminator()</"
@@ -4860,13 +4866,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3526
+#: Security.xml:3529
#, no-c-format
msgid "Class-specific Permission Configuration"
msgstr ""
#. Tag: para
-#: Security.xml:3528
+#: Security.xml:3531
#, no-c-format
msgid ""
"A further set of class-specific annotations can be used to configure a "
@@ -4876,25 +4882,25 @@
msgstr ""
#. Tag: title
-#: Security.xml:3535
+#: Security.xml:3538
#, no-c-format
msgid "Class Permission Annotations"
msgstr ""
#. Tag: literal
-#: Security.xml:3561
+#: Security.xml:3564
#, no-c-format
msgid "@Permissions"
msgstr ""
#. Tag: literal
-#: Security.xml:3566 Security.xml:3584
+#: Security.xml:3569 Security.xml:3587
#, no-c-format
msgid "TYPE"
msgstr ""
#. Tag: para
-#: Security.xml:3570
+#: Security.xml:3573
#, no-c-format
msgid ""
"A container annotation, this annotation may contain an array of "
@@ -4902,13 +4908,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3579
+#: Security.xml:3582
#, no-c-format
msgid "@Permission"
msgstr ""
#. Tag: para
-#: Security.xml:3588
+#: Security.xml:3591
#, no-c-format
msgid ""
"This annotation defines a single allowable permission action for the target "
@@ -4919,7 +4925,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3600
+#: Security.xml:3603
#, no-c-format
msgid ""
"Here's an example of the above annotations in action. The following class "
@@ -4927,7 +4933,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3604
+#: Security.xml:3607
#, no-c-format
msgid ""
"<![CDATA[@Permissions({\n"
@@ -4939,7 +4945,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3606
+#: Security.xml:3609
#, no-c-format
msgid ""
"This example demonstrates how two allowable permission actions, "
@@ -4948,13 +4954,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3614
+#: Security.xml:3617
#, no-c-format
msgid "Permission masks"
msgstr ""
#. Tag: para
-#: Security.xml:3616
+#: Security.xml:3619
#, no-c-format
msgid ""
"By default, multiple permissions for the same target object and recipient "
@@ -4966,7 +4972,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3623
+#: Security.xml:3626
#, no-c-format
msgid ""
"For example, if recipient \"Bob\" is granted both the <literal>view</"
@@ -4979,7 +4985,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3630
+#: Security.xml:3633
#, no-c-format
msgid ""
"<![CDATA[@Permissions({\n"
@@ -4991,7 +4997,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3632
+#: Security.xml:3635
#, no-c-format
msgid ""
"The <literal>action</literal> property will instead simply contain \"3"
@@ -5001,7 +5007,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3638
+#: Security.xml:3641
#, no-c-format
msgid ""
"Obviously, it is very important that the <literal>mask</literal> values "
@@ -5009,13 +5015,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3644
+#: Security.xml:3647
#, no-c-format
msgid "Identifier Policy"
msgstr ""
#. Tag: para
-#: Security.xml:3646
+#: Security.xml:3649
#, no-c-format
msgid ""
"When storing or looking up permissions, <literal>JpaPermissionStore</"
@@ -5029,7 +5035,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3654
+#: Security.xml:3657
#, no-c-format
msgid ""
"The <literal>IdentifierStrategy</literal> interface is very simple, "
@@ -5037,7 +5043,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3658
+#: Security.xml:3661
#, no-c-format
msgid ""
"<![CDATA[public interface IdentifierStrategy {\n"
@@ -5047,7 +5053,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3660
+#: Security.xml:3663
#, no-c-format
msgid ""
"The first method, <literal>canIdentify()</literal> simply returns "
@@ -5058,7 +5064,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3666
+#: Security.xml:3669
#, no-c-format
msgid ""
"Seam provides two <literal>IdentifierStrategy</literal> implementations, "
@@ -5067,7 +5073,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3671
+#: Security.xml:3674
#, no-c-format
msgid ""
"To explicitly configure a specific identifier strategy to use for a "
@@ -5080,13 +5086,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3681
+#: Security.xml:3684
#, no-c-format
msgid "ClassIdentifierStrategy"
msgstr ""
#. Tag: para
-#: Security.xml:3683
+#: Security.xml:3686
#, no-c-format
msgid ""
"This identifier strategy is used to generate unique identifiers for classes, "
@@ -5100,7 +5106,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3692
+#: Security.xml:3695
#, no-c-format
msgid ""
"<![CDATA[@Identifier(name = \"customer\")\n"
@@ -5108,7 +5114,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3694
+#: Security.xml:3697
#, no-c-format
msgid ""
"The identifier for the following class will be \"<literal>customerAction</"
@@ -5116,7 +5122,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3698
+#: Security.xml:3701
#, no-c-format
msgid ""
"<![CDATA[@Name(\"customerAction\")\n"
@@ -5124,7 +5130,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3700
+#: Security.xml:3703
#, no-c-format
msgid ""
"Finally, the identifier for the following class will be \"<literal>Customer</"
@@ -5132,19 +5138,19 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3704
+#: Security.xml:3707
#, no-c-format
msgid "<![CDATA[public class Customer { ]]>"
msgstr ""
#. Tag: title
-#: Security.xml:3709
+#: Security.xml:3712
#, no-c-format
msgid "EntityIdentifierStrategy"
msgstr ""
#. Tag: para
-#: Security.xml:3711
+#: Security.xml:3714
#, no-c-format
msgid ""
"This identifier strategy is used to generate unique identifiers for entity "
@@ -5161,7 +5167,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3722
+#: Security.xml:3725
#, no-c-format
msgid ""
"<![CDATA[@Identifier(value = EntityIdentifierStrategy.class)\n"
@@ -5169,7 +5175,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3724
+#: Security.xml:3727
#, no-c-format
msgid ""
"For an example of the type of identifier values generated, assume we have "
@@ -5177,7 +5183,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3728
+#: Security.xml:3731
#, no-c-format
msgid ""
"<![CDATA[@Entity\n"
@@ -5200,7 +5206,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3730
+#: Security.xml:3733
#, no-c-format
msgid ""
"For a <literal>Customer</literal> instance with an <literal>id</literal> "
@@ -5210,7 +5216,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3736
+#: Security.xml:3739
#, no-c-format
msgid ""
"<![CDATA[@Entity\n"
@@ -5219,7 +5225,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3738
+#: Security.xml:3741
#, no-c-format
msgid ""
"Then a <literal>Customer</literal> with an <literal>id</literal> value of "
@@ -5228,13 +5234,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3751
+#: Security.xml:3754
#, no-c-format
msgid "Permission Management"
msgstr ""
#. Tag: para
-#: Security.xml:3753
+#: Security.xml:3756
#, no-c-format
msgid ""
"In much the same way that Seam Security provides an Identity Management API "
@@ -5244,13 +5250,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3760
+#: Security.xml:3763
#, no-c-format
msgid "PermissionManager"
msgstr ""
#. Tag: para
-#: Security.xml:3762
+#: Security.xml:3765
#, no-c-format
msgid ""
"The <literal>PermissionManager</literal> component is an application-scoped "
@@ -5263,7 +5269,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3769
+#: Security.xml:3772
#, no-c-format
msgid ""
"<![CDATA[\n"
@@ -5273,7 +5279,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3771
+#: Security.xml:3774
#, no-c-format
msgid ""
"The following table describes each of the available methods provided by "
@@ -5281,13 +5287,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3776
+#: Security.xml:3779
#, no-c-format
msgid "PermissionManager API methods"
msgstr ""
#. Tag: para
-#: Security.xml:3811 Security.xml:3830
+#: Security.xml:3814 Security.xml:3833
#, no-c-format
msgid ""
"Returns a list of <literal>Permission</literal> objects representing all of "
@@ -5295,13 +5301,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3845
+#: Security.xml:3848
#, no-c-format
msgid "grantPermission(Permission permission)"
msgstr ""
#. Tag: para
-#: Security.xml:3849
+#: Security.xml:3852
#, no-c-format
msgid ""
"Persists (grants) the specified <literal>Permission</literal> to the backend "
@@ -5309,7 +5315,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3868
+#: Security.xml:3871
#, no-c-format
msgid ""
"Persists (grants) the specified list of <literal>Permission</literal>s to "
@@ -5317,7 +5323,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3887
+#: Security.xml:3890
#, no-c-format
msgid ""
"Removes (revokes) the specified <literal>Permission</literal> from the "
@@ -5325,7 +5331,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3906
+#: Security.xml:3909
#, no-c-format
msgid ""
"Removes (revokes) the specified list of <literal>Permission</literal>s from "
@@ -5333,7 +5339,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3925
+#: Security.xml:3928
#, no-c-format
msgid ""
"Returns a list of the available actions for the specified target object. The "
@@ -5342,13 +5348,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3940
+#: Security.xml:3943
#, no-c-format
msgid "Permission checks for PermissionManager operations"
msgstr ""
#. Tag: para
-#: Security.xml:3942
+#: Security.xml:3945
#, no-c-format
msgid ""
"Invoking the methods of <literal>PermissionManager</literal> requires that "
@@ -5358,37 +5364,37 @@
msgstr ""
#. Tag: title
-#: Security.xml:3949
+#: Security.xml:3952
#, no-c-format
msgid "Permission Management Security Permissions"
msgstr ""
#. Tag: literal
-#: Security.xml:3973
+#: Security.xml:3976
#, no-c-format
msgid "listPermissions()"
msgstr ""
#. Tag: para
-#: Security.xml:3977
+#: Security.xml:3980
#, no-c-format
msgid "The specified <literal>target</literal>"
msgstr ""
#. Tag: literal
-#: Security.xml:3983
+#: Security.xml:3986
#, no-c-format
msgid "seam.read-permissions"
msgstr ""
#. Tag: literal
-#: Security.xml:3991 Security.xml:4011
+#: Security.xml:3994 Security.xml:4014
#, no-c-format
msgid "grantPermission()"
msgstr ""
#. Tag: para
-#: Security.xml:3995
+#: Security.xml:3998
#, no-c-format
msgid ""
"The target of the specified <literal>Permission</literal>, or each of the "
@@ -5397,56 +5403,56 @@
msgstr ""
#. Tag: literal
-#: Security.xml:4003 Security.xml:4021 Security.xml:4039
+#: Security.xml:4006 Security.xml:4024 Security.xml:4042
#, no-c-format
msgid "seam.grant-permission"
msgstr ""
#. Tag: para
-#: Security.xml:4015 Security.xml:4051
+#: Security.xml:4018 Security.xml:4054
#, no-c-format
msgid "The target of the specified <literal>Permission</literal>."
msgstr ""
#. Tag: literal
-#: Security.xml:4029
+#: Security.xml:4032
#, no-c-format
msgid "grantPermissions()"
msgstr ""
#. Tag: para
-#: Security.xml:4033 Security.xml:4069
+#: Security.xml:4036 Security.xml:4072
#, no-c-format
msgid ""
"Each of the targets of the specified list of <literal>Permission</literal>s."
msgstr ""
#. Tag: literal
-#: Security.xml:4047
+#: Security.xml:4050
#, no-c-format
msgid "revokePermission()"
msgstr ""
#. Tag: literal
-#: Security.xml:4057 Security.xml:4075
+#: Security.xml:4060 Security.xml:4078
#, no-c-format
msgid "seam.revoke-permission"
msgstr ""
#. Tag: literal
-#: Security.xml:4065
+#: Security.xml:4068
#, no-c-format
msgid "revokePermissions()"
msgstr ""
#. Tag: title
-#: Security.xml:4088
+#: Security.xml:4091
#, no-c-format
msgid "SSL Security"
msgstr ""
#. Tag: para
-#: Security.xml:4090
+#: Security.xml:4093
#, no-c-format
msgid ""
"Seam includes basic support for serving sensitive pages via the HTTPS "
@@ -5457,13 +5463,13 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4097
+#: Security.xml:4100
#, no-c-format
msgid "<![CDATA[<page view-id=\"/login.xhtml\" scheme=\"https\"/>]]>"
msgstr ""
#. Tag: para
-#: Security.xml:4099
+#: Security.xml:4102
#, no-c-format
msgid ""
"This configuration is automatically extended to both <literal>s:link</"
@@ -5475,13 +5481,13 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4106
+#: Security.xml:4109
#, no-c-format
msgid "<![CDATA[<s:link view=\"/login.xhtml\" value=\"Login\"/>]]>"
msgstr ""
#. Tag: para
-#: Security.xml:4108
+#: Security.xml:4111
#, no-c-format
msgid ""
"Browsing directly to a view when using the <emphasis>incorrect</emphasis> "
@@ -5492,7 +5498,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4115
+#: Security.xml:4118
#, no-c-format
msgid ""
"It is also possible to configure a <emphasis>default scheme</emphasis> for "
@@ -5506,13 +5512,13 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4124
+#: Security.xml:4127
#, no-c-format
msgid "<![CDATA[<page view-id=\"*\" scheme=\"http\" />]]>"
msgstr ""
#. Tag: para
-#: Security.xml:4126
+#: Security.xml:4129
#, no-c-format
msgid ""
"Of course, if <emphasis>none</emphasis> of the pages in your application use "
@@ -5520,7 +5526,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4131
+#: Security.xml:4134
#, no-c-format
msgid ""
"You may configure Seam to automatically invalidate the current HTTP session "
@@ -5529,13 +5535,13 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4136
+#: Security.xml:4139
#, no-c-format
msgid "<![CDATA[<web:session invalidate-on-scheme-change=\"true\"/>]]>"
msgstr ""
#. Tag: para
-#: Security.xml:4138
+#: Security.xml:4141
#, no-c-format
msgid ""
"This option helps make your system less vulnerable to sniffing of the "
@@ -5544,13 +5550,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4144
+#: Security.xml:4147
#, no-c-format
msgid "Overriding the default ports"
msgstr ""
#. Tag: para
-#: Security.xml:4146
+#: Security.xml:4149
#, no-c-format
msgid ""
"If you wish to configure the HTTP and HTTPS ports manually, they may be "
@@ -5560,7 +5566,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4152
+#: Security.xml:4155
#, no-c-format
msgid ""
"<![CDATA[\n"
@@ -5576,13 +5582,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4158
+#: Security.xml:4161
#, no-c-format
msgid "CAPTCHA"
msgstr ""
#. Tag: para
-#: Security.xml:4160
+#: Security.xml:4163
#, no-c-format
msgid ""
"Though strictly not part of the security API, Seam provides a built-in "
@@ -5594,13 +5600,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4168
+#: Security.xml:4171
#, no-c-format
msgid "Configuring the CAPTCHA Servlet"
msgstr ""
#. Tag: para
-#: Security.xml:4169
+#: Security.xml:4172
#, no-c-format
msgid ""
"To get up and running, it is necessary to configure the Seam Resource "
@@ -5609,7 +5615,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4174
+#: Security.xml:4177
#, no-c-format
msgid ""
"<![CDATA[<servlet>\n"
@@ -5625,20 +5631,20 @@
msgstr ""
#. Tag: title
-#: Security.xml:4179
+#: Security.xml:4182
#, no-c-format
msgid "Adding a CAPTCHA to a form"
msgstr ""
#. Tag: para
-#: Security.xml:4181
+#: Security.xml:4184
#, no-c-format
msgid ""
"Adding a CAPTCHA challenge to a form is extremely easy. Here's an example:"
msgstr ""
#. Tag: programlisting
-#: Security.xml:4185
+#: Security.xml:4188
#, no-c-format
msgid ""
"<![CDATA[<h:graphicImage value=\"/seam/resource/captcha\"/>\n"
@@ -5650,7 +5656,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4187
+#: Security.xml:4190
#, no-c-format
msgid ""
"That's all there is to it. The <literal>graphicImage</literal> control "
@@ -5660,20 +5666,20 @@
msgstr ""
#. Tag: title
-#: Security.xml:4196
+#: Security.xml:4199
#, no-c-format
msgid "Customising the CAPTCHA algorithm"
msgstr ""
#. Tag: para
-#: Security.xml:4198
+#: Security.xml:4201
#, no-c-format
msgid ""
"You may customize the CAPTCHA algorithm by overriding the built-in component:"
msgstr ""
#. Tag: programlisting
-#: Security.xml:4202
+#: Security.xml:4205
#, no-c-format
msgid ""
"<![CDATA[@Name(\"org.jboss.seam.captcha.captcha\")\n"
@@ -5700,13 +5706,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4209 Security.xml:4217
+#: Security.xml:4212 Security.xml:4220
#, no-c-format
msgid "Security Events"
msgstr ""
#. Tag: para
-#: Security.xml:4211
+#: Security.xml:4214
#, no-c-format
msgid ""
"The following table describes a number of events (see <xref linkend=\"events"
@@ -5714,68 +5720,68 @@
msgstr ""
#. Tag: para
-#: Security.xml:4226
+#: Security.xml:4229
#, no-c-format
msgid "Event Key"
msgstr ""
#. Tag: literal
-#: Security.xml:4239
+#: Security.xml:4242
#, no-c-format
msgid "org.jboss.seam.security.loginSuccessful"
msgstr ""
#. Tag: para
-#: Security.xml:4243
+#: Security.xml:4246
#, no-c-format
msgid "Raised when a login attempt is successful."
msgstr ""
#. Tag: literal
-#: Security.xml:4251
+#: Security.xml:4254
#, no-c-format
msgid "org.jboss.seam.security.loginFailed"
msgstr ""
#. Tag: para
-#: Security.xml:4255
+#: Security.xml:4258
#, no-c-format
msgid "Raised when a login attempt fails."
msgstr ""
#. Tag: literal
-#: Security.xml:4263
+#: Security.xml:4266
#, no-c-format
msgid "org.jboss.seam.security.alreadyLoggedIn"
msgstr ""
#. Tag: para
-#: Security.xml:4267
+#: Security.xml:4270
#, no-c-format
msgid ""
"Raised when a user that is already authenticated attempts to log in again."
msgstr ""
#. Tag: literal
-#: Security.xml:4275
+#: Security.xml:4278
#, no-c-format
msgid "org.jboss.seam.security.notLoggedIn"
msgstr ""
#. Tag: para
-#: Security.xml:4279
+#: Security.xml:4282
#, no-c-format
msgid "Raised when a security check fails when the user is not logged in."
msgstr ""
#. Tag: literal
-#: Security.xml:4287
+#: Security.xml:4290
#, no-c-format
msgid "org.jboss.seam.security.notAuthorized"
msgstr ""
#. Tag: para
-#: Security.xml:4291
+#: Security.xml:4294
#, no-c-format
msgid ""
"Raised when a security check fails when the user is logged in however "
@@ -5783,73 +5789,73 @@
msgstr ""
#. Tag: literal
-#: Security.xml:4299
+#: Security.xml:4302
#, no-c-format
msgid "org.jboss.seam.security.preAuthenticate"
msgstr ""
#. Tag: para
-#: Security.xml:4303
+#: Security.xml:4306
#, no-c-format
msgid "Raised just prior to user authentication."
msgstr ""
#. Tag: literal
-#: Security.xml:4311
+#: Security.xml:4314
#, no-c-format
msgid "org.jboss.seam.security.postAuthenticate"
msgstr ""
#. Tag: para
-#: Security.xml:4315
+#: Security.xml:4318
#, no-c-format
msgid "Raised just after user authentication."
msgstr ""
#. Tag: literal
-#: Security.xml:4323
+#: Security.xml:4326
#, no-c-format
msgid "org.jboss.seam.security.loggedOut"
msgstr ""
#. Tag: para
-#: Security.xml:4327
+#: Security.xml:4330
#, no-c-format
msgid "Raised after the user has logged out."
msgstr ""
#. Tag: literal
-#: Security.xml:4335
+#: Security.xml:4338
#, no-c-format
msgid "org.jboss.seam.security.credentialsUpdated"
msgstr ""
#. Tag: para
-#: Security.xml:4339
+#: Security.xml:4342
#, no-c-format
msgid "Raised when the user's credentials have been changed."
msgstr ""
#. Tag: literal
-#: Security.xml:4347
+#: Security.xml:4350
#, no-c-format
msgid "org.jboss.seam.security.rememberMe"
msgstr ""
#. Tag: para
-#: Security.xml:4351
+#: Security.xml:4354
#, no-c-format
msgid "Raised when the Identity's rememberMe property is changed."
msgstr ""
#. Tag: title
-#: Security.xml:4364
+#: Security.xml:4367
#, no-c-format
msgid "Run As"
msgstr ""
#. Tag: para
-#: Security.xml:4366
+#: Security.xml:4369
#, no-c-format
msgid ""
"Sometimes it may be necessary to perform certain operations with elevated "
@@ -5861,7 +5867,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4374
+#: Security.xml:4377
#, no-c-format
msgid ""
"The following code example demonstrates how <literal>RunAsOperation</"
@@ -5872,7 +5878,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4381
+#: Security.xml:4384
#, no-c-format
msgid ""
"<![CDATA[ new RunAsOperation() { \n"
@@ -5884,7 +5890,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4383
+#: Security.xml:4386
#, no-c-format
msgid ""
"In a similar way, the <literal>getPrincipal()</literal> or "
@@ -5895,13 +5901,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4394
+#: Security.xml:4397
#, no-c-format
msgid "Extending the Identity component"
msgstr ""
#. Tag: para
-#: Security.xml:4396
+#: Security.xml:4399
#, no-c-format
msgid ""
"Sometimes it might be necessary to extend the Identity component if your "
@@ -5914,7 +5920,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4404
+#: Security.xml:4407
#, no-c-format
msgid ""
"<![CDATA[@Name(\"org.jboss.seam.security.identity\")\n"
@@ -5949,7 +5955,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4407
+#: Security.xml:4410
#, no-c-format
msgid ""
"Note that an <literal>Identity</literal> component must be marked "
@@ -5959,13 +5965,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4419
+#: Security.xml:4422
#, no-c-format
msgid "OpenID"
msgstr ""
#. Tag: para
-#: Security.xml:4421
+#: Security.xml:4424
#, no-c-format
msgid ""
"OpenID is a community standard for external web-based authentication. The "
@@ -5978,7 +5984,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4430
+#: Security.xml:4433
#, no-c-format
msgid ""
"When using OpenID, the user selects an OpenID provider, and the provider "
@@ -5995,7 +6001,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4439
+#: Security.xml:4442
#, no-c-format
msgid ""
"It's important to realize at this point that authentication does not imply "
@@ -6008,13 +6014,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4449
+#: Security.xml:4452
#, no-c-format
msgid "Configuring OpenID"
msgstr ""
#. Tag: para
-#: Security.xml:4450
+#: Security.xml:4453
#, no-c-format
msgid ""
"Seam uses the openid4java package and requires four additional JARs to make "
@@ -6024,7 +6030,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4456
+#: Security.xml:4459
#, no-c-format
msgid ""
"OpenID processing requires the use of the <literal>OpenIdPhaseListener</"
@@ -6034,7 +6040,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4462
+#: Security.xml:4465
#, no-c-format
msgid ""
"<lifecycle>\n"
@@ -6044,7 +6050,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4465
+#: Security.xml:4468
#, no-c-format
msgid ""
"With this configuration, OpenID support is available to your application. "
@@ -6054,13 +6060,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4473
+#: Security.xml:4476
#, no-c-format
msgid "Presenting an OpenIdDLogin form"
msgstr ""
#. Tag: para
-#: Security.xml:4475
+#: Security.xml:4478
#, no-c-format
msgid ""
"To initiate an OpenID login, you can present a simply form to the user "
@@ -6070,7 +6076,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4480
+#: Security.xml:4483
#, no-c-format
msgid ""
"<h:form>\n"
@@ -6081,7 +6087,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4482
+#: Security.xml:4485
#, no-c-format
msgid ""
"When the user submits the login form, he will be redirected to his OpenID "
@@ -6093,13 +6099,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4491
+#: Security.xml:4494
#, no-c-format
msgid "Logging in immediately"
msgstr ""
#. Tag: para
-#: Security.xml:4493
+#: Security.xml:4496
#, no-c-format
msgid ""
"The simplest strategy is to simply login the user immediately. The following "
@@ -6108,7 +6114,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4497
+#: Security.xml:4500
#, no-c-format
msgid ""
"<page view-id="/openid.xhtml">\n"
@@ -6128,7 +6134,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4499
+#: Security.xml:4502
#, no-c-format
msgid ""
"Thie <literal>loginImmediately()</literal> action checks to see if the "
@@ -6142,13 +6148,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4510
+#: Security.xml:4513
#, no-c-format
msgid "Deferring login"
msgstr ""
#. Tag: para
-#: Security.xml:4512
+#: Security.xml:4515
#, no-c-format
msgid ""
"You may not want the user to be immediately logged in to your application. "
@@ -6165,13 +6171,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4526
+#: Security.xml:4529
#, no-c-format
msgid "Logging out"
msgstr ""
#. Tag: para
-#: Security.xml:4528
+#: Security.xml:4531
#, no-c-format
msgid ""
"Logging out (forgetting an OpenID association) is done by calling <literal>#"
@@ -6182,7 +6188,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4535
+#: Security.xml:4538
#, no-c-format
msgid ""
"<event type="org.jboss.seam.security.loggedOut">\n"
@@ -6191,7 +6197,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4537
+#: Security.xml:4540
#, no-c-format
msgid ""
"It's important that you do not leave this out or the user will not be able "
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/ml-IN/Dependencies.po
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/ml-IN/Dependencies.po 2009-06-11 20:41:36 UTC (rev 11125)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/ml-IN/Dependencies.po 2009-06-11 20:43:04 UTC (rev 11126)
@@ -5,7 +5,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-04-15 13:51+0000\n"
+"POT-Creation-Date: 2009-06-11 18:45+0000\n"
"PO-Revision-Date: 2008-04-04 01:24+0000\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -938,8 +938,8 @@
#: Dependencies.xml:1182
#, no-c-format
msgid ""
-"This sample POM will give you Seam, JPA (provided by Hibernate) and "
-"Hibernate Validator:"
+"This sample POM will give you Seam, JPA (provided by Hibernate), Hibernate "
+"Validator and Hibernate Search:"
msgstr ""
#. Tag: programlisting
@@ -970,25 +970,31 @@
" <dependency>\n"
" <groupId>org.hibernate</groupId>\n"
" <artifactId>hibernate-validator</artifactId>\n"
-" <version>3.0.0.GA</version>\n"
+" <version>3.1.0.GA</version>\n"
" </dependency>\n"
"\n"
" <dependency>\n"
" <groupId>org.hibernate</groupId>\n"
" <artifactId>hibernate-annotations</artifactId>\n"
-" <version>3.3.0.ga</version>\n"
+" <version>3.4.0.GA</version>\n"
" </dependency>\n"
"\n"
" <dependency>\n"
" <groupId>org.hibernate</groupId>\n"
" <artifactId>hibernate-entitymanager</artifactId>\n"
-" <version>3.3.1.ga</version>\n"
+" <version>3.4.0.GA</version>\n"
" </dependency>\n"
+" \n"
+" <dependency>\n"
+" <groupId>org.hibernate</groupId>\n"
+" <artifactId>hibernate-search</artifactId>\n"
+" <version>3.1.1.GA</version>\n"
+" </dependency>\n"
"\n"
" <dependency>\n"
" <groupId>org.jboss.seam</groupId>\n"
" <artifactId>jboss-seam</artifactId>\n"
-" <version>2.0.0.GA</version>\n"
+" <version>2.2.0.GA</version>\n"
" </dependency>\n"
" \n"
" </dependencies>\n"
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/ml-IN/Hsearch.po
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/ml-IN/Hsearch.po 2009-06-11 20:41:36 UTC (rev 11125)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/ml-IN/Hsearch.po 2009-06-11 20:43:04 UTC (rev 11126)
@@ -5,7 +5,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-04-15 13:51+0000\n"
+"POT-Creation-Date: 2009-06-11 18:45+0000\n"
"PO-Revision-Date: 2008-04-04 01:24+0000\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -45,7 +45,7 @@
#: Hsearch.xml:21
#, no-c-format
msgid ""
-"Hibernate Search has been designed to integrates nicely and as naturally as "
+"Hibernate Search has been designed to integrate nicely and as naturally as "
"possible with JPA and Hibernate. As a natural extension, JBoss Seam provides "
"an Hibernate Search integration."
msgstr ""
@@ -132,7 +132,7 @@
" <property name=\"hibernate.ejb.event.post-delete\" \n"
" value=\"org.hibernate.search.event.FullTextIndexEventListener"
"\"/>\n"
-"\n"
+" \n"
" </properties>\n"
"</persistence-unit>]]>"
msgstr ""
@@ -141,12 +141,15 @@
#: Hsearch.xml:52
#, no-c-format
msgid ""
-"This step is no longer necessary if Hibernate Annotation or EntityManager "
-"3.3.x are used."
+"It is not longer necessary the register the event listeners if Hibernate "
+"Annotations or EntityManager 3.3.x are used. When using Hibernate Search 3.1."
+"x more eventlisteners are needed, but these are registered automatically by "
+"Hibernate Annotations; refer to the Hibernate Search reference for "
+"configuring it without EntityManager and Annotations."
msgstr ""
#. Tag: para
-#: Hsearch.xml:56
+#: Hsearch.xml:60
#, no-c-format
msgid ""
"In addition to the configuration file, the following jars have to be "
@@ -154,25 +157,25 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:61
+#: Hsearch.xml:65
#, no-c-format
msgid "hibernate-search.jar"
msgstr ""
#. Tag: para
-#: Hsearch.xml:65
+#: Hsearch.xml:69
#, no-c-format
msgid "hibernate-commons-annotations.jar"
msgstr ""
#. Tag: para
-#: Hsearch.xml:69
+#: Hsearch.xml:73
#, no-c-format
msgid "lucene-core.jar"
msgstr ""
#. Tag: para
-#: Hsearch.xml:74
+#: Hsearch.xml:78
#, no-c-format
msgid ""
"If you deploy those in a EAR, don't forget to update <filename>application."
@@ -180,13 +183,13 @@
msgstr ""
#. Tag: title
-#: Hsearch.xml:80
+#: Hsearch.xml:84
#, no-c-format
msgid "Usage"
msgstr ""
#. Tag: para
-#: Hsearch.xml:82
+#: Hsearch.xml:86
#, no-c-format
msgid ""
"Hibernate Search uses annotations to map entities to a Lucene index, check "
@@ -195,7 +198,7 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:87
+#: Hsearch.xml:91
#, no-c-format
msgid ""
"Hibernate Search is fully integrated with the API and semantic of JPA / "
@@ -206,7 +209,7 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:93
+#: Hsearch.xml:97
#, no-c-format
msgid ""
"When Hibernate Search is present, JBoss Seam injects a "
@@ -214,7 +217,7 @@
msgstr ""
#. Tag: programlisting
-#: Hsearch.xml:96
+#: Hsearch.xml:100
#, no-c-format
msgid ""
"<![CDATA[@Stateful\n"
@@ -237,7 +240,7 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:99
+#: Hsearch.xml:103
#, no-c-format
msgid ""
"<classname>FullTextSession</classname> extends <classname>org.hibernate."
@@ -245,14 +248,14 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:104
+#: Hsearch.xml:108
#, no-c-format
msgid ""
"If the Java Persistence API is used, a smoother integration is proposed."
msgstr ""
#. Tag: programlisting
-#: Hsearch.xml:107
+#: Hsearch.xml:111
#, no-c-format
msgid ""
"<![CDATA[@Stateful\n"
@@ -275,7 +278,7 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:109
+#: Hsearch.xml:113
#, no-c-format
msgid ""
"When Hibernate Search is present, a <classname>FulltextEntityManager</"
@@ -286,7 +289,7 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:116
+#: Hsearch.xml:120
#, no-c-format
msgid ""
"When an EJB 3.0 Session or Message Driven Bean injection is used (i.e. via "
@@ -299,7 +302,7 @@
msgstr ""
#. Tag: programlisting
-#: Hsearch.xml:124
+#: Hsearch.xml:128
#, no-c-format
msgid ""
"<![CDATA[@Stateful\n"
@@ -323,15 +326,15 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:129
+#: Hsearch.xml:133
#, no-c-format
msgid ""
"For people accustomed to Hibernate Search out of Seam, note that using "
-"<methodname>Search.createFullTextSession</methodname> is not necessary."
+"<methodname>Search.getFullTextSession</methodname> is not necessary."
msgstr ""
#. Tag: para
-#: Hsearch.xml:134
+#: Hsearch.xml:138
#, no-c-format
msgid ""
"Check the DVDStore or the blog examples of the JBoss Seam distribution for a "
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/ml-IN/Security.po
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/ml-IN/Security.po 2009-06-11 20:41:36 UTC (rev 11125)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/ml-IN/Security.po 2009-06-11 20:43:04 UTC (rev 11126)
@@ -5,7 +5,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-06-11 07:43+0000\n"
+"POT-Creation-Date: 2009-06-11 18:45+0000\n"
"PO-Revision-Date: 2008-04-04 01:24+0000\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -1190,7 +1190,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:630 Security.xml:764 Security.xml:3382 Security.xml:3545
+#: Security.xml:630 Security.xml:764 Security.xml:3385 Security.xml:3548
#, no-c-format
msgid "Annotation"
msgstr ""
@@ -1203,8 +1203,8 @@
#. Tag: para
#: Security.xml:636 Security.xml:770 Security.xml:966 Security.xml:1418
-#: Security.xml:2147 Security.xml:2756 Security.xml:3171 Security.xml:3388
-#: Security.xml:3551 Security.xml:3792 Security.xml:4229
+#: Security.xml:2147 Security.xml:2756 Security.xml:3174 Security.xml:3391
+#: Security.xml:3554 Security.xml:3795 Security.xml:4232
#, no-c-format
msgid "Description"
msgstr ""
@@ -2228,8 +2228,8 @@
msgstr ""
#. Tag: para
-#: Security.xml:1412 Security.xml:1828 Security.xml:2753 Security.xml:3168
-#: Security.xml:3789 Security.xml:3958
+#: Security.xml:1412 Security.xml:1828 Security.xml:2753 Security.xml:3171
+#: Security.xml:3792 Security.xml:3961
#, no-c-format
msgid "Method"
msgstr ""
@@ -2250,9 +2250,9 @@
#: Security.xml:1433 Security.xml:1452 Security.xml:1471 Security.xml:1490
#: Security.xml:1509 Security.xml:1529 Security.xml:1548 Security.xml:1567
#: Security.xml:1586 Security.xml:1606 Security.xml:1626 Security.xml:1740
-#: Security.xml:1762 Security.xml:1780 Security.xml:2766 Security.xml:3239
-#: Security.xml:3258 Security.xml:3277 Security.xml:3295 Security.xml:3840
-#: Security.xml:3859 Security.xml:3878 Security.xml:3897
+#: Security.xml:1762 Security.xml:1780 Security.xml:2766 Security.xml:3242
+#: Security.xml:3261 Security.xml:3280 Security.xml:3298 Security.xml:3843
+#: Security.xml:3862 Security.xml:3881 Security.xml:3900
#, no-c-format
msgid "boolean"
msgstr ""
@@ -2558,13 +2558,13 @@
msgstr ""
#. Tag: para
-#: Security.xml:1831 Security.xml:3961
+#: Security.xml:1831 Security.xml:3964
#, no-c-format
msgid "Permission Target"
msgstr ""
#. Tag: para
-#: Security.xml:1834 Security.xml:3964
+#: Security.xml:1834 Security.xml:3967
#, no-c-format
msgid "Permission Action"
msgstr ""
@@ -3806,7 +3806,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2750 Security.xml:3165 Security.xml:3786
+#: Security.xml:2750 Security.xml:3168 Security.xml:3789
#, no-c-format
msgid "Return type"
msgstr ""
@@ -3986,41 +3986,47 @@
#. Tag: para
#: Security.xml:2917
#, no-c-format
-msgid "drools-compiler.jar"
+msgid "drools-api.jar"
msgstr ""
#. Tag: para
#: Security.xml:2920
#, no-c-format
-msgid "drools-core.jar"
+msgid "drools-compiler.jar"
msgstr ""
#. Tag: para
#: Security.xml:2923
#, no-c-format
-msgid "janino.jar"
+msgid "drools-core.jar"
msgstr ""
#. Tag: para
#: Security.xml:2926
#, no-c-format
-msgid "antlr-runtime.jar"
+msgid "janino.jar"
msgstr ""
#. Tag: para
#: Security.xml:2929
#, no-c-format
-msgid "mvel14.jar"
+msgid "antlr-runtime.jar"
msgstr ""
+#. Tag: para
+#: Security.xml:2932
+#, no-c-format
+msgid "mvel2.jar"
+msgstr ""
+
#. Tag: title
-#: Security.xml:2936 Security.xml:3128
+#: Security.xml:2939 Security.xml:3131
#, no-c-format
msgid "Configuration"
msgstr ""
#. Tag: para
-#: Security.xml:2938
+#: Security.xml:2941
#, no-c-format
msgid ""
"The configuration for <literal>RuleBasedPermissionResolver</literal> "
@@ -4030,7 +4036,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:2944
+#: Security.xml:2947
#, no-c-format
msgid ""
"<![CDATA[<components xmlns=\"http://jboss.com/products/seam/components\"\n"
@@ -4058,7 +4064,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2946
+#: Security.xml:2949
#, no-c-format
msgid ""
"The default rule base name can be overridden by specifying the "
@@ -4067,7 +4073,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:2951
+#: Security.xml:2954
#, no-c-format
msgid ""
"<![CDATA[\n"
@@ -4076,7 +4082,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2953
+#: Security.xml:2956
#, no-c-format
msgid ""
"Once the <literal>RuleBase</literal> component is configured, it's time to "
@@ -4084,13 +4090,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:2959
+#: Security.xml:2962
#, no-c-format
msgid "Writing Security Rules"
msgstr ""
#. Tag: para
-#: Security.xml:2961
+#: Security.xml:2964
#, no-c-format
msgid ""
"The first step to writing security rules is to create a new rule file in the "
@@ -4101,7 +4107,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2968
+#: Security.xml:2971
#, no-c-format
msgid ""
"So what should the security rules file contain? At this stage it might be a "
@@ -4110,7 +4116,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:2973
+#: Security.xml:2976
#, no-c-format
msgid ""
"<![CDATA[package MyApplicationPermissions;\n"
@@ -4128,7 +4134,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2975
+#: Security.xml:2978
#, no-c-format
msgid ""
"Let's break this down step by step. The first thing we see is the package "
@@ -4138,7 +4144,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2981
+#: Security.xml:2984
#, no-c-format
msgid ""
"The next thing we can notice is a couple of import statements for the "
@@ -4148,7 +4154,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2987
+#: Security.xml:2990
#, no-c-format
msgid ""
"Finally we have the code for the rule. Each rule within a package should be "
@@ -4158,7 +4164,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2993
+#: Security.xml:2996
#, no-c-format
msgid ""
"Looking at the body of the rule definition we can notice two distinct "
@@ -4173,7 +4179,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3002
+#: Security.xml:3005
#, no-c-format
msgid ""
"If we look at the LHS of the rule, we see two conditions listed there. Let's "
@@ -4181,14 +4187,14 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3006
+#: Security.xml:3009
#, no-c-format
msgid ""
"<![CDATA[c: PermissionCheck(target == \"customer\", action == \"delete\")]]>"
msgstr ""
#. Tag: para
-#: Security.xml:3008
+#: Security.xml:3011
#, no-c-format
msgid ""
"In plain english, this condition is stating that there must exist a "
@@ -4198,7 +4204,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3014
+#: Security.xml:3017
#, no-c-format
msgid ""
"So what is the working memory? Also known as a \"stateful session\" in "
@@ -4216,7 +4222,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3026
+#: Security.xml:3029
#, no-c-format
msgid ""
"Besides the <literal>PermissionCheck</literal> facts, there is also a "
@@ -4233,7 +4239,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3037
+#: Security.xml:3040
#, no-c-format
msgid ""
"It is also possible to insert additional long-lived facts into the working "
@@ -4244,7 +4250,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3044
+#: Security.xml:3047
#, no-c-format
msgid ""
"Getting back to our simple example, we can also notice that the first line "
@@ -4255,13 +4261,13 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3051
+#: Security.xml:3054
#, no-c-format
msgid "<![CDATA[Role(name == \"admin\")]]>"
msgstr ""
#. Tag: para
-#: Security.xml:3053
+#: Security.xml:3056
#, no-c-format
msgid ""
"This condition simply states that there must be a <literal>Role</literal> "
@@ -4274,7 +4280,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3061
+#: Security.xml:3064
#, no-c-format
msgid ""
"So what is the consequence of the rule firing? Let's take a look at the RHS "
@@ -4282,13 +4288,13 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3065
+#: Security.xml:3068
#, no-c-format
msgid "<![CDATA[c.grant()]]>"
msgstr ""
#. Tag: para
-#: Security.xml:3067
+#: Security.xml:3070
#, no-c-format
msgid ""
"The RHS consists of Java code, and in this case is invoking the "
@@ -4305,13 +4311,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3081
+#: Security.xml:3084
#, no-c-format
msgid "Non-String permission targets"
msgstr ""
#. Tag: para
-#: Security.xml:3083
+#: Security.xml:3086
#, no-c-format
msgid ""
"So far we have only seen permission checks for String-literal permission "
@@ -4325,7 +4331,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3092
+#: Security.xml:3095
#, no-c-format
msgid ""
"<![CDATA[rule CanCreateBlogComment\n"
@@ -4343,13 +4349,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3097
+#: Security.xml:3100
#, no-c-format
msgid "Wildcard permission checks"
msgstr ""
#. Tag: para
-#: Security.xml:3099
+#: Security.xml:3102
#, no-c-format
msgid ""
"It is possible to implement a wildcard permission check (which allows all "
@@ -4359,7 +4365,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3105
+#: Security.xml:3108
#, no-c-format
msgid ""
"<![CDATA[rule CanDoAnythingToCustomersIfYouAreAnAdmin\n"
@@ -4373,7 +4379,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3107
+#: Security.xml:3110
#, no-c-format
msgid ""
"This rule allows users with the <literal>admin</literal> role to perform "
@@ -4382,13 +4388,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3117
+#: Security.xml:3120
#, no-c-format
msgid "PersistentPermissionResolver"
msgstr ""
#. Tag: para
-#: Security.xml:3119
+#: Security.xml:3122
#, no-c-format
msgid ""
"Another built-in permission resolver provided by Seam, "
@@ -4401,7 +4407,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3130
+#: Security.xml:3133
#, no-c-format
msgid ""
"Before it can be used, <literal>PersistentPermissionResolver</literal> must "
@@ -4414,7 +4420,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3138
+#: Security.xml:3141
#, no-c-format
msgid ""
"<![CDATA[ <security:persistent-permission-resolver permission-store=\"#"
@@ -4422,13 +4428,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3143
+#: Security.xml:3146
#, no-c-format
msgid "Permission Stores"
msgstr ""
#. Tag: para
-#: Security.xml:3145
+#: Security.xml:3148
#, no-c-format
msgid ""
"A permission store is required for <literal>PersistentPermissionResolver</"
@@ -4441,26 +4447,26 @@
msgstr ""
#. Tag: title
-#: Security.xml:3155
+#: Security.xml:3158
#, no-c-format
msgid "PermissionStore interface"
msgstr ""
#. Tag: literal
-#: Security.xml:3181 Security.xml:3200 Security.xml:3219 Security.xml:3802
-#: Security.xml:3821
+#: Security.xml:3184 Security.xml:3203 Security.xml:3222 Security.xml:3805
+#: Security.xml:3824
#, no-c-format
msgid "List<Permission>"
msgstr ""
#. Tag: literal
-#: Security.xml:3186 Security.xml:3826
+#: Security.xml:3189 Security.xml:3829
#, no-c-format
msgid "listPermissions(Object target)"
msgstr ""
#. Tag: para
-#: Security.xml:3190
+#: Security.xml:3193
#, no-c-format
msgid ""
"This method should return a <literal>List</literal> of <literal>Permission</"
@@ -4469,13 +4475,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3205 Security.xml:3807
+#: Security.xml:3208 Security.xml:3810
#, no-c-format
msgid "listPermissions(Object target, String action)"
msgstr ""
#. Tag: para
-#: Security.xml:3209
+#: Security.xml:3212
#, no-c-format
msgid ""
"This method should return a <literal>List</literal> of <literal>Permission</"
@@ -4484,13 +4490,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3224
+#: Security.xml:3227
#, no-c-format
msgid "listPermissions(Set<Object> targets, String action)"
msgstr ""
#. Tag: para
-#: Security.xml:3228
+#: Security.xml:3231
#, no-c-format
msgid ""
"This method should return a <literal>List</literal> of <literal>Permission</"
@@ -4499,13 +4505,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3244
+#: Security.xml:3247
#, no-c-format
msgid "grantPermission(Permission)"
msgstr ""
#. Tag: para
-#: Security.xml:3248
+#: Security.xml:3251
#, no-c-format
msgid ""
"This method should persist the specified <literal>Permission</literal> "
@@ -4513,13 +4519,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3263 Security.xml:3864
+#: Security.xml:3266 Security.xml:3867
#, no-c-format
msgid "grantPermissions(List<Permission> permissions)"
msgstr ""
#. Tag: para
-#: Security.xml:3267
+#: Security.xml:3270
#, no-c-format
msgid ""
"This method should persist all of the <literal>Permission</literal> objects "
@@ -4528,13 +4534,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3282 Security.xml:3883
+#: Security.xml:3285 Security.xml:3886
#, no-c-format
msgid "revokePermission(Permission permission)"
msgstr ""
#. Tag: para
-#: Security.xml:3286
+#: Security.xml:3289
#, no-c-format
msgid ""
"This method should remove the specified <literal>Permission</literal> object "
@@ -4542,13 +4548,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3300 Security.xml:3902
+#: Security.xml:3303 Security.xml:3905
#, no-c-format
msgid "revokePermissions(List<Permission> permissions)"
msgstr ""
#. Tag: para
-#: Security.xml:3304
+#: Security.xml:3307
#, no-c-format
msgid ""
"This method should remove all of the <literal>Permission</literal> objects "
@@ -4556,19 +4562,19 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3314 Security.xml:3916
+#: Security.xml:3317 Security.xml:3919
#, no-c-format
msgid "List<String>"
msgstr ""
#. Tag: literal
-#: Security.xml:3319 Security.xml:3921
+#: Security.xml:3322 Security.xml:3924
#, no-c-format
msgid "listAvailableActions(Object target)"
msgstr ""
#. Tag: para
-#: Security.xml:3323
+#: Security.xml:3326
#, no-c-format
msgid ""
"This method should return a list of all the available actions (as Strings) "
@@ -4578,13 +4584,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3337
+#: Security.xml:3340
#, no-c-format
msgid "JpaPermissionStore"
msgstr ""
#. Tag: para
-#: Security.xml:3339
+#: Security.xml:3342
#, no-c-format
msgid ""
"This is the default <literal>PermissionStore</literal> implementation (and "
@@ -4597,7 +4603,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3347
+#: Security.xml:3350
#, no-c-format
msgid ""
"If you wish to use the same entity (i.e. a single database table) to store "
@@ -4609,7 +4615,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3354
+#: Security.xml:3357
#, no-c-format
msgid ""
"For example, to configure a single entity class to store both user and role "
@@ -4617,7 +4623,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3356
+#: Security.xml:3359
#, no-c-format
msgid ""
"<![CDATA[ <security:jpa-permission-store user-permission-class=\"com.acme."
@@ -4625,14 +4631,14 @@
msgstr ""
#. Tag: para
-#: Security.xml:3358
+#: Security.xml:3361
#, no-c-format
msgid ""
"To configure separate entity classes for storing user and role permissions:"
msgstr ""
#. Tag: programlisting
-#: Security.xml:3360
+#: Security.xml:3363
#, no-c-format
msgid ""
"<![CDATA[ <security:jpa-permission-store user-permission-class=\"com.acme."
@@ -4641,13 +4647,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3363
+#: Security.xml:3366
#, no-c-format
msgid "Permission annotations"
msgstr ""
#. Tag: para
-#: Security.xml:3365
+#: Security.xml:3368
#, no-c-format
msgid ""
"As mentioned, the entity classes that contain the user and role permissions "
@@ -4658,32 +4664,32 @@
msgstr ""
#. Tag: title
-#: Security.xml:3372
+#: Security.xml:3375
#, no-c-format
msgid "Entity Permission annotations"
msgstr ""
#. Tag: para
-#: Security.xml:3385 Security.xml:3548
+#: Security.xml:3388 Security.xml:3551
#, no-c-format
msgid "Target"
msgstr ""
#. Tag: literal
-#: Security.xml:3398
+#: Security.xml:3401
#, no-c-format
msgid "@PermissionTarget"
msgstr ""
#. Tag: literal
-#: Security.xml:3403 Security.xml:3422 Security.xml:3441 Security.xml:3460
-#: Security.xml:3479
+#: Security.xml:3406 Security.xml:3425 Security.xml:3444 Security.xml:3463
+#: Security.xml:3482
#, no-c-format
msgid "FIELD,METHOD"
msgstr ""
#. Tag: para
-#: Security.xml:3407
+#: Security.xml:3410
#, no-c-format
msgid ""
"This annotation identifies the property of the entity that will contain the "
@@ -4692,13 +4698,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3417
+#: Security.xml:3420
#, no-c-format
msgid "@PermissionAction"
msgstr ""
#. Tag: para
-#: Security.xml:3426
+#: Security.xml:3429
#, no-c-format
msgid ""
"This annotation identifies the property of the entity that will contain the "
@@ -4707,13 +4713,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3436
+#: Security.xml:3439
#, no-c-format
msgid "@PermissionUser"
msgstr ""
#. Tag: para
-#: Security.xml:3445
+#: Security.xml:3448
#, no-c-format
msgid ""
"This annotation identifies the property of the entity that will contain the "
@@ -4722,13 +4728,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3455
+#: Security.xml:3458
#, no-c-format
msgid "@PermissionRole"
msgstr ""
#. Tag: para
-#: Security.xml:3464
+#: Security.xml:3467
#, no-c-format
msgid ""
"This annotation identifies the property of the entity that will contain the "
@@ -4737,13 +4743,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3474
+#: Security.xml:3477
#, no-c-format
msgid "@PermissionDiscriminator"
msgstr ""
#. Tag: para
-#: Security.xml:3483
+#: Security.xml:3486
#, no-c-format
msgid ""
"This annotation should be used when the same entity/table is used to store "
@@ -4760,20 +4766,20 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3493
+#: Security.xml:3496
#, no-c-format
msgid ""
"<![CDATA[ @PermissionDiscriminator(userValue = \"u\", roleValue = \"r\")]]>"
msgstr ""
#. Tag: title
-#: Security.xml:3504
+#: Security.xml:3507
#, no-c-format
msgid "Example Entity"
msgstr ""
#. Tag: para
-#: Security.xml:3506
+#: Security.xml:3509
#, no-c-format
msgid ""
"Here is an example of an entity class that is used to store both user and "
@@ -4782,7 +4788,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3511
+#: Security.xml:3514
#, no-c-format
msgid ""
"<![CDATA[\n"
@@ -4843,7 +4849,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3513
+#: Security.xml:3516
#, no-c-format
msgid ""
"As can be seen in the above example, the <literal>getDiscriminator()</"
@@ -4860,13 +4866,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3526
+#: Security.xml:3529
#, no-c-format
msgid "Class-specific Permission Configuration"
msgstr ""
#. Tag: para
-#: Security.xml:3528
+#: Security.xml:3531
#, no-c-format
msgid ""
"A further set of class-specific annotations can be used to configure a "
@@ -4876,25 +4882,25 @@
msgstr ""
#. Tag: title
-#: Security.xml:3535
+#: Security.xml:3538
#, no-c-format
msgid "Class Permission Annotations"
msgstr ""
#. Tag: literal
-#: Security.xml:3561
+#: Security.xml:3564
#, no-c-format
msgid "@Permissions"
msgstr ""
#. Tag: literal
-#: Security.xml:3566 Security.xml:3584
+#: Security.xml:3569 Security.xml:3587
#, no-c-format
msgid "TYPE"
msgstr ""
#. Tag: para
-#: Security.xml:3570
+#: Security.xml:3573
#, no-c-format
msgid ""
"A container annotation, this annotation may contain an array of "
@@ -4902,13 +4908,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3579
+#: Security.xml:3582
#, no-c-format
msgid "@Permission"
msgstr ""
#. Tag: para
-#: Security.xml:3588
+#: Security.xml:3591
#, no-c-format
msgid ""
"This annotation defines a single allowable permission action for the target "
@@ -4919,7 +4925,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3600
+#: Security.xml:3603
#, no-c-format
msgid ""
"Here's an example of the above annotations in action. The following class "
@@ -4927,7 +4933,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3604
+#: Security.xml:3607
#, no-c-format
msgid ""
"<![CDATA[@Permissions({\n"
@@ -4939,7 +4945,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3606
+#: Security.xml:3609
#, no-c-format
msgid ""
"This example demonstrates how two allowable permission actions, "
@@ -4948,13 +4954,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3614
+#: Security.xml:3617
#, no-c-format
msgid "Permission masks"
msgstr ""
#. Tag: para
-#: Security.xml:3616
+#: Security.xml:3619
#, no-c-format
msgid ""
"By default, multiple permissions for the same target object and recipient "
@@ -4966,7 +4972,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3623
+#: Security.xml:3626
#, no-c-format
msgid ""
"For example, if recipient \"Bob\" is granted both the <literal>view</"
@@ -4979,7 +4985,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3630
+#: Security.xml:3633
#, no-c-format
msgid ""
"<![CDATA[@Permissions({\n"
@@ -4991,7 +4997,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3632
+#: Security.xml:3635
#, no-c-format
msgid ""
"The <literal>action</literal> property will instead simply contain \"3"
@@ -5001,7 +5007,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3638
+#: Security.xml:3641
#, no-c-format
msgid ""
"Obviously, it is very important that the <literal>mask</literal> values "
@@ -5009,13 +5015,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3644
+#: Security.xml:3647
#, no-c-format
msgid "Identifier Policy"
msgstr ""
#. Tag: para
-#: Security.xml:3646
+#: Security.xml:3649
#, no-c-format
msgid ""
"When storing or looking up permissions, <literal>JpaPermissionStore</"
@@ -5029,7 +5035,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3654
+#: Security.xml:3657
#, no-c-format
msgid ""
"The <literal>IdentifierStrategy</literal> interface is very simple, "
@@ -5037,7 +5043,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3658
+#: Security.xml:3661
#, no-c-format
msgid ""
"<![CDATA[public interface IdentifierStrategy {\n"
@@ -5047,7 +5053,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3660
+#: Security.xml:3663
#, no-c-format
msgid ""
"The first method, <literal>canIdentify()</literal> simply returns "
@@ -5058,7 +5064,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3666
+#: Security.xml:3669
#, no-c-format
msgid ""
"Seam provides two <literal>IdentifierStrategy</literal> implementations, "
@@ -5067,7 +5073,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3671
+#: Security.xml:3674
#, no-c-format
msgid ""
"To explicitly configure a specific identifier strategy to use for a "
@@ -5080,13 +5086,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3681
+#: Security.xml:3684
#, no-c-format
msgid "ClassIdentifierStrategy"
msgstr ""
#. Tag: para
-#: Security.xml:3683
+#: Security.xml:3686
#, no-c-format
msgid ""
"This identifier strategy is used to generate unique identifiers for classes, "
@@ -5100,7 +5106,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3692
+#: Security.xml:3695
#, no-c-format
msgid ""
"<![CDATA[@Identifier(name = \"customer\")\n"
@@ -5108,7 +5114,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3694
+#: Security.xml:3697
#, no-c-format
msgid ""
"The identifier for the following class will be \"<literal>customerAction</"
@@ -5116,7 +5122,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3698
+#: Security.xml:3701
#, no-c-format
msgid ""
"<![CDATA[@Name(\"customerAction\")\n"
@@ -5124,7 +5130,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3700
+#: Security.xml:3703
#, no-c-format
msgid ""
"Finally, the identifier for the following class will be \"<literal>Customer</"
@@ -5132,19 +5138,19 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3704
+#: Security.xml:3707
#, no-c-format
msgid "<![CDATA[public class Customer { ]]>"
msgstr ""
#. Tag: title
-#: Security.xml:3709
+#: Security.xml:3712
#, no-c-format
msgid "EntityIdentifierStrategy"
msgstr ""
#. Tag: para
-#: Security.xml:3711
+#: Security.xml:3714
#, no-c-format
msgid ""
"This identifier strategy is used to generate unique identifiers for entity "
@@ -5161,7 +5167,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3722
+#: Security.xml:3725
#, no-c-format
msgid ""
"<![CDATA[@Identifier(value = EntityIdentifierStrategy.class)\n"
@@ -5169,7 +5175,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3724
+#: Security.xml:3727
#, no-c-format
msgid ""
"For an example of the type of identifier values generated, assume we have "
@@ -5177,7 +5183,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3728
+#: Security.xml:3731
#, no-c-format
msgid ""
"<![CDATA[@Entity\n"
@@ -5200,7 +5206,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3730
+#: Security.xml:3733
#, no-c-format
msgid ""
"For a <literal>Customer</literal> instance with an <literal>id</literal> "
@@ -5210,7 +5216,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3736
+#: Security.xml:3739
#, no-c-format
msgid ""
"<![CDATA[@Entity\n"
@@ -5219,7 +5225,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3738
+#: Security.xml:3741
#, no-c-format
msgid ""
"Then a <literal>Customer</literal> with an <literal>id</literal> value of "
@@ -5228,13 +5234,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3751
+#: Security.xml:3754
#, no-c-format
msgid "Permission Management"
msgstr ""
#. Tag: para
-#: Security.xml:3753
+#: Security.xml:3756
#, no-c-format
msgid ""
"In much the same way that Seam Security provides an Identity Management API "
@@ -5244,13 +5250,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3760
+#: Security.xml:3763
#, no-c-format
msgid "PermissionManager"
msgstr ""
#. Tag: para
-#: Security.xml:3762
+#: Security.xml:3765
#, no-c-format
msgid ""
"The <literal>PermissionManager</literal> component is an application-scoped "
@@ -5263,7 +5269,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3769
+#: Security.xml:3772
#, no-c-format
msgid ""
"<![CDATA[\n"
@@ -5273,7 +5279,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3771
+#: Security.xml:3774
#, no-c-format
msgid ""
"The following table describes each of the available methods provided by "
@@ -5281,13 +5287,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3776
+#: Security.xml:3779
#, no-c-format
msgid "PermissionManager API methods"
msgstr ""
#. Tag: para
-#: Security.xml:3811 Security.xml:3830
+#: Security.xml:3814 Security.xml:3833
#, no-c-format
msgid ""
"Returns a list of <literal>Permission</literal> objects representing all of "
@@ -5295,13 +5301,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3845
+#: Security.xml:3848
#, no-c-format
msgid "grantPermission(Permission permission)"
msgstr ""
#. Tag: para
-#: Security.xml:3849
+#: Security.xml:3852
#, no-c-format
msgid ""
"Persists (grants) the specified <literal>Permission</literal> to the backend "
@@ -5309,7 +5315,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3868
+#: Security.xml:3871
#, no-c-format
msgid ""
"Persists (grants) the specified list of <literal>Permission</literal>s to "
@@ -5317,7 +5323,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3887
+#: Security.xml:3890
#, no-c-format
msgid ""
"Removes (revokes) the specified <literal>Permission</literal> from the "
@@ -5325,7 +5331,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3906
+#: Security.xml:3909
#, no-c-format
msgid ""
"Removes (revokes) the specified list of <literal>Permission</literal>s from "
@@ -5333,7 +5339,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3925
+#: Security.xml:3928
#, no-c-format
msgid ""
"Returns a list of the available actions for the specified target object. The "
@@ -5342,13 +5348,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3940
+#: Security.xml:3943
#, no-c-format
msgid "Permission checks for PermissionManager operations"
msgstr ""
#. Tag: para
-#: Security.xml:3942
+#: Security.xml:3945
#, no-c-format
msgid ""
"Invoking the methods of <literal>PermissionManager</literal> requires that "
@@ -5358,37 +5364,37 @@
msgstr ""
#. Tag: title
-#: Security.xml:3949
+#: Security.xml:3952
#, no-c-format
msgid "Permission Management Security Permissions"
msgstr ""
#. Tag: literal
-#: Security.xml:3973
+#: Security.xml:3976
#, no-c-format
msgid "listPermissions()"
msgstr ""
#. Tag: para
-#: Security.xml:3977
+#: Security.xml:3980
#, no-c-format
msgid "The specified <literal>target</literal>"
msgstr ""
#. Tag: literal
-#: Security.xml:3983
+#: Security.xml:3986
#, no-c-format
msgid "seam.read-permissions"
msgstr ""
#. Tag: literal
-#: Security.xml:3991 Security.xml:4011
+#: Security.xml:3994 Security.xml:4014
#, no-c-format
msgid "grantPermission()"
msgstr ""
#. Tag: para
-#: Security.xml:3995
+#: Security.xml:3998
#, no-c-format
msgid ""
"The target of the specified <literal>Permission</literal>, or each of the "
@@ -5397,56 +5403,56 @@
msgstr ""
#. Tag: literal
-#: Security.xml:4003 Security.xml:4021 Security.xml:4039
+#: Security.xml:4006 Security.xml:4024 Security.xml:4042
#, no-c-format
msgid "seam.grant-permission"
msgstr ""
#. Tag: para
-#: Security.xml:4015 Security.xml:4051
+#: Security.xml:4018 Security.xml:4054
#, no-c-format
msgid "The target of the specified <literal>Permission</literal>."
msgstr ""
#. Tag: literal
-#: Security.xml:4029
+#: Security.xml:4032
#, no-c-format
msgid "grantPermissions()"
msgstr ""
#. Tag: para
-#: Security.xml:4033 Security.xml:4069
+#: Security.xml:4036 Security.xml:4072
#, no-c-format
msgid ""
"Each of the targets of the specified list of <literal>Permission</literal>s."
msgstr ""
#. Tag: literal
-#: Security.xml:4047
+#: Security.xml:4050
#, no-c-format
msgid "revokePermission()"
msgstr ""
#. Tag: literal
-#: Security.xml:4057 Security.xml:4075
+#: Security.xml:4060 Security.xml:4078
#, no-c-format
msgid "seam.revoke-permission"
msgstr ""
#. Tag: literal
-#: Security.xml:4065
+#: Security.xml:4068
#, no-c-format
msgid "revokePermissions()"
msgstr ""
#. Tag: title
-#: Security.xml:4088
+#: Security.xml:4091
#, no-c-format
msgid "SSL Security"
msgstr ""
#. Tag: para
-#: Security.xml:4090
+#: Security.xml:4093
#, no-c-format
msgid ""
"Seam includes basic support for serving sensitive pages via the HTTPS "
@@ -5457,13 +5463,13 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4097
+#: Security.xml:4100
#, no-c-format
msgid "<![CDATA[<page view-id=\"/login.xhtml\" scheme=\"https\"/>]]>"
msgstr ""
#. Tag: para
-#: Security.xml:4099
+#: Security.xml:4102
#, no-c-format
msgid ""
"This configuration is automatically extended to both <literal>s:link</"
@@ -5475,13 +5481,13 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4106
+#: Security.xml:4109
#, no-c-format
msgid "<![CDATA[<s:link view=\"/login.xhtml\" value=\"Login\"/>]]>"
msgstr ""
#. Tag: para
-#: Security.xml:4108
+#: Security.xml:4111
#, no-c-format
msgid ""
"Browsing directly to a view when using the <emphasis>incorrect</emphasis> "
@@ -5492,7 +5498,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4115
+#: Security.xml:4118
#, no-c-format
msgid ""
"It is also possible to configure a <emphasis>default scheme</emphasis> for "
@@ -5506,13 +5512,13 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4124
+#: Security.xml:4127
#, no-c-format
msgid "<![CDATA[<page view-id=\"*\" scheme=\"http\" />]]>"
msgstr ""
#. Tag: para
-#: Security.xml:4126
+#: Security.xml:4129
#, no-c-format
msgid ""
"Of course, if <emphasis>none</emphasis> of the pages in your application use "
@@ -5520,7 +5526,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4131
+#: Security.xml:4134
#, no-c-format
msgid ""
"You may configure Seam to automatically invalidate the current HTTP session "
@@ -5529,13 +5535,13 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4136
+#: Security.xml:4139
#, no-c-format
msgid "<![CDATA[<web:session invalidate-on-scheme-change=\"true\"/>]]>"
msgstr ""
#. Tag: para
-#: Security.xml:4138
+#: Security.xml:4141
#, no-c-format
msgid ""
"This option helps make your system less vulnerable to sniffing of the "
@@ -5544,13 +5550,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4144
+#: Security.xml:4147
#, no-c-format
msgid "Overriding the default ports"
msgstr ""
#. Tag: para
-#: Security.xml:4146
+#: Security.xml:4149
#, no-c-format
msgid ""
"If you wish to configure the HTTP and HTTPS ports manually, they may be "
@@ -5560,7 +5566,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4152
+#: Security.xml:4155
#, no-c-format
msgid ""
"<![CDATA[\n"
@@ -5576,13 +5582,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4158
+#: Security.xml:4161
#, no-c-format
msgid "CAPTCHA"
msgstr ""
#. Tag: para
-#: Security.xml:4160
+#: Security.xml:4163
#, no-c-format
msgid ""
"Though strictly not part of the security API, Seam provides a built-in "
@@ -5594,13 +5600,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4168
+#: Security.xml:4171
#, no-c-format
msgid "Configuring the CAPTCHA Servlet"
msgstr ""
#. Tag: para
-#: Security.xml:4169
+#: Security.xml:4172
#, no-c-format
msgid ""
"To get up and running, it is necessary to configure the Seam Resource "
@@ -5609,7 +5615,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4174
+#: Security.xml:4177
#, no-c-format
msgid ""
"<![CDATA[<servlet>\n"
@@ -5625,20 +5631,20 @@
msgstr ""
#. Tag: title
-#: Security.xml:4179
+#: Security.xml:4182
#, no-c-format
msgid "Adding a CAPTCHA to a form"
msgstr ""
#. Tag: para
-#: Security.xml:4181
+#: Security.xml:4184
#, no-c-format
msgid ""
"Adding a CAPTCHA challenge to a form is extremely easy. Here's an example:"
msgstr ""
#. Tag: programlisting
-#: Security.xml:4185
+#: Security.xml:4188
#, no-c-format
msgid ""
"<![CDATA[<h:graphicImage value=\"/seam/resource/captcha\"/>\n"
@@ -5650,7 +5656,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4187
+#: Security.xml:4190
#, no-c-format
msgid ""
"That's all there is to it. The <literal>graphicImage</literal> control "
@@ -5660,20 +5666,20 @@
msgstr ""
#. Tag: title
-#: Security.xml:4196
+#: Security.xml:4199
#, no-c-format
msgid "Customising the CAPTCHA algorithm"
msgstr ""
#. Tag: para
-#: Security.xml:4198
+#: Security.xml:4201
#, no-c-format
msgid ""
"You may customize the CAPTCHA algorithm by overriding the built-in component:"
msgstr ""
#. Tag: programlisting
-#: Security.xml:4202
+#: Security.xml:4205
#, no-c-format
msgid ""
"<![CDATA[@Name(\"org.jboss.seam.captcha.captcha\")\n"
@@ -5700,13 +5706,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4209 Security.xml:4217
+#: Security.xml:4212 Security.xml:4220
#, no-c-format
msgid "Security Events"
msgstr ""
#. Tag: para
-#: Security.xml:4211
+#: Security.xml:4214
#, no-c-format
msgid ""
"The following table describes a number of events (see <xref linkend=\"events"
@@ -5714,68 +5720,68 @@
msgstr ""
#. Tag: para
-#: Security.xml:4226
+#: Security.xml:4229
#, no-c-format
msgid "Event Key"
msgstr ""
#. Tag: literal
-#: Security.xml:4239
+#: Security.xml:4242
#, no-c-format
msgid "org.jboss.seam.security.loginSuccessful"
msgstr ""
#. Tag: para
-#: Security.xml:4243
+#: Security.xml:4246
#, no-c-format
msgid "Raised when a login attempt is successful."
msgstr ""
#. Tag: literal
-#: Security.xml:4251
+#: Security.xml:4254
#, no-c-format
msgid "org.jboss.seam.security.loginFailed"
msgstr ""
#. Tag: para
-#: Security.xml:4255
+#: Security.xml:4258
#, no-c-format
msgid "Raised when a login attempt fails."
msgstr ""
#. Tag: literal
-#: Security.xml:4263
+#: Security.xml:4266
#, no-c-format
msgid "org.jboss.seam.security.alreadyLoggedIn"
msgstr ""
#. Tag: para
-#: Security.xml:4267
+#: Security.xml:4270
#, no-c-format
msgid ""
"Raised when a user that is already authenticated attempts to log in again."
msgstr ""
#. Tag: literal
-#: Security.xml:4275
+#: Security.xml:4278
#, no-c-format
msgid "org.jboss.seam.security.notLoggedIn"
msgstr ""
#. Tag: para
-#: Security.xml:4279
+#: Security.xml:4282
#, no-c-format
msgid "Raised when a security check fails when the user is not logged in."
msgstr ""
#. Tag: literal
-#: Security.xml:4287
+#: Security.xml:4290
#, no-c-format
msgid "org.jboss.seam.security.notAuthorized"
msgstr ""
#. Tag: para
-#: Security.xml:4291
+#: Security.xml:4294
#, no-c-format
msgid ""
"Raised when a security check fails when the user is logged in however "
@@ -5783,73 +5789,73 @@
msgstr ""
#. Tag: literal
-#: Security.xml:4299
+#: Security.xml:4302
#, no-c-format
msgid "org.jboss.seam.security.preAuthenticate"
msgstr ""
#. Tag: para
-#: Security.xml:4303
+#: Security.xml:4306
#, no-c-format
msgid "Raised just prior to user authentication."
msgstr ""
#. Tag: literal
-#: Security.xml:4311
+#: Security.xml:4314
#, no-c-format
msgid "org.jboss.seam.security.postAuthenticate"
msgstr ""
#. Tag: para
-#: Security.xml:4315
+#: Security.xml:4318
#, no-c-format
msgid "Raised just after user authentication."
msgstr ""
#. Tag: literal
-#: Security.xml:4323
+#: Security.xml:4326
#, no-c-format
msgid "org.jboss.seam.security.loggedOut"
msgstr ""
#. Tag: para
-#: Security.xml:4327
+#: Security.xml:4330
#, no-c-format
msgid "Raised after the user has logged out."
msgstr ""
#. Tag: literal
-#: Security.xml:4335
+#: Security.xml:4338
#, no-c-format
msgid "org.jboss.seam.security.credentialsUpdated"
msgstr ""
#. Tag: para
-#: Security.xml:4339
+#: Security.xml:4342
#, no-c-format
msgid "Raised when the user's credentials have been changed."
msgstr ""
#. Tag: literal
-#: Security.xml:4347
+#: Security.xml:4350
#, no-c-format
msgid "org.jboss.seam.security.rememberMe"
msgstr ""
#. Tag: para
-#: Security.xml:4351
+#: Security.xml:4354
#, no-c-format
msgid "Raised when the Identity's rememberMe property is changed."
msgstr ""
#. Tag: title
-#: Security.xml:4364
+#: Security.xml:4367
#, no-c-format
msgid "Run As"
msgstr ""
#. Tag: para
-#: Security.xml:4366
+#: Security.xml:4369
#, no-c-format
msgid ""
"Sometimes it may be necessary to perform certain operations with elevated "
@@ -5861,7 +5867,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4374
+#: Security.xml:4377
#, no-c-format
msgid ""
"The following code example demonstrates how <literal>RunAsOperation</"
@@ -5872,7 +5878,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4381
+#: Security.xml:4384
#, no-c-format
msgid ""
"<![CDATA[ new RunAsOperation() { \n"
@@ -5884,7 +5890,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4383
+#: Security.xml:4386
#, no-c-format
msgid ""
"In a similar way, the <literal>getPrincipal()</literal> or "
@@ -5895,13 +5901,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4394
+#: Security.xml:4397
#, no-c-format
msgid "Extending the Identity component"
msgstr ""
#. Tag: para
-#: Security.xml:4396
+#: Security.xml:4399
#, no-c-format
msgid ""
"Sometimes it might be necessary to extend the Identity component if your "
@@ -5914,7 +5920,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4404
+#: Security.xml:4407
#, no-c-format
msgid ""
"<![CDATA[@Name(\"org.jboss.seam.security.identity\")\n"
@@ -5949,7 +5955,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4407
+#: Security.xml:4410
#, no-c-format
msgid ""
"Note that an <literal>Identity</literal> component must be marked "
@@ -5959,13 +5965,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4419
+#: Security.xml:4422
#, no-c-format
msgid "OpenID"
msgstr ""
#. Tag: para
-#: Security.xml:4421
+#: Security.xml:4424
#, no-c-format
msgid ""
"OpenID is a community standard for external web-based authentication. The "
@@ -5978,7 +5984,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4430
+#: Security.xml:4433
#, no-c-format
msgid ""
"When using OpenID, the user selects an OpenID provider, and the provider "
@@ -5995,7 +6001,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4439
+#: Security.xml:4442
#, no-c-format
msgid ""
"It's important to realize at this point that authentication does not imply "
@@ -6008,13 +6014,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4449
+#: Security.xml:4452
#, no-c-format
msgid "Configuring OpenID"
msgstr ""
#. Tag: para
-#: Security.xml:4450
+#: Security.xml:4453
#, no-c-format
msgid ""
"Seam uses the openid4java package and requires four additional JARs to make "
@@ -6024,7 +6030,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4456
+#: Security.xml:4459
#, no-c-format
msgid ""
"OpenID processing requires the use of the <literal>OpenIdPhaseListener</"
@@ -6034,7 +6040,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4462
+#: Security.xml:4465
#, no-c-format
msgid ""
"<lifecycle>\n"
@@ -6044,7 +6050,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4465
+#: Security.xml:4468
#, no-c-format
msgid ""
"With this configuration, OpenID support is available to your application. "
@@ -6054,13 +6060,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4473
+#: Security.xml:4476
#, no-c-format
msgid "Presenting an OpenIdDLogin form"
msgstr ""
#. Tag: para
-#: Security.xml:4475
+#: Security.xml:4478
#, no-c-format
msgid ""
"To initiate an OpenID login, you can present a simply form to the user "
@@ -6070,7 +6076,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4480
+#: Security.xml:4483
#, no-c-format
msgid ""
"<h:form>\n"
@@ -6081,7 +6087,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4482
+#: Security.xml:4485
#, no-c-format
msgid ""
"When the user submits the login form, he will be redirected to his OpenID "
@@ -6093,13 +6099,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4491
+#: Security.xml:4494
#, no-c-format
msgid "Logging in immediately"
msgstr ""
#. Tag: para
-#: Security.xml:4493
+#: Security.xml:4496
#, no-c-format
msgid ""
"The simplest strategy is to simply login the user immediately. The following "
@@ -6108,7 +6114,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4497
+#: Security.xml:4500
#, no-c-format
msgid ""
"<page view-id="/openid.xhtml">\n"
@@ -6128,7 +6134,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4499
+#: Security.xml:4502
#, no-c-format
msgid ""
"Thie <literal>loginImmediately()</literal> action checks to see if the "
@@ -6142,13 +6148,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4510
+#: Security.xml:4513
#, no-c-format
msgid "Deferring login"
msgstr ""
#. Tag: para
-#: Security.xml:4512
+#: Security.xml:4515
#, no-c-format
msgid ""
"You may not want the user to be immediately logged in to your application. "
@@ -6165,13 +6171,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4526
+#: Security.xml:4529
#, no-c-format
msgid "Logging out"
msgstr ""
#. Tag: para
-#: Security.xml:4528
+#: Security.xml:4531
#, no-c-format
msgid ""
"Logging out (forgetting an OpenID association) is done by calling <literal>#"
@@ -6182,7 +6188,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4535
+#: Security.xml:4538
#, no-c-format
msgid ""
"<event type="org.jboss.seam.security.loggedOut">\n"
@@ -6191,7 +6197,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4537
+#: Security.xml:4540
#, no-c-format
msgid ""
"It's important that you do not leave this out or the user will not be able "
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/mr-IN/Dependencies.po
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/mr-IN/Dependencies.po 2009-06-11 20:41:36 UTC (rev 11125)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/mr-IN/Dependencies.po 2009-06-11 20:43:04 UTC (rev 11126)
@@ -5,7 +5,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-04-15 13:51+0000\n"
+"POT-Creation-Date: 2009-06-11 18:45+0000\n"
"PO-Revision-Date: 2008-04-04 01:24+0000\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -938,8 +938,8 @@
#: Dependencies.xml:1182
#, no-c-format
msgid ""
-"This sample POM will give you Seam, JPA (provided by Hibernate) and "
-"Hibernate Validator:"
+"This sample POM will give you Seam, JPA (provided by Hibernate), Hibernate "
+"Validator and Hibernate Search:"
msgstr ""
#. Tag: programlisting
@@ -970,25 +970,31 @@
" <dependency>\n"
" <groupId>org.hibernate</groupId>\n"
" <artifactId>hibernate-validator</artifactId>\n"
-" <version>3.0.0.GA</version>\n"
+" <version>3.1.0.GA</version>\n"
" </dependency>\n"
"\n"
" <dependency>\n"
" <groupId>org.hibernate</groupId>\n"
" <artifactId>hibernate-annotations</artifactId>\n"
-" <version>3.3.0.ga</version>\n"
+" <version>3.4.0.GA</version>\n"
" </dependency>\n"
"\n"
" <dependency>\n"
" <groupId>org.hibernate</groupId>\n"
" <artifactId>hibernate-entitymanager</artifactId>\n"
-" <version>3.3.1.ga</version>\n"
+" <version>3.4.0.GA</version>\n"
" </dependency>\n"
+" \n"
+" <dependency>\n"
+" <groupId>org.hibernate</groupId>\n"
+" <artifactId>hibernate-search</artifactId>\n"
+" <version>3.1.1.GA</version>\n"
+" </dependency>\n"
"\n"
" <dependency>\n"
" <groupId>org.jboss.seam</groupId>\n"
" <artifactId>jboss-seam</artifactId>\n"
-" <version>2.0.0.GA</version>\n"
+" <version>2.2.0.GA</version>\n"
" </dependency>\n"
" \n"
" </dependencies>\n"
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/mr-IN/Hsearch.po
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/mr-IN/Hsearch.po 2009-06-11 20:41:36 UTC (rev 11125)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/mr-IN/Hsearch.po 2009-06-11 20:43:04 UTC (rev 11126)
@@ -5,7 +5,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-04-15 13:51+0000\n"
+"POT-Creation-Date: 2009-06-11 18:45+0000\n"
"PO-Revision-Date: 2008-04-04 01:24+0000\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -45,7 +45,7 @@
#: Hsearch.xml:21
#, no-c-format
msgid ""
-"Hibernate Search has been designed to integrates nicely and as naturally as "
+"Hibernate Search has been designed to integrate nicely and as naturally as "
"possible with JPA and Hibernate. As a natural extension, JBoss Seam provides "
"an Hibernate Search integration."
msgstr ""
@@ -132,7 +132,7 @@
" <property name=\"hibernate.ejb.event.post-delete\" \n"
" value=\"org.hibernate.search.event.FullTextIndexEventListener"
"\"/>\n"
-"\n"
+" \n"
" </properties>\n"
"</persistence-unit>]]>"
msgstr ""
@@ -141,12 +141,15 @@
#: Hsearch.xml:52
#, no-c-format
msgid ""
-"This step is no longer necessary if Hibernate Annotation or EntityManager "
-"3.3.x are used."
+"It is not longer necessary the register the event listeners if Hibernate "
+"Annotations or EntityManager 3.3.x are used. When using Hibernate Search 3.1."
+"x more eventlisteners are needed, but these are registered automatically by "
+"Hibernate Annotations; refer to the Hibernate Search reference for "
+"configuring it without EntityManager and Annotations."
msgstr ""
#. Tag: para
-#: Hsearch.xml:56
+#: Hsearch.xml:60
#, no-c-format
msgid ""
"In addition to the configuration file, the following jars have to be "
@@ -154,25 +157,25 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:61
+#: Hsearch.xml:65
#, no-c-format
msgid "hibernate-search.jar"
msgstr ""
#. Tag: para
-#: Hsearch.xml:65
+#: Hsearch.xml:69
#, no-c-format
msgid "hibernate-commons-annotations.jar"
msgstr ""
#. Tag: para
-#: Hsearch.xml:69
+#: Hsearch.xml:73
#, no-c-format
msgid "lucene-core.jar"
msgstr ""
#. Tag: para
-#: Hsearch.xml:74
+#: Hsearch.xml:78
#, no-c-format
msgid ""
"If you deploy those in a EAR, don't forget to update <filename>application."
@@ -180,13 +183,13 @@
msgstr ""
#. Tag: title
-#: Hsearch.xml:80
+#: Hsearch.xml:84
#, no-c-format
msgid "Usage"
msgstr ""
#. Tag: para
-#: Hsearch.xml:82
+#: Hsearch.xml:86
#, no-c-format
msgid ""
"Hibernate Search uses annotations to map entities to a Lucene index, check "
@@ -195,7 +198,7 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:87
+#: Hsearch.xml:91
#, no-c-format
msgid ""
"Hibernate Search is fully integrated with the API and semantic of JPA / "
@@ -206,7 +209,7 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:93
+#: Hsearch.xml:97
#, no-c-format
msgid ""
"When Hibernate Search is present, JBoss Seam injects a "
@@ -214,7 +217,7 @@
msgstr ""
#. Tag: programlisting
-#: Hsearch.xml:96
+#: Hsearch.xml:100
#, no-c-format
msgid ""
"<![CDATA[@Stateful\n"
@@ -237,7 +240,7 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:99
+#: Hsearch.xml:103
#, no-c-format
msgid ""
"<classname>FullTextSession</classname> extends <classname>org.hibernate."
@@ -245,14 +248,14 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:104
+#: Hsearch.xml:108
#, no-c-format
msgid ""
"If the Java Persistence API is used, a smoother integration is proposed."
msgstr ""
#. Tag: programlisting
-#: Hsearch.xml:107
+#: Hsearch.xml:111
#, no-c-format
msgid ""
"<![CDATA[@Stateful\n"
@@ -275,7 +278,7 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:109
+#: Hsearch.xml:113
#, no-c-format
msgid ""
"When Hibernate Search is present, a <classname>FulltextEntityManager</"
@@ -286,7 +289,7 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:116
+#: Hsearch.xml:120
#, no-c-format
msgid ""
"When an EJB 3.0 Session or Message Driven Bean injection is used (i.e. via "
@@ -299,7 +302,7 @@
msgstr ""
#. Tag: programlisting
-#: Hsearch.xml:124
+#: Hsearch.xml:128
#, no-c-format
msgid ""
"<![CDATA[@Stateful\n"
@@ -323,15 +326,15 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:129
+#: Hsearch.xml:133
#, no-c-format
msgid ""
"For people accustomed to Hibernate Search out of Seam, note that using "
-"<methodname>Search.createFullTextSession</methodname> is not necessary."
+"<methodname>Search.getFullTextSession</methodname> is not necessary."
msgstr ""
#. Tag: para
-#: Hsearch.xml:134
+#: Hsearch.xml:138
#, no-c-format
msgid ""
"Check the DVDStore or the blog examples of the JBoss Seam distribution for a "
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/mr-IN/Security.po
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/mr-IN/Security.po 2009-06-11 20:41:36 UTC (rev 11125)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/mr-IN/Security.po 2009-06-11 20:43:04 UTC (rev 11126)
@@ -5,7 +5,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-06-11 07:43+0000\n"
+"POT-Creation-Date: 2009-06-11 18:45+0000\n"
"PO-Revision-Date: 2008-04-04 01:24+0000\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -1190,7 +1190,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:630 Security.xml:764 Security.xml:3382 Security.xml:3545
+#: Security.xml:630 Security.xml:764 Security.xml:3385 Security.xml:3548
#, no-c-format
msgid "Annotation"
msgstr ""
@@ -1203,8 +1203,8 @@
#. Tag: para
#: Security.xml:636 Security.xml:770 Security.xml:966 Security.xml:1418
-#: Security.xml:2147 Security.xml:2756 Security.xml:3171 Security.xml:3388
-#: Security.xml:3551 Security.xml:3792 Security.xml:4229
+#: Security.xml:2147 Security.xml:2756 Security.xml:3174 Security.xml:3391
+#: Security.xml:3554 Security.xml:3795 Security.xml:4232
#, no-c-format
msgid "Description"
msgstr ""
@@ -2228,8 +2228,8 @@
msgstr ""
#. Tag: para
-#: Security.xml:1412 Security.xml:1828 Security.xml:2753 Security.xml:3168
-#: Security.xml:3789 Security.xml:3958
+#: Security.xml:1412 Security.xml:1828 Security.xml:2753 Security.xml:3171
+#: Security.xml:3792 Security.xml:3961
#, no-c-format
msgid "Method"
msgstr ""
@@ -2250,9 +2250,9 @@
#: Security.xml:1433 Security.xml:1452 Security.xml:1471 Security.xml:1490
#: Security.xml:1509 Security.xml:1529 Security.xml:1548 Security.xml:1567
#: Security.xml:1586 Security.xml:1606 Security.xml:1626 Security.xml:1740
-#: Security.xml:1762 Security.xml:1780 Security.xml:2766 Security.xml:3239
-#: Security.xml:3258 Security.xml:3277 Security.xml:3295 Security.xml:3840
-#: Security.xml:3859 Security.xml:3878 Security.xml:3897
+#: Security.xml:1762 Security.xml:1780 Security.xml:2766 Security.xml:3242
+#: Security.xml:3261 Security.xml:3280 Security.xml:3298 Security.xml:3843
+#: Security.xml:3862 Security.xml:3881 Security.xml:3900
#, no-c-format
msgid "boolean"
msgstr ""
@@ -2558,13 +2558,13 @@
msgstr ""
#. Tag: para
-#: Security.xml:1831 Security.xml:3961
+#: Security.xml:1831 Security.xml:3964
#, no-c-format
msgid "Permission Target"
msgstr ""
#. Tag: para
-#: Security.xml:1834 Security.xml:3964
+#: Security.xml:1834 Security.xml:3967
#, no-c-format
msgid "Permission Action"
msgstr ""
@@ -3806,7 +3806,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2750 Security.xml:3165 Security.xml:3786
+#: Security.xml:2750 Security.xml:3168 Security.xml:3789
#, no-c-format
msgid "Return type"
msgstr ""
@@ -3986,41 +3986,47 @@
#. Tag: para
#: Security.xml:2917
#, no-c-format
-msgid "drools-compiler.jar"
+msgid "drools-api.jar"
msgstr ""
#. Tag: para
#: Security.xml:2920
#, no-c-format
-msgid "drools-core.jar"
+msgid "drools-compiler.jar"
msgstr ""
#. Tag: para
#: Security.xml:2923
#, no-c-format
-msgid "janino.jar"
+msgid "drools-core.jar"
msgstr ""
#. Tag: para
#: Security.xml:2926
#, no-c-format
-msgid "antlr-runtime.jar"
+msgid "janino.jar"
msgstr ""
#. Tag: para
#: Security.xml:2929
#, no-c-format
-msgid "mvel14.jar"
+msgid "antlr-runtime.jar"
msgstr ""
+#. Tag: para
+#: Security.xml:2932
+#, no-c-format
+msgid "mvel2.jar"
+msgstr ""
+
#. Tag: title
-#: Security.xml:2936 Security.xml:3128
+#: Security.xml:2939 Security.xml:3131
#, no-c-format
msgid "Configuration"
msgstr ""
#. Tag: para
-#: Security.xml:2938
+#: Security.xml:2941
#, no-c-format
msgid ""
"The configuration for <literal>RuleBasedPermissionResolver</literal> "
@@ -4030,7 +4036,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:2944
+#: Security.xml:2947
#, no-c-format
msgid ""
"<![CDATA[<components xmlns=\"http://jboss.com/products/seam/components\"\n"
@@ -4058,7 +4064,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2946
+#: Security.xml:2949
#, no-c-format
msgid ""
"The default rule base name can be overridden by specifying the "
@@ -4067,7 +4073,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:2951
+#: Security.xml:2954
#, no-c-format
msgid ""
"<![CDATA[\n"
@@ -4076,7 +4082,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2953
+#: Security.xml:2956
#, no-c-format
msgid ""
"Once the <literal>RuleBase</literal> component is configured, it's time to "
@@ -4084,13 +4090,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:2959
+#: Security.xml:2962
#, no-c-format
msgid "Writing Security Rules"
msgstr ""
#. Tag: para
-#: Security.xml:2961
+#: Security.xml:2964
#, no-c-format
msgid ""
"The first step to writing security rules is to create a new rule file in the "
@@ -4101,7 +4107,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2968
+#: Security.xml:2971
#, no-c-format
msgid ""
"So what should the security rules file contain? At this stage it might be a "
@@ -4110,7 +4116,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:2973
+#: Security.xml:2976
#, no-c-format
msgid ""
"<![CDATA[package MyApplicationPermissions;\n"
@@ -4128,7 +4134,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2975
+#: Security.xml:2978
#, no-c-format
msgid ""
"Let's break this down step by step. The first thing we see is the package "
@@ -4138,7 +4144,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2981
+#: Security.xml:2984
#, no-c-format
msgid ""
"The next thing we can notice is a couple of import statements for the "
@@ -4148,7 +4154,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2987
+#: Security.xml:2990
#, no-c-format
msgid ""
"Finally we have the code for the rule. Each rule within a package should be "
@@ -4158,7 +4164,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2993
+#: Security.xml:2996
#, no-c-format
msgid ""
"Looking at the body of the rule definition we can notice two distinct "
@@ -4173,7 +4179,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3002
+#: Security.xml:3005
#, no-c-format
msgid ""
"If we look at the LHS of the rule, we see two conditions listed there. Let's "
@@ -4181,14 +4187,14 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3006
+#: Security.xml:3009
#, no-c-format
msgid ""
"<![CDATA[c: PermissionCheck(target == \"customer\", action == \"delete\")]]>"
msgstr ""
#. Tag: para
-#: Security.xml:3008
+#: Security.xml:3011
#, no-c-format
msgid ""
"In plain english, this condition is stating that there must exist a "
@@ -4198,7 +4204,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3014
+#: Security.xml:3017
#, no-c-format
msgid ""
"So what is the working memory? Also known as a \"stateful session\" in "
@@ -4216,7 +4222,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3026
+#: Security.xml:3029
#, no-c-format
msgid ""
"Besides the <literal>PermissionCheck</literal> facts, there is also a "
@@ -4233,7 +4239,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3037
+#: Security.xml:3040
#, no-c-format
msgid ""
"It is also possible to insert additional long-lived facts into the working "
@@ -4244,7 +4250,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3044
+#: Security.xml:3047
#, no-c-format
msgid ""
"Getting back to our simple example, we can also notice that the first line "
@@ -4255,13 +4261,13 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3051
+#: Security.xml:3054
#, no-c-format
msgid "<![CDATA[Role(name == \"admin\")]]>"
msgstr ""
#. Tag: para
-#: Security.xml:3053
+#: Security.xml:3056
#, no-c-format
msgid ""
"This condition simply states that there must be a <literal>Role</literal> "
@@ -4274,7 +4280,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3061
+#: Security.xml:3064
#, no-c-format
msgid ""
"So what is the consequence of the rule firing? Let's take a look at the RHS "
@@ -4282,13 +4288,13 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3065
+#: Security.xml:3068
#, no-c-format
msgid "<![CDATA[c.grant()]]>"
msgstr ""
#. Tag: para
-#: Security.xml:3067
+#: Security.xml:3070
#, no-c-format
msgid ""
"The RHS consists of Java code, and in this case is invoking the "
@@ -4305,13 +4311,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3081
+#: Security.xml:3084
#, no-c-format
msgid "Non-String permission targets"
msgstr ""
#. Tag: para
-#: Security.xml:3083
+#: Security.xml:3086
#, no-c-format
msgid ""
"So far we have only seen permission checks for String-literal permission "
@@ -4325,7 +4331,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3092
+#: Security.xml:3095
#, no-c-format
msgid ""
"<![CDATA[rule CanCreateBlogComment\n"
@@ -4343,13 +4349,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3097
+#: Security.xml:3100
#, no-c-format
msgid "Wildcard permission checks"
msgstr ""
#. Tag: para
-#: Security.xml:3099
+#: Security.xml:3102
#, no-c-format
msgid ""
"It is possible to implement a wildcard permission check (which allows all "
@@ -4359,7 +4365,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3105
+#: Security.xml:3108
#, no-c-format
msgid ""
"<![CDATA[rule CanDoAnythingToCustomersIfYouAreAnAdmin\n"
@@ -4373,7 +4379,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3107
+#: Security.xml:3110
#, no-c-format
msgid ""
"This rule allows users with the <literal>admin</literal> role to perform "
@@ -4382,13 +4388,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3117
+#: Security.xml:3120
#, no-c-format
msgid "PersistentPermissionResolver"
msgstr ""
#. Tag: para
-#: Security.xml:3119
+#: Security.xml:3122
#, no-c-format
msgid ""
"Another built-in permission resolver provided by Seam, "
@@ -4401,7 +4407,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3130
+#: Security.xml:3133
#, no-c-format
msgid ""
"Before it can be used, <literal>PersistentPermissionResolver</literal> must "
@@ -4414,7 +4420,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3138
+#: Security.xml:3141
#, no-c-format
msgid ""
"<![CDATA[ <security:persistent-permission-resolver permission-store=\"#"
@@ -4422,13 +4428,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3143
+#: Security.xml:3146
#, no-c-format
msgid "Permission Stores"
msgstr ""
#. Tag: para
-#: Security.xml:3145
+#: Security.xml:3148
#, no-c-format
msgid ""
"A permission store is required for <literal>PersistentPermissionResolver</"
@@ -4441,26 +4447,26 @@
msgstr ""
#. Tag: title
-#: Security.xml:3155
+#: Security.xml:3158
#, no-c-format
msgid "PermissionStore interface"
msgstr ""
#. Tag: literal
-#: Security.xml:3181 Security.xml:3200 Security.xml:3219 Security.xml:3802
-#: Security.xml:3821
+#: Security.xml:3184 Security.xml:3203 Security.xml:3222 Security.xml:3805
+#: Security.xml:3824
#, no-c-format
msgid "List<Permission>"
msgstr ""
#. Tag: literal
-#: Security.xml:3186 Security.xml:3826
+#: Security.xml:3189 Security.xml:3829
#, no-c-format
msgid "listPermissions(Object target)"
msgstr ""
#. Tag: para
-#: Security.xml:3190
+#: Security.xml:3193
#, no-c-format
msgid ""
"This method should return a <literal>List</literal> of <literal>Permission</"
@@ -4469,13 +4475,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3205 Security.xml:3807
+#: Security.xml:3208 Security.xml:3810
#, no-c-format
msgid "listPermissions(Object target, String action)"
msgstr ""
#. Tag: para
-#: Security.xml:3209
+#: Security.xml:3212
#, no-c-format
msgid ""
"This method should return a <literal>List</literal> of <literal>Permission</"
@@ -4484,13 +4490,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3224
+#: Security.xml:3227
#, no-c-format
msgid "listPermissions(Set<Object> targets, String action)"
msgstr ""
#. Tag: para
-#: Security.xml:3228
+#: Security.xml:3231
#, no-c-format
msgid ""
"This method should return a <literal>List</literal> of <literal>Permission</"
@@ -4499,13 +4505,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3244
+#: Security.xml:3247
#, no-c-format
msgid "grantPermission(Permission)"
msgstr ""
#. Tag: para
-#: Security.xml:3248
+#: Security.xml:3251
#, no-c-format
msgid ""
"This method should persist the specified <literal>Permission</literal> "
@@ -4513,13 +4519,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3263 Security.xml:3864
+#: Security.xml:3266 Security.xml:3867
#, no-c-format
msgid "grantPermissions(List<Permission> permissions)"
msgstr ""
#. Tag: para
-#: Security.xml:3267
+#: Security.xml:3270
#, no-c-format
msgid ""
"This method should persist all of the <literal>Permission</literal> objects "
@@ -4528,13 +4534,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3282 Security.xml:3883
+#: Security.xml:3285 Security.xml:3886
#, no-c-format
msgid "revokePermission(Permission permission)"
msgstr ""
#. Tag: para
-#: Security.xml:3286
+#: Security.xml:3289
#, no-c-format
msgid ""
"This method should remove the specified <literal>Permission</literal> object "
@@ -4542,13 +4548,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3300 Security.xml:3902
+#: Security.xml:3303 Security.xml:3905
#, no-c-format
msgid "revokePermissions(List<Permission> permissions)"
msgstr ""
#. Tag: para
-#: Security.xml:3304
+#: Security.xml:3307
#, no-c-format
msgid ""
"This method should remove all of the <literal>Permission</literal> objects "
@@ -4556,19 +4562,19 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3314 Security.xml:3916
+#: Security.xml:3317 Security.xml:3919
#, no-c-format
msgid "List<String>"
msgstr ""
#. Tag: literal
-#: Security.xml:3319 Security.xml:3921
+#: Security.xml:3322 Security.xml:3924
#, no-c-format
msgid "listAvailableActions(Object target)"
msgstr ""
#. Tag: para
-#: Security.xml:3323
+#: Security.xml:3326
#, no-c-format
msgid ""
"This method should return a list of all the available actions (as Strings) "
@@ -4578,13 +4584,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3337
+#: Security.xml:3340
#, no-c-format
msgid "JpaPermissionStore"
msgstr ""
#. Tag: para
-#: Security.xml:3339
+#: Security.xml:3342
#, no-c-format
msgid ""
"This is the default <literal>PermissionStore</literal> implementation (and "
@@ -4597,7 +4603,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3347
+#: Security.xml:3350
#, no-c-format
msgid ""
"If you wish to use the same entity (i.e. a single database table) to store "
@@ -4609,7 +4615,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3354
+#: Security.xml:3357
#, no-c-format
msgid ""
"For example, to configure a single entity class to store both user and role "
@@ -4617,7 +4623,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3356
+#: Security.xml:3359
#, no-c-format
msgid ""
"<![CDATA[ <security:jpa-permission-store user-permission-class=\"com.acme."
@@ -4625,14 +4631,14 @@
msgstr ""
#. Tag: para
-#: Security.xml:3358
+#: Security.xml:3361
#, no-c-format
msgid ""
"To configure separate entity classes for storing user and role permissions:"
msgstr ""
#. Tag: programlisting
-#: Security.xml:3360
+#: Security.xml:3363
#, no-c-format
msgid ""
"<![CDATA[ <security:jpa-permission-store user-permission-class=\"com.acme."
@@ -4641,13 +4647,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3363
+#: Security.xml:3366
#, no-c-format
msgid "Permission annotations"
msgstr ""
#. Tag: para
-#: Security.xml:3365
+#: Security.xml:3368
#, no-c-format
msgid ""
"As mentioned, the entity classes that contain the user and role permissions "
@@ -4658,32 +4664,32 @@
msgstr ""
#. Tag: title
-#: Security.xml:3372
+#: Security.xml:3375
#, no-c-format
msgid "Entity Permission annotations"
msgstr ""
#. Tag: para
-#: Security.xml:3385 Security.xml:3548
+#: Security.xml:3388 Security.xml:3551
#, no-c-format
msgid "Target"
msgstr ""
#. Tag: literal
-#: Security.xml:3398
+#: Security.xml:3401
#, no-c-format
msgid "@PermissionTarget"
msgstr ""
#. Tag: literal
-#: Security.xml:3403 Security.xml:3422 Security.xml:3441 Security.xml:3460
-#: Security.xml:3479
+#: Security.xml:3406 Security.xml:3425 Security.xml:3444 Security.xml:3463
+#: Security.xml:3482
#, no-c-format
msgid "FIELD,METHOD"
msgstr ""
#. Tag: para
-#: Security.xml:3407
+#: Security.xml:3410
#, no-c-format
msgid ""
"This annotation identifies the property of the entity that will contain the "
@@ -4692,13 +4698,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3417
+#: Security.xml:3420
#, no-c-format
msgid "@PermissionAction"
msgstr ""
#. Tag: para
-#: Security.xml:3426
+#: Security.xml:3429
#, no-c-format
msgid ""
"This annotation identifies the property of the entity that will contain the "
@@ -4707,13 +4713,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3436
+#: Security.xml:3439
#, no-c-format
msgid "@PermissionUser"
msgstr ""
#. Tag: para
-#: Security.xml:3445
+#: Security.xml:3448
#, no-c-format
msgid ""
"This annotation identifies the property of the entity that will contain the "
@@ -4722,13 +4728,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3455
+#: Security.xml:3458
#, no-c-format
msgid "@PermissionRole"
msgstr ""
#. Tag: para
-#: Security.xml:3464
+#: Security.xml:3467
#, no-c-format
msgid ""
"This annotation identifies the property of the entity that will contain the "
@@ -4737,13 +4743,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3474
+#: Security.xml:3477
#, no-c-format
msgid "@PermissionDiscriminator"
msgstr ""
#. Tag: para
-#: Security.xml:3483
+#: Security.xml:3486
#, no-c-format
msgid ""
"This annotation should be used when the same entity/table is used to store "
@@ -4760,20 +4766,20 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3493
+#: Security.xml:3496
#, no-c-format
msgid ""
"<![CDATA[ @PermissionDiscriminator(userValue = \"u\", roleValue = \"r\")]]>"
msgstr ""
#. Tag: title
-#: Security.xml:3504
+#: Security.xml:3507
#, no-c-format
msgid "Example Entity"
msgstr ""
#. Tag: para
-#: Security.xml:3506
+#: Security.xml:3509
#, no-c-format
msgid ""
"Here is an example of an entity class that is used to store both user and "
@@ -4782,7 +4788,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3511
+#: Security.xml:3514
#, no-c-format
msgid ""
"<![CDATA[\n"
@@ -4843,7 +4849,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3513
+#: Security.xml:3516
#, no-c-format
msgid ""
"As can be seen in the above example, the <literal>getDiscriminator()</"
@@ -4860,13 +4866,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3526
+#: Security.xml:3529
#, no-c-format
msgid "Class-specific Permission Configuration"
msgstr ""
#. Tag: para
-#: Security.xml:3528
+#: Security.xml:3531
#, no-c-format
msgid ""
"A further set of class-specific annotations can be used to configure a "
@@ -4876,25 +4882,25 @@
msgstr ""
#. Tag: title
-#: Security.xml:3535
+#: Security.xml:3538
#, no-c-format
msgid "Class Permission Annotations"
msgstr ""
#. Tag: literal
-#: Security.xml:3561
+#: Security.xml:3564
#, no-c-format
msgid "@Permissions"
msgstr ""
#. Tag: literal
-#: Security.xml:3566 Security.xml:3584
+#: Security.xml:3569 Security.xml:3587
#, no-c-format
msgid "TYPE"
msgstr ""
#. Tag: para
-#: Security.xml:3570
+#: Security.xml:3573
#, no-c-format
msgid ""
"A container annotation, this annotation may contain an array of "
@@ -4902,13 +4908,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3579
+#: Security.xml:3582
#, no-c-format
msgid "@Permission"
msgstr ""
#. Tag: para
-#: Security.xml:3588
+#: Security.xml:3591
#, no-c-format
msgid ""
"This annotation defines a single allowable permission action for the target "
@@ -4919,7 +4925,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3600
+#: Security.xml:3603
#, no-c-format
msgid ""
"Here's an example of the above annotations in action. The following class "
@@ -4927,7 +4933,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3604
+#: Security.xml:3607
#, no-c-format
msgid ""
"<![CDATA[@Permissions({\n"
@@ -4939,7 +4945,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3606
+#: Security.xml:3609
#, no-c-format
msgid ""
"This example demonstrates how two allowable permission actions, "
@@ -4948,13 +4954,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3614
+#: Security.xml:3617
#, no-c-format
msgid "Permission masks"
msgstr ""
#. Tag: para
-#: Security.xml:3616
+#: Security.xml:3619
#, no-c-format
msgid ""
"By default, multiple permissions for the same target object and recipient "
@@ -4966,7 +4972,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3623
+#: Security.xml:3626
#, no-c-format
msgid ""
"For example, if recipient \"Bob\" is granted both the <literal>view</"
@@ -4979,7 +4985,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3630
+#: Security.xml:3633
#, no-c-format
msgid ""
"<![CDATA[@Permissions({\n"
@@ -4991,7 +4997,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3632
+#: Security.xml:3635
#, no-c-format
msgid ""
"The <literal>action</literal> property will instead simply contain \"3"
@@ -5001,7 +5007,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3638
+#: Security.xml:3641
#, no-c-format
msgid ""
"Obviously, it is very important that the <literal>mask</literal> values "
@@ -5009,13 +5015,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3644
+#: Security.xml:3647
#, no-c-format
msgid "Identifier Policy"
msgstr ""
#. Tag: para
-#: Security.xml:3646
+#: Security.xml:3649
#, no-c-format
msgid ""
"When storing or looking up permissions, <literal>JpaPermissionStore</"
@@ -5029,7 +5035,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3654
+#: Security.xml:3657
#, no-c-format
msgid ""
"The <literal>IdentifierStrategy</literal> interface is very simple, "
@@ -5037,7 +5043,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3658
+#: Security.xml:3661
#, no-c-format
msgid ""
"<![CDATA[public interface IdentifierStrategy {\n"
@@ -5047,7 +5053,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3660
+#: Security.xml:3663
#, no-c-format
msgid ""
"The first method, <literal>canIdentify()</literal> simply returns "
@@ -5058,7 +5064,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3666
+#: Security.xml:3669
#, no-c-format
msgid ""
"Seam provides two <literal>IdentifierStrategy</literal> implementations, "
@@ -5067,7 +5073,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3671
+#: Security.xml:3674
#, no-c-format
msgid ""
"To explicitly configure a specific identifier strategy to use for a "
@@ -5080,13 +5086,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3681
+#: Security.xml:3684
#, no-c-format
msgid "ClassIdentifierStrategy"
msgstr ""
#. Tag: para
-#: Security.xml:3683
+#: Security.xml:3686
#, no-c-format
msgid ""
"This identifier strategy is used to generate unique identifiers for classes, "
@@ -5100,7 +5106,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3692
+#: Security.xml:3695
#, no-c-format
msgid ""
"<![CDATA[@Identifier(name = \"customer\")\n"
@@ -5108,7 +5114,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3694
+#: Security.xml:3697
#, no-c-format
msgid ""
"The identifier for the following class will be \"<literal>customerAction</"
@@ -5116,7 +5122,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3698
+#: Security.xml:3701
#, no-c-format
msgid ""
"<![CDATA[@Name(\"customerAction\")\n"
@@ -5124,7 +5130,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3700
+#: Security.xml:3703
#, no-c-format
msgid ""
"Finally, the identifier for the following class will be \"<literal>Customer</"
@@ -5132,19 +5138,19 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3704
+#: Security.xml:3707
#, no-c-format
msgid "<![CDATA[public class Customer { ]]>"
msgstr ""
#. Tag: title
-#: Security.xml:3709
+#: Security.xml:3712
#, no-c-format
msgid "EntityIdentifierStrategy"
msgstr ""
#. Tag: para
-#: Security.xml:3711
+#: Security.xml:3714
#, no-c-format
msgid ""
"This identifier strategy is used to generate unique identifiers for entity "
@@ -5161,7 +5167,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3722
+#: Security.xml:3725
#, no-c-format
msgid ""
"<![CDATA[@Identifier(value = EntityIdentifierStrategy.class)\n"
@@ -5169,7 +5175,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3724
+#: Security.xml:3727
#, no-c-format
msgid ""
"For an example of the type of identifier values generated, assume we have "
@@ -5177,7 +5183,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3728
+#: Security.xml:3731
#, no-c-format
msgid ""
"<![CDATA[@Entity\n"
@@ -5200,7 +5206,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3730
+#: Security.xml:3733
#, no-c-format
msgid ""
"For a <literal>Customer</literal> instance with an <literal>id</literal> "
@@ -5210,7 +5216,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3736
+#: Security.xml:3739
#, no-c-format
msgid ""
"<![CDATA[@Entity\n"
@@ -5219,7 +5225,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3738
+#: Security.xml:3741
#, no-c-format
msgid ""
"Then a <literal>Customer</literal> with an <literal>id</literal> value of "
@@ -5228,13 +5234,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3751
+#: Security.xml:3754
#, no-c-format
msgid "Permission Management"
msgstr ""
#. Tag: para
-#: Security.xml:3753
+#: Security.xml:3756
#, no-c-format
msgid ""
"In much the same way that Seam Security provides an Identity Management API "
@@ -5244,13 +5250,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3760
+#: Security.xml:3763
#, no-c-format
msgid "PermissionManager"
msgstr ""
#. Tag: para
-#: Security.xml:3762
+#: Security.xml:3765
#, no-c-format
msgid ""
"The <literal>PermissionManager</literal> component is an application-scoped "
@@ -5263,7 +5269,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3769
+#: Security.xml:3772
#, no-c-format
msgid ""
"<![CDATA[\n"
@@ -5273,7 +5279,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3771
+#: Security.xml:3774
#, no-c-format
msgid ""
"The following table describes each of the available methods provided by "
@@ -5281,13 +5287,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3776
+#: Security.xml:3779
#, no-c-format
msgid "PermissionManager API methods"
msgstr ""
#. Tag: para
-#: Security.xml:3811 Security.xml:3830
+#: Security.xml:3814 Security.xml:3833
#, no-c-format
msgid ""
"Returns a list of <literal>Permission</literal> objects representing all of "
@@ -5295,13 +5301,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3845
+#: Security.xml:3848
#, no-c-format
msgid "grantPermission(Permission permission)"
msgstr ""
#. Tag: para
-#: Security.xml:3849
+#: Security.xml:3852
#, no-c-format
msgid ""
"Persists (grants) the specified <literal>Permission</literal> to the backend "
@@ -5309,7 +5315,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3868
+#: Security.xml:3871
#, no-c-format
msgid ""
"Persists (grants) the specified list of <literal>Permission</literal>s to "
@@ -5317,7 +5323,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3887
+#: Security.xml:3890
#, no-c-format
msgid ""
"Removes (revokes) the specified <literal>Permission</literal> from the "
@@ -5325,7 +5331,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3906
+#: Security.xml:3909
#, no-c-format
msgid ""
"Removes (revokes) the specified list of <literal>Permission</literal>s from "
@@ -5333,7 +5339,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3925
+#: Security.xml:3928
#, no-c-format
msgid ""
"Returns a list of the available actions for the specified target object. The "
@@ -5342,13 +5348,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3940
+#: Security.xml:3943
#, no-c-format
msgid "Permission checks for PermissionManager operations"
msgstr ""
#. Tag: para
-#: Security.xml:3942
+#: Security.xml:3945
#, no-c-format
msgid ""
"Invoking the methods of <literal>PermissionManager</literal> requires that "
@@ -5358,37 +5364,37 @@
msgstr ""
#. Tag: title
-#: Security.xml:3949
+#: Security.xml:3952
#, no-c-format
msgid "Permission Management Security Permissions"
msgstr ""
#. Tag: literal
-#: Security.xml:3973
+#: Security.xml:3976
#, no-c-format
msgid "listPermissions()"
msgstr ""
#. Tag: para
-#: Security.xml:3977
+#: Security.xml:3980
#, no-c-format
msgid "The specified <literal>target</literal>"
msgstr ""
#. Tag: literal
-#: Security.xml:3983
+#: Security.xml:3986
#, no-c-format
msgid "seam.read-permissions"
msgstr ""
#. Tag: literal
-#: Security.xml:3991 Security.xml:4011
+#: Security.xml:3994 Security.xml:4014
#, no-c-format
msgid "grantPermission()"
msgstr ""
#. Tag: para
-#: Security.xml:3995
+#: Security.xml:3998
#, no-c-format
msgid ""
"The target of the specified <literal>Permission</literal>, or each of the "
@@ -5397,56 +5403,56 @@
msgstr ""
#. Tag: literal
-#: Security.xml:4003 Security.xml:4021 Security.xml:4039
+#: Security.xml:4006 Security.xml:4024 Security.xml:4042
#, no-c-format
msgid "seam.grant-permission"
msgstr ""
#. Tag: para
-#: Security.xml:4015 Security.xml:4051
+#: Security.xml:4018 Security.xml:4054
#, no-c-format
msgid "The target of the specified <literal>Permission</literal>."
msgstr ""
#. Tag: literal
-#: Security.xml:4029
+#: Security.xml:4032
#, no-c-format
msgid "grantPermissions()"
msgstr ""
#. Tag: para
-#: Security.xml:4033 Security.xml:4069
+#: Security.xml:4036 Security.xml:4072
#, no-c-format
msgid ""
"Each of the targets of the specified list of <literal>Permission</literal>s."
msgstr ""
#. Tag: literal
-#: Security.xml:4047
+#: Security.xml:4050
#, no-c-format
msgid "revokePermission()"
msgstr ""
#. Tag: literal
-#: Security.xml:4057 Security.xml:4075
+#: Security.xml:4060 Security.xml:4078
#, no-c-format
msgid "seam.revoke-permission"
msgstr ""
#. Tag: literal
-#: Security.xml:4065
+#: Security.xml:4068
#, no-c-format
msgid "revokePermissions()"
msgstr ""
#. Tag: title
-#: Security.xml:4088
+#: Security.xml:4091
#, no-c-format
msgid "SSL Security"
msgstr ""
#. Tag: para
-#: Security.xml:4090
+#: Security.xml:4093
#, no-c-format
msgid ""
"Seam includes basic support for serving sensitive pages via the HTTPS "
@@ -5457,13 +5463,13 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4097
+#: Security.xml:4100
#, no-c-format
msgid "<![CDATA[<page view-id=\"/login.xhtml\" scheme=\"https\"/>]]>"
msgstr ""
#. Tag: para
-#: Security.xml:4099
+#: Security.xml:4102
#, no-c-format
msgid ""
"This configuration is automatically extended to both <literal>s:link</"
@@ -5475,13 +5481,13 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4106
+#: Security.xml:4109
#, no-c-format
msgid "<![CDATA[<s:link view=\"/login.xhtml\" value=\"Login\"/>]]>"
msgstr ""
#. Tag: para
-#: Security.xml:4108
+#: Security.xml:4111
#, no-c-format
msgid ""
"Browsing directly to a view when using the <emphasis>incorrect</emphasis> "
@@ -5492,7 +5498,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4115
+#: Security.xml:4118
#, no-c-format
msgid ""
"It is also possible to configure a <emphasis>default scheme</emphasis> for "
@@ -5506,13 +5512,13 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4124
+#: Security.xml:4127
#, no-c-format
msgid "<![CDATA[<page view-id=\"*\" scheme=\"http\" />]]>"
msgstr ""
#. Tag: para
-#: Security.xml:4126
+#: Security.xml:4129
#, no-c-format
msgid ""
"Of course, if <emphasis>none</emphasis> of the pages in your application use "
@@ -5520,7 +5526,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4131
+#: Security.xml:4134
#, no-c-format
msgid ""
"You may configure Seam to automatically invalidate the current HTTP session "
@@ -5529,13 +5535,13 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4136
+#: Security.xml:4139
#, no-c-format
msgid "<![CDATA[<web:session invalidate-on-scheme-change=\"true\"/>]]>"
msgstr ""
#. Tag: para
-#: Security.xml:4138
+#: Security.xml:4141
#, no-c-format
msgid ""
"This option helps make your system less vulnerable to sniffing of the "
@@ -5544,13 +5550,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4144
+#: Security.xml:4147
#, no-c-format
msgid "Overriding the default ports"
msgstr ""
#. Tag: para
-#: Security.xml:4146
+#: Security.xml:4149
#, no-c-format
msgid ""
"If you wish to configure the HTTP and HTTPS ports manually, they may be "
@@ -5560,7 +5566,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4152
+#: Security.xml:4155
#, no-c-format
msgid ""
"<![CDATA[\n"
@@ -5576,13 +5582,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4158
+#: Security.xml:4161
#, no-c-format
msgid "CAPTCHA"
msgstr ""
#. Tag: para
-#: Security.xml:4160
+#: Security.xml:4163
#, no-c-format
msgid ""
"Though strictly not part of the security API, Seam provides a built-in "
@@ -5594,13 +5600,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4168
+#: Security.xml:4171
#, no-c-format
msgid "Configuring the CAPTCHA Servlet"
msgstr ""
#. Tag: para
-#: Security.xml:4169
+#: Security.xml:4172
#, no-c-format
msgid ""
"To get up and running, it is necessary to configure the Seam Resource "
@@ -5609,7 +5615,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4174
+#: Security.xml:4177
#, no-c-format
msgid ""
"<![CDATA[<servlet>\n"
@@ -5625,20 +5631,20 @@
msgstr ""
#. Tag: title
-#: Security.xml:4179
+#: Security.xml:4182
#, no-c-format
msgid "Adding a CAPTCHA to a form"
msgstr ""
#. Tag: para
-#: Security.xml:4181
+#: Security.xml:4184
#, no-c-format
msgid ""
"Adding a CAPTCHA challenge to a form is extremely easy. Here's an example:"
msgstr ""
#. Tag: programlisting
-#: Security.xml:4185
+#: Security.xml:4188
#, no-c-format
msgid ""
"<![CDATA[<h:graphicImage value=\"/seam/resource/captcha\"/>\n"
@@ -5650,7 +5656,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4187
+#: Security.xml:4190
#, no-c-format
msgid ""
"That's all there is to it. The <literal>graphicImage</literal> control "
@@ -5660,20 +5666,20 @@
msgstr ""
#. Tag: title
-#: Security.xml:4196
+#: Security.xml:4199
#, no-c-format
msgid "Customising the CAPTCHA algorithm"
msgstr ""
#. Tag: para
-#: Security.xml:4198
+#: Security.xml:4201
#, no-c-format
msgid ""
"You may customize the CAPTCHA algorithm by overriding the built-in component:"
msgstr ""
#. Tag: programlisting
-#: Security.xml:4202
+#: Security.xml:4205
#, no-c-format
msgid ""
"<![CDATA[@Name(\"org.jboss.seam.captcha.captcha\")\n"
@@ -5700,13 +5706,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4209 Security.xml:4217
+#: Security.xml:4212 Security.xml:4220
#, no-c-format
msgid "Security Events"
msgstr ""
#. Tag: para
-#: Security.xml:4211
+#: Security.xml:4214
#, no-c-format
msgid ""
"The following table describes a number of events (see <xref linkend=\"events"
@@ -5714,68 +5720,68 @@
msgstr ""
#. Tag: para
-#: Security.xml:4226
+#: Security.xml:4229
#, no-c-format
msgid "Event Key"
msgstr ""
#. Tag: literal
-#: Security.xml:4239
+#: Security.xml:4242
#, no-c-format
msgid "org.jboss.seam.security.loginSuccessful"
msgstr ""
#. Tag: para
-#: Security.xml:4243
+#: Security.xml:4246
#, no-c-format
msgid "Raised when a login attempt is successful."
msgstr ""
#. Tag: literal
-#: Security.xml:4251
+#: Security.xml:4254
#, no-c-format
msgid "org.jboss.seam.security.loginFailed"
msgstr ""
#. Tag: para
-#: Security.xml:4255
+#: Security.xml:4258
#, no-c-format
msgid "Raised when a login attempt fails."
msgstr ""
#. Tag: literal
-#: Security.xml:4263
+#: Security.xml:4266
#, no-c-format
msgid "org.jboss.seam.security.alreadyLoggedIn"
msgstr ""
#. Tag: para
-#: Security.xml:4267
+#: Security.xml:4270
#, no-c-format
msgid ""
"Raised when a user that is already authenticated attempts to log in again."
msgstr ""
#. Tag: literal
-#: Security.xml:4275
+#: Security.xml:4278
#, no-c-format
msgid "org.jboss.seam.security.notLoggedIn"
msgstr ""
#. Tag: para
-#: Security.xml:4279
+#: Security.xml:4282
#, no-c-format
msgid "Raised when a security check fails when the user is not logged in."
msgstr ""
#. Tag: literal
-#: Security.xml:4287
+#: Security.xml:4290
#, no-c-format
msgid "org.jboss.seam.security.notAuthorized"
msgstr ""
#. Tag: para
-#: Security.xml:4291
+#: Security.xml:4294
#, no-c-format
msgid ""
"Raised when a security check fails when the user is logged in however "
@@ -5783,73 +5789,73 @@
msgstr ""
#. Tag: literal
-#: Security.xml:4299
+#: Security.xml:4302
#, no-c-format
msgid "org.jboss.seam.security.preAuthenticate"
msgstr ""
#. Tag: para
-#: Security.xml:4303
+#: Security.xml:4306
#, no-c-format
msgid "Raised just prior to user authentication."
msgstr ""
#. Tag: literal
-#: Security.xml:4311
+#: Security.xml:4314
#, no-c-format
msgid "org.jboss.seam.security.postAuthenticate"
msgstr ""
#. Tag: para
-#: Security.xml:4315
+#: Security.xml:4318
#, no-c-format
msgid "Raised just after user authentication."
msgstr ""
#. Tag: literal
-#: Security.xml:4323
+#: Security.xml:4326
#, no-c-format
msgid "org.jboss.seam.security.loggedOut"
msgstr ""
#. Tag: para
-#: Security.xml:4327
+#: Security.xml:4330
#, no-c-format
msgid "Raised after the user has logged out."
msgstr ""
#. Tag: literal
-#: Security.xml:4335
+#: Security.xml:4338
#, no-c-format
msgid "org.jboss.seam.security.credentialsUpdated"
msgstr ""
#. Tag: para
-#: Security.xml:4339
+#: Security.xml:4342
#, no-c-format
msgid "Raised when the user's credentials have been changed."
msgstr ""
#. Tag: literal
-#: Security.xml:4347
+#: Security.xml:4350
#, no-c-format
msgid "org.jboss.seam.security.rememberMe"
msgstr ""
#. Tag: para
-#: Security.xml:4351
+#: Security.xml:4354
#, no-c-format
msgid "Raised when the Identity's rememberMe property is changed."
msgstr ""
#. Tag: title
-#: Security.xml:4364
+#: Security.xml:4367
#, no-c-format
msgid "Run As"
msgstr ""
#. Tag: para
-#: Security.xml:4366
+#: Security.xml:4369
#, no-c-format
msgid ""
"Sometimes it may be necessary to perform certain operations with elevated "
@@ -5861,7 +5867,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4374
+#: Security.xml:4377
#, no-c-format
msgid ""
"The following code example demonstrates how <literal>RunAsOperation</"
@@ -5872,7 +5878,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4381
+#: Security.xml:4384
#, no-c-format
msgid ""
"<![CDATA[ new RunAsOperation() { \n"
@@ -5884,7 +5890,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4383
+#: Security.xml:4386
#, no-c-format
msgid ""
"In a similar way, the <literal>getPrincipal()</literal> or "
@@ -5895,13 +5901,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4394
+#: Security.xml:4397
#, no-c-format
msgid "Extending the Identity component"
msgstr ""
#. Tag: para
-#: Security.xml:4396
+#: Security.xml:4399
#, no-c-format
msgid ""
"Sometimes it might be necessary to extend the Identity component if your "
@@ -5914,7 +5920,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4404
+#: Security.xml:4407
#, no-c-format
msgid ""
"<![CDATA[@Name(\"org.jboss.seam.security.identity\")\n"
@@ -5949,7 +5955,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4407
+#: Security.xml:4410
#, no-c-format
msgid ""
"Note that an <literal>Identity</literal> component must be marked "
@@ -5959,13 +5965,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4419
+#: Security.xml:4422
#, no-c-format
msgid "OpenID"
msgstr ""
#. Tag: para
-#: Security.xml:4421
+#: Security.xml:4424
#, no-c-format
msgid ""
"OpenID is a community standard for external web-based authentication. The "
@@ -5978,7 +5984,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4430
+#: Security.xml:4433
#, no-c-format
msgid ""
"When using OpenID, the user selects an OpenID provider, and the provider "
@@ -5995,7 +6001,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4439
+#: Security.xml:4442
#, no-c-format
msgid ""
"It's important to realize at this point that authentication does not imply "
@@ -6008,13 +6014,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4449
+#: Security.xml:4452
#, no-c-format
msgid "Configuring OpenID"
msgstr ""
#. Tag: para
-#: Security.xml:4450
+#: Security.xml:4453
#, no-c-format
msgid ""
"Seam uses the openid4java package and requires four additional JARs to make "
@@ -6024,7 +6030,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4456
+#: Security.xml:4459
#, no-c-format
msgid ""
"OpenID processing requires the use of the <literal>OpenIdPhaseListener</"
@@ -6034,7 +6040,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4462
+#: Security.xml:4465
#, no-c-format
msgid ""
"<lifecycle>\n"
@@ -6044,7 +6050,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4465
+#: Security.xml:4468
#, no-c-format
msgid ""
"With this configuration, OpenID support is available to your application. "
@@ -6054,13 +6060,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4473
+#: Security.xml:4476
#, no-c-format
msgid "Presenting an OpenIdDLogin form"
msgstr ""
#. Tag: para
-#: Security.xml:4475
+#: Security.xml:4478
#, no-c-format
msgid ""
"To initiate an OpenID login, you can present a simply form to the user "
@@ -6070,7 +6076,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4480
+#: Security.xml:4483
#, no-c-format
msgid ""
"<h:form>\n"
@@ -6081,7 +6087,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4482
+#: Security.xml:4485
#, no-c-format
msgid ""
"When the user submits the login form, he will be redirected to his OpenID "
@@ -6093,13 +6099,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4491
+#: Security.xml:4494
#, no-c-format
msgid "Logging in immediately"
msgstr ""
#. Tag: para
-#: Security.xml:4493
+#: Security.xml:4496
#, no-c-format
msgid ""
"The simplest strategy is to simply login the user immediately. The following "
@@ -6108,7 +6114,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4497
+#: Security.xml:4500
#, no-c-format
msgid ""
"<page view-id="/openid.xhtml">\n"
@@ -6128,7 +6134,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4499
+#: Security.xml:4502
#, no-c-format
msgid ""
"Thie <literal>loginImmediately()</literal> action checks to see if the "
@@ -6142,13 +6148,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4510
+#: Security.xml:4513
#, no-c-format
msgid "Deferring login"
msgstr ""
#. Tag: para
-#: Security.xml:4512
+#: Security.xml:4515
#, no-c-format
msgid ""
"You may not want the user to be immediately logged in to your application. "
@@ -6165,13 +6171,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4526
+#: Security.xml:4529
#, no-c-format
msgid "Logging out"
msgstr ""
#. Tag: para
-#: Security.xml:4528
+#: Security.xml:4531
#, no-c-format
msgid ""
"Logging out (forgetting an OpenID association) is done by calling <literal>#"
@@ -6182,7 +6188,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4535
+#: Security.xml:4538
#, no-c-format
msgid ""
"<event type="org.jboss.seam.security.loggedOut">\n"
@@ -6191,7 +6197,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4537
+#: Security.xml:4540
#, no-c-format
msgid ""
"It's important that you do not leave this out or the user will not be able "
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/or-IN/Dependencies.po
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/or-IN/Dependencies.po 2009-06-11 20:41:36 UTC (rev 11125)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/or-IN/Dependencies.po 2009-06-11 20:43:04 UTC (rev 11126)
@@ -5,7 +5,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-04-15 13:51+0000\n"
+"POT-Creation-Date: 2009-06-11 18:45+0000\n"
"PO-Revision-Date: 2008-04-04 01:24+0000\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -938,8 +938,8 @@
#: Dependencies.xml:1182
#, no-c-format
msgid ""
-"This sample POM will give you Seam, JPA (provided by Hibernate) and "
-"Hibernate Validator:"
+"This sample POM will give you Seam, JPA (provided by Hibernate), Hibernate "
+"Validator and Hibernate Search:"
msgstr ""
#. Tag: programlisting
@@ -970,25 +970,31 @@
" <dependency>\n"
" <groupId>org.hibernate</groupId>\n"
" <artifactId>hibernate-validator</artifactId>\n"
-" <version>3.0.0.GA</version>\n"
+" <version>3.1.0.GA</version>\n"
" </dependency>\n"
"\n"
" <dependency>\n"
" <groupId>org.hibernate</groupId>\n"
" <artifactId>hibernate-annotations</artifactId>\n"
-" <version>3.3.0.ga</version>\n"
+" <version>3.4.0.GA</version>\n"
" </dependency>\n"
"\n"
" <dependency>\n"
" <groupId>org.hibernate</groupId>\n"
" <artifactId>hibernate-entitymanager</artifactId>\n"
-" <version>3.3.1.ga</version>\n"
+" <version>3.4.0.GA</version>\n"
" </dependency>\n"
+" \n"
+" <dependency>\n"
+" <groupId>org.hibernate</groupId>\n"
+" <artifactId>hibernate-search</artifactId>\n"
+" <version>3.1.1.GA</version>\n"
+" </dependency>\n"
"\n"
" <dependency>\n"
" <groupId>org.jboss.seam</groupId>\n"
" <artifactId>jboss-seam</artifactId>\n"
-" <version>2.0.0.GA</version>\n"
+" <version>2.2.0.GA</version>\n"
" </dependency>\n"
" \n"
" </dependencies>\n"
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/or-IN/Hsearch.po
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/or-IN/Hsearch.po 2009-06-11 20:41:36 UTC (rev 11125)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/or-IN/Hsearch.po 2009-06-11 20:43:04 UTC (rev 11126)
@@ -5,7 +5,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-04-15 13:51+0000\n"
+"POT-Creation-Date: 2009-06-11 18:45+0000\n"
"PO-Revision-Date: 2008-04-04 01:24+0000\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -45,7 +45,7 @@
#: Hsearch.xml:21
#, no-c-format
msgid ""
-"Hibernate Search has been designed to integrates nicely and as naturally as "
+"Hibernate Search has been designed to integrate nicely and as naturally as "
"possible with JPA and Hibernate. As a natural extension, JBoss Seam provides "
"an Hibernate Search integration."
msgstr ""
@@ -132,7 +132,7 @@
" <property name=\"hibernate.ejb.event.post-delete\" \n"
" value=\"org.hibernate.search.event.FullTextIndexEventListener"
"\"/>\n"
-"\n"
+" \n"
" </properties>\n"
"</persistence-unit>]]>"
msgstr ""
@@ -141,12 +141,15 @@
#: Hsearch.xml:52
#, no-c-format
msgid ""
-"This step is no longer necessary if Hibernate Annotation or EntityManager "
-"3.3.x are used."
+"It is not longer necessary the register the event listeners if Hibernate "
+"Annotations or EntityManager 3.3.x are used. When using Hibernate Search 3.1."
+"x more eventlisteners are needed, but these are registered automatically by "
+"Hibernate Annotations; refer to the Hibernate Search reference for "
+"configuring it without EntityManager and Annotations."
msgstr ""
#. Tag: para
-#: Hsearch.xml:56
+#: Hsearch.xml:60
#, no-c-format
msgid ""
"In addition to the configuration file, the following jars have to be "
@@ -154,25 +157,25 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:61
+#: Hsearch.xml:65
#, no-c-format
msgid "hibernate-search.jar"
msgstr ""
#. Tag: para
-#: Hsearch.xml:65
+#: Hsearch.xml:69
#, no-c-format
msgid "hibernate-commons-annotations.jar"
msgstr ""
#. Tag: para
-#: Hsearch.xml:69
+#: Hsearch.xml:73
#, no-c-format
msgid "lucene-core.jar"
msgstr ""
#. Tag: para
-#: Hsearch.xml:74
+#: Hsearch.xml:78
#, no-c-format
msgid ""
"If you deploy those in a EAR, don't forget to update <filename>application."
@@ -180,13 +183,13 @@
msgstr ""
#. Tag: title
-#: Hsearch.xml:80
+#: Hsearch.xml:84
#, no-c-format
msgid "Usage"
msgstr ""
#. Tag: para
-#: Hsearch.xml:82
+#: Hsearch.xml:86
#, no-c-format
msgid ""
"Hibernate Search uses annotations to map entities to a Lucene index, check "
@@ -195,7 +198,7 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:87
+#: Hsearch.xml:91
#, no-c-format
msgid ""
"Hibernate Search is fully integrated with the API and semantic of JPA / "
@@ -206,7 +209,7 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:93
+#: Hsearch.xml:97
#, no-c-format
msgid ""
"When Hibernate Search is present, JBoss Seam injects a "
@@ -214,7 +217,7 @@
msgstr ""
#. Tag: programlisting
-#: Hsearch.xml:96
+#: Hsearch.xml:100
#, no-c-format
msgid ""
"<![CDATA[@Stateful\n"
@@ -237,7 +240,7 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:99
+#: Hsearch.xml:103
#, no-c-format
msgid ""
"<classname>FullTextSession</classname> extends <classname>org.hibernate."
@@ -245,14 +248,14 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:104
+#: Hsearch.xml:108
#, no-c-format
msgid ""
"If the Java Persistence API is used, a smoother integration is proposed."
msgstr ""
#. Tag: programlisting
-#: Hsearch.xml:107
+#: Hsearch.xml:111
#, no-c-format
msgid ""
"<![CDATA[@Stateful\n"
@@ -275,7 +278,7 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:109
+#: Hsearch.xml:113
#, no-c-format
msgid ""
"When Hibernate Search is present, a <classname>FulltextEntityManager</"
@@ -286,7 +289,7 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:116
+#: Hsearch.xml:120
#, no-c-format
msgid ""
"When an EJB 3.0 Session or Message Driven Bean injection is used (i.e. via "
@@ -299,7 +302,7 @@
msgstr ""
#. Tag: programlisting
-#: Hsearch.xml:124
+#: Hsearch.xml:128
#, no-c-format
msgid ""
"<![CDATA[@Stateful\n"
@@ -323,15 +326,15 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:129
+#: Hsearch.xml:133
#, no-c-format
msgid ""
"For people accustomed to Hibernate Search out of Seam, note that using "
-"<methodname>Search.createFullTextSession</methodname> is not necessary."
+"<methodname>Search.getFullTextSession</methodname> is not necessary."
msgstr ""
#. Tag: para
-#: Hsearch.xml:134
+#: Hsearch.xml:138
#, no-c-format
msgid ""
"Check the DVDStore or the blog examples of the JBoss Seam distribution for a "
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/or-IN/Security.po
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/or-IN/Security.po 2009-06-11 20:41:36 UTC (rev 11125)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/or-IN/Security.po 2009-06-11 20:43:04 UTC (rev 11126)
@@ -5,7 +5,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-06-11 07:43+0000\n"
+"POT-Creation-Date: 2009-06-11 18:45+0000\n"
"PO-Revision-Date: 2008-04-04 01:24+0000\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -1190,7 +1190,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:630 Security.xml:764 Security.xml:3382 Security.xml:3545
+#: Security.xml:630 Security.xml:764 Security.xml:3385 Security.xml:3548
#, no-c-format
msgid "Annotation"
msgstr ""
@@ -1203,8 +1203,8 @@
#. Tag: para
#: Security.xml:636 Security.xml:770 Security.xml:966 Security.xml:1418
-#: Security.xml:2147 Security.xml:2756 Security.xml:3171 Security.xml:3388
-#: Security.xml:3551 Security.xml:3792 Security.xml:4229
+#: Security.xml:2147 Security.xml:2756 Security.xml:3174 Security.xml:3391
+#: Security.xml:3554 Security.xml:3795 Security.xml:4232
#, no-c-format
msgid "Description"
msgstr ""
@@ -2228,8 +2228,8 @@
msgstr ""
#. Tag: para
-#: Security.xml:1412 Security.xml:1828 Security.xml:2753 Security.xml:3168
-#: Security.xml:3789 Security.xml:3958
+#: Security.xml:1412 Security.xml:1828 Security.xml:2753 Security.xml:3171
+#: Security.xml:3792 Security.xml:3961
#, no-c-format
msgid "Method"
msgstr ""
@@ -2250,9 +2250,9 @@
#: Security.xml:1433 Security.xml:1452 Security.xml:1471 Security.xml:1490
#: Security.xml:1509 Security.xml:1529 Security.xml:1548 Security.xml:1567
#: Security.xml:1586 Security.xml:1606 Security.xml:1626 Security.xml:1740
-#: Security.xml:1762 Security.xml:1780 Security.xml:2766 Security.xml:3239
-#: Security.xml:3258 Security.xml:3277 Security.xml:3295 Security.xml:3840
-#: Security.xml:3859 Security.xml:3878 Security.xml:3897
+#: Security.xml:1762 Security.xml:1780 Security.xml:2766 Security.xml:3242
+#: Security.xml:3261 Security.xml:3280 Security.xml:3298 Security.xml:3843
+#: Security.xml:3862 Security.xml:3881 Security.xml:3900
#, no-c-format
msgid "boolean"
msgstr ""
@@ -2558,13 +2558,13 @@
msgstr ""
#. Tag: para
-#: Security.xml:1831 Security.xml:3961
+#: Security.xml:1831 Security.xml:3964
#, no-c-format
msgid "Permission Target"
msgstr ""
#. Tag: para
-#: Security.xml:1834 Security.xml:3964
+#: Security.xml:1834 Security.xml:3967
#, no-c-format
msgid "Permission Action"
msgstr ""
@@ -3806,7 +3806,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2750 Security.xml:3165 Security.xml:3786
+#: Security.xml:2750 Security.xml:3168 Security.xml:3789
#, no-c-format
msgid "Return type"
msgstr ""
@@ -3986,41 +3986,47 @@
#. Tag: para
#: Security.xml:2917
#, no-c-format
-msgid "drools-compiler.jar"
+msgid "drools-api.jar"
msgstr ""
#. Tag: para
#: Security.xml:2920
#, no-c-format
-msgid "drools-core.jar"
+msgid "drools-compiler.jar"
msgstr ""
#. Tag: para
#: Security.xml:2923
#, no-c-format
-msgid "janino.jar"
+msgid "drools-core.jar"
msgstr ""
#. Tag: para
#: Security.xml:2926
#, no-c-format
-msgid "antlr-runtime.jar"
+msgid "janino.jar"
msgstr ""
#. Tag: para
#: Security.xml:2929
#, no-c-format
-msgid "mvel14.jar"
+msgid "antlr-runtime.jar"
msgstr ""
+#. Tag: para
+#: Security.xml:2932
+#, no-c-format
+msgid "mvel2.jar"
+msgstr ""
+
#. Tag: title
-#: Security.xml:2936 Security.xml:3128
+#: Security.xml:2939 Security.xml:3131
#, no-c-format
msgid "Configuration"
msgstr ""
#. Tag: para
-#: Security.xml:2938
+#: Security.xml:2941
#, no-c-format
msgid ""
"The configuration for <literal>RuleBasedPermissionResolver</literal> "
@@ -4030,7 +4036,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:2944
+#: Security.xml:2947
#, no-c-format
msgid ""
"<![CDATA[<components xmlns=\"http://jboss.com/products/seam/components\"\n"
@@ -4058,7 +4064,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2946
+#: Security.xml:2949
#, no-c-format
msgid ""
"The default rule base name can be overridden by specifying the "
@@ -4067,7 +4073,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:2951
+#: Security.xml:2954
#, no-c-format
msgid ""
"<![CDATA[\n"
@@ -4076,7 +4082,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2953
+#: Security.xml:2956
#, no-c-format
msgid ""
"Once the <literal>RuleBase</literal> component is configured, it's time to "
@@ -4084,13 +4090,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:2959
+#: Security.xml:2962
#, no-c-format
msgid "Writing Security Rules"
msgstr ""
#. Tag: para
-#: Security.xml:2961
+#: Security.xml:2964
#, no-c-format
msgid ""
"The first step to writing security rules is to create a new rule file in the "
@@ -4101,7 +4107,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2968
+#: Security.xml:2971
#, no-c-format
msgid ""
"So what should the security rules file contain? At this stage it might be a "
@@ -4110,7 +4116,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:2973
+#: Security.xml:2976
#, no-c-format
msgid ""
"<![CDATA[package MyApplicationPermissions;\n"
@@ -4128,7 +4134,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2975
+#: Security.xml:2978
#, no-c-format
msgid ""
"Let's break this down step by step. The first thing we see is the package "
@@ -4138,7 +4144,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2981
+#: Security.xml:2984
#, no-c-format
msgid ""
"The next thing we can notice is a couple of import statements for the "
@@ -4148,7 +4154,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2987
+#: Security.xml:2990
#, no-c-format
msgid ""
"Finally we have the code for the rule. Each rule within a package should be "
@@ -4158,7 +4164,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2993
+#: Security.xml:2996
#, no-c-format
msgid ""
"Looking at the body of the rule definition we can notice two distinct "
@@ -4173,7 +4179,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3002
+#: Security.xml:3005
#, no-c-format
msgid ""
"If we look at the LHS of the rule, we see two conditions listed there. Let's "
@@ -4181,14 +4187,14 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3006
+#: Security.xml:3009
#, no-c-format
msgid ""
"<![CDATA[c: PermissionCheck(target == \"customer\", action == \"delete\")]]>"
msgstr ""
#. Tag: para
-#: Security.xml:3008
+#: Security.xml:3011
#, no-c-format
msgid ""
"In plain english, this condition is stating that there must exist a "
@@ -4198,7 +4204,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3014
+#: Security.xml:3017
#, no-c-format
msgid ""
"So what is the working memory? Also known as a \"stateful session\" in "
@@ -4216,7 +4222,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3026
+#: Security.xml:3029
#, no-c-format
msgid ""
"Besides the <literal>PermissionCheck</literal> facts, there is also a "
@@ -4233,7 +4239,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3037
+#: Security.xml:3040
#, no-c-format
msgid ""
"It is also possible to insert additional long-lived facts into the working "
@@ -4244,7 +4250,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3044
+#: Security.xml:3047
#, no-c-format
msgid ""
"Getting back to our simple example, we can also notice that the first line "
@@ -4255,13 +4261,13 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3051
+#: Security.xml:3054
#, no-c-format
msgid "<![CDATA[Role(name == \"admin\")]]>"
msgstr ""
#. Tag: para
-#: Security.xml:3053
+#: Security.xml:3056
#, no-c-format
msgid ""
"This condition simply states that there must be a <literal>Role</literal> "
@@ -4274,7 +4280,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3061
+#: Security.xml:3064
#, no-c-format
msgid ""
"So what is the consequence of the rule firing? Let's take a look at the RHS "
@@ -4282,13 +4288,13 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3065
+#: Security.xml:3068
#, no-c-format
msgid "<![CDATA[c.grant()]]>"
msgstr ""
#. Tag: para
-#: Security.xml:3067
+#: Security.xml:3070
#, no-c-format
msgid ""
"The RHS consists of Java code, and in this case is invoking the "
@@ -4305,13 +4311,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3081
+#: Security.xml:3084
#, no-c-format
msgid "Non-String permission targets"
msgstr ""
#. Tag: para
-#: Security.xml:3083
+#: Security.xml:3086
#, no-c-format
msgid ""
"So far we have only seen permission checks for String-literal permission "
@@ -4325,7 +4331,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3092
+#: Security.xml:3095
#, no-c-format
msgid ""
"<![CDATA[rule CanCreateBlogComment\n"
@@ -4343,13 +4349,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3097
+#: Security.xml:3100
#, no-c-format
msgid "Wildcard permission checks"
msgstr ""
#. Tag: para
-#: Security.xml:3099
+#: Security.xml:3102
#, no-c-format
msgid ""
"It is possible to implement a wildcard permission check (which allows all "
@@ -4359,7 +4365,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3105
+#: Security.xml:3108
#, no-c-format
msgid ""
"<![CDATA[rule CanDoAnythingToCustomersIfYouAreAnAdmin\n"
@@ -4373,7 +4379,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3107
+#: Security.xml:3110
#, no-c-format
msgid ""
"This rule allows users with the <literal>admin</literal> role to perform "
@@ -4382,13 +4388,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3117
+#: Security.xml:3120
#, no-c-format
msgid "PersistentPermissionResolver"
msgstr ""
#. Tag: para
-#: Security.xml:3119
+#: Security.xml:3122
#, no-c-format
msgid ""
"Another built-in permission resolver provided by Seam, "
@@ -4401,7 +4407,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3130
+#: Security.xml:3133
#, no-c-format
msgid ""
"Before it can be used, <literal>PersistentPermissionResolver</literal> must "
@@ -4414,7 +4420,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3138
+#: Security.xml:3141
#, no-c-format
msgid ""
"<![CDATA[ <security:persistent-permission-resolver permission-store=\"#"
@@ -4422,13 +4428,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3143
+#: Security.xml:3146
#, no-c-format
msgid "Permission Stores"
msgstr ""
#. Tag: para
-#: Security.xml:3145
+#: Security.xml:3148
#, no-c-format
msgid ""
"A permission store is required for <literal>PersistentPermissionResolver</"
@@ -4441,26 +4447,26 @@
msgstr ""
#. Tag: title
-#: Security.xml:3155
+#: Security.xml:3158
#, no-c-format
msgid "PermissionStore interface"
msgstr ""
#. Tag: literal
-#: Security.xml:3181 Security.xml:3200 Security.xml:3219 Security.xml:3802
-#: Security.xml:3821
+#: Security.xml:3184 Security.xml:3203 Security.xml:3222 Security.xml:3805
+#: Security.xml:3824
#, no-c-format
msgid "List<Permission>"
msgstr ""
#. Tag: literal
-#: Security.xml:3186 Security.xml:3826
+#: Security.xml:3189 Security.xml:3829
#, no-c-format
msgid "listPermissions(Object target)"
msgstr ""
#. Tag: para
-#: Security.xml:3190
+#: Security.xml:3193
#, no-c-format
msgid ""
"This method should return a <literal>List</literal> of <literal>Permission</"
@@ -4469,13 +4475,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3205 Security.xml:3807
+#: Security.xml:3208 Security.xml:3810
#, no-c-format
msgid "listPermissions(Object target, String action)"
msgstr ""
#. Tag: para
-#: Security.xml:3209
+#: Security.xml:3212
#, no-c-format
msgid ""
"This method should return a <literal>List</literal> of <literal>Permission</"
@@ -4484,13 +4490,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3224
+#: Security.xml:3227
#, no-c-format
msgid "listPermissions(Set<Object> targets, String action)"
msgstr ""
#. Tag: para
-#: Security.xml:3228
+#: Security.xml:3231
#, no-c-format
msgid ""
"This method should return a <literal>List</literal> of <literal>Permission</"
@@ -4499,13 +4505,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3244
+#: Security.xml:3247
#, no-c-format
msgid "grantPermission(Permission)"
msgstr ""
#. Tag: para
-#: Security.xml:3248
+#: Security.xml:3251
#, no-c-format
msgid ""
"This method should persist the specified <literal>Permission</literal> "
@@ -4513,13 +4519,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3263 Security.xml:3864
+#: Security.xml:3266 Security.xml:3867
#, no-c-format
msgid "grantPermissions(List<Permission> permissions)"
msgstr ""
#. Tag: para
-#: Security.xml:3267
+#: Security.xml:3270
#, no-c-format
msgid ""
"This method should persist all of the <literal>Permission</literal> objects "
@@ -4528,13 +4534,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3282 Security.xml:3883
+#: Security.xml:3285 Security.xml:3886
#, no-c-format
msgid "revokePermission(Permission permission)"
msgstr ""
#. Tag: para
-#: Security.xml:3286
+#: Security.xml:3289
#, no-c-format
msgid ""
"This method should remove the specified <literal>Permission</literal> object "
@@ -4542,13 +4548,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3300 Security.xml:3902
+#: Security.xml:3303 Security.xml:3905
#, no-c-format
msgid "revokePermissions(List<Permission> permissions)"
msgstr ""
#. Tag: para
-#: Security.xml:3304
+#: Security.xml:3307
#, no-c-format
msgid ""
"This method should remove all of the <literal>Permission</literal> objects "
@@ -4556,19 +4562,19 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3314 Security.xml:3916
+#: Security.xml:3317 Security.xml:3919
#, no-c-format
msgid "List<String>"
msgstr ""
#. Tag: literal
-#: Security.xml:3319 Security.xml:3921
+#: Security.xml:3322 Security.xml:3924
#, no-c-format
msgid "listAvailableActions(Object target)"
msgstr ""
#. Tag: para
-#: Security.xml:3323
+#: Security.xml:3326
#, no-c-format
msgid ""
"This method should return a list of all the available actions (as Strings) "
@@ -4578,13 +4584,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3337
+#: Security.xml:3340
#, no-c-format
msgid "JpaPermissionStore"
msgstr ""
#. Tag: para
-#: Security.xml:3339
+#: Security.xml:3342
#, no-c-format
msgid ""
"This is the default <literal>PermissionStore</literal> implementation (and "
@@ -4597,7 +4603,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3347
+#: Security.xml:3350
#, no-c-format
msgid ""
"If you wish to use the same entity (i.e. a single database table) to store "
@@ -4609,7 +4615,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3354
+#: Security.xml:3357
#, no-c-format
msgid ""
"For example, to configure a single entity class to store both user and role "
@@ -4617,7 +4623,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3356
+#: Security.xml:3359
#, no-c-format
msgid ""
"<![CDATA[ <security:jpa-permission-store user-permission-class=\"com.acme."
@@ -4625,14 +4631,14 @@
msgstr ""
#. Tag: para
-#: Security.xml:3358
+#: Security.xml:3361
#, no-c-format
msgid ""
"To configure separate entity classes for storing user and role permissions:"
msgstr ""
#. Tag: programlisting
-#: Security.xml:3360
+#: Security.xml:3363
#, no-c-format
msgid ""
"<![CDATA[ <security:jpa-permission-store user-permission-class=\"com.acme."
@@ -4641,13 +4647,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3363
+#: Security.xml:3366
#, no-c-format
msgid "Permission annotations"
msgstr ""
#. Tag: para
-#: Security.xml:3365
+#: Security.xml:3368
#, no-c-format
msgid ""
"As mentioned, the entity classes that contain the user and role permissions "
@@ -4658,32 +4664,32 @@
msgstr ""
#. Tag: title
-#: Security.xml:3372
+#: Security.xml:3375
#, no-c-format
msgid "Entity Permission annotations"
msgstr ""
#. Tag: para
-#: Security.xml:3385 Security.xml:3548
+#: Security.xml:3388 Security.xml:3551
#, no-c-format
msgid "Target"
msgstr ""
#. Tag: literal
-#: Security.xml:3398
+#: Security.xml:3401
#, no-c-format
msgid "@PermissionTarget"
msgstr ""
#. Tag: literal
-#: Security.xml:3403 Security.xml:3422 Security.xml:3441 Security.xml:3460
-#: Security.xml:3479
+#: Security.xml:3406 Security.xml:3425 Security.xml:3444 Security.xml:3463
+#: Security.xml:3482
#, no-c-format
msgid "FIELD,METHOD"
msgstr ""
#. Tag: para
-#: Security.xml:3407
+#: Security.xml:3410
#, no-c-format
msgid ""
"This annotation identifies the property of the entity that will contain the "
@@ -4692,13 +4698,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3417
+#: Security.xml:3420
#, no-c-format
msgid "@PermissionAction"
msgstr ""
#. Tag: para
-#: Security.xml:3426
+#: Security.xml:3429
#, no-c-format
msgid ""
"This annotation identifies the property of the entity that will contain the "
@@ -4707,13 +4713,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3436
+#: Security.xml:3439
#, no-c-format
msgid "@PermissionUser"
msgstr ""
#. Tag: para
-#: Security.xml:3445
+#: Security.xml:3448
#, no-c-format
msgid ""
"This annotation identifies the property of the entity that will contain the "
@@ -4722,13 +4728,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3455
+#: Security.xml:3458
#, no-c-format
msgid "@PermissionRole"
msgstr ""
#. Tag: para
-#: Security.xml:3464
+#: Security.xml:3467
#, no-c-format
msgid ""
"This annotation identifies the property of the entity that will contain the "
@@ -4737,13 +4743,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3474
+#: Security.xml:3477
#, no-c-format
msgid "@PermissionDiscriminator"
msgstr ""
#. Tag: para
-#: Security.xml:3483
+#: Security.xml:3486
#, no-c-format
msgid ""
"This annotation should be used when the same entity/table is used to store "
@@ -4760,20 +4766,20 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3493
+#: Security.xml:3496
#, no-c-format
msgid ""
"<![CDATA[ @PermissionDiscriminator(userValue = \"u\", roleValue = \"r\")]]>"
msgstr ""
#. Tag: title
-#: Security.xml:3504
+#: Security.xml:3507
#, no-c-format
msgid "Example Entity"
msgstr ""
#. Tag: para
-#: Security.xml:3506
+#: Security.xml:3509
#, no-c-format
msgid ""
"Here is an example of an entity class that is used to store both user and "
@@ -4782,7 +4788,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3511
+#: Security.xml:3514
#, no-c-format
msgid ""
"<![CDATA[\n"
@@ -4843,7 +4849,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3513
+#: Security.xml:3516
#, no-c-format
msgid ""
"As can be seen in the above example, the <literal>getDiscriminator()</"
@@ -4860,13 +4866,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3526
+#: Security.xml:3529
#, no-c-format
msgid "Class-specific Permission Configuration"
msgstr ""
#. Tag: para
-#: Security.xml:3528
+#: Security.xml:3531
#, no-c-format
msgid ""
"A further set of class-specific annotations can be used to configure a "
@@ -4876,25 +4882,25 @@
msgstr ""
#. Tag: title
-#: Security.xml:3535
+#: Security.xml:3538
#, no-c-format
msgid "Class Permission Annotations"
msgstr ""
#. Tag: literal
-#: Security.xml:3561
+#: Security.xml:3564
#, no-c-format
msgid "@Permissions"
msgstr ""
#. Tag: literal
-#: Security.xml:3566 Security.xml:3584
+#: Security.xml:3569 Security.xml:3587
#, no-c-format
msgid "TYPE"
msgstr ""
#. Tag: para
-#: Security.xml:3570
+#: Security.xml:3573
#, no-c-format
msgid ""
"A container annotation, this annotation may contain an array of "
@@ -4902,13 +4908,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3579
+#: Security.xml:3582
#, no-c-format
msgid "@Permission"
msgstr ""
#. Tag: para
-#: Security.xml:3588
+#: Security.xml:3591
#, no-c-format
msgid ""
"This annotation defines a single allowable permission action for the target "
@@ -4919,7 +4925,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3600
+#: Security.xml:3603
#, no-c-format
msgid ""
"Here's an example of the above annotations in action. The following class "
@@ -4927,7 +4933,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3604
+#: Security.xml:3607
#, no-c-format
msgid ""
"<![CDATA[@Permissions({\n"
@@ -4939,7 +4945,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3606
+#: Security.xml:3609
#, no-c-format
msgid ""
"This example demonstrates how two allowable permission actions, "
@@ -4948,13 +4954,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3614
+#: Security.xml:3617
#, no-c-format
msgid "Permission masks"
msgstr ""
#. Tag: para
-#: Security.xml:3616
+#: Security.xml:3619
#, no-c-format
msgid ""
"By default, multiple permissions for the same target object and recipient "
@@ -4966,7 +4972,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3623
+#: Security.xml:3626
#, no-c-format
msgid ""
"For example, if recipient \"Bob\" is granted both the <literal>view</"
@@ -4979,7 +4985,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3630
+#: Security.xml:3633
#, no-c-format
msgid ""
"<![CDATA[@Permissions({\n"
@@ -4991,7 +4997,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3632
+#: Security.xml:3635
#, no-c-format
msgid ""
"The <literal>action</literal> property will instead simply contain \"3"
@@ -5001,7 +5007,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3638
+#: Security.xml:3641
#, no-c-format
msgid ""
"Obviously, it is very important that the <literal>mask</literal> values "
@@ -5009,13 +5015,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3644
+#: Security.xml:3647
#, no-c-format
msgid "Identifier Policy"
msgstr ""
#. Tag: para
-#: Security.xml:3646
+#: Security.xml:3649
#, no-c-format
msgid ""
"When storing or looking up permissions, <literal>JpaPermissionStore</"
@@ -5029,7 +5035,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3654
+#: Security.xml:3657
#, no-c-format
msgid ""
"The <literal>IdentifierStrategy</literal> interface is very simple, "
@@ -5037,7 +5043,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3658
+#: Security.xml:3661
#, no-c-format
msgid ""
"<![CDATA[public interface IdentifierStrategy {\n"
@@ -5047,7 +5053,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3660
+#: Security.xml:3663
#, no-c-format
msgid ""
"The first method, <literal>canIdentify()</literal> simply returns "
@@ -5058,7 +5064,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3666
+#: Security.xml:3669
#, no-c-format
msgid ""
"Seam provides two <literal>IdentifierStrategy</literal> implementations, "
@@ -5067,7 +5073,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3671
+#: Security.xml:3674
#, no-c-format
msgid ""
"To explicitly configure a specific identifier strategy to use for a "
@@ -5080,13 +5086,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3681
+#: Security.xml:3684
#, no-c-format
msgid "ClassIdentifierStrategy"
msgstr ""
#. Tag: para
-#: Security.xml:3683
+#: Security.xml:3686
#, no-c-format
msgid ""
"This identifier strategy is used to generate unique identifiers for classes, "
@@ -5100,7 +5106,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3692
+#: Security.xml:3695
#, no-c-format
msgid ""
"<![CDATA[@Identifier(name = \"customer\")\n"
@@ -5108,7 +5114,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3694
+#: Security.xml:3697
#, no-c-format
msgid ""
"The identifier for the following class will be \"<literal>customerAction</"
@@ -5116,7 +5122,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3698
+#: Security.xml:3701
#, no-c-format
msgid ""
"<![CDATA[@Name(\"customerAction\")\n"
@@ -5124,7 +5130,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3700
+#: Security.xml:3703
#, no-c-format
msgid ""
"Finally, the identifier for the following class will be \"<literal>Customer</"
@@ -5132,19 +5138,19 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3704
+#: Security.xml:3707
#, no-c-format
msgid "<![CDATA[public class Customer { ]]>"
msgstr ""
#. Tag: title
-#: Security.xml:3709
+#: Security.xml:3712
#, no-c-format
msgid "EntityIdentifierStrategy"
msgstr ""
#. Tag: para
-#: Security.xml:3711
+#: Security.xml:3714
#, no-c-format
msgid ""
"This identifier strategy is used to generate unique identifiers for entity "
@@ -5161,7 +5167,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3722
+#: Security.xml:3725
#, no-c-format
msgid ""
"<![CDATA[@Identifier(value = EntityIdentifierStrategy.class)\n"
@@ -5169,7 +5175,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3724
+#: Security.xml:3727
#, no-c-format
msgid ""
"For an example of the type of identifier values generated, assume we have "
@@ -5177,7 +5183,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3728
+#: Security.xml:3731
#, no-c-format
msgid ""
"<![CDATA[@Entity\n"
@@ -5200,7 +5206,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3730
+#: Security.xml:3733
#, no-c-format
msgid ""
"For a <literal>Customer</literal> instance with an <literal>id</literal> "
@@ -5210,7 +5216,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3736
+#: Security.xml:3739
#, no-c-format
msgid ""
"<![CDATA[@Entity\n"
@@ -5219,7 +5225,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3738
+#: Security.xml:3741
#, no-c-format
msgid ""
"Then a <literal>Customer</literal> with an <literal>id</literal> value of "
@@ -5228,13 +5234,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3751
+#: Security.xml:3754
#, no-c-format
msgid "Permission Management"
msgstr ""
#. Tag: para
-#: Security.xml:3753
+#: Security.xml:3756
#, no-c-format
msgid ""
"In much the same way that Seam Security provides an Identity Management API "
@@ -5244,13 +5250,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3760
+#: Security.xml:3763
#, no-c-format
msgid "PermissionManager"
msgstr ""
#. Tag: para
-#: Security.xml:3762
+#: Security.xml:3765
#, no-c-format
msgid ""
"The <literal>PermissionManager</literal> component is an application-scoped "
@@ -5263,7 +5269,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3769
+#: Security.xml:3772
#, no-c-format
msgid ""
"<![CDATA[\n"
@@ -5273,7 +5279,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3771
+#: Security.xml:3774
#, no-c-format
msgid ""
"The following table describes each of the available methods provided by "
@@ -5281,13 +5287,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3776
+#: Security.xml:3779
#, no-c-format
msgid "PermissionManager API methods"
msgstr ""
#. Tag: para
-#: Security.xml:3811 Security.xml:3830
+#: Security.xml:3814 Security.xml:3833
#, no-c-format
msgid ""
"Returns a list of <literal>Permission</literal> objects representing all of "
@@ -5295,13 +5301,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3845
+#: Security.xml:3848
#, no-c-format
msgid "grantPermission(Permission permission)"
msgstr ""
#. Tag: para
-#: Security.xml:3849
+#: Security.xml:3852
#, no-c-format
msgid ""
"Persists (grants) the specified <literal>Permission</literal> to the backend "
@@ -5309,7 +5315,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3868
+#: Security.xml:3871
#, no-c-format
msgid ""
"Persists (grants) the specified list of <literal>Permission</literal>s to "
@@ -5317,7 +5323,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3887
+#: Security.xml:3890
#, no-c-format
msgid ""
"Removes (revokes) the specified <literal>Permission</literal> from the "
@@ -5325,7 +5331,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3906
+#: Security.xml:3909
#, no-c-format
msgid ""
"Removes (revokes) the specified list of <literal>Permission</literal>s from "
@@ -5333,7 +5339,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3925
+#: Security.xml:3928
#, no-c-format
msgid ""
"Returns a list of the available actions for the specified target object. The "
@@ -5342,13 +5348,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3940
+#: Security.xml:3943
#, no-c-format
msgid "Permission checks for PermissionManager operations"
msgstr ""
#. Tag: para
-#: Security.xml:3942
+#: Security.xml:3945
#, no-c-format
msgid ""
"Invoking the methods of <literal>PermissionManager</literal> requires that "
@@ -5358,37 +5364,37 @@
msgstr ""
#. Tag: title
-#: Security.xml:3949
+#: Security.xml:3952
#, no-c-format
msgid "Permission Management Security Permissions"
msgstr ""
#. Tag: literal
-#: Security.xml:3973
+#: Security.xml:3976
#, no-c-format
msgid "listPermissions()"
msgstr ""
#. Tag: para
-#: Security.xml:3977
+#: Security.xml:3980
#, no-c-format
msgid "The specified <literal>target</literal>"
msgstr ""
#. Tag: literal
-#: Security.xml:3983
+#: Security.xml:3986
#, no-c-format
msgid "seam.read-permissions"
msgstr ""
#. Tag: literal
-#: Security.xml:3991 Security.xml:4011
+#: Security.xml:3994 Security.xml:4014
#, no-c-format
msgid "grantPermission()"
msgstr ""
#. Tag: para
-#: Security.xml:3995
+#: Security.xml:3998
#, no-c-format
msgid ""
"The target of the specified <literal>Permission</literal>, or each of the "
@@ -5397,56 +5403,56 @@
msgstr ""
#. Tag: literal
-#: Security.xml:4003 Security.xml:4021 Security.xml:4039
+#: Security.xml:4006 Security.xml:4024 Security.xml:4042
#, no-c-format
msgid "seam.grant-permission"
msgstr ""
#. Tag: para
-#: Security.xml:4015 Security.xml:4051
+#: Security.xml:4018 Security.xml:4054
#, no-c-format
msgid "The target of the specified <literal>Permission</literal>."
msgstr ""
#. Tag: literal
-#: Security.xml:4029
+#: Security.xml:4032
#, no-c-format
msgid "grantPermissions()"
msgstr ""
#. Tag: para
-#: Security.xml:4033 Security.xml:4069
+#: Security.xml:4036 Security.xml:4072
#, no-c-format
msgid ""
"Each of the targets of the specified list of <literal>Permission</literal>s."
msgstr ""
#. Tag: literal
-#: Security.xml:4047
+#: Security.xml:4050
#, no-c-format
msgid "revokePermission()"
msgstr ""
#. Tag: literal
-#: Security.xml:4057 Security.xml:4075
+#: Security.xml:4060 Security.xml:4078
#, no-c-format
msgid "seam.revoke-permission"
msgstr ""
#. Tag: literal
-#: Security.xml:4065
+#: Security.xml:4068
#, no-c-format
msgid "revokePermissions()"
msgstr ""
#. Tag: title
-#: Security.xml:4088
+#: Security.xml:4091
#, no-c-format
msgid "SSL Security"
msgstr ""
#. Tag: para
-#: Security.xml:4090
+#: Security.xml:4093
#, no-c-format
msgid ""
"Seam includes basic support for serving sensitive pages via the HTTPS "
@@ -5457,13 +5463,13 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4097
+#: Security.xml:4100
#, no-c-format
msgid "<![CDATA[<page view-id=\"/login.xhtml\" scheme=\"https\"/>]]>"
msgstr ""
#. Tag: para
-#: Security.xml:4099
+#: Security.xml:4102
#, no-c-format
msgid ""
"This configuration is automatically extended to both <literal>s:link</"
@@ -5475,13 +5481,13 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4106
+#: Security.xml:4109
#, no-c-format
msgid "<![CDATA[<s:link view=\"/login.xhtml\" value=\"Login\"/>]]>"
msgstr ""
#. Tag: para
-#: Security.xml:4108
+#: Security.xml:4111
#, no-c-format
msgid ""
"Browsing directly to a view when using the <emphasis>incorrect</emphasis> "
@@ -5492,7 +5498,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4115
+#: Security.xml:4118
#, no-c-format
msgid ""
"It is also possible to configure a <emphasis>default scheme</emphasis> for "
@@ -5506,13 +5512,13 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4124
+#: Security.xml:4127
#, no-c-format
msgid "<![CDATA[<page view-id=\"*\" scheme=\"http\" />]]>"
msgstr ""
#. Tag: para
-#: Security.xml:4126
+#: Security.xml:4129
#, no-c-format
msgid ""
"Of course, if <emphasis>none</emphasis> of the pages in your application use "
@@ -5520,7 +5526,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4131
+#: Security.xml:4134
#, no-c-format
msgid ""
"You may configure Seam to automatically invalidate the current HTTP session "
@@ -5529,13 +5535,13 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4136
+#: Security.xml:4139
#, no-c-format
msgid "<![CDATA[<web:session invalidate-on-scheme-change=\"true\"/>]]>"
msgstr ""
#. Tag: para
-#: Security.xml:4138
+#: Security.xml:4141
#, no-c-format
msgid ""
"This option helps make your system less vulnerable to sniffing of the "
@@ -5544,13 +5550,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4144
+#: Security.xml:4147
#, no-c-format
msgid "Overriding the default ports"
msgstr ""
#. Tag: para
-#: Security.xml:4146
+#: Security.xml:4149
#, no-c-format
msgid ""
"If you wish to configure the HTTP and HTTPS ports manually, they may be "
@@ -5560,7 +5566,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4152
+#: Security.xml:4155
#, no-c-format
msgid ""
"<![CDATA[\n"
@@ -5576,13 +5582,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4158
+#: Security.xml:4161
#, no-c-format
msgid "CAPTCHA"
msgstr ""
#. Tag: para
-#: Security.xml:4160
+#: Security.xml:4163
#, no-c-format
msgid ""
"Though strictly not part of the security API, Seam provides a built-in "
@@ -5594,13 +5600,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4168
+#: Security.xml:4171
#, no-c-format
msgid "Configuring the CAPTCHA Servlet"
msgstr ""
#. Tag: para
-#: Security.xml:4169
+#: Security.xml:4172
#, no-c-format
msgid ""
"To get up and running, it is necessary to configure the Seam Resource "
@@ -5609,7 +5615,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4174
+#: Security.xml:4177
#, no-c-format
msgid ""
"<![CDATA[<servlet>\n"
@@ -5625,20 +5631,20 @@
msgstr ""
#. Tag: title
-#: Security.xml:4179
+#: Security.xml:4182
#, no-c-format
msgid "Adding a CAPTCHA to a form"
msgstr ""
#. Tag: para
-#: Security.xml:4181
+#: Security.xml:4184
#, no-c-format
msgid ""
"Adding a CAPTCHA challenge to a form is extremely easy. Here's an example:"
msgstr ""
#. Tag: programlisting
-#: Security.xml:4185
+#: Security.xml:4188
#, no-c-format
msgid ""
"<![CDATA[<h:graphicImage value=\"/seam/resource/captcha\"/>\n"
@@ -5650,7 +5656,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4187
+#: Security.xml:4190
#, no-c-format
msgid ""
"That's all there is to it. The <literal>graphicImage</literal> control "
@@ -5660,20 +5666,20 @@
msgstr ""
#. Tag: title
-#: Security.xml:4196
+#: Security.xml:4199
#, no-c-format
msgid "Customising the CAPTCHA algorithm"
msgstr ""
#. Tag: para
-#: Security.xml:4198
+#: Security.xml:4201
#, no-c-format
msgid ""
"You may customize the CAPTCHA algorithm by overriding the built-in component:"
msgstr ""
#. Tag: programlisting
-#: Security.xml:4202
+#: Security.xml:4205
#, no-c-format
msgid ""
"<![CDATA[@Name(\"org.jboss.seam.captcha.captcha\")\n"
@@ -5700,13 +5706,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4209 Security.xml:4217
+#: Security.xml:4212 Security.xml:4220
#, no-c-format
msgid "Security Events"
msgstr ""
#. Tag: para
-#: Security.xml:4211
+#: Security.xml:4214
#, no-c-format
msgid ""
"The following table describes a number of events (see <xref linkend=\"events"
@@ -5714,68 +5720,68 @@
msgstr ""
#. Tag: para
-#: Security.xml:4226
+#: Security.xml:4229
#, no-c-format
msgid "Event Key"
msgstr ""
#. Tag: literal
-#: Security.xml:4239
+#: Security.xml:4242
#, no-c-format
msgid "org.jboss.seam.security.loginSuccessful"
msgstr ""
#. Tag: para
-#: Security.xml:4243
+#: Security.xml:4246
#, no-c-format
msgid "Raised when a login attempt is successful."
msgstr ""
#. Tag: literal
-#: Security.xml:4251
+#: Security.xml:4254
#, no-c-format
msgid "org.jboss.seam.security.loginFailed"
msgstr ""
#. Tag: para
-#: Security.xml:4255
+#: Security.xml:4258
#, no-c-format
msgid "Raised when a login attempt fails."
msgstr ""
#. Tag: literal
-#: Security.xml:4263
+#: Security.xml:4266
#, no-c-format
msgid "org.jboss.seam.security.alreadyLoggedIn"
msgstr ""
#. Tag: para
-#: Security.xml:4267
+#: Security.xml:4270
#, no-c-format
msgid ""
"Raised when a user that is already authenticated attempts to log in again."
msgstr ""
#. Tag: literal
-#: Security.xml:4275
+#: Security.xml:4278
#, no-c-format
msgid "org.jboss.seam.security.notLoggedIn"
msgstr ""
#. Tag: para
-#: Security.xml:4279
+#: Security.xml:4282
#, no-c-format
msgid "Raised when a security check fails when the user is not logged in."
msgstr ""
#. Tag: literal
-#: Security.xml:4287
+#: Security.xml:4290
#, no-c-format
msgid "org.jboss.seam.security.notAuthorized"
msgstr ""
#. Tag: para
-#: Security.xml:4291
+#: Security.xml:4294
#, no-c-format
msgid ""
"Raised when a security check fails when the user is logged in however "
@@ -5783,73 +5789,73 @@
msgstr ""
#. Tag: literal
-#: Security.xml:4299
+#: Security.xml:4302
#, no-c-format
msgid "org.jboss.seam.security.preAuthenticate"
msgstr ""
#. Tag: para
-#: Security.xml:4303
+#: Security.xml:4306
#, no-c-format
msgid "Raised just prior to user authentication."
msgstr ""
#. Tag: literal
-#: Security.xml:4311
+#: Security.xml:4314
#, no-c-format
msgid "org.jboss.seam.security.postAuthenticate"
msgstr ""
#. Tag: para
-#: Security.xml:4315
+#: Security.xml:4318
#, no-c-format
msgid "Raised just after user authentication."
msgstr ""
#. Tag: literal
-#: Security.xml:4323
+#: Security.xml:4326
#, no-c-format
msgid "org.jboss.seam.security.loggedOut"
msgstr ""
#. Tag: para
-#: Security.xml:4327
+#: Security.xml:4330
#, no-c-format
msgid "Raised after the user has logged out."
msgstr ""
#. Tag: literal
-#: Security.xml:4335
+#: Security.xml:4338
#, no-c-format
msgid "org.jboss.seam.security.credentialsUpdated"
msgstr ""
#. Tag: para
-#: Security.xml:4339
+#: Security.xml:4342
#, no-c-format
msgid "Raised when the user's credentials have been changed."
msgstr ""
#. Tag: literal
-#: Security.xml:4347
+#: Security.xml:4350
#, no-c-format
msgid "org.jboss.seam.security.rememberMe"
msgstr ""
#. Tag: para
-#: Security.xml:4351
+#: Security.xml:4354
#, no-c-format
msgid "Raised when the Identity's rememberMe property is changed."
msgstr ""
#. Tag: title
-#: Security.xml:4364
+#: Security.xml:4367
#, no-c-format
msgid "Run As"
msgstr ""
#. Tag: para
-#: Security.xml:4366
+#: Security.xml:4369
#, no-c-format
msgid ""
"Sometimes it may be necessary to perform certain operations with elevated "
@@ -5861,7 +5867,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4374
+#: Security.xml:4377
#, no-c-format
msgid ""
"The following code example demonstrates how <literal>RunAsOperation</"
@@ -5872,7 +5878,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4381
+#: Security.xml:4384
#, no-c-format
msgid ""
"<![CDATA[ new RunAsOperation() { \n"
@@ -5884,7 +5890,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4383
+#: Security.xml:4386
#, no-c-format
msgid ""
"In a similar way, the <literal>getPrincipal()</literal> or "
@@ -5895,13 +5901,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4394
+#: Security.xml:4397
#, no-c-format
msgid "Extending the Identity component"
msgstr ""
#. Tag: para
-#: Security.xml:4396
+#: Security.xml:4399
#, no-c-format
msgid ""
"Sometimes it might be necessary to extend the Identity component if your "
@@ -5914,7 +5920,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4404
+#: Security.xml:4407
#, no-c-format
msgid ""
"<![CDATA[@Name(\"org.jboss.seam.security.identity\")\n"
@@ -5949,7 +5955,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4407
+#: Security.xml:4410
#, no-c-format
msgid ""
"Note that an <literal>Identity</literal> component must be marked "
@@ -5959,13 +5965,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4419
+#: Security.xml:4422
#, no-c-format
msgid "OpenID"
msgstr ""
#. Tag: para
-#: Security.xml:4421
+#: Security.xml:4424
#, no-c-format
msgid ""
"OpenID is a community standard for external web-based authentication. The "
@@ -5978,7 +5984,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4430
+#: Security.xml:4433
#, no-c-format
msgid ""
"When using OpenID, the user selects an OpenID provider, and the provider "
@@ -5995,7 +6001,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4439
+#: Security.xml:4442
#, no-c-format
msgid ""
"It's important to realize at this point that authentication does not imply "
@@ -6008,13 +6014,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4449
+#: Security.xml:4452
#, no-c-format
msgid "Configuring OpenID"
msgstr ""
#. Tag: para
-#: Security.xml:4450
+#: Security.xml:4453
#, no-c-format
msgid ""
"Seam uses the openid4java package and requires four additional JARs to make "
@@ -6024,7 +6030,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4456
+#: Security.xml:4459
#, no-c-format
msgid ""
"OpenID processing requires the use of the <literal>OpenIdPhaseListener</"
@@ -6034,7 +6040,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4462
+#: Security.xml:4465
#, no-c-format
msgid ""
"<lifecycle>\n"
@@ -6044,7 +6050,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4465
+#: Security.xml:4468
#, no-c-format
msgid ""
"With this configuration, OpenID support is available to your application. "
@@ -6054,13 +6060,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4473
+#: Security.xml:4476
#, no-c-format
msgid "Presenting an OpenIdDLogin form"
msgstr ""
#. Tag: para
-#: Security.xml:4475
+#: Security.xml:4478
#, no-c-format
msgid ""
"To initiate an OpenID login, you can present a simply form to the user "
@@ -6070,7 +6076,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4480
+#: Security.xml:4483
#, no-c-format
msgid ""
"<h:form>\n"
@@ -6081,7 +6087,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4482
+#: Security.xml:4485
#, no-c-format
msgid ""
"When the user submits the login form, he will be redirected to his OpenID "
@@ -6093,13 +6099,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4491
+#: Security.xml:4494
#, no-c-format
msgid "Logging in immediately"
msgstr ""
#. Tag: para
-#: Security.xml:4493
+#: Security.xml:4496
#, no-c-format
msgid ""
"The simplest strategy is to simply login the user immediately. The following "
@@ -6108,7 +6114,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4497
+#: Security.xml:4500
#, no-c-format
msgid ""
"<page view-id="/openid.xhtml">\n"
@@ -6128,7 +6134,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4499
+#: Security.xml:4502
#, no-c-format
msgid ""
"Thie <literal>loginImmediately()</literal> action checks to see if the "
@@ -6142,13 +6148,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4510
+#: Security.xml:4513
#, no-c-format
msgid "Deferring login"
msgstr ""
#. Tag: para
-#: Security.xml:4512
+#: Security.xml:4515
#, no-c-format
msgid ""
"You may not want the user to be immediately logged in to your application. "
@@ -6165,13 +6171,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4526
+#: Security.xml:4529
#, no-c-format
msgid "Logging out"
msgstr ""
#. Tag: para
-#: Security.xml:4528
+#: Security.xml:4531
#, no-c-format
msgid ""
"Logging out (forgetting an OpenID association) is done by calling <literal>#"
@@ -6182,7 +6188,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4535
+#: Security.xml:4538
#, no-c-format
msgid ""
"<event type="org.jboss.seam.security.loggedOut">\n"
@@ -6191,7 +6197,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4537
+#: Security.xml:4540
#, no-c-format
msgid ""
"It's important that you do not leave this out or the user will not be able "
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/pa-IN/Dependencies.po
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/pa-IN/Dependencies.po 2009-06-11 20:41:36 UTC (rev 11125)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/pa-IN/Dependencies.po 2009-06-11 20:43:04 UTC (rev 11126)
@@ -5,7 +5,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-04-15 13:51+0000\n"
+"POT-Creation-Date: 2009-06-11 18:45+0000\n"
"PO-Revision-Date: 2008-04-04 01:24+0000\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -938,8 +938,8 @@
#: Dependencies.xml:1182
#, no-c-format
msgid ""
-"This sample POM will give you Seam, JPA (provided by Hibernate) and "
-"Hibernate Validator:"
+"This sample POM will give you Seam, JPA (provided by Hibernate), Hibernate "
+"Validator and Hibernate Search:"
msgstr ""
#. Tag: programlisting
@@ -970,25 +970,31 @@
" <dependency>\n"
" <groupId>org.hibernate</groupId>\n"
" <artifactId>hibernate-validator</artifactId>\n"
-" <version>3.0.0.GA</version>\n"
+" <version>3.1.0.GA</version>\n"
" </dependency>\n"
"\n"
" <dependency>\n"
" <groupId>org.hibernate</groupId>\n"
" <artifactId>hibernate-annotations</artifactId>\n"
-" <version>3.3.0.ga</version>\n"
+" <version>3.4.0.GA</version>\n"
" </dependency>\n"
"\n"
" <dependency>\n"
" <groupId>org.hibernate</groupId>\n"
" <artifactId>hibernate-entitymanager</artifactId>\n"
-" <version>3.3.1.ga</version>\n"
+" <version>3.4.0.GA</version>\n"
" </dependency>\n"
+" \n"
+" <dependency>\n"
+" <groupId>org.hibernate</groupId>\n"
+" <artifactId>hibernate-search</artifactId>\n"
+" <version>3.1.1.GA</version>\n"
+" </dependency>\n"
"\n"
" <dependency>\n"
" <groupId>org.jboss.seam</groupId>\n"
" <artifactId>jboss-seam</artifactId>\n"
-" <version>2.0.0.GA</version>\n"
+" <version>2.2.0.GA</version>\n"
" </dependency>\n"
" \n"
" </dependencies>\n"
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/pa-IN/Hsearch.po
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/pa-IN/Hsearch.po 2009-06-11 20:41:36 UTC (rev 11125)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/pa-IN/Hsearch.po 2009-06-11 20:43:04 UTC (rev 11126)
@@ -5,7 +5,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-04-15 13:51+0000\n"
+"POT-Creation-Date: 2009-06-11 18:45+0000\n"
"PO-Revision-Date: 2008-04-04 01:24+0000\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -45,7 +45,7 @@
#: Hsearch.xml:21
#, no-c-format
msgid ""
-"Hibernate Search has been designed to integrates nicely and as naturally as "
+"Hibernate Search has been designed to integrate nicely and as naturally as "
"possible with JPA and Hibernate. As a natural extension, JBoss Seam provides "
"an Hibernate Search integration."
msgstr ""
@@ -132,7 +132,7 @@
" <property name=\"hibernate.ejb.event.post-delete\" \n"
" value=\"org.hibernate.search.event.FullTextIndexEventListener"
"\"/>\n"
-"\n"
+" \n"
" </properties>\n"
"</persistence-unit>]]>"
msgstr ""
@@ -141,12 +141,15 @@
#: Hsearch.xml:52
#, no-c-format
msgid ""
-"This step is no longer necessary if Hibernate Annotation or EntityManager "
-"3.3.x are used."
+"It is not longer necessary the register the event listeners if Hibernate "
+"Annotations or EntityManager 3.3.x are used. When using Hibernate Search 3.1."
+"x more eventlisteners are needed, but these are registered automatically by "
+"Hibernate Annotations; refer to the Hibernate Search reference for "
+"configuring it without EntityManager and Annotations."
msgstr ""
#. Tag: para
-#: Hsearch.xml:56
+#: Hsearch.xml:60
#, no-c-format
msgid ""
"In addition to the configuration file, the following jars have to be "
@@ -154,25 +157,25 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:61
+#: Hsearch.xml:65
#, no-c-format
msgid "hibernate-search.jar"
msgstr ""
#. Tag: para
-#: Hsearch.xml:65
+#: Hsearch.xml:69
#, no-c-format
msgid "hibernate-commons-annotations.jar"
msgstr ""
#. Tag: para
-#: Hsearch.xml:69
+#: Hsearch.xml:73
#, no-c-format
msgid "lucene-core.jar"
msgstr ""
#. Tag: para
-#: Hsearch.xml:74
+#: Hsearch.xml:78
#, no-c-format
msgid ""
"If you deploy those in a EAR, don't forget to update <filename>application."
@@ -180,13 +183,13 @@
msgstr ""
#. Tag: title
-#: Hsearch.xml:80
+#: Hsearch.xml:84
#, no-c-format
msgid "Usage"
msgstr ""
#. Tag: para
-#: Hsearch.xml:82
+#: Hsearch.xml:86
#, no-c-format
msgid ""
"Hibernate Search uses annotations to map entities to a Lucene index, check "
@@ -195,7 +198,7 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:87
+#: Hsearch.xml:91
#, no-c-format
msgid ""
"Hibernate Search is fully integrated with the API and semantic of JPA / "
@@ -206,7 +209,7 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:93
+#: Hsearch.xml:97
#, no-c-format
msgid ""
"When Hibernate Search is present, JBoss Seam injects a "
@@ -214,7 +217,7 @@
msgstr ""
#. Tag: programlisting
-#: Hsearch.xml:96
+#: Hsearch.xml:100
#, no-c-format
msgid ""
"<![CDATA[@Stateful\n"
@@ -237,7 +240,7 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:99
+#: Hsearch.xml:103
#, no-c-format
msgid ""
"<classname>FullTextSession</classname> extends <classname>org.hibernate."
@@ -245,14 +248,14 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:104
+#: Hsearch.xml:108
#, no-c-format
msgid ""
"If the Java Persistence API is used, a smoother integration is proposed."
msgstr ""
#. Tag: programlisting
-#: Hsearch.xml:107
+#: Hsearch.xml:111
#, no-c-format
msgid ""
"<![CDATA[@Stateful\n"
@@ -275,7 +278,7 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:109
+#: Hsearch.xml:113
#, no-c-format
msgid ""
"When Hibernate Search is present, a <classname>FulltextEntityManager</"
@@ -286,7 +289,7 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:116
+#: Hsearch.xml:120
#, no-c-format
msgid ""
"When an EJB 3.0 Session or Message Driven Bean injection is used (i.e. via "
@@ -299,7 +302,7 @@
msgstr ""
#. Tag: programlisting
-#: Hsearch.xml:124
+#: Hsearch.xml:128
#, no-c-format
msgid ""
"<![CDATA[@Stateful\n"
@@ -323,15 +326,15 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:129
+#: Hsearch.xml:133
#, no-c-format
msgid ""
"For people accustomed to Hibernate Search out of Seam, note that using "
-"<methodname>Search.createFullTextSession</methodname> is not necessary."
+"<methodname>Search.getFullTextSession</methodname> is not necessary."
msgstr ""
#. Tag: para
-#: Hsearch.xml:134
+#: Hsearch.xml:138
#, no-c-format
msgid ""
"Check the DVDStore or the blog examples of the JBoss Seam distribution for a "
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/pa-IN/Security.po
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/pa-IN/Security.po 2009-06-11 20:41:36 UTC (rev 11125)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/pa-IN/Security.po 2009-06-11 20:43:04 UTC (rev 11126)
@@ -5,7 +5,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-06-11 07:43+0000\n"
+"POT-Creation-Date: 2009-06-11 18:45+0000\n"
"PO-Revision-Date: 2008-04-04 01:24+0000\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -1190,7 +1190,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:630 Security.xml:764 Security.xml:3382 Security.xml:3545
+#: Security.xml:630 Security.xml:764 Security.xml:3385 Security.xml:3548
#, no-c-format
msgid "Annotation"
msgstr ""
@@ -1203,8 +1203,8 @@
#. Tag: para
#: Security.xml:636 Security.xml:770 Security.xml:966 Security.xml:1418
-#: Security.xml:2147 Security.xml:2756 Security.xml:3171 Security.xml:3388
-#: Security.xml:3551 Security.xml:3792 Security.xml:4229
+#: Security.xml:2147 Security.xml:2756 Security.xml:3174 Security.xml:3391
+#: Security.xml:3554 Security.xml:3795 Security.xml:4232
#, no-c-format
msgid "Description"
msgstr ""
@@ -2228,8 +2228,8 @@
msgstr ""
#. Tag: para
-#: Security.xml:1412 Security.xml:1828 Security.xml:2753 Security.xml:3168
-#: Security.xml:3789 Security.xml:3958
+#: Security.xml:1412 Security.xml:1828 Security.xml:2753 Security.xml:3171
+#: Security.xml:3792 Security.xml:3961
#, no-c-format
msgid "Method"
msgstr ""
@@ -2250,9 +2250,9 @@
#: Security.xml:1433 Security.xml:1452 Security.xml:1471 Security.xml:1490
#: Security.xml:1509 Security.xml:1529 Security.xml:1548 Security.xml:1567
#: Security.xml:1586 Security.xml:1606 Security.xml:1626 Security.xml:1740
-#: Security.xml:1762 Security.xml:1780 Security.xml:2766 Security.xml:3239
-#: Security.xml:3258 Security.xml:3277 Security.xml:3295 Security.xml:3840
-#: Security.xml:3859 Security.xml:3878 Security.xml:3897
+#: Security.xml:1762 Security.xml:1780 Security.xml:2766 Security.xml:3242
+#: Security.xml:3261 Security.xml:3280 Security.xml:3298 Security.xml:3843
+#: Security.xml:3862 Security.xml:3881 Security.xml:3900
#, no-c-format
msgid "boolean"
msgstr ""
@@ -2558,13 +2558,13 @@
msgstr ""
#. Tag: para
-#: Security.xml:1831 Security.xml:3961
+#: Security.xml:1831 Security.xml:3964
#, no-c-format
msgid "Permission Target"
msgstr ""
#. Tag: para
-#: Security.xml:1834 Security.xml:3964
+#: Security.xml:1834 Security.xml:3967
#, no-c-format
msgid "Permission Action"
msgstr ""
@@ -3806,7 +3806,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2750 Security.xml:3165 Security.xml:3786
+#: Security.xml:2750 Security.xml:3168 Security.xml:3789
#, no-c-format
msgid "Return type"
msgstr ""
@@ -3986,41 +3986,47 @@
#. Tag: para
#: Security.xml:2917
#, no-c-format
-msgid "drools-compiler.jar"
+msgid "drools-api.jar"
msgstr ""
#. Tag: para
#: Security.xml:2920
#, no-c-format
-msgid "drools-core.jar"
+msgid "drools-compiler.jar"
msgstr ""
#. Tag: para
#: Security.xml:2923
#, no-c-format
-msgid "janino.jar"
+msgid "drools-core.jar"
msgstr ""
#. Tag: para
#: Security.xml:2926
#, no-c-format
-msgid "antlr-runtime.jar"
+msgid "janino.jar"
msgstr ""
#. Tag: para
#: Security.xml:2929
#, no-c-format
-msgid "mvel14.jar"
+msgid "antlr-runtime.jar"
msgstr ""
+#. Tag: para
+#: Security.xml:2932
+#, no-c-format
+msgid "mvel2.jar"
+msgstr ""
+
#. Tag: title
-#: Security.xml:2936 Security.xml:3128
+#: Security.xml:2939 Security.xml:3131
#, no-c-format
msgid "Configuration"
msgstr ""
#. Tag: para
-#: Security.xml:2938
+#: Security.xml:2941
#, no-c-format
msgid ""
"The configuration for <literal>RuleBasedPermissionResolver</literal> "
@@ -4030,7 +4036,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:2944
+#: Security.xml:2947
#, no-c-format
msgid ""
"<![CDATA[<components xmlns=\"http://jboss.com/products/seam/components\"\n"
@@ -4058,7 +4064,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2946
+#: Security.xml:2949
#, no-c-format
msgid ""
"The default rule base name can be overridden by specifying the "
@@ -4067,7 +4073,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:2951
+#: Security.xml:2954
#, no-c-format
msgid ""
"<![CDATA[\n"
@@ -4076,7 +4082,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2953
+#: Security.xml:2956
#, no-c-format
msgid ""
"Once the <literal>RuleBase</literal> component is configured, it's time to "
@@ -4084,13 +4090,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:2959
+#: Security.xml:2962
#, no-c-format
msgid "Writing Security Rules"
msgstr ""
#. Tag: para
-#: Security.xml:2961
+#: Security.xml:2964
#, no-c-format
msgid ""
"The first step to writing security rules is to create a new rule file in the "
@@ -4101,7 +4107,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2968
+#: Security.xml:2971
#, no-c-format
msgid ""
"So what should the security rules file contain? At this stage it might be a "
@@ -4110,7 +4116,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:2973
+#: Security.xml:2976
#, no-c-format
msgid ""
"<![CDATA[package MyApplicationPermissions;\n"
@@ -4128,7 +4134,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2975
+#: Security.xml:2978
#, no-c-format
msgid ""
"Let's break this down step by step. The first thing we see is the package "
@@ -4138,7 +4144,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2981
+#: Security.xml:2984
#, no-c-format
msgid ""
"The next thing we can notice is a couple of import statements for the "
@@ -4148,7 +4154,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2987
+#: Security.xml:2990
#, no-c-format
msgid ""
"Finally we have the code for the rule. Each rule within a package should be "
@@ -4158,7 +4164,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2993
+#: Security.xml:2996
#, no-c-format
msgid ""
"Looking at the body of the rule definition we can notice two distinct "
@@ -4173,7 +4179,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3002
+#: Security.xml:3005
#, no-c-format
msgid ""
"If we look at the LHS of the rule, we see two conditions listed there. Let's "
@@ -4181,14 +4187,14 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3006
+#: Security.xml:3009
#, no-c-format
msgid ""
"<![CDATA[c: PermissionCheck(target == \"customer\", action == \"delete\")]]>"
msgstr ""
#. Tag: para
-#: Security.xml:3008
+#: Security.xml:3011
#, no-c-format
msgid ""
"In plain english, this condition is stating that there must exist a "
@@ -4198,7 +4204,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3014
+#: Security.xml:3017
#, no-c-format
msgid ""
"So what is the working memory? Also known as a \"stateful session\" in "
@@ -4216,7 +4222,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3026
+#: Security.xml:3029
#, no-c-format
msgid ""
"Besides the <literal>PermissionCheck</literal> facts, there is also a "
@@ -4233,7 +4239,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3037
+#: Security.xml:3040
#, no-c-format
msgid ""
"It is also possible to insert additional long-lived facts into the working "
@@ -4244,7 +4250,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3044
+#: Security.xml:3047
#, no-c-format
msgid ""
"Getting back to our simple example, we can also notice that the first line "
@@ -4255,13 +4261,13 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3051
+#: Security.xml:3054
#, no-c-format
msgid "<![CDATA[Role(name == \"admin\")]]>"
msgstr ""
#. Tag: para
-#: Security.xml:3053
+#: Security.xml:3056
#, no-c-format
msgid ""
"This condition simply states that there must be a <literal>Role</literal> "
@@ -4274,7 +4280,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3061
+#: Security.xml:3064
#, no-c-format
msgid ""
"So what is the consequence of the rule firing? Let's take a look at the RHS "
@@ -4282,13 +4288,13 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3065
+#: Security.xml:3068
#, no-c-format
msgid "<![CDATA[c.grant()]]>"
msgstr ""
#. Tag: para
-#: Security.xml:3067
+#: Security.xml:3070
#, no-c-format
msgid ""
"The RHS consists of Java code, and in this case is invoking the "
@@ -4305,13 +4311,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3081
+#: Security.xml:3084
#, no-c-format
msgid "Non-String permission targets"
msgstr ""
#. Tag: para
-#: Security.xml:3083
+#: Security.xml:3086
#, no-c-format
msgid ""
"So far we have only seen permission checks for String-literal permission "
@@ -4325,7 +4331,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3092
+#: Security.xml:3095
#, no-c-format
msgid ""
"<![CDATA[rule CanCreateBlogComment\n"
@@ -4343,13 +4349,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3097
+#: Security.xml:3100
#, no-c-format
msgid "Wildcard permission checks"
msgstr ""
#. Tag: para
-#: Security.xml:3099
+#: Security.xml:3102
#, no-c-format
msgid ""
"It is possible to implement a wildcard permission check (which allows all "
@@ -4359,7 +4365,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3105
+#: Security.xml:3108
#, no-c-format
msgid ""
"<![CDATA[rule CanDoAnythingToCustomersIfYouAreAnAdmin\n"
@@ -4373,7 +4379,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3107
+#: Security.xml:3110
#, no-c-format
msgid ""
"This rule allows users with the <literal>admin</literal> role to perform "
@@ -4382,13 +4388,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3117
+#: Security.xml:3120
#, no-c-format
msgid "PersistentPermissionResolver"
msgstr ""
#. Tag: para
-#: Security.xml:3119
+#: Security.xml:3122
#, no-c-format
msgid ""
"Another built-in permission resolver provided by Seam, "
@@ -4401,7 +4407,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3130
+#: Security.xml:3133
#, no-c-format
msgid ""
"Before it can be used, <literal>PersistentPermissionResolver</literal> must "
@@ -4414,7 +4420,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3138
+#: Security.xml:3141
#, no-c-format
msgid ""
"<![CDATA[ <security:persistent-permission-resolver permission-store=\"#"
@@ -4422,13 +4428,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3143
+#: Security.xml:3146
#, no-c-format
msgid "Permission Stores"
msgstr ""
#. Tag: para
-#: Security.xml:3145
+#: Security.xml:3148
#, no-c-format
msgid ""
"A permission store is required for <literal>PersistentPermissionResolver</"
@@ -4441,26 +4447,26 @@
msgstr ""
#. Tag: title
-#: Security.xml:3155
+#: Security.xml:3158
#, no-c-format
msgid "PermissionStore interface"
msgstr ""
#. Tag: literal
-#: Security.xml:3181 Security.xml:3200 Security.xml:3219 Security.xml:3802
-#: Security.xml:3821
+#: Security.xml:3184 Security.xml:3203 Security.xml:3222 Security.xml:3805
+#: Security.xml:3824
#, no-c-format
msgid "List<Permission>"
msgstr ""
#. Tag: literal
-#: Security.xml:3186 Security.xml:3826
+#: Security.xml:3189 Security.xml:3829
#, no-c-format
msgid "listPermissions(Object target)"
msgstr ""
#. Tag: para
-#: Security.xml:3190
+#: Security.xml:3193
#, no-c-format
msgid ""
"This method should return a <literal>List</literal> of <literal>Permission</"
@@ -4469,13 +4475,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3205 Security.xml:3807
+#: Security.xml:3208 Security.xml:3810
#, no-c-format
msgid "listPermissions(Object target, String action)"
msgstr ""
#. Tag: para
-#: Security.xml:3209
+#: Security.xml:3212
#, no-c-format
msgid ""
"This method should return a <literal>List</literal> of <literal>Permission</"
@@ -4484,13 +4490,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3224
+#: Security.xml:3227
#, no-c-format
msgid "listPermissions(Set<Object> targets, String action)"
msgstr ""
#. Tag: para
-#: Security.xml:3228
+#: Security.xml:3231
#, no-c-format
msgid ""
"This method should return a <literal>List</literal> of <literal>Permission</"
@@ -4499,13 +4505,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3244
+#: Security.xml:3247
#, no-c-format
msgid "grantPermission(Permission)"
msgstr ""
#. Tag: para
-#: Security.xml:3248
+#: Security.xml:3251
#, no-c-format
msgid ""
"This method should persist the specified <literal>Permission</literal> "
@@ -4513,13 +4519,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3263 Security.xml:3864
+#: Security.xml:3266 Security.xml:3867
#, no-c-format
msgid "grantPermissions(List<Permission> permissions)"
msgstr ""
#. Tag: para
-#: Security.xml:3267
+#: Security.xml:3270
#, no-c-format
msgid ""
"This method should persist all of the <literal>Permission</literal> objects "
@@ -4528,13 +4534,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3282 Security.xml:3883
+#: Security.xml:3285 Security.xml:3886
#, no-c-format
msgid "revokePermission(Permission permission)"
msgstr ""
#. Tag: para
-#: Security.xml:3286
+#: Security.xml:3289
#, no-c-format
msgid ""
"This method should remove the specified <literal>Permission</literal> object "
@@ -4542,13 +4548,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3300 Security.xml:3902
+#: Security.xml:3303 Security.xml:3905
#, no-c-format
msgid "revokePermissions(List<Permission> permissions)"
msgstr ""
#. Tag: para
-#: Security.xml:3304
+#: Security.xml:3307
#, no-c-format
msgid ""
"This method should remove all of the <literal>Permission</literal> objects "
@@ -4556,19 +4562,19 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3314 Security.xml:3916
+#: Security.xml:3317 Security.xml:3919
#, no-c-format
msgid "List<String>"
msgstr ""
#. Tag: literal
-#: Security.xml:3319 Security.xml:3921
+#: Security.xml:3322 Security.xml:3924
#, no-c-format
msgid "listAvailableActions(Object target)"
msgstr ""
#. Tag: para
-#: Security.xml:3323
+#: Security.xml:3326
#, no-c-format
msgid ""
"This method should return a list of all the available actions (as Strings) "
@@ -4578,13 +4584,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3337
+#: Security.xml:3340
#, no-c-format
msgid "JpaPermissionStore"
msgstr ""
#. Tag: para
-#: Security.xml:3339
+#: Security.xml:3342
#, no-c-format
msgid ""
"This is the default <literal>PermissionStore</literal> implementation (and "
@@ -4597,7 +4603,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3347
+#: Security.xml:3350
#, no-c-format
msgid ""
"If you wish to use the same entity (i.e. a single database table) to store "
@@ -4609,7 +4615,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3354
+#: Security.xml:3357
#, no-c-format
msgid ""
"For example, to configure a single entity class to store both user and role "
@@ -4617,7 +4623,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3356
+#: Security.xml:3359
#, no-c-format
msgid ""
"<![CDATA[ <security:jpa-permission-store user-permission-class=\"com.acme."
@@ -4625,14 +4631,14 @@
msgstr ""
#. Tag: para
-#: Security.xml:3358
+#: Security.xml:3361
#, no-c-format
msgid ""
"To configure separate entity classes for storing user and role permissions:"
msgstr ""
#. Tag: programlisting
-#: Security.xml:3360
+#: Security.xml:3363
#, no-c-format
msgid ""
"<![CDATA[ <security:jpa-permission-store user-permission-class=\"com.acme."
@@ -4641,13 +4647,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3363
+#: Security.xml:3366
#, no-c-format
msgid "Permission annotations"
msgstr ""
#. Tag: para
-#: Security.xml:3365
+#: Security.xml:3368
#, no-c-format
msgid ""
"As mentioned, the entity classes that contain the user and role permissions "
@@ -4658,32 +4664,32 @@
msgstr ""
#. Tag: title
-#: Security.xml:3372
+#: Security.xml:3375
#, no-c-format
msgid "Entity Permission annotations"
msgstr ""
#. Tag: para
-#: Security.xml:3385 Security.xml:3548
+#: Security.xml:3388 Security.xml:3551
#, no-c-format
msgid "Target"
msgstr ""
#. Tag: literal
-#: Security.xml:3398
+#: Security.xml:3401
#, no-c-format
msgid "@PermissionTarget"
msgstr ""
#. Tag: literal
-#: Security.xml:3403 Security.xml:3422 Security.xml:3441 Security.xml:3460
-#: Security.xml:3479
+#: Security.xml:3406 Security.xml:3425 Security.xml:3444 Security.xml:3463
+#: Security.xml:3482
#, no-c-format
msgid "FIELD,METHOD"
msgstr ""
#. Tag: para
-#: Security.xml:3407
+#: Security.xml:3410
#, no-c-format
msgid ""
"This annotation identifies the property of the entity that will contain the "
@@ -4692,13 +4698,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3417
+#: Security.xml:3420
#, no-c-format
msgid "@PermissionAction"
msgstr ""
#. Tag: para
-#: Security.xml:3426
+#: Security.xml:3429
#, no-c-format
msgid ""
"This annotation identifies the property of the entity that will contain the "
@@ -4707,13 +4713,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3436
+#: Security.xml:3439
#, no-c-format
msgid "@PermissionUser"
msgstr ""
#. Tag: para
-#: Security.xml:3445
+#: Security.xml:3448
#, no-c-format
msgid ""
"This annotation identifies the property of the entity that will contain the "
@@ -4722,13 +4728,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3455
+#: Security.xml:3458
#, no-c-format
msgid "@PermissionRole"
msgstr ""
#. Tag: para
-#: Security.xml:3464
+#: Security.xml:3467
#, no-c-format
msgid ""
"This annotation identifies the property of the entity that will contain the "
@@ -4737,13 +4743,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3474
+#: Security.xml:3477
#, no-c-format
msgid "@PermissionDiscriminator"
msgstr ""
#. Tag: para
-#: Security.xml:3483
+#: Security.xml:3486
#, no-c-format
msgid ""
"This annotation should be used when the same entity/table is used to store "
@@ -4760,20 +4766,20 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3493
+#: Security.xml:3496
#, no-c-format
msgid ""
"<![CDATA[ @PermissionDiscriminator(userValue = \"u\", roleValue = \"r\")]]>"
msgstr ""
#. Tag: title
-#: Security.xml:3504
+#: Security.xml:3507
#, no-c-format
msgid "Example Entity"
msgstr ""
#. Tag: para
-#: Security.xml:3506
+#: Security.xml:3509
#, no-c-format
msgid ""
"Here is an example of an entity class that is used to store both user and "
@@ -4782,7 +4788,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3511
+#: Security.xml:3514
#, no-c-format
msgid ""
"<![CDATA[\n"
@@ -4843,7 +4849,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3513
+#: Security.xml:3516
#, no-c-format
msgid ""
"As can be seen in the above example, the <literal>getDiscriminator()</"
@@ -4860,13 +4866,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3526
+#: Security.xml:3529
#, no-c-format
msgid "Class-specific Permission Configuration"
msgstr ""
#. Tag: para
-#: Security.xml:3528
+#: Security.xml:3531
#, no-c-format
msgid ""
"A further set of class-specific annotations can be used to configure a "
@@ -4876,25 +4882,25 @@
msgstr ""
#. Tag: title
-#: Security.xml:3535
+#: Security.xml:3538
#, no-c-format
msgid "Class Permission Annotations"
msgstr ""
#. Tag: literal
-#: Security.xml:3561
+#: Security.xml:3564
#, no-c-format
msgid "@Permissions"
msgstr ""
#. Tag: literal
-#: Security.xml:3566 Security.xml:3584
+#: Security.xml:3569 Security.xml:3587
#, no-c-format
msgid "TYPE"
msgstr ""
#. Tag: para
-#: Security.xml:3570
+#: Security.xml:3573
#, no-c-format
msgid ""
"A container annotation, this annotation may contain an array of "
@@ -4902,13 +4908,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3579
+#: Security.xml:3582
#, no-c-format
msgid "@Permission"
msgstr ""
#. Tag: para
-#: Security.xml:3588
+#: Security.xml:3591
#, no-c-format
msgid ""
"This annotation defines a single allowable permission action for the target "
@@ -4919,7 +4925,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3600
+#: Security.xml:3603
#, no-c-format
msgid ""
"Here's an example of the above annotations in action. The following class "
@@ -4927,7 +4933,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3604
+#: Security.xml:3607
#, no-c-format
msgid ""
"<![CDATA[@Permissions({\n"
@@ -4939,7 +4945,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3606
+#: Security.xml:3609
#, no-c-format
msgid ""
"This example demonstrates how two allowable permission actions, "
@@ -4948,13 +4954,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3614
+#: Security.xml:3617
#, no-c-format
msgid "Permission masks"
msgstr ""
#. Tag: para
-#: Security.xml:3616
+#: Security.xml:3619
#, no-c-format
msgid ""
"By default, multiple permissions for the same target object and recipient "
@@ -4966,7 +4972,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3623
+#: Security.xml:3626
#, no-c-format
msgid ""
"For example, if recipient \"Bob\" is granted both the <literal>view</"
@@ -4979,7 +4985,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3630
+#: Security.xml:3633
#, no-c-format
msgid ""
"<![CDATA[@Permissions({\n"
@@ -4991,7 +4997,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3632
+#: Security.xml:3635
#, no-c-format
msgid ""
"The <literal>action</literal> property will instead simply contain \"3"
@@ -5001,7 +5007,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3638
+#: Security.xml:3641
#, no-c-format
msgid ""
"Obviously, it is very important that the <literal>mask</literal> values "
@@ -5009,13 +5015,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3644
+#: Security.xml:3647
#, no-c-format
msgid "Identifier Policy"
msgstr ""
#. Tag: para
-#: Security.xml:3646
+#: Security.xml:3649
#, no-c-format
msgid ""
"When storing or looking up permissions, <literal>JpaPermissionStore</"
@@ -5029,7 +5035,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3654
+#: Security.xml:3657
#, no-c-format
msgid ""
"The <literal>IdentifierStrategy</literal> interface is very simple, "
@@ -5037,7 +5043,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3658
+#: Security.xml:3661
#, no-c-format
msgid ""
"<![CDATA[public interface IdentifierStrategy {\n"
@@ -5047,7 +5053,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3660
+#: Security.xml:3663
#, no-c-format
msgid ""
"The first method, <literal>canIdentify()</literal> simply returns "
@@ -5058,7 +5064,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3666
+#: Security.xml:3669
#, no-c-format
msgid ""
"Seam provides two <literal>IdentifierStrategy</literal> implementations, "
@@ -5067,7 +5073,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3671
+#: Security.xml:3674
#, no-c-format
msgid ""
"To explicitly configure a specific identifier strategy to use for a "
@@ -5080,13 +5086,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3681
+#: Security.xml:3684
#, no-c-format
msgid "ClassIdentifierStrategy"
msgstr ""
#. Tag: para
-#: Security.xml:3683
+#: Security.xml:3686
#, no-c-format
msgid ""
"This identifier strategy is used to generate unique identifiers for classes, "
@@ -5100,7 +5106,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3692
+#: Security.xml:3695
#, no-c-format
msgid ""
"<![CDATA[@Identifier(name = \"customer\")\n"
@@ -5108,7 +5114,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3694
+#: Security.xml:3697
#, no-c-format
msgid ""
"The identifier for the following class will be \"<literal>customerAction</"
@@ -5116,7 +5122,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3698
+#: Security.xml:3701
#, no-c-format
msgid ""
"<![CDATA[@Name(\"customerAction\")\n"
@@ -5124,7 +5130,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3700
+#: Security.xml:3703
#, no-c-format
msgid ""
"Finally, the identifier for the following class will be \"<literal>Customer</"
@@ -5132,19 +5138,19 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3704
+#: Security.xml:3707
#, no-c-format
msgid "<![CDATA[public class Customer { ]]>"
msgstr ""
#. Tag: title
-#: Security.xml:3709
+#: Security.xml:3712
#, no-c-format
msgid "EntityIdentifierStrategy"
msgstr ""
#. Tag: para
-#: Security.xml:3711
+#: Security.xml:3714
#, no-c-format
msgid ""
"This identifier strategy is used to generate unique identifiers for entity "
@@ -5161,7 +5167,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3722
+#: Security.xml:3725
#, no-c-format
msgid ""
"<![CDATA[@Identifier(value = EntityIdentifierStrategy.class)\n"
@@ -5169,7 +5175,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3724
+#: Security.xml:3727
#, no-c-format
msgid ""
"For an example of the type of identifier values generated, assume we have "
@@ -5177,7 +5183,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3728
+#: Security.xml:3731
#, no-c-format
msgid ""
"<![CDATA[@Entity\n"
@@ -5200,7 +5206,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3730
+#: Security.xml:3733
#, no-c-format
msgid ""
"For a <literal>Customer</literal> instance with an <literal>id</literal> "
@@ -5210,7 +5216,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3736
+#: Security.xml:3739
#, no-c-format
msgid ""
"<![CDATA[@Entity\n"
@@ -5219,7 +5225,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3738
+#: Security.xml:3741
#, no-c-format
msgid ""
"Then a <literal>Customer</literal> with an <literal>id</literal> value of "
@@ -5228,13 +5234,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3751
+#: Security.xml:3754
#, no-c-format
msgid "Permission Management"
msgstr ""
#. Tag: para
-#: Security.xml:3753
+#: Security.xml:3756
#, no-c-format
msgid ""
"In much the same way that Seam Security provides an Identity Management API "
@@ -5244,13 +5250,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3760
+#: Security.xml:3763
#, no-c-format
msgid "PermissionManager"
msgstr ""
#. Tag: para
-#: Security.xml:3762
+#: Security.xml:3765
#, no-c-format
msgid ""
"The <literal>PermissionManager</literal> component is an application-scoped "
@@ -5263,7 +5269,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3769
+#: Security.xml:3772
#, no-c-format
msgid ""
"<![CDATA[\n"
@@ -5273,7 +5279,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3771
+#: Security.xml:3774
#, no-c-format
msgid ""
"The following table describes each of the available methods provided by "
@@ -5281,13 +5287,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3776
+#: Security.xml:3779
#, no-c-format
msgid "PermissionManager API methods"
msgstr ""
#. Tag: para
-#: Security.xml:3811 Security.xml:3830
+#: Security.xml:3814 Security.xml:3833
#, no-c-format
msgid ""
"Returns a list of <literal>Permission</literal> objects representing all of "
@@ -5295,13 +5301,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3845
+#: Security.xml:3848
#, no-c-format
msgid "grantPermission(Permission permission)"
msgstr ""
#. Tag: para
-#: Security.xml:3849
+#: Security.xml:3852
#, no-c-format
msgid ""
"Persists (grants) the specified <literal>Permission</literal> to the backend "
@@ -5309,7 +5315,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3868
+#: Security.xml:3871
#, no-c-format
msgid ""
"Persists (grants) the specified list of <literal>Permission</literal>s to "
@@ -5317,7 +5323,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3887
+#: Security.xml:3890
#, no-c-format
msgid ""
"Removes (revokes) the specified <literal>Permission</literal> from the "
@@ -5325,7 +5331,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3906
+#: Security.xml:3909
#, no-c-format
msgid ""
"Removes (revokes) the specified list of <literal>Permission</literal>s from "
@@ -5333,7 +5339,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3925
+#: Security.xml:3928
#, no-c-format
msgid ""
"Returns a list of the available actions for the specified target object. The "
@@ -5342,13 +5348,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3940
+#: Security.xml:3943
#, no-c-format
msgid "Permission checks for PermissionManager operations"
msgstr ""
#. Tag: para
-#: Security.xml:3942
+#: Security.xml:3945
#, no-c-format
msgid ""
"Invoking the methods of <literal>PermissionManager</literal> requires that "
@@ -5358,37 +5364,37 @@
msgstr ""
#. Tag: title
-#: Security.xml:3949
+#: Security.xml:3952
#, no-c-format
msgid "Permission Management Security Permissions"
msgstr ""
#. Tag: literal
-#: Security.xml:3973
+#: Security.xml:3976
#, no-c-format
msgid "listPermissions()"
msgstr ""
#. Tag: para
-#: Security.xml:3977
+#: Security.xml:3980
#, no-c-format
msgid "The specified <literal>target</literal>"
msgstr ""
#. Tag: literal
-#: Security.xml:3983
+#: Security.xml:3986
#, no-c-format
msgid "seam.read-permissions"
msgstr ""
#. Tag: literal
-#: Security.xml:3991 Security.xml:4011
+#: Security.xml:3994 Security.xml:4014
#, no-c-format
msgid "grantPermission()"
msgstr ""
#. Tag: para
-#: Security.xml:3995
+#: Security.xml:3998
#, no-c-format
msgid ""
"The target of the specified <literal>Permission</literal>, or each of the "
@@ -5397,56 +5403,56 @@
msgstr ""
#. Tag: literal
-#: Security.xml:4003 Security.xml:4021 Security.xml:4039
+#: Security.xml:4006 Security.xml:4024 Security.xml:4042
#, no-c-format
msgid "seam.grant-permission"
msgstr ""
#. Tag: para
-#: Security.xml:4015 Security.xml:4051
+#: Security.xml:4018 Security.xml:4054
#, no-c-format
msgid "The target of the specified <literal>Permission</literal>."
msgstr ""
#. Tag: literal
-#: Security.xml:4029
+#: Security.xml:4032
#, no-c-format
msgid "grantPermissions()"
msgstr ""
#. Tag: para
-#: Security.xml:4033 Security.xml:4069
+#: Security.xml:4036 Security.xml:4072
#, no-c-format
msgid ""
"Each of the targets of the specified list of <literal>Permission</literal>s."
msgstr ""
#. Tag: literal
-#: Security.xml:4047
+#: Security.xml:4050
#, no-c-format
msgid "revokePermission()"
msgstr ""
#. Tag: literal
-#: Security.xml:4057 Security.xml:4075
+#: Security.xml:4060 Security.xml:4078
#, no-c-format
msgid "seam.revoke-permission"
msgstr ""
#. Tag: literal
-#: Security.xml:4065
+#: Security.xml:4068
#, no-c-format
msgid "revokePermissions()"
msgstr ""
#. Tag: title
-#: Security.xml:4088
+#: Security.xml:4091
#, no-c-format
msgid "SSL Security"
msgstr ""
#. Tag: para
-#: Security.xml:4090
+#: Security.xml:4093
#, no-c-format
msgid ""
"Seam includes basic support for serving sensitive pages via the HTTPS "
@@ -5457,13 +5463,13 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4097
+#: Security.xml:4100
#, no-c-format
msgid "<![CDATA[<page view-id=\"/login.xhtml\" scheme=\"https\"/>]]>"
msgstr ""
#. Tag: para
-#: Security.xml:4099
+#: Security.xml:4102
#, no-c-format
msgid ""
"This configuration is automatically extended to both <literal>s:link</"
@@ -5475,13 +5481,13 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4106
+#: Security.xml:4109
#, no-c-format
msgid "<![CDATA[<s:link view=\"/login.xhtml\" value=\"Login\"/>]]>"
msgstr ""
#. Tag: para
-#: Security.xml:4108
+#: Security.xml:4111
#, no-c-format
msgid ""
"Browsing directly to a view when using the <emphasis>incorrect</emphasis> "
@@ -5492,7 +5498,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4115
+#: Security.xml:4118
#, no-c-format
msgid ""
"It is also possible to configure a <emphasis>default scheme</emphasis> for "
@@ -5506,13 +5512,13 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4124
+#: Security.xml:4127
#, no-c-format
msgid "<![CDATA[<page view-id=\"*\" scheme=\"http\" />]]>"
msgstr ""
#. Tag: para
-#: Security.xml:4126
+#: Security.xml:4129
#, no-c-format
msgid ""
"Of course, if <emphasis>none</emphasis> of the pages in your application use "
@@ -5520,7 +5526,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4131
+#: Security.xml:4134
#, no-c-format
msgid ""
"You may configure Seam to automatically invalidate the current HTTP session "
@@ -5529,13 +5535,13 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4136
+#: Security.xml:4139
#, no-c-format
msgid "<![CDATA[<web:session invalidate-on-scheme-change=\"true\"/>]]>"
msgstr ""
#. Tag: para
-#: Security.xml:4138
+#: Security.xml:4141
#, no-c-format
msgid ""
"This option helps make your system less vulnerable to sniffing of the "
@@ -5544,13 +5550,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4144
+#: Security.xml:4147
#, no-c-format
msgid "Overriding the default ports"
msgstr ""
#. Tag: para
-#: Security.xml:4146
+#: Security.xml:4149
#, no-c-format
msgid ""
"If you wish to configure the HTTP and HTTPS ports manually, they may be "
@@ -5560,7 +5566,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4152
+#: Security.xml:4155
#, no-c-format
msgid ""
"<![CDATA[\n"
@@ -5576,13 +5582,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4158
+#: Security.xml:4161
#, no-c-format
msgid "CAPTCHA"
msgstr ""
#. Tag: para
-#: Security.xml:4160
+#: Security.xml:4163
#, no-c-format
msgid ""
"Though strictly not part of the security API, Seam provides a built-in "
@@ -5594,13 +5600,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4168
+#: Security.xml:4171
#, no-c-format
msgid "Configuring the CAPTCHA Servlet"
msgstr ""
#. Tag: para
-#: Security.xml:4169
+#: Security.xml:4172
#, no-c-format
msgid ""
"To get up and running, it is necessary to configure the Seam Resource "
@@ -5609,7 +5615,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4174
+#: Security.xml:4177
#, no-c-format
msgid ""
"<![CDATA[<servlet>\n"
@@ -5625,20 +5631,20 @@
msgstr ""
#. Tag: title
-#: Security.xml:4179
+#: Security.xml:4182
#, no-c-format
msgid "Adding a CAPTCHA to a form"
msgstr ""
#. Tag: para
-#: Security.xml:4181
+#: Security.xml:4184
#, no-c-format
msgid ""
"Adding a CAPTCHA challenge to a form is extremely easy. Here's an example:"
msgstr ""
#. Tag: programlisting
-#: Security.xml:4185
+#: Security.xml:4188
#, no-c-format
msgid ""
"<![CDATA[<h:graphicImage value=\"/seam/resource/captcha\"/>\n"
@@ -5650,7 +5656,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4187
+#: Security.xml:4190
#, no-c-format
msgid ""
"That's all there is to it. The <literal>graphicImage</literal> control "
@@ -5660,20 +5666,20 @@
msgstr ""
#. Tag: title
-#: Security.xml:4196
+#: Security.xml:4199
#, no-c-format
msgid "Customising the CAPTCHA algorithm"
msgstr ""
#. Tag: para
-#: Security.xml:4198
+#: Security.xml:4201
#, no-c-format
msgid ""
"You may customize the CAPTCHA algorithm by overriding the built-in component:"
msgstr ""
#. Tag: programlisting
-#: Security.xml:4202
+#: Security.xml:4205
#, no-c-format
msgid ""
"<![CDATA[@Name(\"org.jboss.seam.captcha.captcha\")\n"
@@ -5700,13 +5706,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4209 Security.xml:4217
+#: Security.xml:4212 Security.xml:4220
#, no-c-format
msgid "Security Events"
msgstr ""
#. Tag: para
-#: Security.xml:4211
+#: Security.xml:4214
#, no-c-format
msgid ""
"The following table describes a number of events (see <xref linkend=\"events"
@@ -5714,68 +5720,68 @@
msgstr ""
#. Tag: para
-#: Security.xml:4226
+#: Security.xml:4229
#, no-c-format
msgid "Event Key"
msgstr ""
#. Tag: literal
-#: Security.xml:4239
+#: Security.xml:4242
#, no-c-format
msgid "org.jboss.seam.security.loginSuccessful"
msgstr ""
#. Tag: para
-#: Security.xml:4243
+#: Security.xml:4246
#, no-c-format
msgid "Raised when a login attempt is successful."
msgstr ""
#. Tag: literal
-#: Security.xml:4251
+#: Security.xml:4254
#, no-c-format
msgid "org.jboss.seam.security.loginFailed"
msgstr ""
#. Tag: para
-#: Security.xml:4255
+#: Security.xml:4258
#, no-c-format
msgid "Raised when a login attempt fails."
msgstr ""
#. Tag: literal
-#: Security.xml:4263
+#: Security.xml:4266
#, no-c-format
msgid "org.jboss.seam.security.alreadyLoggedIn"
msgstr ""
#. Tag: para
-#: Security.xml:4267
+#: Security.xml:4270
#, no-c-format
msgid ""
"Raised when a user that is already authenticated attempts to log in again."
msgstr ""
#. Tag: literal
-#: Security.xml:4275
+#: Security.xml:4278
#, no-c-format
msgid "org.jboss.seam.security.notLoggedIn"
msgstr ""
#. Tag: para
-#: Security.xml:4279
+#: Security.xml:4282
#, no-c-format
msgid "Raised when a security check fails when the user is not logged in."
msgstr ""
#. Tag: literal
-#: Security.xml:4287
+#: Security.xml:4290
#, no-c-format
msgid "org.jboss.seam.security.notAuthorized"
msgstr ""
#. Tag: para
-#: Security.xml:4291
+#: Security.xml:4294
#, no-c-format
msgid ""
"Raised when a security check fails when the user is logged in however "
@@ -5783,73 +5789,73 @@
msgstr ""
#. Tag: literal
-#: Security.xml:4299
+#: Security.xml:4302
#, no-c-format
msgid "org.jboss.seam.security.preAuthenticate"
msgstr ""
#. Tag: para
-#: Security.xml:4303
+#: Security.xml:4306
#, no-c-format
msgid "Raised just prior to user authentication."
msgstr ""
#. Tag: literal
-#: Security.xml:4311
+#: Security.xml:4314
#, no-c-format
msgid "org.jboss.seam.security.postAuthenticate"
msgstr ""
#. Tag: para
-#: Security.xml:4315
+#: Security.xml:4318
#, no-c-format
msgid "Raised just after user authentication."
msgstr ""
#. Tag: literal
-#: Security.xml:4323
+#: Security.xml:4326
#, no-c-format
msgid "org.jboss.seam.security.loggedOut"
msgstr ""
#. Tag: para
-#: Security.xml:4327
+#: Security.xml:4330
#, no-c-format
msgid "Raised after the user has logged out."
msgstr ""
#. Tag: literal
-#: Security.xml:4335
+#: Security.xml:4338
#, no-c-format
msgid "org.jboss.seam.security.credentialsUpdated"
msgstr ""
#. Tag: para
-#: Security.xml:4339
+#: Security.xml:4342
#, no-c-format
msgid "Raised when the user's credentials have been changed."
msgstr ""
#. Tag: literal
-#: Security.xml:4347
+#: Security.xml:4350
#, no-c-format
msgid "org.jboss.seam.security.rememberMe"
msgstr ""
#. Tag: para
-#: Security.xml:4351
+#: Security.xml:4354
#, no-c-format
msgid "Raised when the Identity's rememberMe property is changed."
msgstr ""
#. Tag: title
-#: Security.xml:4364
+#: Security.xml:4367
#, no-c-format
msgid "Run As"
msgstr ""
#. Tag: para
-#: Security.xml:4366
+#: Security.xml:4369
#, no-c-format
msgid ""
"Sometimes it may be necessary to perform certain operations with elevated "
@@ -5861,7 +5867,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4374
+#: Security.xml:4377
#, no-c-format
msgid ""
"The following code example demonstrates how <literal>RunAsOperation</"
@@ -5872,7 +5878,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4381
+#: Security.xml:4384
#, no-c-format
msgid ""
"<![CDATA[ new RunAsOperation() { \n"
@@ -5884,7 +5890,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4383
+#: Security.xml:4386
#, no-c-format
msgid ""
"In a similar way, the <literal>getPrincipal()</literal> or "
@@ -5895,13 +5901,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4394
+#: Security.xml:4397
#, no-c-format
msgid "Extending the Identity component"
msgstr ""
#. Tag: para
-#: Security.xml:4396
+#: Security.xml:4399
#, no-c-format
msgid ""
"Sometimes it might be necessary to extend the Identity component if your "
@@ -5914,7 +5920,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4404
+#: Security.xml:4407
#, no-c-format
msgid ""
"<![CDATA[@Name(\"org.jboss.seam.security.identity\")\n"
@@ -5949,7 +5955,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4407
+#: Security.xml:4410
#, no-c-format
msgid ""
"Note that an <literal>Identity</literal> component must be marked "
@@ -5959,13 +5965,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4419
+#: Security.xml:4422
#, no-c-format
msgid "OpenID"
msgstr ""
#. Tag: para
-#: Security.xml:4421
+#: Security.xml:4424
#, no-c-format
msgid ""
"OpenID is a community standard for external web-based authentication. The "
@@ -5978,7 +5984,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4430
+#: Security.xml:4433
#, no-c-format
msgid ""
"When using OpenID, the user selects an OpenID provider, and the provider "
@@ -5995,7 +6001,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4439
+#: Security.xml:4442
#, no-c-format
msgid ""
"It's important to realize at this point that authentication does not imply "
@@ -6008,13 +6014,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4449
+#: Security.xml:4452
#, no-c-format
msgid "Configuring OpenID"
msgstr ""
#. Tag: para
-#: Security.xml:4450
+#: Security.xml:4453
#, no-c-format
msgid ""
"Seam uses the openid4java package and requires four additional JARs to make "
@@ -6024,7 +6030,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4456
+#: Security.xml:4459
#, no-c-format
msgid ""
"OpenID processing requires the use of the <literal>OpenIdPhaseListener</"
@@ -6034,7 +6040,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4462
+#: Security.xml:4465
#, no-c-format
msgid ""
"<lifecycle>\n"
@@ -6044,7 +6050,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4465
+#: Security.xml:4468
#, no-c-format
msgid ""
"With this configuration, OpenID support is available to your application. "
@@ -6054,13 +6060,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4473
+#: Security.xml:4476
#, no-c-format
msgid "Presenting an OpenIdDLogin form"
msgstr ""
#. Tag: para
-#: Security.xml:4475
+#: Security.xml:4478
#, no-c-format
msgid ""
"To initiate an OpenID login, you can present a simply form to the user "
@@ -6070,7 +6076,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4480
+#: Security.xml:4483
#, no-c-format
msgid ""
"<h:form>\n"
@@ -6081,7 +6087,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4482
+#: Security.xml:4485
#, no-c-format
msgid ""
"When the user submits the login form, he will be redirected to his OpenID "
@@ -6093,13 +6099,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4491
+#: Security.xml:4494
#, no-c-format
msgid "Logging in immediately"
msgstr ""
#. Tag: para
-#: Security.xml:4493
+#: Security.xml:4496
#, no-c-format
msgid ""
"The simplest strategy is to simply login the user immediately. The following "
@@ -6108,7 +6114,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4497
+#: Security.xml:4500
#, no-c-format
msgid ""
"<page view-id="/openid.xhtml">\n"
@@ -6128,7 +6134,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4499
+#: Security.xml:4502
#, no-c-format
msgid ""
"Thie <literal>loginImmediately()</literal> action checks to see if the "
@@ -6142,13 +6148,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4510
+#: Security.xml:4513
#, no-c-format
msgid "Deferring login"
msgstr ""
#. Tag: para
-#: Security.xml:4512
+#: Security.xml:4515
#, no-c-format
msgid ""
"You may not want the user to be immediately logged in to your application. "
@@ -6165,13 +6171,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4526
+#: Security.xml:4529
#, no-c-format
msgid "Logging out"
msgstr ""
#. Tag: para
-#: Security.xml:4528
+#: Security.xml:4531
#, no-c-format
msgid ""
"Logging out (forgetting an OpenID association) is done by calling <literal>#"
@@ -6182,7 +6188,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4535
+#: Security.xml:4538
#, no-c-format
msgid ""
"<event type="org.jboss.seam.security.loggedOut">\n"
@@ -6191,7 +6197,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4537
+#: Security.xml:4540
#, no-c-format
msgid ""
"It's important that you do not leave this out or the user will not be able "
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Annotations.pot
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Annotations.pot 2009-06-11 20:41:36 UTC (rev 11125)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Annotations.pot 2009-06-11 20:43:04 UTC (rev 11126)
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-06-11 14:37+0000\n"
+"POT-Creation-Date: 2009-06-11 18:44+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <kde-i18n-doc(a)kde.org>\n"
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Author_Group.pot
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Author_Group.pot 2009-06-11 20:41:36 UTC (rev 11125)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Author_Group.pot 2009-06-11 20:43:04 UTC (rev 11126)
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-06-11 14:37+0000\n"
+"POT-Creation-Date: 2009-06-11 18:44+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <kde-i18n-doc(a)kde.org>\n"
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Book_Info.pot
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Book_Info.pot 2009-06-11 20:41:36 UTC (rev 11125)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Book_Info.pot 2009-06-11 20:43:04 UTC (rev 11126)
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-06-11 14:37+0000\n"
+"POT-Creation-Date: 2009-06-11 18:44+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <kde-i18n-doc(a)kde.org>\n"
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Cache.pot
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Cache.pot 2009-06-11 20:41:36 UTC (rev 11125)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Cache.pot 2009-06-11 20:43:04 UTC (rev 11126)
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-06-11 14:37+0000\n"
+"POT-Creation-Date: 2009-06-11 18:44+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <kde-i18n-doc(a)kde.org>\n"
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/ClusteringAndEJBPassivation.pot
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/ClusteringAndEJBPassivation.pot 2009-06-11 20:41:36 UTC (rev 11125)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/ClusteringAndEJBPassivation.pot 2009-06-11 20:43:04 UTC (rev 11126)
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-06-11 14:37+0000\n"
+"POT-Creation-Date: 2009-06-11 18:44+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <kde-i18n-doc(a)kde.org>\n"
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Components.pot
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Components.pot 2009-06-11 20:41:36 UTC (rev 11125)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Components.pot 2009-06-11 20:43:04 UTC (rev 11126)
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-06-11 14:37+0000\n"
+"POT-Creation-Date: 2009-06-11 18:44+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <kde-i18n-doc(a)kde.org>\n"
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Concepts.pot
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Concepts.pot 2009-06-11 20:41:36 UTC (rev 11125)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Concepts.pot 2009-06-11 20:43:04 UTC (rev 11126)
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-06-11 14:37+0000\n"
+"POT-Creation-Date: 2009-06-11 18:44+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <kde-i18n-doc(a)kde.org>\n"
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Configuration.pot
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Configuration.pot 2009-06-11 20:41:36 UTC (rev 11125)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Configuration.pot 2009-06-11 20:43:04 UTC (rev 11126)
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-06-11 14:37+0000\n"
+"POT-Creation-Date: 2009-06-11 18:45+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <kde-i18n-doc(a)kde.org>\n"
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Controls.pot
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Controls.pot 2009-06-11 20:41:36 UTC (rev 11125)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Controls.pot 2009-06-11 20:43:04 UTC (rev 11126)
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-06-11 14:37+0000\n"
+"POT-Creation-Date: 2009-06-11 18:45+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <kde-i18n-doc(a)kde.org>\n"
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Conversations.pot
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Conversations.pot 2009-06-11 20:41:36 UTC (rev 11125)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Conversations.pot 2009-06-11 20:43:04 UTC (rev 11126)
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-06-11 14:37+0000\n"
+"POT-Creation-Date: 2009-06-11 18:45+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <kde-i18n-doc(a)kde.org>\n"
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Dependencies.pot
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Dependencies.pot 2009-06-11 20:41:36 UTC (rev 11125)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Dependencies.pot 2009-06-11 20:43:04 UTC (rev 11126)
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-06-11 14:37+0000\n"
+"POT-Creation-Date: 2009-06-11 18:45+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <kde-i18n-doc(a)kde.org>\n"
@@ -939,8 +939,8 @@
#: Dependencies.xml:1182
#, no-c-format
msgid ""
-"This sample POM will give you Seam, JPA (provided by Hibernate) and "
-"Hibernate Validator:"
+"This sample POM will give you Seam, JPA (provided by Hibernate), Hibernate "
+"Validator and Hibernate Search:"
msgstr ""
#. Tag: programlisting
@@ -971,25 +971,31 @@
" <dependency>\n"
" <groupId>org.hibernate</groupId>\n"
" <artifactId>hibernate-validator</artifactId>\n"
-" <version>3.0.0.GA</version>\n"
+" <version>3.1.0.GA</version>\n"
" </dependency>\n"
"\n"
" <dependency>\n"
" <groupId>org.hibernate</groupId>\n"
" <artifactId>hibernate-annotations</artifactId>\n"
-" <version>3.3.0.ga</version>\n"
+" <version>3.4.0.GA</version>\n"
" </dependency>\n"
"\n"
" <dependency>\n"
" <groupId>org.hibernate</groupId>\n"
" <artifactId>hibernate-entitymanager</artifactId>\n"
-" <version>3.3.1.ga</version>\n"
+" <version>3.4.0.GA</version>\n"
" </dependency>\n"
+" \n"
+" <dependency>\n"
+" <groupId>org.hibernate</groupId>\n"
+" <artifactId>hibernate-search</artifactId>\n"
+" <version>3.1.1.GA</version>\n"
+" </dependency>\n"
"\n"
" <dependency>\n"
" <groupId>org.jboss.seam</groupId>\n"
" <artifactId>jboss-seam</artifactId>\n"
-" <version>2.0.0.GA</version>\n"
+" <version>2.2.0.GA</version>\n"
" </dependency>\n"
" \n"
" </dependencies>\n"
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Drools.pot
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Drools.pot 2009-06-11 20:41:36 UTC (rev 11125)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Drools.pot 2009-06-11 20:43:04 UTC (rev 11126)
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-06-11 14:37+0000\n"
+"POT-Creation-Date: 2009-06-11 18:45+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <kde-i18n-doc(a)kde.org>\n"
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Elenhancements.pot
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Elenhancements.pot 2009-06-11 20:41:36 UTC (rev 11125)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Elenhancements.pot 2009-06-11 20:43:04 UTC (rev 11126)
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-06-11 14:37+0000\n"
+"POT-Creation-Date: 2009-06-11 18:45+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <kde-i18n-doc(a)kde.org>\n"
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Events.pot
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Events.pot 2009-06-11 20:41:36 UTC (rev 11125)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Events.pot 2009-06-11 20:43:04 UTC (rev 11126)
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-06-11 14:37+0000\n"
+"POT-Creation-Date: 2009-06-11 18:45+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <kde-i18n-doc(a)kde.org>\n"
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Excel.pot
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Excel.pot 2009-06-11 20:41:36 UTC (rev 11125)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Excel.pot 2009-06-11 20:43:04 UTC (rev 11126)
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-06-11 14:37+0000\n"
+"POT-Creation-Date: 2009-06-11 18:45+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <kde-i18n-doc(a)kde.org>\n"
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Feedback.pot
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Feedback.pot 2009-06-11 20:41:36 UTC (rev 11125)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Feedback.pot 2009-06-11 20:43:04 UTC (rev 11126)
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-06-11 14:37+0000\n"
+"POT-Creation-Date: 2009-06-11 18:45+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <kde-i18n-doc(a)kde.org>\n"
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Framework.pot
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Framework.pot 2009-06-11 20:41:36 UTC (rev 11125)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Framework.pot 2009-06-11 20:43:04 UTC (rev 11126)
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-06-11 14:37+0000\n"
+"POT-Creation-Date: 2009-06-11 18:45+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <kde-i18n-doc(a)kde.org>\n"
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Getting_Started_With_JBoss_Tools.pot
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Getting_Started_With_JBoss_Tools.pot 2009-06-11 20:41:36 UTC (rev 11125)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Getting_Started_With_JBoss_Tools.pot 2009-06-11 20:43:04 UTC (rev 11126)
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-06-11 14:37+0000\n"
+"POT-Creation-Date: 2009-06-11 18:45+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <kde-i18n-doc(a)kde.org>\n"
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Gettingstarted.pot
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Gettingstarted.pot 2009-06-11 20:41:36 UTC (rev 11125)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Gettingstarted.pot 2009-06-11 20:43:04 UTC (rev 11126)
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-06-11 14:37+0000\n"
+"POT-Creation-Date: 2009-06-11 18:45+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <kde-i18n-doc(a)kde.org>\n"
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Glassfish.pot
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Glassfish.pot 2009-06-11 20:41:36 UTC (rev 11125)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Glassfish.pot 2009-06-11 20:43:04 UTC (rev 11126)
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-06-11 14:37+0000\n"
+"POT-Creation-Date: 2009-06-11 18:45+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <kde-i18n-doc(a)kde.org>\n"
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Groovy.pot
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Groovy.pot 2009-06-11 20:41:36 UTC (rev 11125)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Groovy.pot 2009-06-11 20:43:04 UTC (rev 11126)
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-06-11 14:37+0000\n"
+"POT-Creation-Date: 2009-06-11 18:45+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <kde-i18n-doc(a)kde.org>\n"
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Guice.pot
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Guice.pot 2009-06-11 20:41:36 UTC (rev 11125)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Guice.pot 2009-06-11 20:43:04 UTC (rev 11126)
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-06-11 14:37+0000\n"
+"POT-Creation-Date: 2009-06-11 18:45+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <kde-i18n-doc(a)kde.org>\n"
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Gwt.pot
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Gwt.pot 2009-06-11 20:41:36 UTC (rev 11125)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Gwt.pot 2009-06-11 20:43:04 UTC (rev 11126)
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-06-11 14:37+0000\n"
+"POT-Creation-Date: 2009-06-11 18:45+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <kde-i18n-doc(a)kde.org>\n"
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Hsearch.pot
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Hsearch.pot 2009-06-11 20:41:36 UTC (rev 11125)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Hsearch.pot 2009-06-11 20:43:04 UTC (rev 11126)
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-06-11 14:37+0000\n"
+"POT-Creation-Date: 2009-06-11 18:45+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <kde-i18n-doc(a)kde.org>\n"
@@ -46,7 +46,7 @@
#: Hsearch.xml:21
#, no-c-format
msgid ""
-"Hibernate Search has been designed to integrates nicely and as naturally as "
+"Hibernate Search has been designed to integrate nicely and as naturally as "
"possible with JPA and Hibernate. As a natural extension, JBoss Seam provides "
"an Hibernate Search integration."
msgstr ""
@@ -133,7 +133,7 @@
" <property name=\"hibernate.ejb.event.post-delete\" \n"
" value=\"org.hibernate.search.event.FullTextIndexEventListener"
"\"/>\n"
-"\n"
+" \n"
" </properties>\n"
"</persistence-unit>]]>"
msgstr ""
@@ -142,12 +142,15 @@
#: Hsearch.xml:52
#, no-c-format
msgid ""
-"This step is no longer necessary if Hibernate Annotation or EntityManager "
-"3.3.x are used."
+"It is not longer necessary the register the event listeners if Hibernate "
+"Annotations or EntityManager 3.3.x are used. When using Hibernate Search 3.1."
+"x more eventlisteners are needed, but these are registered automatically by "
+"Hibernate Annotations; refer to the Hibernate Search reference for "
+"configuring it without EntityManager and Annotations."
msgstr ""
#. Tag: para
-#: Hsearch.xml:56
+#: Hsearch.xml:60
#, no-c-format
msgid ""
"In addition to the configuration file, the following jars have to be "
@@ -155,25 +158,25 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:61
+#: Hsearch.xml:65
#, no-c-format
msgid "hibernate-search.jar"
msgstr ""
#. Tag: para
-#: Hsearch.xml:65
+#: Hsearch.xml:69
#, no-c-format
msgid "hibernate-commons-annotations.jar"
msgstr ""
#. Tag: para
-#: Hsearch.xml:69
+#: Hsearch.xml:73
#, no-c-format
msgid "lucene-core.jar"
msgstr ""
#. Tag: para
-#: Hsearch.xml:74
+#: Hsearch.xml:78
#, no-c-format
msgid ""
"If you deploy those in a EAR, don't forget to update <filename>application."
@@ -181,13 +184,13 @@
msgstr ""
#. Tag: title
-#: Hsearch.xml:80
+#: Hsearch.xml:84
#, no-c-format
msgid "Usage"
msgstr ""
#. Tag: para
-#: Hsearch.xml:82
+#: Hsearch.xml:86
#, no-c-format
msgid ""
"Hibernate Search uses annotations to map entities to a Lucene index, check "
@@ -196,7 +199,7 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:87
+#: Hsearch.xml:91
#, no-c-format
msgid ""
"Hibernate Search is fully integrated with the API and semantic of JPA / "
@@ -207,7 +210,7 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:93
+#: Hsearch.xml:97
#, no-c-format
msgid ""
"When Hibernate Search is present, JBoss Seam injects a "
@@ -215,7 +218,7 @@
msgstr ""
#. Tag: programlisting
-#: Hsearch.xml:96
+#: Hsearch.xml:100
#, no-c-format
msgid ""
"<![CDATA[@Stateful\n"
@@ -238,7 +241,7 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:99
+#: Hsearch.xml:103
#, no-c-format
msgid ""
"<classname>FullTextSession</classname> extends <classname>org.hibernate."
@@ -246,14 +249,14 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:104
+#: Hsearch.xml:108
#, no-c-format
msgid ""
"If the Java Persistence API is used, a smoother integration is proposed."
msgstr ""
#. Tag: programlisting
-#: Hsearch.xml:107
+#: Hsearch.xml:111
#, no-c-format
msgid ""
"<![CDATA[@Stateful\n"
@@ -276,7 +279,7 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:109
+#: Hsearch.xml:113
#, no-c-format
msgid ""
"When Hibernate Search is present, a <classname>FulltextEntityManager</"
@@ -287,7 +290,7 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:116
+#: Hsearch.xml:120
#, no-c-format
msgid ""
"When an EJB 3.0 Session or Message Driven Bean injection is used (i.e. via "
@@ -300,7 +303,7 @@
msgstr ""
#. Tag: programlisting
-#: Hsearch.xml:124
+#: Hsearch.xml:128
#, no-c-format
msgid ""
"<![CDATA[@Stateful\n"
@@ -324,15 +327,15 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:129
+#: Hsearch.xml:133
#, no-c-format
msgid ""
"For people accustomed to Hibernate Search out of Seam, note that using "
-"<methodname>Search.createFullTextSession</methodname> is not necessary."
+"<methodname>Search.getFullTextSession</methodname> is not necessary."
msgstr ""
#. Tag: para
-#: Hsearch.xml:134
+#: Hsearch.xml:138
#, no-c-format
msgid ""
"Check the DVDStore or the blog examples of the JBoss Seam distribution for a "
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/I18n.pot
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/I18n.pot 2009-06-11 20:41:36 UTC (rev 11125)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/I18n.pot 2009-06-11 20:43:04 UTC (rev 11126)
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-06-11 14:37+0000\n"
+"POT-Creation-Date: 2009-06-11 18:45+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <kde-i18n-doc(a)kde.org>\n"
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Itext.pot
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Itext.pot 2009-06-11 20:41:36 UTC (rev 11125)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Itext.pot 2009-06-11 20:43:04 UTC (rev 11126)
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-06-11 14:37+0000\n"
+"POT-Creation-Date: 2009-06-11 18:45+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <kde-i18n-doc(a)kde.org>\n"
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Jbpm.pot
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Jbpm.pot 2009-06-11 20:41:36 UTC (rev 11125)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Jbpm.pot 2009-06-11 20:43:04 UTC (rev 11126)
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-06-11 14:37+0000\n"
+"POT-Creation-Date: 2009-06-11 18:45+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <kde-i18n-doc(a)kde.org>\n"
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Jms.pot
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Jms.pot 2009-06-11 20:41:36 UTC (rev 11125)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Jms.pot 2009-06-11 20:43:04 UTC (rev 11126)
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-06-11 14:37+0000\n"
+"POT-Creation-Date: 2009-06-11 18:45+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <kde-i18n-doc(a)kde.org>\n"
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Mail.pot
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Mail.pot 2009-06-11 20:41:36 UTC (rev 11125)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Mail.pot 2009-06-11 20:43:04 UTC (rev 11126)
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-06-11 14:37+0000\n"
+"POT-Creation-Date: 2009-06-11 18:45+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <kde-i18n-doc(a)kde.org>\n"
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Performance.pot
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Performance.pot 2009-06-11 20:41:36 UTC (rev 11125)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Performance.pot 2009-06-11 20:43:04 UTC (rev 11126)
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-06-11 14:37+0000\n"
+"POT-Creation-Date: 2009-06-11 18:45+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <kde-i18n-doc(a)kde.org>\n"
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Persistence.pot
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Persistence.pot 2009-06-11 20:41:36 UTC (rev 11125)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Persistence.pot 2009-06-11 20:43:04 UTC (rev 11126)
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-06-11 14:37+0000\n"
+"POT-Creation-Date: 2009-06-11 18:45+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <kde-i18n-doc(a)kde.org>\n"
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Preface.pot
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Preface.pot 2009-06-11 20:41:36 UTC (rev 11125)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Preface.pot 2009-06-11 20:43:04 UTC (rev 11126)
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-06-11 14:37+0000\n"
+"POT-Creation-Date: 2009-06-11 18:45+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <kde-i18n-doc(a)kde.org>\n"
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Remoting.pot
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Remoting.pot 2009-06-11 20:41:36 UTC (rev 11125)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Remoting.pot 2009-06-11 20:43:04 UTC (rev 11126)
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-06-11 14:37+0000\n"
+"POT-Creation-Date: 2009-06-11 18:45+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <kde-i18n-doc(a)kde.org>\n"
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Revision_History.pot
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Revision_History.pot 2009-06-11 20:41:36 UTC (rev 11125)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Revision_History.pot 2009-06-11 20:43:04 UTC (rev 11126)
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-06-11 14:37+0000\n"
+"POT-Creation-Date: 2009-06-11 18:45+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <kde-i18n-doc(a)kde.org>\n"
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Rss.pot
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Rss.pot 2009-06-11 20:41:36 UTC (rev 11125)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Rss.pot 2009-06-11 20:43:04 UTC (rev 11126)
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-06-11 14:37+0000\n"
+"POT-Creation-Date: 2009-06-11 18:45+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <kde-i18n-doc(a)kde.org>\n"
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Security.pot
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Security.pot 2009-06-11 20:41:36 UTC (rev 11125)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Security.pot 2009-06-11 20:43:04 UTC (rev 11126)
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-06-11 14:37+0000\n"
+"POT-Creation-Date: 2009-06-11 18:45+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <kde-i18n-doc(a)kde.org>\n"
@@ -1191,7 +1191,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:630 Security.xml:764 Security.xml:3382 Security.xml:3545
+#: Security.xml:630 Security.xml:764 Security.xml:3385 Security.xml:3548
#, no-c-format
msgid "Annotation"
msgstr ""
@@ -1204,8 +1204,8 @@
#. Tag: para
#: Security.xml:636 Security.xml:770 Security.xml:966 Security.xml:1418
-#: Security.xml:2147 Security.xml:2756 Security.xml:3171 Security.xml:3388
-#: Security.xml:3551 Security.xml:3792 Security.xml:4229
+#: Security.xml:2147 Security.xml:2756 Security.xml:3174 Security.xml:3391
+#: Security.xml:3554 Security.xml:3795 Security.xml:4232
#, no-c-format
msgid "Description"
msgstr ""
@@ -2229,8 +2229,8 @@
msgstr ""
#. Tag: para
-#: Security.xml:1412 Security.xml:1828 Security.xml:2753 Security.xml:3168
-#: Security.xml:3789 Security.xml:3958
+#: Security.xml:1412 Security.xml:1828 Security.xml:2753 Security.xml:3171
+#: Security.xml:3792 Security.xml:3961
#, no-c-format
msgid "Method"
msgstr ""
@@ -2251,9 +2251,9 @@
#: Security.xml:1433 Security.xml:1452 Security.xml:1471 Security.xml:1490
#: Security.xml:1509 Security.xml:1529 Security.xml:1548 Security.xml:1567
#: Security.xml:1586 Security.xml:1606 Security.xml:1626 Security.xml:1740
-#: Security.xml:1762 Security.xml:1780 Security.xml:2766 Security.xml:3239
-#: Security.xml:3258 Security.xml:3277 Security.xml:3295 Security.xml:3840
-#: Security.xml:3859 Security.xml:3878 Security.xml:3897
+#: Security.xml:1762 Security.xml:1780 Security.xml:2766 Security.xml:3242
+#: Security.xml:3261 Security.xml:3280 Security.xml:3298 Security.xml:3843
+#: Security.xml:3862 Security.xml:3881 Security.xml:3900
#, no-c-format
msgid "boolean"
msgstr ""
@@ -2559,13 +2559,13 @@
msgstr ""
#. Tag: para
-#: Security.xml:1831 Security.xml:3961
+#: Security.xml:1831 Security.xml:3964
#, no-c-format
msgid "Permission Target"
msgstr ""
#. Tag: para
-#: Security.xml:1834 Security.xml:3964
+#: Security.xml:1834 Security.xml:3967
#, no-c-format
msgid "Permission Action"
msgstr ""
@@ -3807,7 +3807,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2750 Security.xml:3165 Security.xml:3786
+#: Security.xml:2750 Security.xml:3168 Security.xml:3789
#, no-c-format
msgid "Return type"
msgstr ""
@@ -3987,41 +3987,47 @@
#. Tag: para
#: Security.xml:2917
#, no-c-format
-msgid "drools-compiler.jar"
+msgid "drools-api.jar"
msgstr ""
#. Tag: para
#: Security.xml:2920
#, no-c-format
-msgid "drools-core.jar"
+msgid "drools-compiler.jar"
msgstr ""
#. Tag: para
#: Security.xml:2923
#, no-c-format
-msgid "janino.jar"
+msgid "drools-core.jar"
msgstr ""
#. Tag: para
#: Security.xml:2926
#, no-c-format
-msgid "antlr-runtime.jar"
+msgid "janino.jar"
msgstr ""
#. Tag: para
#: Security.xml:2929
#, no-c-format
-msgid "mvel14.jar"
+msgid "antlr-runtime.jar"
msgstr ""
+#. Tag: para
+#: Security.xml:2932
+#, no-c-format
+msgid "mvel2.jar"
+msgstr ""
+
#. Tag: title
-#: Security.xml:2936 Security.xml:3128
+#: Security.xml:2939 Security.xml:3131
#, no-c-format
msgid "Configuration"
msgstr ""
#. Tag: para
-#: Security.xml:2938
+#: Security.xml:2941
#, no-c-format
msgid ""
"The configuration for <literal>RuleBasedPermissionResolver</literal> "
@@ -4031,7 +4037,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:2944
+#: Security.xml:2947
#, no-c-format
msgid ""
"<![CDATA[<components xmlns=\"http://jboss.com/products/seam/components\"\n"
@@ -4059,7 +4065,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2946
+#: Security.xml:2949
#, no-c-format
msgid ""
"The default rule base name can be overridden by specifying the "
@@ -4068,7 +4074,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:2951
+#: Security.xml:2954
#, no-c-format
msgid ""
"<![CDATA[\n"
@@ -4077,7 +4083,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2953
+#: Security.xml:2956
#, no-c-format
msgid ""
"Once the <literal>RuleBase</literal> component is configured, it's time to "
@@ -4085,13 +4091,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:2959
+#: Security.xml:2962
#, no-c-format
msgid "Writing Security Rules"
msgstr ""
#. Tag: para
-#: Security.xml:2961
+#: Security.xml:2964
#, no-c-format
msgid ""
"The first step to writing security rules is to create a new rule file in the "
@@ -4102,7 +4108,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2968
+#: Security.xml:2971
#, no-c-format
msgid ""
"So what should the security rules file contain? At this stage it might be a "
@@ -4111,7 +4117,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:2973
+#: Security.xml:2976
#, no-c-format
msgid ""
"<![CDATA[package MyApplicationPermissions;\n"
@@ -4129,7 +4135,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2975
+#: Security.xml:2978
#, no-c-format
msgid ""
"Let's break this down step by step. The first thing we see is the package "
@@ -4139,7 +4145,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2981
+#: Security.xml:2984
#, no-c-format
msgid ""
"The next thing we can notice is a couple of import statements for the "
@@ -4149,7 +4155,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2987
+#: Security.xml:2990
#, no-c-format
msgid ""
"Finally we have the code for the rule. Each rule within a package should be "
@@ -4159,7 +4165,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2993
+#: Security.xml:2996
#, no-c-format
msgid ""
"Looking at the body of the rule definition we can notice two distinct "
@@ -4174,7 +4180,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3002
+#: Security.xml:3005
#, no-c-format
msgid ""
"If we look at the LHS of the rule, we see two conditions listed there. Let's "
@@ -4182,14 +4188,14 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3006
+#: Security.xml:3009
#, no-c-format
msgid ""
"<![CDATA[c: PermissionCheck(target == \"customer\", action == \"delete\")]]>"
msgstr ""
#. Tag: para
-#: Security.xml:3008
+#: Security.xml:3011
#, no-c-format
msgid ""
"In plain english, this condition is stating that there must exist a "
@@ -4199,7 +4205,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3014
+#: Security.xml:3017
#, no-c-format
msgid ""
"So what is the working memory? Also known as a \"stateful session\" in "
@@ -4217,7 +4223,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3026
+#: Security.xml:3029
#, no-c-format
msgid ""
"Besides the <literal>PermissionCheck</literal> facts, there is also a "
@@ -4234,7 +4240,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3037
+#: Security.xml:3040
#, no-c-format
msgid ""
"It is also possible to insert additional long-lived facts into the working "
@@ -4245,7 +4251,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3044
+#: Security.xml:3047
#, no-c-format
msgid ""
"Getting back to our simple example, we can also notice that the first line "
@@ -4256,13 +4262,13 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3051
+#: Security.xml:3054
#, no-c-format
msgid "<![CDATA[Role(name == \"admin\")]]>"
msgstr ""
#. Tag: para
-#: Security.xml:3053
+#: Security.xml:3056
#, no-c-format
msgid ""
"This condition simply states that there must be a <literal>Role</literal> "
@@ -4275,7 +4281,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3061
+#: Security.xml:3064
#, no-c-format
msgid ""
"So what is the consequence of the rule firing? Let's take a look at the RHS "
@@ -4283,13 +4289,13 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3065
+#: Security.xml:3068
#, no-c-format
msgid "<![CDATA[c.grant()]]>"
msgstr ""
#. Tag: para
-#: Security.xml:3067
+#: Security.xml:3070
#, no-c-format
msgid ""
"The RHS consists of Java code, and in this case is invoking the "
@@ -4306,13 +4312,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3081
+#: Security.xml:3084
#, no-c-format
msgid "Non-String permission targets"
msgstr ""
#. Tag: para
-#: Security.xml:3083
+#: Security.xml:3086
#, no-c-format
msgid ""
"So far we have only seen permission checks for String-literal permission "
@@ -4326,7 +4332,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3092
+#: Security.xml:3095
#, no-c-format
msgid ""
"<![CDATA[rule CanCreateBlogComment\n"
@@ -4344,13 +4350,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3097
+#: Security.xml:3100
#, no-c-format
msgid "Wildcard permission checks"
msgstr ""
#. Tag: para
-#: Security.xml:3099
+#: Security.xml:3102
#, no-c-format
msgid ""
"It is possible to implement a wildcard permission check (which allows all "
@@ -4360,7 +4366,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3105
+#: Security.xml:3108
#, no-c-format
msgid ""
"<![CDATA[rule CanDoAnythingToCustomersIfYouAreAnAdmin\n"
@@ -4374,7 +4380,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3107
+#: Security.xml:3110
#, no-c-format
msgid ""
"This rule allows users with the <literal>admin</literal> role to perform "
@@ -4383,13 +4389,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3117
+#: Security.xml:3120
#, no-c-format
msgid "PersistentPermissionResolver"
msgstr ""
#. Tag: para
-#: Security.xml:3119
+#: Security.xml:3122
#, no-c-format
msgid ""
"Another built-in permission resolver provided by Seam, "
@@ -4402,7 +4408,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3130
+#: Security.xml:3133
#, no-c-format
msgid ""
"Before it can be used, <literal>PersistentPermissionResolver</literal> must "
@@ -4415,7 +4421,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3138
+#: Security.xml:3141
#, no-c-format
msgid ""
"<![CDATA[ <security:persistent-permission-resolver permission-store=\"#"
@@ -4423,13 +4429,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3143
+#: Security.xml:3146
#, no-c-format
msgid "Permission Stores"
msgstr ""
#. Tag: para
-#: Security.xml:3145
+#: Security.xml:3148
#, no-c-format
msgid ""
"A permission store is required for <literal>PersistentPermissionResolver</"
@@ -4442,26 +4448,26 @@
msgstr ""
#. Tag: title
-#: Security.xml:3155
+#: Security.xml:3158
#, no-c-format
msgid "PermissionStore interface"
msgstr ""
#. Tag: literal
-#: Security.xml:3181 Security.xml:3200 Security.xml:3219 Security.xml:3802
-#: Security.xml:3821
+#: Security.xml:3184 Security.xml:3203 Security.xml:3222 Security.xml:3805
+#: Security.xml:3824
#, no-c-format
msgid "List<Permission>"
msgstr ""
#. Tag: literal
-#: Security.xml:3186 Security.xml:3826
+#: Security.xml:3189 Security.xml:3829
#, no-c-format
msgid "listPermissions(Object target)"
msgstr ""
#. Tag: para
-#: Security.xml:3190
+#: Security.xml:3193
#, no-c-format
msgid ""
"This method should return a <literal>List</literal> of <literal>Permission</"
@@ -4470,13 +4476,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3205 Security.xml:3807
+#: Security.xml:3208 Security.xml:3810
#, no-c-format
msgid "listPermissions(Object target, String action)"
msgstr ""
#. Tag: para
-#: Security.xml:3209
+#: Security.xml:3212
#, no-c-format
msgid ""
"This method should return a <literal>List</literal> of <literal>Permission</"
@@ -4485,13 +4491,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3224
+#: Security.xml:3227
#, no-c-format
msgid "listPermissions(Set<Object> targets, String action)"
msgstr ""
#. Tag: para
-#: Security.xml:3228
+#: Security.xml:3231
#, no-c-format
msgid ""
"This method should return a <literal>List</literal> of <literal>Permission</"
@@ -4500,13 +4506,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3244
+#: Security.xml:3247
#, no-c-format
msgid "grantPermission(Permission)"
msgstr ""
#. Tag: para
-#: Security.xml:3248
+#: Security.xml:3251
#, no-c-format
msgid ""
"This method should persist the specified <literal>Permission</literal> "
@@ -4514,13 +4520,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3263 Security.xml:3864
+#: Security.xml:3266 Security.xml:3867
#, no-c-format
msgid "grantPermissions(List<Permission> permissions)"
msgstr ""
#. Tag: para
-#: Security.xml:3267
+#: Security.xml:3270
#, no-c-format
msgid ""
"This method should persist all of the <literal>Permission</literal> objects "
@@ -4529,13 +4535,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3282 Security.xml:3883
+#: Security.xml:3285 Security.xml:3886
#, no-c-format
msgid "revokePermission(Permission permission)"
msgstr ""
#. Tag: para
-#: Security.xml:3286
+#: Security.xml:3289
#, no-c-format
msgid ""
"This method should remove the specified <literal>Permission</literal> object "
@@ -4543,13 +4549,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3300 Security.xml:3902
+#: Security.xml:3303 Security.xml:3905
#, no-c-format
msgid "revokePermissions(List<Permission> permissions)"
msgstr ""
#. Tag: para
-#: Security.xml:3304
+#: Security.xml:3307
#, no-c-format
msgid ""
"This method should remove all of the <literal>Permission</literal> objects "
@@ -4557,19 +4563,19 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3314 Security.xml:3916
+#: Security.xml:3317 Security.xml:3919
#, no-c-format
msgid "List<String>"
msgstr ""
#. Tag: literal
-#: Security.xml:3319 Security.xml:3921
+#: Security.xml:3322 Security.xml:3924
#, no-c-format
msgid "listAvailableActions(Object target)"
msgstr ""
#. Tag: para
-#: Security.xml:3323
+#: Security.xml:3326
#, no-c-format
msgid ""
"This method should return a list of all the available actions (as Strings) "
@@ -4579,13 +4585,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3337
+#: Security.xml:3340
#, no-c-format
msgid "JpaPermissionStore"
msgstr ""
#. Tag: para
-#: Security.xml:3339
+#: Security.xml:3342
#, no-c-format
msgid ""
"This is the default <literal>PermissionStore</literal> implementation (and "
@@ -4598,7 +4604,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3347
+#: Security.xml:3350
#, no-c-format
msgid ""
"If you wish to use the same entity (i.e. a single database table) to store "
@@ -4610,7 +4616,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3354
+#: Security.xml:3357
#, no-c-format
msgid ""
"For example, to configure a single entity class to store both user and role "
@@ -4618,7 +4624,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3356
+#: Security.xml:3359
#, no-c-format
msgid ""
"<![CDATA[ <security:jpa-permission-store user-permission-class=\"com.acme."
@@ -4626,14 +4632,14 @@
msgstr ""
#. Tag: para
-#: Security.xml:3358
+#: Security.xml:3361
#, no-c-format
msgid ""
"To configure separate entity classes for storing user and role permissions:"
msgstr ""
#. Tag: programlisting
-#: Security.xml:3360
+#: Security.xml:3363
#, no-c-format
msgid ""
"<![CDATA[ <security:jpa-permission-store user-permission-class=\"com.acme."
@@ -4642,13 +4648,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3363
+#: Security.xml:3366
#, no-c-format
msgid "Permission annotations"
msgstr ""
#. Tag: para
-#: Security.xml:3365
+#: Security.xml:3368
#, no-c-format
msgid ""
"As mentioned, the entity classes that contain the user and role permissions "
@@ -4659,32 +4665,32 @@
msgstr ""
#. Tag: title
-#: Security.xml:3372
+#: Security.xml:3375
#, no-c-format
msgid "Entity Permission annotations"
msgstr ""
#. Tag: para
-#: Security.xml:3385 Security.xml:3548
+#: Security.xml:3388 Security.xml:3551
#, no-c-format
msgid "Target"
msgstr ""
#. Tag: literal
-#: Security.xml:3398
+#: Security.xml:3401
#, no-c-format
msgid "@PermissionTarget"
msgstr ""
#. Tag: literal
-#: Security.xml:3403 Security.xml:3422 Security.xml:3441 Security.xml:3460
-#: Security.xml:3479
+#: Security.xml:3406 Security.xml:3425 Security.xml:3444 Security.xml:3463
+#: Security.xml:3482
#, no-c-format
msgid "FIELD,METHOD"
msgstr ""
#. Tag: para
-#: Security.xml:3407
+#: Security.xml:3410
#, no-c-format
msgid ""
"This annotation identifies the property of the entity that will contain the "
@@ -4693,13 +4699,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3417
+#: Security.xml:3420
#, no-c-format
msgid "@PermissionAction"
msgstr ""
#. Tag: para
-#: Security.xml:3426
+#: Security.xml:3429
#, no-c-format
msgid ""
"This annotation identifies the property of the entity that will contain the "
@@ -4708,13 +4714,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3436
+#: Security.xml:3439
#, no-c-format
msgid "@PermissionUser"
msgstr ""
#. Tag: para
-#: Security.xml:3445
+#: Security.xml:3448
#, no-c-format
msgid ""
"This annotation identifies the property of the entity that will contain the "
@@ -4723,13 +4729,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3455
+#: Security.xml:3458
#, no-c-format
msgid "@PermissionRole"
msgstr ""
#. Tag: para
-#: Security.xml:3464
+#: Security.xml:3467
#, no-c-format
msgid ""
"This annotation identifies the property of the entity that will contain the "
@@ -4738,13 +4744,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3474
+#: Security.xml:3477
#, no-c-format
msgid "@PermissionDiscriminator"
msgstr ""
#. Tag: para
-#: Security.xml:3483
+#: Security.xml:3486
#, no-c-format
msgid ""
"This annotation should be used when the same entity/table is used to store "
@@ -4761,20 +4767,20 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3493
+#: Security.xml:3496
#, no-c-format
msgid ""
"<![CDATA[ @PermissionDiscriminator(userValue = \"u\", roleValue = \"r\")]]>"
msgstr ""
#. Tag: title
-#: Security.xml:3504
+#: Security.xml:3507
#, no-c-format
msgid "Example Entity"
msgstr ""
#. Tag: para
-#: Security.xml:3506
+#: Security.xml:3509
#, no-c-format
msgid ""
"Here is an example of an entity class that is used to store both user and "
@@ -4783,7 +4789,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3511
+#: Security.xml:3514
#, no-c-format
msgid ""
"<![CDATA[\n"
@@ -4844,7 +4850,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3513
+#: Security.xml:3516
#, no-c-format
msgid ""
"As can be seen in the above example, the <literal>getDiscriminator()</"
@@ -4861,13 +4867,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3526
+#: Security.xml:3529
#, no-c-format
msgid "Class-specific Permission Configuration"
msgstr ""
#. Tag: para
-#: Security.xml:3528
+#: Security.xml:3531
#, no-c-format
msgid ""
"A further set of class-specific annotations can be used to configure a "
@@ -4877,25 +4883,25 @@
msgstr ""
#. Tag: title
-#: Security.xml:3535
+#: Security.xml:3538
#, no-c-format
msgid "Class Permission Annotations"
msgstr ""
#. Tag: literal
-#: Security.xml:3561
+#: Security.xml:3564
#, no-c-format
msgid "@Permissions"
msgstr ""
#. Tag: literal
-#: Security.xml:3566 Security.xml:3584
+#: Security.xml:3569 Security.xml:3587
#, no-c-format
msgid "TYPE"
msgstr ""
#. Tag: para
-#: Security.xml:3570
+#: Security.xml:3573
#, no-c-format
msgid ""
"A container annotation, this annotation may contain an array of "
@@ -4903,13 +4909,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3579
+#: Security.xml:3582
#, no-c-format
msgid "@Permission"
msgstr ""
#. Tag: para
-#: Security.xml:3588
+#: Security.xml:3591
#, no-c-format
msgid ""
"This annotation defines a single allowable permission action for the target "
@@ -4920,7 +4926,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3600
+#: Security.xml:3603
#, no-c-format
msgid ""
"Here's an example of the above annotations in action. The following class "
@@ -4928,7 +4934,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3604
+#: Security.xml:3607
#, no-c-format
msgid ""
"<![CDATA[@Permissions({\n"
@@ -4940,7 +4946,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3606
+#: Security.xml:3609
#, no-c-format
msgid ""
"This example demonstrates how two allowable permission actions, "
@@ -4949,13 +4955,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3614
+#: Security.xml:3617
#, no-c-format
msgid "Permission masks"
msgstr ""
#. Tag: para
-#: Security.xml:3616
+#: Security.xml:3619
#, no-c-format
msgid ""
"By default, multiple permissions for the same target object and recipient "
@@ -4967,7 +4973,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3623
+#: Security.xml:3626
#, no-c-format
msgid ""
"For example, if recipient \"Bob\" is granted both the <literal>view</"
@@ -4980,7 +4986,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3630
+#: Security.xml:3633
#, no-c-format
msgid ""
"<![CDATA[@Permissions({\n"
@@ -4992,7 +4998,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3632
+#: Security.xml:3635
#, no-c-format
msgid ""
"The <literal>action</literal> property will instead simply contain \"3"
@@ -5002,7 +5008,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3638
+#: Security.xml:3641
#, no-c-format
msgid ""
"Obviously, it is very important that the <literal>mask</literal> values "
@@ -5010,13 +5016,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3644
+#: Security.xml:3647
#, no-c-format
msgid "Identifier Policy"
msgstr ""
#. Tag: para
-#: Security.xml:3646
+#: Security.xml:3649
#, no-c-format
msgid ""
"When storing or looking up permissions, <literal>JpaPermissionStore</"
@@ -5030,7 +5036,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3654
+#: Security.xml:3657
#, no-c-format
msgid ""
"The <literal>IdentifierStrategy</literal> interface is very simple, "
@@ -5038,7 +5044,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3658
+#: Security.xml:3661
#, no-c-format
msgid ""
"<![CDATA[public interface IdentifierStrategy {\n"
@@ -5048,7 +5054,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3660
+#: Security.xml:3663
#, no-c-format
msgid ""
"The first method, <literal>canIdentify()</literal> simply returns "
@@ -5059,7 +5065,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3666
+#: Security.xml:3669
#, no-c-format
msgid ""
"Seam provides two <literal>IdentifierStrategy</literal> implementations, "
@@ -5068,7 +5074,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3671
+#: Security.xml:3674
#, no-c-format
msgid ""
"To explicitly configure a specific identifier strategy to use for a "
@@ -5081,13 +5087,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3681
+#: Security.xml:3684
#, no-c-format
msgid "ClassIdentifierStrategy"
msgstr ""
#. Tag: para
-#: Security.xml:3683
+#: Security.xml:3686
#, no-c-format
msgid ""
"This identifier strategy is used to generate unique identifiers for classes, "
@@ -5101,7 +5107,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3692
+#: Security.xml:3695
#, no-c-format
msgid ""
"<![CDATA[@Identifier(name = \"customer\")\n"
@@ -5109,7 +5115,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3694
+#: Security.xml:3697
#, no-c-format
msgid ""
"The identifier for the following class will be \"<literal>customerAction</"
@@ -5117,7 +5123,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3698
+#: Security.xml:3701
#, no-c-format
msgid ""
"<![CDATA[@Name(\"customerAction\")\n"
@@ -5125,7 +5131,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3700
+#: Security.xml:3703
#, no-c-format
msgid ""
"Finally, the identifier for the following class will be \"<literal>Customer</"
@@ -5133,19 +5139,19 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3704
+#: Security.xml:3707
#, no-c-format
msgid "<![CDATA[public class Customer { ]]>"
msgstr ""
#. Tag: title
-#: Security.xml:3709
+#: Security.xml:3712
#, no-c-format
msgid "EntityIdentifierStrategy"
msgstr ""
#. Tag: para
-#: Security.xml:3711
+#: Security.xml:3714
#, no-c-format
msgid ""
"This identifier strategy is used to generate unique identifiers for entity "
@@ -5162,7 +5168,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3722
+#: Security.xml:3725
#, no-c-format
msgid ""
"<![CDATA[@Identifier(value = EntityIdentifierStrategy.class)\n"
@@ -5170,7 +5176,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3724
+#: Security.xml:3727
#, no-c-format
msgid ""
"For an example of the type of identifier values generated, assume we have "
@@ -5178,7 +5184,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3728
+#: Security.xml:3731
#, no-c-format
msgid ""
"<![CDATA[@Entity\n"
@@ -5201,7 +5207,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3730
+#: Security.xml:3733
#, no-c-format
msgid ""
"For a <literal>Customer</literal> instance with an <literal>id</literal> "
@@ -5211,7 +5217,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3736
+#: Security.xml:3739
#, no-c-format
msgid ""
"<![CDATA[@Entity\n"
@@ -5220,7 +5226,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3738
+#: Security.xml:3741
#, no-c-format
msgid ""
"Then a <literal>Customer</literal> with an <literal>id</literal> value of "
@@ -5229,13 +5235,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3751
+#: Security.xml:3754
#, no-c-format
msgid "Permission Management"
msgstr ""
#. Tag: para
-#: Security.xml:3753
+#: Security.xml:3756
#, no-c-format
msgid ""
"In much the same way that Seam Security provides an Identity Management API "
@@ -5245,13 +5251,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3760
+#: Security.xml:3763
#, no-c-format
msgid "PermissionManager"
msgstr ""
#. Tag: para
-#: Security.xml:3762
+#: Security.xml:3765
#, no-c-format
msgid ""
"The <literal>PermissionManager</literal> component is an application-scoped "
@@ -5264,7 +5270,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3769
+#: Security.xml:3772
#, no-c-format
msgid ""
"<![CDATA[\n"
@@ -5274,7 +5280,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3771
+#: Security.xml:3774
#, no-c-format
msgid ""
"The following table describes each of the available methods provided by "
@@ -5282,13 +5288,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3776
+#: Security.xml:3779
#, no-c-format
msgid "PermissionManager API methods"
msgstr ""
#. Tag: para
-#: Security.xml:3811 Security.xml:3830
+#: Security.xml:3814 Security.xml:3833
#, no-c-format
msgid ""
"Returns a list of <literal>Permission</literal> objects representing all of "
@@ -5296,13 +5302,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3845
+#: Security.xml:3848
#, no-c-format
msgid "grantPermission(Permission permission)"
msgstr ""
#. Tag: para
-#: Security.xml:3849
+#: Security.xml:3852
#, no-c-format
msgid ""
"Persists (grants) the specified <literal>Permission</literal> to the backend "
@@ -5310,7 +5316,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3868
+#: Security.xml:3871
#, no-c-format
msgid ""
"Persists (grants) the specified list of <literal>Permission</literal>s to "
@@ -5318,7 +5324,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3887
+#: Security.xml:3890
#, no-c-format
msgid ""
"Removes (revokes) the specified <literal>Permission</literal> from the "
@@ -5326,7 +5332,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3906
+#: Security.xml:3909
#, no-c-format
msgid ""
"Removes (revokes) the specified list of <literal>Permission</literal>s from "
@@ -5334,7 +5340,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3925
+#: Security.xml:3928
#, no-c-format
msgid ""
"Returns a list of the available actions for the specified target object. The "
@@ -5343,13 +5349,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3940
+#: Security.xml:3943
#, no-c-format
msgid "Permission checks for PermissionManager operations"
msgstr ""
#. Tag: para
-#: Security.xml:3942
+#: Security.xml:3945
#, no-c-format
msgid ""
"Invoking the methods of <literal>PermissionManager</literal> requires that "
@@ -5359,37 +5365,37 @@
msgstr ""
#. Tag: title
-#: Security.xml:3949
+#: Security.xml:3952
#, no-c-format
msgid "Permission Management Security Permissions"
msgstr ""
#. Tag: literal
-#: Security.xml:3973
+#: Security.xml:3976
#, no-c-format
msgid "listPermissions()"
msgstr ""
#. Tag: para
-#: Security.xml:3977
+#: Security.xml:3980
#, no-c-format
msgid "The specified <literal>target</literal>"
msgstr ""
#. Tag: literal
-#: Security.xml:3983
+#: Security.xml:3986
#, no-c-format
msgid "seam.read-permissions"
msgstr ""
#. Tag: literal
-#: Security.xml:3991 Security.xml:4011
+#: Security.xml:3994 Security.xml:4014
#, no-c-format
msgid "grantPermission()"
msgstr ""
#. Tag: para
-#: Security.xml:3995
+#: Security.xml:3998
#, no-c-format
msgid ""
"The target of the specified <literal>Permission</literal>, or each of the "
@@ -5398,56 +5404,56 @@
msgstr ""
#. Tag: literal
-#: Security.xml:4003 Security.xml:4021 Security.xml:4039
+#: Security.xml:4006 Security.xml:4024 Security.xml:4042
#, no-c-format
msgid "seam.grant-permission"
msgstr ""
#. Tag: para
-#: Security.xml:4015 Security.xml:4051
+#: Security.xml:4018 Security.xml:4054
#, no-c-format
msgid "The target of the specified <literal>Permission</literal>."
msgstr ""
#. Tag: literal
-#: Security.xml:4029
+#: Security.xml:4032
#, no-c-format
msgid "grantPermissions()"
msgstr ""
#. Tag: para
-#: Security.xml:4033 Security.xml:4069
+#: Security.xml:4036 Security.xml:4072
#, no-c-format
msgid ""
"Each of the targets of the specified list of <literal>Permission</literal>s."
msgstr ""
#. Tag: literal
-#: Security.xml:4047
+#: Security.xml:4050
#, no-c-format
msgid "revokePermission()"
msgstr ""
#. Tag: literal
-#: Security.xml:4057 Security.xml:4075
+#: Security.xml:4060 Security.xml:4078
#, no-c-format
msgid "seam.revoke-permission"
msgstr ""
#. Tag: literal
-#: Security.xml:4065
+#: Security.xml:4068
#, no-c-format
msgid "revokePermissions()"
msgstr ""
#. Tag: title
-#: Security.xml:4088
+#: Security.xml:4091
#, no-c-format
msgid "SSL Security"
msgstr ""
#. Tag: para
-#: Security.xml:4090
+#: Security.xml:4093
#, no-c-format
msgid ""
"Seam includes basic support for serving sensitive pages via the HTTPS "
@@ -5458,13 +5464,13 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4097
+#: Security.xml:4100
#, no-c-format
msgid "<![CDATA[<page view-id=\"/login.xhtml\" scheme=\"https\"/>]]>"
msgstr ""
#. Tag: para
-#: Security.xml:4099
+#: Security.xml:4102
#, no-c-format
msgid ""
"This configuration is automatically extended to both <literal>s:link</"
@@ -5476,13 +5482,13 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4106
+#: Security.xml:4109
#, no-c-format
msgid "<![CDATA[<s:link view=\"/login.xhtml\" value=\"Login\"/>]]>"
msgstr ""
#. Tag: para
-#: Security.xml:4108
+#: Security.xml:4111
#, no-c-format
msgid ""
"Browsing directly to a view when using the <emphasis>incorrect</emphasis> "
@@ -5493,7 +5499,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4115
+#: Security.xml:4118
#, no-c-format
msgid ""
"It is also possible to configure a <emphasis>default scheme</emphasis> for "
@@ -5507,13 +5513,13 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4124
+#: Security.xml:4127
#, no-c-format
msgid "<![CDATA[<page view-id=\"*\" scheme=\"http\" />]]>"
msgstr ""
#. Tag: para
-#: Security.xml:4126
+#: Security.xml:4129
#, no-c-format
msgid ""
"Of course, if <emphasis>none</emphasis> of the pages in your application use "
@@ -5521,7 +5527,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4131
+#: Security.xml:4134
#, no-c-format
msgid ""
"You may configure Seam to automatically invalidate the current HTTP session "
@@ -5530,13 +5536,13 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4136
+#: Security.xml:4139
#, no-c-format
msgid "<![CDATA[<web:session invalidate-on-scheme-change=\"true\"/>]]>"
msgstr ""
#. Tag: para
-#: Security.xml:4138
+#: Security.xml:4141
#, no-c-format
msgid ""
"This option helps make your system less vulnerable to sniffing of the "
@@ -5545,13 +5551,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4144
+#: Security.xml:4147
#, no-c-format
msgid "Overriding the default ports"
msgstr ""
#. Tag: para
-#: Security.xml:4146
+#: Security.xml:4149
#, no-c-format
msgid ""
"If you wish to configure the HTTP and HTTPS ports manually, they may be "
@@ -5561,7 +5567,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4152
+#: Security.xml:4155
#, no-c-format
msgid ""
"<![CDATA[\n"
@@ -5577,13 +5583,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4158
+#: Security.xml:4161
#, no-c-format
msgid "CAPTCHA"
msgstr ""
#. Tag: para
-#: Security.xml:4160
+#: Security.xml:4163
#, no-c-format
msgid ""
"Though strictly not part of the security API, Seam provides a built-in "
@@ -5595,13 +5601,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4168
+#: Security.xml:4171
#, no-c-format
msgid "Configuring the CAPTCHA Servlet"
msgstr ""
#. Tag: para
-#: Security.xml:4169
+#: Security.xml:4172
#, no-c-format
msgid ""
"To get up and running, it is necessary to configure the Seam Resource "
@@ -5610,7 +5616,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4174
+#: Security.xml:4177
#, no-c-format
msgid ""
"<![CDATA[<servlet>\n"
@@ -5626,20 +5632,20 @@
msgstr ""
#. Tag: title
-#: Security.xml:4179
+#: Security.xml:4182
#, no-c-format
msgid "Adding a CAPTCHA to a form"
msgstr ""
#. Tag: para
-#: Security.xml:4181
+#: Security.xml:4184
#, no-c-format
msgid ""
"Adding a CAPTCHA challenge to a form is extremely easy. Here's an example:"
msgstr ""
#. Tag: programlisting
-#: Security.xml:4185
+#: Security.xml:4188
#, no-c-format
msgid ""
"<![CDATA[<h:graphicImage value=\"/seam/resource/captcha\"/>\n"
@@ -5651,7 +5657,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4187
+#: Security.xml:4190
#, no-c-format
msgid ""
"That's all there is to it. The <literal>graphicImage</literal> control "
@@ -5661,20 +5667,20 @@
msgstr ""
#. Tag: title
-#: Security.xml:4196
+#: Security.xml:4199
#, no-c-format
msgid "Customising the CAPTCHA algorithm"
msgstr ""
#. Tag: para
-#: Security.xml:4198
+#: Security.xml:4201
#, no-c-format
msgid ""
"You may customize the CAPTCHA algorithm by overriding the built-in component:"
msgstr ""
#. Tag: programlisting
-#: Security.xml:4202
+#: Security.xml:4205
#, no-c-format
msgid ""
"<![CDATA[@Name(\"org.jboss.seam.captcha.captcha\")\n"
@@ -5701,13 +5707,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4209 Security.xml:4217
+#: Security.xml:4212 Security.xml:4220
#, no-c-format
msgid "Security Events"
msgstr ""
#. Tag: para
-#: Security.xml:4211
+#: Security.xml:4214
#, no-c-format
msgid ""
"The following table describes a number of events (see <xref linkend=\"events"
@@ -5715,68 +5721,68 @@
msgstr ""
#. Tag: para
-#: Security.xml:4226
+#: Security.xml:4229
#, no-c-format
msgid "Event Key"
msgstr ""
#. Tag: literal
-#: Security.xml:4239
+#: Security.xml:4242
#, no-c-format
msgid "org.jboss.seam.security.loginSuccessful"
msgstr ""
#. Tag: para
-#: Security.xml:4243
+#: Security.xml:4246
#, no-c-format
msgid "Raised when a login attempt is successful."
msgstr ""
#. Tag: literal
-#: Security.xml:4251
+#: Security.xml:4254
#, no-c-format
msgid "org.jboss.seam.security.loginFailed"
msgstr ""
#. Tag: para
-#: Security.xml:4255
+#: Security.xml:4258
#, no-c-format
msgid "Raised when a login attempt fails."
msgstr ""
#. Tag: literal
-#: Security.xml:4263
+#: Security.xml:4266
#, no-c-format
msgid "org.jboss.seam.security.alreadyLoggedIn"
msgstr ""
#. Tag: para
-#: Security.xml:4267
+#: Security.xml:4270
#, no-c-format
msgid ""
"Raised when a user that is already authenticated attempts to log in again."
msgstr ""
#. Tag: literal
-#: Security.xml:4275
+#: Security.xml:4278
#, no-c-format
msgid "org.jboss.seam.security.notLoggedIn"
msgstr ""
#. Tag: para
-#: Security.xml:4279
+#: Security.xml:4282
#, no-c-format
msgid "Raised when a security check fails when the user is not logged in."
msgstr ""
#. Tag: literal
-#: Security.xml:4287
+#: Security.xml:4290
#, no-c-format
msgid "org.jboss.seam.security.notAuthorized"
msgstr ""
#. Tag: para
-#: Security.xml:4291
+#: Security.xml:4294
#, no-c-format
msgid ""
"Raised when a security check fails when the user is logged in however "
@@ -5784,73 +5790,73 @@
msgstr ""
#. Tag: literal
-#: Security.xml:4299
+#: Security.xml:4302
#, no-c-format
msgid "org.jboss.seam.security.preAuthenticate"
msgstr ""
#. Tag: para
-#: Security.xml:4303
+#: Security.xml:4306
#, no-c-format
msgid "Raised just prior to user authentication."
msgstr ""
#. Tag: literal
-#: Security.xml:4311
+#: Security.xml:4314
#, no-c-format
msgid "org.jboss.seam.security.postAuthenticate"
msgstr ""
#. Tag: para
-#: Security.xml:4315
+#: Security.xml:4318
#, no-c-format
msgid "Raised just after user authentication."
msgstr ""
#. Tag: literal
-#: Security.xml:4323
+#: Security.xml:4326
#, no-c-format
msgid "org.jboss.seam.security.loggedOut"
msgstr ""
#. Tag: para
-#: Security.xml:4327
+#: Security.xml:4330
#, no-c-format
msgid "Raised after the user has logged out."
msgstr ""
#. Tag: literal
-#: Security.xml:4335
+#: Security.xml:4338
#, no-c-format
msgid "org.jboss.seam.security.credentialsUpdated"
msgstr ""
#. Tag: para
-#: Security.xml:4339
+#: Security.xml:4342
#, no-c-format
msgid "Raised when the user's credentials have been changed."
msgstr ""
#. Tag: literal
-#: Security.xml:4347
+#: Security.xml:4350
#, no-c-format
msgid "org.jboss.seam.security.rememberMe"
msgstr ""
#. Tag: para
-#: Security.xml:4351
+#: Security.xml:4354
#, no-c-format
msgid "Raised when the Identity's rememberMe property is changed."
msgstr ""
#. Tag: title
-#: Security.xml:4364
+#: Security.xml:4367
#, no-c-format
msgid "Run As"
msgstr ""
#. Tag: para
-#: Security.xml:4366
+#: Security.xml:4369
#, no-c-format
msgid ""
"Sometimes it may be necessary to perform certain operations with elevated "
@@ -5862,7 +5868,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4374
+#: Security.xml:4377
#, no-c-format
msgid ""
"The following code example demonstrates how <literal>RunAsOperation</"
@@ -5873,7 +5879,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4381
+#: Security.xml:4384
#, no-c-format
msgid ""
"<![CDATA[ new RunAsOperation() { \n"
@@ -5885,7 +5891,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4383
+#: Security.xml:4386
#, no-c-format
msgid ""
"In a similar way, the <literal>getPrincipal()</literal> or "
@@ -5896,13 +5902,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4394
+#: Security.xml:4397
#, no-c-format
msgid "Extending the Identity component"
msgstr ""
#. Tag: para
-#: Security.xml:4396
+#: Security.xml:4399
#, no-c-format
msgid ""
"Sometimes it might be necessary to extend the Identity component if your "
@@ -5915,7 +5921,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4404
+#: Security.xml:4407
#, no-c-format
msgid ""
"<![CDATA[@Name(\"org.jboss.seam.security.identity\")\n"
@@ -5950,7 +5956,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4407
+#: Security.xml:4410
#, no-c-format
msgid ""
"Note that an <literal>Identity</literal> component must be marked "
@@ -5960,13 +5966,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4419
+#: Security.xml:4422
#, no-c-format
msgid "OpenID"
msgstr ""
#. Tag: para
-#: Security.xml:4421
+#: Security.xml:4424
#, no-c-format
msgid ""
"OpenID is a community standard for external web-based authentication. The "
@@ -5979,7 +5985,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4430
+#: Security.xml:4433
#, no-c-format
msgid ""
"When using OpenID, the user selects an OpenID provider, and the provider "
@@ -5996,7 +6002,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4439
+#: Security.xml:4442
#, no-c-format
msgid ""
"It's important to realize at this point that authentication does not imply "
@@ -6009,13 +6015,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4449
+#: Security.xml:4452
#, no-c-format
msgid "Configuring OpenID"
msgstr ""
#. Tag: para
-#: Security.xml:4450
+#: Security.xml:4453
#, no-c-format
msgid ""
"Seam uses the openid4java package and requires four additional JARs to make "
@@ -6025,7 +6031,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4456
+#: Security.xml:4459
#, no-c-format
msgid ""
"OpenID processing requires the use of the <literal>OpenIdPhaseListener</"
@@ -6035,7 +6041,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4462
+#: Security.xml:4465
#, no-c-format
msgid ""
"<lifecycle>\n"
@@ -6045,7 +6051,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4465
+#: Security.xml:4468
#, no-c-format
msgid ""
"With this configuration, OpenID support is available to your application. "
@@ -6055,13 +6061,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4473
+#: Security.xml:4476
#, no-c-format
msgid "Presenting an OpenIdDLogin form"
msgstr ""
#. Tag: para
-#: Security.xml:4475
+#: Security.xml:4478
#, no-c-format
msgid ""
"To initiate an OpenID login, you can present a simply form to the user "
@@ -6071,7 +6077,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4480
+#: Security.xml:4483
#, no-c-format
msgid ""
"<h:form>\n"
@@ -6082,7 +6088,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4482
+#: Security.xml:4485
#, no-c-format
msgid ""
"When the user submits the login form, he will be redirected to his OpenID "
@@ -6094,13 +6100,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4491
+#: Security.xml:4494
#, no-c-format
msgid "Logging in immediately"
msgstr ""
#. Tag: para
-#: Security.xml:4493
+#: Security.xml:4496
#, no-c-format
msgid ""
"The simplest strategy is to simply login the user immediately. The following "
@@ -6109,7 +6115,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4497
+#: Security.xml:4500
#, no-c-format
msgid ""
"<page view-id="/openid.xhtml">\n"
@@ -6129,7 +6135,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4499
+#: Security.xml:4502
#, no-c-format
msgid ""
"Thie <literal>loginImmediately()</literal> action checks to see if the "
@@ -6143,13 +6149,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4510
+#: Security.xml:4513
#, no-c-format
msgid "Deferring login"
msgstr ""
#. Tag: para
-#: Security.xml:4512
+#: Security.xml:4515
#, no-c-format
msgid ""
"You may not want the user to be immediately logged in to your application. "
@@ -6166,13 +6172,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4526
+#: Security.xml:4529
#, no-c-format
msgid "Logging out"
msgstr ""
#. Tag: para
-#: Security.xml:4528
+#: Security.xml:4531
#, no-c-format
msgid ""
"Logging out (forgetting an OpenID association) is done by calling <literal>#"
@@ -6183,7 +6189,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4535
+#: Security.xml:4538
#, no-c-format
msgid ""
"<event type="org.jboss.seam.security.loggedOut">\n"
@@ -6192,7 +6198,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4537
+#: Security.xml:4540
#, no-c-format
msgid ""
"It's important that you do not leave this out or the user will not be able "
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Spring.pot
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Spring.pot 2009-06-11 20:41:36 UTC (rev 11125)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Spring.pot 2009-06-11 20:43:04 UTC (rev 11126)
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-06-11 14:37+0000\n"
+"POT-Creation-Date: 2009-06-11 18:45+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <kde-i18n-doc(a)kde.org>\n"
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Testing.pot
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Testing.pot 2009-06-11 20:41:36 UTC (rev 11125)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Testing.pot 2009-06-11 20:43:04 UTC (rev 11126)
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-06-11 14:37+0000\n"
+"POT-Creation-Date: 2009-06-11 18:45+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <kde-i18n-doc(a)kde.org>\n"
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Text.pot
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Text.pot 2009-06-11 20:41:36 UTC (rev 11125)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Text.pot 2009-06-11 20:43:04 UTC (rev 11126)
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-06-11 14:37+0000\n"
+"POT-Creation-Date: 2009-06-11 18:45+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <kde-i18n-doc(a)kde.org>\n"
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Tools.pot
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Tools.pot 2009-06-11 20:41:36 UTC (rev 11125)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Tools.pot 2009-06-11 20:43:04 UTC (rev 11126)
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-06-11 14:37+0000\n"
+"POT-Creation-Date: 2009-06-11 18:45+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <kde-i18n-doc(a)kde.org>\n"
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Tutorial.pot
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Tutorial.pot 2009-06-11 20:41:36 UTC (rev 11125)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Tutorial.pot 2009-06-11 20:43:04 UTC (rev 11126)
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-06-11 14:38+0000\n"
+"POT-Creation-Date: 2009-06-11 18:45+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <kde-i18n-doc(a)kde.org>\n"
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Validation.pot
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Validation.pot 2009-06-11 20:41:36 UTC (rev 11125)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Validation.pot 2009-06-11 20:43:04 UTC (rev 11126)
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-06-11 14:38+0000\n"
+"POT-Creation-Date: 2009-06-11 18:45+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <kde-i18n-doc(a)kde.org>\n"
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Weblogic.pot
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Weblogic.pot 2009-06-11 20:41:36 UTC (rev 11125)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Weblogic.pot 2009-06-11 20:43:04 UTC (rev 11126)
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-06-11 14:38+0000\n"
+"POT-Creation-Date: 2009-06-11 18:45+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <kde-i18n-doc(a)kde.org>\n"
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Webservices.pot
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Webservices.pot 2009-06-11 20:41:36 UTC (rev 11125)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Webservices.pot 2009-06-11 20:43:04 UTC (rev 11126)
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-06-11 14:38+0000\n"
+"POT-Creation-Date: 2009-06-11 18:45+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <kde-i18n-doc(a)kde.org>\n"
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Websphere.pot
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Websphere.pot 2009-06-11 20:41:36 UTC (rev 11125)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Websphere.pot 2009-06-11 20:43:04 UTC (rev 11126)
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-06-11 14:38+0000\n"
+"POT-Creation-Date: 2009-06-11 18:45+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <kde-i18n-doc(a)kde.org>\n"
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Wicket.pot
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Wicket.pot 2009-06-11 20:41:36 UTC (rev 11125)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Wicket.pot 2009-06-11 20:43:04 UTC (rev 11126)
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-06-11 14:38+0000\n"
+"POT-Creation-Date: 2009-06-11 18:45+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <kde-i18n-doc(a)kde.org>\n"
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Xml.pot
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Xml.pot 2009-06-11 20:41:36 UTC (rev 11125)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/pot/Xml.pot 2009-06-11 20:43:04 UTC (rev 11126)
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-06-11 14:38+0000\n"
+"POT-Creation-Date: 2009-06-11 18:45+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <kde-i18n-doc(a)kde.org>\n"
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/pt-BR/Dependencies.po
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/pt-BR/Dependencies.po 2009-06-11 20:41:36 UTC (rev 11125)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/pt-BR/Dependencies.po 2009-06-11 20:43:04 UTC (rev 11126)
@@ -5,7 +5,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-04-15 13:51+0000\n"
+"POT-Creation-Date: 2009-06-11 18:45+0000\n"
"PO-Revision-Date: 2008-04-04 01:24+0000\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -938,8 +938,8 @@
#: Dependencies.xml:1182
#, no-c-format
msgid ""
-"This sample POM will give you Seam, JPA (provided by Hibernate) and "
-"Hibernate Validator:"
+"This sample POM will give you Seam, JPA (provided by Hibernate), Hibernate "
+"Validator and Hibernate Search:"
msgstr ""
#. Tag: programlisting
@@ -970,25 +970,31 @@
" <dependency>\n"
" <groupId>org.hibernate</groupId>\n"
" <artifactId>hibernate-validator</artifactId>\n"
-" <version>3.0.0.GA</version>\n"
+" <version>3.1.0.GA</version>\n"
" </dependency>\n"
"\n"
" <dependency>\n"
" <groupId>org.hibernate</groupId>\n"
" <artifactId>hibernate-annotations</artifactId>\n"
-" <version>3.3.0.ga</version>\n"
+" <version>3.4.0.GA</version>\n"
" </dependency>\n"
"\n"
" <dependency>\n"
" <groupId>org.hibernate</groupId>\n"
" <artifactId>hibernate-entitymanager</artifactId>\n"
-" <version>3.3.1.ga</version>\n"
+" <version>3.4.0.GA</version>\n"
" </dependency>\n"
+" \n"
+" <dependency>\n"
+" <groupId>org.hibernate</groupId>\n"
+" <artifactId>hibernate-search</artifactId>\n"
+" <version>3.1.1.GA</version>\n"
+" </dependency>\n"
"\n"
" <dependency>\n"
" <groupId>org.jboss.seam</groupId>\n"
" <artifactId>jboss-seam</artifactId>\n"
-" <version>2.0.0.GA</version>\n"
+" <version>2.2.0.GA</version>\n"
" </dependency>\n"
" \n"
" </dependencies>\n"
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/pt-BR/Hsearch.po
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/pt-BR/Hsearch.po 2009-06-11 20:41:36 UTC (rev 11125)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/pt-BR/Hsearch.po 2009-06-11 20:43:04 UTC (rev 11126)
@@ -5,7 +5,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-04-15 13:51+0000\n"
+"POT-Creation-Date: 2009-06-11 18:45+0000\n"
"PO-Revision-Date: 2008-04-04 01:24+0000\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -45,7 +45,7 @@
#: Hsearch.xml:21
#, no-c-format
msgid ""
-"Hibernate Search has been designed to integrates nicely and as naturally as "
+"Hibernate Search has been designed to integrate nicely and as naturally as "
"possible with JPA and Hibernate. As a natural extension, JBoss Seam provides "
"an Hibernate Search integration."
msgstr ""
@@ -132,7 +132,7 @@
" <property name=\"hibernate.ejb.event.post-delete\" \n"
" value=\"org.hibernate.search.event.FullTextIndexEventListener"
"\"/>\n"
-"\n"
+" \n"
" </properties>\n"
"</persistence-unit>]]>"
msgstr ""
@@ -141,12 +141,15 @@
#: Hsearch.xml:52
#, no-c-format
msgid ""
-"This step is no longer necessary if Hibernate Annotation or EntityManager "
-"3.3.x are used."
+"It is not longer necessary the register the event listeners if Hibernate "
+"Annotations or EntityManager 3.3.x are used. When using Hibernate Search 3.1."
+"x more eventlisteners are needed, but these are registered automatically by "
+"Hibernate Annotations; refer to the Hibernate Search reference for "
+"configuring it without EntityManager and Annotations."
msgstr ""
#. Tag: para
-#: Hsearch.xml:56
+#: Hsearch.xml:60
#, no-c-format
msgid ""
"In addition to the configuration file, the following jars have to be "
@@ -154,25 +157,25 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:61
+#: Hsearch.xml:65
#, no-c-format
msgid "hibernate-search.jar"
msgstr ""
#. Tag: para
-#: Hsearch.xml:65
+#: Hsearch.xml:69
#, no-c-format
msgid "hibernate-commons-annotations.jar"
msgstr ""
#. Tag: para
-#: Hsearch.xml:69
+#: Hsearch.xml:73
#, no-c-format
msgid "lucene-core.jar"
msgstr ""
#. Tag: para
-#: Hsearch.xml:74
+#: Hsearch.xml:78
#, no-c-format
msgid ""
"If you deploy those in a EAR, don't forget to update <filename>application."
@@ -180,13 +183,13 @@
msgstr ""
#. Tag: title
-#: Hsearch.xml:80
+#: Hsearch.xml:84
#, no-c-format
msgid "Usage"
msgstr ""
#. Tag: para
-#: Hsearch.xml:82
+#: Hsearch.xml:86
#, no-c-format
msgid ""
"Hibernate Search uses annotations to map entities to a Lucene index, check "
@@ -195,7 +198,7 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:87
+#: Hsearch.xml:91
#, no-c-format
msgid ""
"Hibernate Search is fully integrated with the API and semantic of JPA / "
@@ -206,7 +209,7 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:93
+#: Hsearch.xml:97
#, no-c-format
msgid ""
"When Hibernate Search is present, JBoss Seam injects a "
@@ -214,7 +217,7 @@
msgstr ""
#. Tag: programlisting
-#: Hsearch.xml:96
+#: Hsearch.xml:100
#, no-c-format
msgid ""
"<![CDATA[@Stateful\n"
@@ -237,7 +240,7 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:99
+#: Hsearch.xml:103
#, no-c-format
msgid ""
"<classname>FullTextSession</classname> extends <classname>org.hibernate."
@@ -245,14 +248,14 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:104
+#: Hsearch.xml:108
#, no-c-format
msgid ""
"If the Java Persistence API is used, a smoother integration is proposed."
msgstr ""
#. Tag: programlisting
-#: Hsearch.xml:107
+#: Hsearch.xml:111
#, no-c-format
msgid ""
"<![CDATA[@Stateful\n"
@@ -275,7 +278,7 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:109
+#: Hsearch.xml:113
#, no-c-format
msgid ""
"When Hibernate Search is present, a <classname>FulltextEntityManager</"
@@ -286,7 +289,7 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:116
+#: Hsearch.xml:120
#, no-c-format
msgid ""
"When an EJB 3.0 Session or Message Driven Bean injection is used (i.e. via "
@@ -299,7 +302,7 @@
msgstr ""
#. Tag: programlisting
-#: Hsearch.xml:124
+#: Hsearch.xml:128
#, no-c-format
msgid ""
"<![CDATA[@Stateful\n"
@@ -323,15 +326,15 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:129
+#: Hsearch.xml:133
#, no-c-format
msgid ""
"For people accustomed to Hibernate Search out of Seam, note that using "
-"<methodname>Search.createFullTextSession</methodname> is not necessary."
+"<methodname>Search.getFullTextSession</methodname> is not necessary."
msgstr ""
#. Tag: para
-#: Hsearch.xml:134
+#: Hsearch.xml:138
#, no-c-format
msgid ""
"Check the DVDStore or the blog examples of the JBoss Seam distribution for a "
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/pt-BR/Security.po
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/pt-BR/Security.po 2009-06-11 20:41:36 UTC (rev 11125)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/pt-BR/Security.po 2009-06-11 20:43:04 UTC (rev 11126)
@@ -5,7 +5,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-06-11 07:43+0000\n"
+"POT-Creation-Date: 2009-06-11 18:45+0000\n"
"PO-Revision-Date: 2008-04-04 01:24+0000\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -1190,7 +1190,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:630 Security.xml:764 Security.xml:3382 Security.xml:3545
+#: Security.xml:630 Security.xml:764 Security.xml:3385 Security.xml:3548
#, no-c-format
msgid "Annotation"
msgstr ""
@@ -1203,8 +1203,8 @@
#. Tag: para
#: Security.xml:636 Security.xml:770 Security.xml:966 Security.xml:1418
-#: Security.xml:2147 Security.xml:2756 Security.xml:3171 Security.xml:3388
-#: Security.xml:3551 Security.xml:3792 Security.xml:4229
+#: Security.xml:2147 Security.xml:2756 Security.xml:3174 Security.xml:3391
+#: Security.xml:3554 Security.xml:3795 Security.xml:4232
#, no-c-format
msgid "Description"
msgstr ""
@@ -2228,8 +2228,8 @@
msgstr ""
#. Tag: para
-#: Security.xml:1412 Security.xml:1828 Security.xml:2753 Security.xml:3168
-#: Security.xml:3789 Security.xml:3958
+#: Security.xml:1412 Security.xml:1828 Security.xml:2753 Security.xml:3171
+#: Security.xml:3792 Security.xml:3961
#, no-c-format
msgid "Method"
msgstr ""
@@ -2250,9 +2250,9 @@
#: Security.xml:1433 Security.xml:1452 Security.xml:1471 Security.xml:1490
#: Security.xml:1509 Security.xml:1529 Security.xml:1548 Security.xml:1567
#: Security.xml:1586 Security.xml:1606 Security.xml:1626 Security.xml:1740
-#: Security.xml:1762 Security.xml:1780 Security.xml:2766 Security.xml:3239
-#: Security.xml:3258 Security.xml:3277 Security.xml:3295 Security.xml:3840
-#: Security.xml:3859 Security.xml:3878 Security.xml:3897
+#: Security.xml:1762 Security.xml:1780 Security.xml:2766 Security.xml:3242
+#: Security.xml:3261 Security.xml:3280 Security.xml:3298 Security.xml:3843
+#: Security.xml:3862 Security.xml:3881 Security.xml:3900
#, no-c-format
msgid "boolean"
msgstr ""
@@ -2558,13 +2558,13 @@
msgstr ""
#. Tag: para
-#: Security.xml:1831 Security.xml:3961
+#: Security.xml:1831 Security.xml:3964
#, no-c-format
msgid "Permission Target"
msgstr ""
#. Tag: para
-#: Security.xml:1834 Security.xml:3964
+#: Security.xml:1834 Security.xml:3967
#, no-c-format
msgid "Permission Action"
msgstr ""
@@ -3806,7 +3806,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2750 Security.xml:3165 Security.xml:3786
+#: Security.xml:2750 Security.xml:3168 Security.xml:3789
#, no-c-format
msgid "Return type"
msgstr ""
@@ -3986,41 +3986,47 @@
#. Tag: para
#: Security.xml:2917
#, no-c-format
-msgid "drools-compiler.jar"
+msgid "drools-api.jar"
msgstr ""
#. Tag: para
#: Security.xml:2920
#, no-c-format
-msgid "drools-core.jar"
+msgid "drools-compiler.jar"
msgstr ""
#. Tag: para
#: Security.xml:2923
#, no-c-format
-msgid "janino.jar"
+msgid "drools-core.jar"
msgstr ""
#. Tag: para
#: Security.xml:2926
#, no-c-format
-msgid "antlr-runtime.jar"
+msgid "janino.jar"
msgstr ""
#. Tag: para
#: Security.xml:2929
#, no-c-format
-msgid "mvel14.jar"
+msgid "antlr-runtime.jar"
msgstr ""
+#. Tag: para
+#: Security.xml:2932
+#, no-c-format
+msgid "mvel2.jar"
+msgstr ""
+
#. Tag: title
-#: Security.xml:2936 Security.xml:3128
+#: Security.xml:2939 Security.xml:3131
#, no-c-format
msgid "Configuration"
msgstr ""
#. Tag: para
-#: Security.xml:2938
+#: Security.xml:2941
#, no-c-format
msgid ""
"The configuration for <literal>RuleBasedPermissionResolver</literal> "
@@ -4030,7 +4036,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:2944
+#: Security.xml:2947
#, no-c-format
msgid ""
"<![CDATA[<components xmlns=\"http://jboss.com/products/seam/components\"\n"
@@ -4058,7 +4064,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2946
+#: Security.xml:2949
#, no-c-format
msgid ""
"The default rule base name can be overridden by specifying the "
@@ -4067,7 +4073,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:2951
+#: Security.xml:2954
#, no-c-format
msgid ""
"<![CDATA[\n"
@@ -4076,7 +4082,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2953
+#: Security.xml:2956
#, no-c-format
msgid ""
"Once the <literal>RuleBase</literal> component is configured, it's time to "
@@ -4084,13 +4090,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:2959
+#: Security.xml:2962
#, no-c-format
msgid "Writing Security Rules"
msgstr ""
#. Tag: para
-#: Security.xml:2961
+#: Security.xml:2964
#, no-c-format
msgid ""
"The first step to writing security rules is to create a new rule file in the "
@@ -4101,7 +4107,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2968
+#: Security.xml:2971
#, no-c-format
msgid ""
"So what should the security rules file contain? At this stage it might be a "
@@ -4110,7 +4116,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:2973
+#: Security.xml:2976
#, no-c-format
msgid ""
"<![CDATA[package MyApplicationPermissions;\n"
@@ -4128,7 +4134,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2975
+#: Security.xml:2978
#, no-c-format
msgid ""
"Let's break this down step by step. The first thing we see is the package "
@@ -4138,7 +4144,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2981
+#: Security.xml:2984
#, no-c-format
msgid ""
"The next thing we can notice is a couple of import statements for the "
@@ -4148,7 +4154,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2987
+#: Security.xml:2990
#, no-c-format
msgid ""
"Finally we have the code for the rule. Each rule within a package should be "
@@ -4158,7 +4164,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2993
+#: Security.xml:2996
#, no-c-format
msgid ""
"Looking at the body of the rule definition we can notice two distinct "
@@ -4173,7 +4179,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3002
+#: Security.xml:3005
#, no-c-format
msgid ""
"If we look at the LHS of the rule, we see two conditions listed there. Let's "
@@ -4181,14 +4187,14 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3006
+#: Security.xml:3009
#, no-c-format
msgid ""
"<![CDATA[c: PermissionCheck(target == \"customer\", action == \"delete\")]]>"
msgstr ""
#. Tag: para
-#: Security.xml:3008
+#: Security.xml:3011
#, no-c-format
msgid ""
"In plain english, this condition is stating that there must exist a "
@@ -4198,7 +4204,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3014
+#: Security.xml:3017
#, no-c-format
msgid ""
"So what is the working memory? Also known as a \"stateful session\" in "
@@ -4216,7 +4222,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3026
+#: Security.xml:3029
#, no-c-format
msgid ""
"Besides the <literal>PermissionCheck</literal> facts, there is also a "
@@ -4233,7 +4239,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3037
+#: Security.xml:3040
#, no-c-format
msgid ""
"It is also possible to insert additional long-lived facts into the working "
@@ -4244,7 +4250,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3044
+#: Security.xml:3047
#, no-c-format
msgid ""
"Getting back to our simple example, we can also notice that the first line "
@@ -4255,13 +4261,13 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3051
+#: Security.xml:3054
#, no-c-format
msgid "<![CDATA[Role(name == \"admin\")]]>"
msgstr ""
#. Tag: para
-#: Security.xml:3053
+#: Security.xml:3056
#, no-c-format
msgid ""
"This condition simply states that there must be a <literal>Role</literal> "
@@ -4274,7 +4280,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3061
+#: Security.xml:3064
#, no-c-format
msgid ""
"So what is the consequence of the rule firing? Let's take a look at the RHS "
@@ -4282,13 +4288,13 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3065
+#: Security.xml:3068
#, no-c-format
msgid "<![CDATA[c.grant()]]>"
msgstr ""
#. Tag: para
-#: Security.xml:3067
+#: Security.xml:3070
#, no-c-format
msgid ""
"The RHS consists of Java code, and in this case is invoking the "
@@ -4305,13 +4311,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3081
+#: Security.xml:3084
#, no-c-format
msgid "Non-String permission targets"
msgstr ""
#. Tag: para
-#: Security.xml:3083
+#: Security.xml:3086
#, no-c-format
msgid ""
"So far we have only seen permission checks for String-literal permission "
@@ -4325,7 +4331,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3092
+#: Security.xml:3095
#, no-c-format
msgid ""
"<![CDATA[rule CanCreateBlogComment\n"
@@ -4343,13 +4349,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3097
+#: Security.xml:3100
#, no-c-format
msgid "Wildcard permission checks"
msgstr ""
#. Tag: para
-#: Security.xml:3099
+#: Security.xml:3102
#, no-c-format
msgid ""
"It is possible to implement a wildcard permission check (which allows all "
@@ -4359,7 +4365,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3105
+#: Security.xml:3108
#, no-c-format
msgid ""
"<![CDATA[rule CanDoAnythingToCustomersIfYouAreAnAdmin\n"
@@ -4373,7 +4379,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3107
+#: Security.xml:3110
#, no-c-format
msgid ""
"This rule allows users with the <literal>admin</literal> role to perform "
@@ -4382,13 +4388,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3117
+#: Security.xml:3120
#, no-c-format
msgid "PersistentPermissionResolver"
msgstr ""
#. Tag: para
-#: Security.xml:3119
+#: Security.xml:3122
#, no-c-format
msgid ""
"Another built-in permission resolver provided by Seam, "
@@ -4401,7 +4407,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3130
+#: Security.xml:3133
#, no-c-format
msgid ""
"Before it can be used, <literal>PersistentPermissionResolver</literal> must "
@@ -4414,7 +4420,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3138
+#: Security.xml:3141
#, no-c-format
msgid ""
"<![CDATA[ <security:persistent-permission-resolver permission-store=\"#"
@@ -4422,13 +4428,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3143
+#: Security.xml:3146
#, no-c-format
msgid "Permission Stores"
msgstr ""
#. Tag: para
-#: Security.xml:3145
+#: Security.xml:3148
#, no-c-format
msgid ""
"A permission store is required for <literal>PersistentPermissionResolver</"
@@ -4441,26 +4447,26 @@
msgstr ""
#. Tag: title
-#: Security.xml:3155
+#: Security.xml:3158
#, no-c-format
msgid "PermissionStore interface"
msgstr ""
#. Tag: literal
-#: Security.xml:3181 Security.xml:3200 Security.xml:3219 Security.xml:3802
-#: Security.xml:3821
+#: Security.xml:3184 Security.xml:3203 Security.xml:3222 Security.xml:3805
+#: Security.xml:3824
#, no-c-format
msgid "List<Permission>"
msgstr ""
#. Tag: literal
-#: Security.xml:3186 Security.xml:3826
+#: Security.xml:3189 Security.xml:3829
#, no-c-format
msgid "listPermissions(Object target)"
msgstr ""
#. Tag: para
-#: Security.xml:3190
+#: Security.xml:3193
#, no-c-format
msgid ""
"This method should return a <literal>List</literal> of <literal>Permission</"
@@ -4469,13 +4475,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3205 Security.xml:3807
+#: Security.xml:3208 Security.xml:3810
#, no-c-format
msgid "listPermissions(Object target, String action)"
msgstr ""
#. Tag: para
-#: Security.xml:3209
+#: Security.xml:3212
#, no-c-format
msgid ""
"This method should return a <literal>List</literal> of <literal>Permission</"
@@ -4484,13 +4490,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3224
+#: Security.xml:3227
#, no-c-format
msgid "listPermissions(Set<Object> targets, String action)"
msgstr ""
#. Tag: para
-#: Security.xml:3228
+#: Security.xml:3231
#, no-c-format
msgid ""
"This method should return a <literal>List</literal> of <literal>Permission</"
@@ -4499,13 +4505,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3244
+#: Security.xml:3247
#, no-c-format
msgid "grantPermission(Permission)"
msgstr ""
#. Tag: para
-#: Security.xml:3248
+#: Security.xml:3251
#, no-c-format
msgid ""
"This method should persist the specified <literal>Permission</literal> "
@@ -4513,13 +4519,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3263 Security.xml:3864
+#: Security.xml:3266 Security.xml:3867
#, no-c-format
msgid "grantPermissions(List<Permission> permissions)"
msgstr ""
#. Tag: para
-#: Security.xml:3267
+#: Security.xml:3270
#, no-c-format
msgid ""
"This method should persist all of the <literal>Permission</literal> objects "
@@ -4528,13 +4534,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3282 Security.xml:3883
+#: Security.xml:3285 Security.xml:3886
#, no-c-format
msgid "revokePermission(Permission permission)"
msgstr ""
#. Tag: para
-#: Security.xml:3286
+#: Security.xml:3289
#, no-c-format
msgid ""
"This method should remove the specified <literal>Permission</literal> object "
@@ -4542,13 +4548,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3300 Security.xml:3902
+#: Security.xml:3303 Security.xml:3905
#, no-c-format
msgid "revokePermissions(List<Permission> permissions)"
msgstr ""
#. Tag: para
-#: Security.xml:3304
+#: Security.xml:3307
#, no-c-format
msgid ""
"This method should remove all of the <literal>Permission</literal> objects "
@@ -4556,19 +4562,19 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3314 Security.xml:3916
+#: Security.xml:3317 Security.xml:3919
#, no-c-format
msgid "List<String>"
msgstr ""
#. Tag: literal
-#: Security.xml:3319 Security.xml:3921
+#: Security.xml:3322 Security.xml:3924
#, no-c-format
msgid "listAvailableActions(Object target)"
msgstr ""
#. Tag: para
-#: Security.xml:3323
+#: Security.xml:3326
#, no-c-format
msgid ""
"This method should return a list of all the available actions (as Strings) "
@@ -4578,13 +4584,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3337
+#: Security.xml:3340
#, no-c-format
msgid "JpaPermissionStore"
msgstr ""
#. Tag: para
-#: Security.xml:3339
+#: Security.xml:3342
#, no-c-format
msgid ""
"This is the default <literal>PermissionStore</literal> implementation (and "
@@ -4597,7 +4603,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3347
+#: Security.xml:3350
#, no-c-format
msgid ""
"If you wish to use the same entity (i.e. a single database table) to store "
@@ -4609,7 +4615,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3354
+#: Security.xml:3357
#, no-c-format
msgid ""
"For example, to configure a single entity class to store both user and role "
@@ -4617,7 +4623,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3356
+#: Security.xml:3359
#, no-c-format
msgid ""
"<![CDATA[ <security:jpa-permission-store user-permission-class=\"com.acme."
@@ -4625,14 +4631,14 @@
msgstr ""
#. Tag: para
-#: Security.xml:3358
+#: Security.xml:3361
#, no-c-format
msgid ""
"To configure separate entity classes for storing user and role permissions:"
msgstr ""
#. Tag: programlisting
-#: Security.xml:3360
+#: Security.xml:3363
#, no-c-format
msgid ""
"<![CDATA[ <security:jpa-permission-store user-permission-class=\"com.acme."
@@ -4641,13 +4647,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3363
+#: Security.xml:3366
#, no-c-format
msgid "Permission annotations"
msgstr ""
#. Tag: para
-#: Security.xml:3365
+#: Security.xml:3368
#, no-c-format
msgid ""
"As mentioned, the entity classes that contain the user and role permissions "
@@ -4658,32 +4664,32 @@
msgstr ""
#. Tag: title
-#: Security.xml:3372
+#: Security.xml:3375
#, no-c-format
msgid "Entity Permission annotations"
msgstr ""
#. Tag: para
-#: Security.xml:3385 Security.xml:3548
+#: Security.xml:3388 Security.xml:3551
#, no-c-format
msgid "Target"
msgstr ""
#. Tag: literal
-#: Security.xml:3398
+#: Security.xml:3401
#, no-c-format
msgid "@PermissionTarget"
msgstr ""
#. Tag: literal
-#: Security.xml:3403 Security.xml:3422 Security.xml:3441 Security.xml:3460
-#: Security.xml:3479
+#: Security.xml:3406 Security.xml:3425 Security.xml:3444 Security.xml:3463
+#: Security.xml:3482
#, no-c-format
msgid "FIELD,METHOD"
msgstr ""
#. Tag: para
-#: Security.xml:3407
+#: Security.xml:3410
#, no-c-format
msgid ""
"This annotation identifies the property of the entity that will contain the "
@@ -4692,13 +4698,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3417
+#: Security.xml:3420
#, no-c-format
msgid "@PermissionAction"
msgstr ""
#. Tag: para
-#: Security.xml:3426
+#: Security.xml:3429
#, no-c-format
msgid ""
"This annotation identifies the property of the entity that will contain the "
@@ -4707,13 +4713,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3436
+#: Security.xml:3439
#, no-c-format
msgid "@PermissionUser"
msgstr ""
#. Tag: para
-#: Security.xml:3445
+#: Security.xml:3448
#, no-c-format
msgid ""
"This annotation identifies the property of the entity that will contain the "
@@ -4722,13 +4728,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3455
+#: Security.xml:3458
#, no-c-format
msgid "@PermissionRole"
msgstr ""
#. Tag: para
-#: Security.xml:3464
+#: Security.xml:3467
#, no-c-format
msgid ""
"This annotation identifies the property of the entity that will contain the "
@@ -4737,13 +4743,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3474
+#: Security.xml:3477
#, no-c-format
msgid "@PermissionDiscriminator"
msgstr ""
#. Tag: para
-#: Security.xml:3483
+#: Security.xml:3486
#, no-c-format
msgid ""
"This annotation should be used when the same entity/table is used to store "
@@ -4760,20 +4766,20 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3493
+#: Security.xml:3496
#, no-c-format
msgid ""
"<![CDATA[ @PermissionDiscriminator(userValue = \"u\", roleValue = \"r\")]]>"
msgstr ""
#. Tag: title
-#: Security.xml:3504
+#: Security.xml:3507
#, no-c-format
msgid "Example Entity"
msgstr ""
#. Tag: para
-#: Security.xml:3506
+#: Security.xml:3509
#, no-c-format
msgid ""
"Here is an example of an entity class that is used to store both user and "
@@ -4782,7 +4788,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3511
+#: Security.xml:3514
#, no-c-format
msgid ""
"<![CDATA[\n"
@@ -4843,7 +4849,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3513
+#: Security.xml:3516
#, no-c-format
msgid ""
"As can be seen in the above example, the <literal>getDiscriminator()</"
@@ -4860,13 +4866,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3526
+#: Security.xml:3529
#, no-c-format
msgid "Class-specific Permission Configuration"
msgstr ""
#. Tag: para
-#: Security.xml:3528
+#: Security.xml:3531
#, no-c-format
msgid ""
"A further set of class-specific annotations can be used to configure a "
@@ -4876,25 +4882,25 @@
msgstr ""
#. Tag: title
-#: Security.xml:3535
+#: Security.xml:3538
#, no-c-format
msgid "Class Permission Annotations"
msgstr ""
#. Tag: literal
-#: Security.xml:3561
+#: Security.xml:3564
#, no-c-format
msgid "@Permissions"
msgstr ""
#. Tag: literal
-#: Security.xml:3566 Security.xml:3584
+#: Security.xml:3569 Security.xml:3587
#, no-c-format
msgid "TYPE"
msgstr ""
#. Tag: para
-#: Security.xml:3570
+#: Security.xml:3573
#, no-c-format
msgid ""
"A container annotation, this annotation may contain an array of "
@@ -4902,13 +4908,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3579
+#: Security.xml:3582
#, no-c-format
msgid "@Permission"
msgstr ""
#. Tag: para
-#: Security.xml:3588
+#: Security.xml:3591
#, no-c-format
msgid ""
"This annotation defines a single allowable permission action for the target "
@@ -4919,7 +4925,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3600
+#: Security.xml:3603
#, no-c-format
msgid ""
"Here's an example of the above annotations in action. The following class "
@@ -4927,7 +4933,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3604
+#: Security.xml:3607
#, no-c-format
msgid ""
"<![CDATA[@Permissions({\n"
@@ -4939,7 +4945,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3606
+#: Security.xml:3609
#, no-c-format
msgid ""
"This example demonstrates how two allowable permission actions, "
@@ -4948,13 +4954,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3614
+#: Security.xml:3617
#, no-c-format
msgid "Permission masks"
msgstr ""
#. Tag: para
-#: Security.xml:3616
+#: Security.xml:3619
#, no-c-format
msgid ""
"By default, multiple permissions for the same target object and recipient "
@@ -4966,7 +4972,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3623
+#: Security.xml:3626
#, no-c-format
msgid ""
"For example, if recipient \"Bob\" is granted both the <literal>view</"
@@ -4979,7 +4985,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3630
+#: Security.xml:3633
#, no-c-format
msgid ""
"<![CDATA[@Permissions({\n"
@@ -4991,7 +4997,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3632
+#: Security.xml:3635
#, no-c-format
msgid ""
"The <literal>action</literal> property will instead simply contain \"3"
@@ -5001,7 +5007,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3638
+#: Security.xml:3641
#, no-c-format
msgid ""
"Obviously, it is very important that the <literal>mask</literal> values "
@@ -5009,13 +5015,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3644
+#: Security.xml:3647
#, no-c-format
msgid "Identifier Policy"
msgstr ""
#. Tag: para
-#: Security.xml:3646
+#: Security.xml:3649
#, no-c-format
msgid ""
"When storing or looking up permissions, <literal>JpaPermissionStore</"
@@ -5029,7 +5035,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3654
+#: Security.xml:3657
#, no-c-format
msgid ""
"The <literal>IdentifierStrategy</literal> interface is very simple, "
@@ -5037,7 +5043,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3658
+#: Security.xml:3661
#, no-c-format
msgid ""
"<![CDATA[public interface IdentifierStrategy {\n"
@@ -5047,7 +5053,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3660
+#: Security.xml:3663
#, no-c-format
msgid ""
"The first method, <literal>canIdentify()</literal> simply returns "
@@ -5058,7 +5064,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3666
+#: Security.xml:3669
#, no-c-format
msgid ""
"Seam provides two <literal>IdentifierStrategy</literal> implementations, "
@@ -5067,7 +5073,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3671
+#: Security.xml:3674
#, no-c-format
msgid ""
"To explicitly configure a specific identifier strategy to use for a "
@@ -5080,13 +5086,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3681
+#: Security.xml:3684
#, no-c-format
msgid "ClassIdentifierStrategy"
msgstr ""
#. Tag: para
-#: Security.xml:3683
+#: Security.xml:3686
#, no-c-format
msgid ""
"This identifier strategy is used to generate unique identifiers for classes, "
@@ -5100,7 +5106,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3692
+#: Security.xml:3695
#, no-c-format
msgid ""
"<![CDATA[@Identifier(name = \"customer\")\n"
@@ -5108,7 +5114,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3694
+#: Security.xml:3697
#, no-c-format
msgid ""
"The identifier for the following class will be \"<literal>customerAction</"
@@ -5116,7 +5122,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3698
+#: Security.xml:3701
#, no-c-format
msgid ""
"<![CDATA[@Name(\"customerAction\")\n"
@@ -5124,7 +5130,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3700
+#: Security.xml:3703
#, no-c-format
msgid ""
"Finally, the identifier for the following class will be \"<literal>Customer</"
@@ -5132,19 +5138,19 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3704
+#: Security.xml:3707
#, no-c-format
msgid "<![CDATA[public class Customer { ]]>"
msgstr ""
#. Tag: title
-#: Security.xml:3709
+#: Security.xml:3712
#, no-c-format
msgid "EntityIdentifierStrategy"
msgstr ""
#. Tag: para
-#: Security.xml:3711
+#: Security.xml:3714
#, no-c-format
msgid ""
"This identifier strategy is used to generate unique identifiers for entity "
@@ -5161,7 +5167,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3722
+#: Security.xml:3725
#, no-c-format
msgid ""
"<![CDATA[@Identifier(value = EntityIdentifierStrategy.class)\n"
@@ -5169,7 +5175,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3724
+#: Security.xml:3727
#, no-c-format
msgid ""
"For an example of the type of identifier values generated, assume we have "
@@ -5177,7 +5183,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3728
+#: Security.xml:3731
#, no-c-format
msgid ""
"<![CDATA[@Entity\n"
@@ -5200,7 +5206,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3730
+#: Security.xml:3733
#, no-c-format
msgid ""
"For a <literal>Customer</literal> instance with an <literal>id</literal> "
@@ -5210,7 +5216,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3736
+#: Security.xml:3739
#, no-c-format
msgid ""
"<![CDATA[@Entity\n"
@@ -5219,7 +5225,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3738
+#: Security.xml:3741
#, no-c-format
msgid ""
"Then a <literal>Customer</literal> with an <literal>id</literal> value of "
@@ -5228,13 +5234,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3751
+#: Security.xml:3754
#, no-c-format
msgid "Permission Management"
msgstr ""
#. Tag: para
-#: Security.xml:3753
+#: Security.xml:3756
#, no-c-format
msgid ""
"In much the same way that Seam Security provides an Identity Management API "
@@ -5244,13 +5250,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3760
+#: Security.xml:3763
#, no-c-format
msgid "PermissionManager"
msgstr ""
#. Tag: para
-#: Security.xml:3762
+#: Security.xml:3765
#, no-c-format
msgid ""
"The <literal>PermissionManager</literal> component is an application-scoped "
@@ -5263,7 +5269,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3769
+#: Security.xml:3772
#, no-c-format
msgid ""
"<![CDATA[\n"
@@ -5273,7 +5279,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3771
+#: Security.xml:3774
#, no-c-format
msgid ""
"The following table describes each of the available methods provided by "
@@ -5281,13 +5287,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3776
+#: Security.xml:3779
#, no-c-format
msgid "PermissionManager API methods"
msgstr ""
#. Tag: para
-#: Security.xml:3811 Security.xml:3830
+#: Security.xml:3814 Security.xml:3833
#, no-c-format
msgid ""
"Returns a list of <literal>Permission</literal> objects representing all of "
@@ -5295,13 +5301,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3845
+#: Security.xml:3848
#, no-c-format
msgid "grantPermission(Permission permission)"
msgstr ""
#. Tag: para
-#: Security.xml:3849
+#: Security.xml:3852
#, no-c-format
msgid ""
"Persists (grants) the specified <literal>Permission</literal> to the backend "
@@ -5309,7 +5315,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3868
+#: Security.xml:3871
#, no-c-format
msgid ""
"Persists (grants) the specified list of <literal>Permission</literal>s to "
@@ -5317,7 +5323,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3887
+#: Security.xml:3890
#, no-c-format
msgid ""
"Removes (revokes) the specified <literal>Permission</literal> from the "
@@ -5325,7 +5331,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3906
+#: Security.xml:3909
#, no-c-format
msgid ""
"Removes (revokes) the specified list of <literal>Permission</literal>s from "
@@ -5333,7 +5339,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3925
+#: Security.xml:3928
#, no-c-format
msgid ""
"Returns a list of the available actions for the specified target object. The "
@@ -5342,13 +5348,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3940
+#: Security.xml:3943
#, no-c-format
msgid "Permission checks for PermissionManager operations"
msgstr ""
#. Tag: para
-#: Security.xml:3942
+#: Security.xml:3945
#, no-c-format
msgid ""
"Invoking the methods of <literal>PermissionManager</literal> requires that "
@@ -5358,37 +5364,37 @@
msgstr ""
#. Tag: title
-#: Security.xml:3949
+#: Security.xml:3952
#, no-c-format
msgid "Permission Management Security Permissions"
msgstr ""
#. Tag: literal
-#: Security.xml:3973
+#: Security.xml:3976
#, no-c-format
msgid "listPermissions()"
msgstr ""
#. Tag: para
-#: Security.xml:3977
+#: Security.xml:3980
#, no-c-format
msgid "The specified <literal>target</literal>"
msgstr ""
#. Tag: literal
-#: Security.xml:3983
+#: Security.xml:3986
#, no-c-format
msgid "seam.read-permissions"
msgstr ""
#. Tag: literal
-#: Security.xml:3991 Security.xml:4011
+#: Security.xml:3994 Security.xml:4014
#, no-c-format
msgid "grantPermission()"
msgstr ""
#. Tag: para
-#: Security.xml:3995
+#: Security.xml:3998
#, no-c-format
msgid ""
"The target of the specified <literal>Permission</literal>, or each of the "
@@ -5397,56 +5403,56 @@
msgstr ""
#. Tag: literal
-#: Security.xml:4003 Security.xml:4021 Security.xml:4039
+#: Security.xml:4006 Security.xml:4024 Security.xml:4042
#, no-c-format
msgid "seam.grant-permission"
msgstr ""
#. Tag: para
-#: Security.xml:4015 Security.xml:4051
+#: Security.xml:4018 Security.xml:4054
#, no-c-format
msgid "The target of the specified <literal>Permission</literal>."
msgstr ""
#. Tag: literal
-#: Security.xml:4029
+#: Security.xml:4032
#, no-c-format
msgid "grantPermissions()"
msgstr ""
#. Tag: para
-#: Security.xml:4033 Security.xml:4069
+#: Security.xml:4036 Security.xml:4072
#, no-c-format
msgid ""
"Each of the targets of the specified list of <literal>Permission</literal>s."
msgstr ""
#. Tag: literal
-#: Security.xml:4047
+#: Security.xml:4050
#, no-c-format
msgid "revokePermission()"
msgstr ""
#. Tag: literal
-#: Security.xml:4057 Security.xml:4075
+#: Security.xml:4060 Security.xml:4078
#, no-c-format
msgid "seam.revoke-permission"
msgstr ""
#. Tag: literal
-#: Security.xml:4065
+#: Security.xml:4068
#, no-c-format
msgid "revokePermissions()"
msgstr ""
#. Tag: title
-#: Security.xml:4088
+#: Security.xml:4091
#, no-c-format
msgid "SSL Security"
msgstr ""
#. Tag: para
-#: Security.xml:4090
+#: Security.xml:4093
#, no-c-format
msgid ""
"Seam includes basic support for serving sensitive pages via the HTTPS "
@@ -5457,13 +5463,13 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4097
+#: Security.xml:4100
#, no-c-format
msgid "<![CDATA[<page view-id=\"/login.xhtml\" scheme=\"https\"/>]]>"
msgstr ""
#. Tag: para
-#: Security.xml:4099
+#: Security.xml:4102
#, no-c-format
msgid ""
"This configuration is automatically extended to both <literal>s:link</"
@@ -5475,13 +5481,13 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4106
+#: Security.xml:4109
#, no-c-format
msgid "<![CDATA[<s:link view=\"/login.xhtml\" value=\"Login\"/>]]>"
msgstr ""
#. Tag: para
-#: Security.xml:4108
+#: Security.xml:4111
#, no-c-format
msgid ""
"Browsing directly to a view when using the <emphasis>incorrect</emphasis> "
@@ -5492,7 +5498,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4115
+#: Security.xml:4118
#, no-c-format
msgid ""
"It is also possible to configure a <emphasis>default scheme</emphasis> for "
@@ -5506,13 +5512,13 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4124
+#: Security.xml:4127
#, no-c-format
msgid "<![CDATA[<page view-id=\"*\" scheme=\"http\" />]]>"
msgstr ""
#. Tag: para
-#: Security.xml:4126
+#: Security.xml:4129
#, no-c-format
msgid ""
"Of course, if <emphasis>none</emphasis> of the pages in your application use "
@@ -5520,7 +5526,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4131
+#: Security.xml:4134
#, no-c-format
msgid ""
"You may configure Seam to automatically invalidate the current HTTP session "
@@ -5529,13 +5535,13 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4136
+#: Security.xml:4139
#, no-c-format
msgid "<![CDATA[<web:session invalidate-on-scheme-change=\"true\"/>]]>"
msgstr ""
#. Tag: para
-#: Security.xml:4138
+#: Security.xml:4141
#, no-c-format
msgid ""
"This option helps make your system less vulnerable to sniffing of the "
@@ -5544,13 +5550,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4144
+#: Security.xml:4147
#, no-c-format
msgid "Overriding the default ports"
msgstr ""
#. Tag: para
-#: Security.xml:4146
+#: Security.xml:4149
#, no-c-format
msgid ""
"If you wish to configure the HTTP and HTTPS ports manually, they may be "
@@ -5560,7 +5566,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4152
+#: Security.xml:4155
#, no-c-format
msgid ""
"<![CDATA[\n"
@@ -5576,13 +5582,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4158
+#: Security.xml:4161
#, no-c-format
msgid "CAPTCHA"
msgstr ""
#. Tag: para
-#: Security.xml:4160
+#: Security.xml:4163
#, no-c-format
msgid ""
"Though strictly not part of the security API, Seam provides a built-in "
@@ -5594,13 +5600,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4168
+#: Security.xml:4171
#, no-c-format
msgid "Configuring the CAPTCHA Servlet"
msgstr ""
#. Tag: para
-#: Security.xml:4169
+#: Security.xml:4172
#, no-c-format
msgid ""
"To get up and running, it is necessary to configure the Seam Resource "
@@ -5609,7 +5615,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4174
+#: Security.xml:4177
#, no-c-format
msgid ""
"<![CDATA[<servlet>\n"
@@ -5625,20 +5631,20 @@
msgstr ""
#. Tag: title
-#: Security.xml:4179
+#: Security.xml:4182
#, no-c-format
msgid "Adding a CAPTCHA to a form"
msgstr ""
#. Tag: para
-#: Security.xml:4181
+#: Security.xml:4184
#, no-c-format
msgid ""
"Adding a CAPTCHA challenge to a form is extremely easy. Here's an example:"
msgstr ""
#. Tag: programlisting
-#: Security.xml:4185
+#: Security.xml:4188
#, no-c-format
msgid ""
"<![CDATA[<h:graphicImage value=\"/seam/resource/captcha\"/>\n"
@@ -5650,7 +5656,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4187
+#: Security.xml:4190
#, no-c-format
msgid ""
"That's all there is to it. The <literal>graphicImage</literal> control "
@@ -5660,20 +5666,20 @@
msgstr ""
#. Tag: title
-#: Security.xml:4196
+#: Security.xml:4199
#, no-c-format
msgid "Customising the CAPTCHA algorithm"
msgstr ""
#. Tag: para
-#: Security.xml:4198
+#: Security.xml:4201
#, no-c-format
msgid ""
"You may customize the CAPTCHA algorithm by overriding the built-in component:"
msgstr ""
#. Tag: programlisting
-#: Security.xml:4202
+#: Security.xml:4205
#, no-c-format
msgid ""
"<![CDATA[@Name(\"org.jboss.seam.captcha.captcha\")\n"
@@ -5700,13 +5706,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4209 Security.xml:4217
+#: Security.xml:4212 Security.xml:4220
#, no-c-format
msgid "Security Events"
msgstr ""
#. Tag: para
-#: Security.xml:4211
+#: Security.xml:4214
#, no-c-format
msgid ""
"The following table describes a number of events (see <xref linkend=\"events"
@@ -5714,68 +5720,68 @@
msgstr ""
#. Tag: para
-#: Security.xml:4226
+#: Security.xml:4229
#, no-c-format
msgid "Event Key"
msgstr ""
#. Tag: literal
-#: Security.xml:4239
+#: Security.xml:4242
#, no-c-format
msgid "org.jboss.seam.security.loginSuccessful"
msgstr ""
#. Tag: para
-#: Security.xml:4243
+#: Security.xml:4246
#, no-c-format
msgid "Raised when a login attempt is successful."
msgstr ""
#. Tag: literal
-#: Security.xml:4251
+#: Security.xml:4254
#, no-c-format
msgid "org.jboss.seam.security.loginFailed"
msgstr ""
#. Tag: para
-#: Security.xml:4255
+#: Security.xml:4258
#, no-c-format
msgid "Raised when a login attempt fails."
msgstr ""
#. Tag: literal
-#: Security.xml:4263
+#: Security.xml:4266
#, no-c-format
msgid "org.jboss.seam.security.alreadyLoggedIn"
msgstr ""
#. Tag: para
-#: Security.xml:4267
+#: Security.xml:4270
#, no-c-format
msgid ""
"Raised when a user that is already authenticated attempts to log in again."
msgstr ""
#. Tag: literal
-#: Security.xml:4275
+#: Security.xml:4278
#, no-c-format
msgid "org.jboss.seam.security.notLoggedIn"
msgstr ""
#. Tag: para
-#: Security.xml:4279
+#: Security.xml:4282
#, no-c-format
msgid "Raised when a security check fails when the user is not logged in."
msgstr ""
#. Tag: literal
-#: Security.xml:4287
+#: Security.xml:4290
#, no-c-format
msgid "org.jboss.seam.security.notAuthorized"
msgstr ""
#. Tag: para
-#: Security.xml:4291
+#: Security.xml:4294
#, no-c-format
msgid ""
"Raised when a security check fails when the user is logged in however "
@@ -5783,73 +5789,73 @@
msgstr ""
#. Tag: literal
-#: Security.xml:4299
+#: Security.xml:4302
#, no-c-format
msgid "org.jboss.seam.security.preAuthenticate"
msgstr ""
#. Tag: para
-#: Security.xml:4303
+#: Security.xml:4306
#, no-c-format
msgid "Raised just prior to user authentication."
msgstr ""
#. Tag: literal
-#: Security.xml:4311
+#: Security.xml:4314
#, no-c-format
msgid "org.jboss.seam.security.postAuthenticate"
msgstr ""
#. Tag: para
-#: Security.xml:4315
+#: Security.xml:4318
#, no-c-format
msgid "Raised just after user authentication."
msgstr ""
#. Tag: literal
-#: Security.xml:4323
+#: Security.xml:4326
#, no-c-format
msgid "org.jboss.seam.security.loggedOut"
msgstr ""
#. Tag: para
-#: Security.xml:4327
+#: Security.xml:4330
#, no-c-format
msgid "Raised after the user has logged out."
msgstr ""
#. Tag: literal
-#: Security.xml:4335
+#: Security.xml:4338
#, no-c-format
msgid "org.jboss.seam.security.credentialsUpdated"
msgstr ""
#. Tag: para
-#: Security.xml:4339
+#: Security.xml:4342
#, no-c-format
msgid "Raised when the user's credentials have been changed."
msgstr ""
#. Tag: literal
-#: Security.xml:4347
+#: Security.xml:4350
#, no-c-format
msgid "org.jboss.seam.security.rememberMe"
msgstr ""
#. Tag: para
-#: Security.xml:4351
+#: Security.xml:4354
#, no-c-format
msgid "Raised when the Identity's rememberMe property is changed."
msgstr ""
#. Tag: title
-#: Security.xml:4364
+#: Security.xml:4367
#, no-c-format
msgid "Run As"
msgstr ""
#. Tag: para
-#: Security.xml:4366
+#: Security.xml:4369
#, no-c-format
msgid ""
"Sometimes it may be necessary to perform certain operations with elevated "
@@ -5861,7 +5867,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4374
+#: Security.xml:4377
#, no-c-format
msgid ""
"The following code example demonstrates how <literal>RunAsOperation</"
@@ -5872,7 +5878,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4381
+#: Security.xml:4384
#, no-c-format
msgid ""
"<![CDATA[ new RunAsOperation() { \n"
@@ -5884,7 +5890,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4383
+#: Security.xml:4386
#, no-c-format
msgid ""
"In a similar way, the <literal>getPrincipal()</literal> or "
@@ -5895,13 +5901,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4394
+#: Security.xml:4397
#, no-c-format
msgid "Extending the Identity component"
msgstr ""
#. Tag: para
-#: Security.xml:4396
+#: Security.xml:4399
#, no-c-format
msgid ""
"Sometimes it might be necessary to extend the Identity component if your "
@@ -5914,7 +5920,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4404
+#: Security.xml:4407
#, no-c-format
msgid ""
"<![CDATA[@Name(\"org.jboss.seam.security.identity\")\n"
@@ -5949,7 +5955,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4407
+#: Security.xml:4410
#, no-c-format
msgid ""
"Note that an <literal>Identity</literal> component must be marked "
@@ -5959,13 +5965,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4419
+#: Security.xml:4422
#, no-c-format
msgid "OpenID"
msgstr ""
#. Tag: para
-#: Security.xml:4421
+#: Security.xml:4424
#, no-c-format
msgid ""
"OpenID is a community standard for external web-based authentication. The "
@@ -5978,7 +5984,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4430
+#: Security.xml:4433
#, no-c-format
msgid ""
"When using OpenID, the user selects an OpenID provider, and the provider "
@@ -5995,7 +6001,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4439
+#: Security.xml:4442
#, no-c-format
msgid ""
"It's important to realize at this point that authentication does not imply "
@@ -6008,13 +6014,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4449
+#: Security.xml:4452
#, no-c-format
msgid "Configuring OpenID"
msgstr ""
#. Tag: para
-#: Security.xml:4450
+#: Security.xml:4453
#, no-c-format
msgid ""
"Seam uses the openid4java package and requires four additional JARs to make "
@@ -6024,7 +6030,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4456
+#: Security.xml:4459
#, no-c-format
msgid ""
"OpenID processing requires the use of the <literal>OpenIdPhaseListener</"
@@ -6034,7 +6040,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4462
+#: Security.xml:4465
#, no-c-format
msgid ""
"<lifecycle>\n"
@@ -6044,7 +6050,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4465
+#: Security.xml:4468
#, no-c-format
msgid ""
"With this configuration, OpenID support is available to your application. "
@@ -6054,13 +6060,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4473
+#: Security.xml:4476
#, no-c-format
msgid "Presenting an OpenIdDLogin form"
msgstr ""
#. Tag: para
-#: Security.xml:4475
+#: Security.xml:4478
#, no-c-format
msgid ""
"To initiate an OpenID login, you can present a simply form to the user "
@@ -6070,7 +6076,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4480
+#: Security.xml:4483
#, no-c-format
msgid ""
"<h:form>\n"
@@ -6081,7 +6087,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4482
+#: Security.xml:4485
#, no-c-format
msgid ""
"When the user submits the login form, he will be redirected to his OpenID "
@@ -6093,13 +6099,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4491
+#: Security.xml:4494
#, no-c-format
msgid "Logging in immediately"
msgstr ""
#. Tag: para
-#: Security.xml:4493
+#: Security.xml:4496
#, no-c-format
msgid ""
"The simplest strategy is to simply login the user immediately. The following "
@@ -6108,7 +6114,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4497
+#: Security.xml:4500
#, no-c-format
msgid ""
"<page view-id="/openid.xhtml">\n"
@@ -6128,7 +6134,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4499
+#: Security.xml:4502
#, no-c-format
msgid ""
"Thie <literal>loginImmediately()</literal> action checks to see if the "
@@ -6142,13 +6148,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4510
+#: Security.xml:4513
#, no-c-format
msgid "Deferring login"
msgstr ""
#. Tag: para
-#: Security.xml:4512
+#: Security.xml:4515
#, no-c-format
msgid ""
"You may not want the user to be immediately logged in to your application. "
@@ -6165,13 +6171,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4526
+#: Security.xml:4529
#, no-c-format
msgid "Logging out"
msgstr ""
#. Tag: para
-#: Security.xml:4528
+#: Security.xml:4531
#, no-c-format
msgid ""
"Logging out (forgetting an OpenID association) is done by calling <literal>#"
@@ -6182,7 +6188,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4535
+#: Security.xml:4538
#, no-c-format
msgid ""
"<event type="org.jboss.seam.security.loggedOut">\n"
@@ -6191,7 +6197,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4537
+#: Security.xml:4540
#, no-c-format
msgid ""
"It's important that you do not leave this out or the user will not be able "
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/ru-RU/Dependencies.po
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/ru-RU/Dependencies.po 2009-06-11 20:41:36 UTC (rev 11125)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/ru-RU/Dependencies.po 2009-06-11 20:43:04 UTC (rev 11126)
@@ -5,7 +5,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-04-15 13:51+0000\n"
+"POT-Creation-Date: 2009-06-11 18:45+0000\n"
"PO-Revision-Date: 2008-04-04 01:24+0000\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -938,8 +938,8 @@
#: Dependencies.xml:1182
#, no-c-format
msgid ""
-"This sample POM will give you Seam, JPA (provided by Hibernate) and "
-"Hibernate Validator:"
+"This sample POM will give you Seam, JPA (provided by Hibernate), Hibernate "
+"Validator and Hibernate Search:"
msgstr ""
#. Tag: programlisting
@@ -970,25 +970,31 @@
" <dependency>\n"
" <groupId>org.hibernate</groupId>\n"
" <artifactId>hibernate-validator</artifactId>\n"
-" <version>3.0.0.GA</version>\n"
+" <version>3.1.0.GA</version>\n"
" </dependency>\n"
"\n"
" <dependency>\n"
" <groupId>org.hibernate</groupId>\n"
" <artifactId>hibernate-annotations</artifactId>\n"
-" <version>3.3.0.ga</version>\n"
+" <version>3.4.0.GA</version>\n"
" </dependency>\n"
"\n"
" <dependency>\n"
" <groupId>org.hibernate</groupId>\n"
" <artifactId>hibernate-entitymanager</artifactId>\n"
-" <version>3.3.1.ga</version>\n"
+" <version>3.4.0.GA</version>\n"
" </dependency>\n"
+" \n"
+" <dependency>\n"
+" <groupId>org.hibernate</groupId>\n"
+" <artifactId>hibernate-search</artifactId>\n"
+" <version>3.1.1.GA</version>\n"
+" </dependency>\n"
"\n"
" <dependency>\n"
" <groupId>org.jboss.seam</groupId>\n"
" <artifactId>jboss-seam</artifactId>\n"
-" <version>2.0.0.GA</version>\n"
+" <version>2.2.0.GA</version>\n"
" </dependency>\n"
" \n"
" </dependencies>\n"
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/ru-RU/Hsearch.po
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/ru-RU/Hsearch.po 2009-06-11 20:41:36 UTC (rev 11125)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/ru-RU/Hsearch.po 2009-06-11 20:43:04 UTC (rev 11126)
@@ -5,7 +5,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-04-15 13:51+0000\n"
+"POT-Creation-Date: 2009-06-11 18:45+0000\n"
"PO-Revision-Date: 2008-04-04 01:24+0000\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -45,7 +45,7 @@
#: Hsearch.xml:21
#, no-c-format
msgid ""
-"Hibernate Search has been designed to integrates nicely and as naturally as "
+"Hibernate Search has been designed to integrate nicely and as naturally as "
"possible with JPA and Hibernate. As a natural extension, JBoss Seam provides "
"an Hibernate Search integration."
msgstr ""
@@ -132,7 +132,7 @@
" <property name=\"hibernate.ejb.event.post-delete\" \n"
" value=\"org.hibernate.search.event.FullTextIndexEventListener"
"\"/>\n"
-"\n"
+" \n"
" </properties>\n"
"</persistence-unit>]]>"
msgstr ""
@@ -141,12 +141,15 @@
#: Hsearch.xml:52
#, no-c-format
msgid ""
-"This step is no longer necessary if Hibernate Annotation or EntityManager "
-"3.3.x are used."
+"It is not longer necessary the register the event listeners if Hibernate "
+"Annotations or EntityManager 3.3.x are used. When using Hibernate Search 3.1."
+"x more eventlisteners are needed, but these are registered automatically by "
+"Hibernate Annotations; refer to the Hibernate Search reference for "
+"configuring it without EntityManager and Annotations."
msgstr ""
#. Tag: para
-#: Hsearch.xml:56
+#: Hsearch.xml:60
#, no-c-format
msgid ""
"In addition to the configuration file, the following jars have to be "
@@ -154,25 +157,25 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:61
+#: Hsearch.xml:65
#, no-c-format
msgid "hibernate-search.jar"
msgstr ""
#. Tag: para
-#: Hsearch.xml:65
+#: Hsearch.xml:69
#, no-c-format
msgid "hibernate-commons-annotations.jar"
msgstr ""
#. Tag: para
-#: Hsearch.xml:69
+#: Hsearch.xml:73
#, no-c-format
msgid "lucene-core.jar"
msgstr ""
#. Tag: para
-#: Hsearch.xml:74
+#: Hsearch.xml:78
#, no-c-format
msgid ""
"If you deploy those in a EAR, don't forget to update <filename>application."
@@ -180,13 +183,13 @@
msgstr ""
#. Tag: title
-#: Hsearch.xml:80
+#: Hsearch.xml:84
#, no-c-format
msgid "Usage"
msgstr ""
#. Tag: para
-#: Hsearch.xml:82
+#: Hsearch.xml:86
#, no-c-format
msgid ""
"Hibernate Search uses annotations to map entities to a Lucene index, check "
@@ -195,7 +198,7 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:87
+#: Hsearch.xml:91
#, no-c-format
msgid ""
"Hibernate Search is fully integrated with the API and semantic of JPA / "
@@ -206,7 +209,7 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:93
+#: Hsearch.xml:97
#, no-c-format
msgid ""
"When Hibernate Search is present, JBoss Seam injects a "
@@ -214,7 +217,7 @@
msgstr ""
#. Tag: programlisting
-#: Hsearch.xml:96
+#: Hsearch.xml:100
#, no-c-format
msgid ""
"<![CDATA[@Stateful\n"
@@ -237,7 +240,7 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:99
+#: Hsearch.xml:103
#, no-c-format
msgid ""
"<classname>FullTextSession</classname> extends <classname>org.hibernate."
@@ -245,14 +248,14 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:104
+#: Hsearch.xml:108
#, no-c-format
msgid ""
"If the Java Persistence API is used, a smoother integration is proposed."
msgstr ""
#. Tag: programlisting
-#: Hsearch.xml:107
+#: Hsearch.xml:111
#, no-c-format
msgid ""
"<![CDATA[@Stateful\n"
@@ -275,7 +278,7 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:109
+#: Hsearch.xml:113
#, no-c-format
msgid ""
"When Hibernate Search is present, a <classname>FulltextEntityManager</"
@@ -286,7 +289,7 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:116
+#: Hsearch.xml:120
#, no-c-format
msgid ""
"When an EJB 3.0 Session or Message Driven Bean injection is used (i.e. via "
@@ -299,7 +302,7 @@
msgstr ""
#. Tag: programlisting
-#: Hsearch.xml:124
+#: Hsearch.xml:128
#, no-c-format
msgid ""
"<![CDATA[@Stateful\n"
@@ -323,15 +326,15 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:129
+#: Hsearch.xml:133
#, no-c-format
msgid ""
"For people accustomed to Hibernate Search out of Seam, note that using "
-"<methodname>Search.createFullTextSession</methodname> is not necessary."
+"<methodname>Search.getFullTextSession</methodname> is not necessary."
msgstr ""
#. Tag: para
-#: Hsearch.xml:134
+#: Hsearch.xml:138
#, no-c-format
msgid ""
"Check the DVDStore or the blog examples of the JBoss Seam distribution for a "
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/ru-RU/Security.po
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/ru-RU/Security.po 2009-06-11 20:41:36 UTC (rev 11125)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/ru-RU/Security.po 2009-06-11 20:43:04 UTC (rev 11126)
@@ -5,7 +5,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-06-11 07:43+0000\n"
+"POT-Creation-Date: 2009-06-11 18:45+0000\n"
"PO-Revision-Date: 2008-04-04 01:24+0000\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -1190,7 +1190,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:630 Security.xml:764 Security.xml:3382 Security.xml:3545
+#: Security.xml:630 Security.xml:764 Security.xml:3385 Security.xml:3548
#, no-c-format
msgid "Annotation"
msgstr ""
@@ -1203,8 +1203,8 @@
#. Tag: para
#: Security.xml:636 Security.xml:770 Security.xml:966 Security.xml:1418
-#: Security.xml:2147 Security.xml:2756 Security.xml:3171 Security.xml:3388
-#: Security.xml:3551 Security.xml:3792 Security.xml:4229
+#: Security.xml:2147 Security.xml:2756 Security.xml:3174 Security.xml:3391
+#: Security.xml:3554 Security.xml:3795 Security.xml:4232
#, no-c-format
msgid "Description"
msgstr ""
@@ -2228,8 +2228,8 @@
msgstr ""
#. Tag: para
-#: Security.xml:1412 Security.xml:1828 Security.xml:2753 Security.xml:3168
-#: Security.xml:3789 Security.xml:3958
+#: Security.xml:1412 Security.xml:1828 Security.xml:2753 Security.xml:3171
+#: Security.xml:3792 Security.xml:3961
#, no-c-format
msgid "Method"
msgstr ""
@@ -2250,9 +2250,9 @@
#: Security.xml:1433 Security.xml:1452 Security.xml:1471 Security.xml:1490
#: Security.xml:1509 Security.xml:1529 Security.xml:1548 Security.xml:1567
#: Security.xml:1586 Security.xml:1606 Security.xml:1626 Security.xml:1740
-#: Security.xml:1762 Security.xml:1780 Security.xml:2766 Security.xml:3239
-#: Security.xml:3258 Security.xml:3277 Security.xml:3295 Security.xml:3840
-#: Security.xml:3859 Security.xml:3878 Security.xml:3897
+#: Security.xml:1762 Security.xml:1780 Security.xml:2766 Security.xml:3242
+#: Security.xml:3261 Security.xml:3280 Security.xml:3298 Security.xml:3843
+#: Security.xml:3862 Security.xml:3881 Security.xml:3900
#, no-c-format
msgid "boolean"
msgstr ""
@@ -2558,13 +2558,13 @@
msgstr ""
#. Tag: para
-#: Security.xml:1831 Security.xml:3961
+#: Security.xml:1831 Security.xml:3964
#, no-c-format
msgid "Permission Target"
msgstr ""
#. Tag: para
-#: Security.xml:1834 Security.xml:3964
+#: Security.xml:1834 Security.xml:3967
#, no-c-format
msgid "Permission Action"
msgstr ""
@@ -3806,7 +3806,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2750 Security.xml:3165 Security.xml:3786
+#: Security.xml:2750 Security.xml:3168 Security.xml:3789
#, no-c-format
msgid "Return type"
msgstr ""
@@ -3986,41 +3986,47 @@
#. Tag: para
#: Security.xml:2917
#, no-c-format
-msgid "drools-compiler.jar"
+msgid "drools-api.jar"
msgstr ""
#. Tag: para
#: Security.xml:2920
#, no-c-format
-msgid "drools-core.jar"
+msgid "drools-compiler.jar"
msgstr ""
#. Tag: para
#: Security.xml:2923
#, no-c-format
-msgid "janino.jar"
+msgid "drools-core.jar"
msgstr ""
#. Tag: para
#: Security.xml:2926
#, no-c-format
-msgid "antlr-runtime.jar"
+msgid "janino.jar"
msgstr ""
#. Tag: para
#: Security.xml:2929
#, no-c-format
-msgid "mvel14.jar"
+msgid "antlr-runtime.jar"
msgstr ""
+#. Tag: para
+#: Security.xml:2932
+#, no-c-format
+msgid "mvel2.jar"
+msgstr ""
+
#. Tag: title
-#: Security.xml:2936 Security.xml:3128
+#: Security.xml:2939 Security.xml:3131
#, no-c-format
msgid "Configuration"
msgstr ""
#. Tag: para
-#: Security.xml:2938
+#: Security.xml:2941
#, no-c-format
msgid ""
"The configuration for <literal>RuleBasedPermissionResolver</literal> "
@@ -4030,7 +4036,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:2944
+#: Security.xml:2947
#, no-c-format
msgid ""
"<![CDATA[<components xmlns=\"http://jboss.com/products/seam/components\"\n"
@@ -4058,7 +4064,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2946
+#: Security.xml:2949
#, no-c-format
msgid ""
"The default rule base name can be overridden by specifying the "
@@ -4067,7 +4073,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:2951
+#: Security.xml:2954
#, no-c-format
msgid ""
"<![CDATA[\n"
@@ -4076,7 +4082,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2953
+#: Security.xml:2956
#, no-c-format
msgid ""
"Once the <literal>RuleBase</literal> component is configured, it's time to "
@@ -4084,13 +4090,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:2959
+#: Security.xml:2962
#, no-c-format
msgid "Writing Security Rules"
msgstr ""
#. Tag: para
-#: Security.xml:2961
+#: Security.xml:2964
#, no-c-format
msgid ""
"The first step to writing security rules is to create a new rule file in the "
@@ -4101,7 +4107,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2968
+#: Security.xml:2971
#, no-c-format
msgid ""
"So what should the security rules file contain? At this stage it might be a "
@@ -4110,7 +4116,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:2973
+#: Security.xml:2976
#, no-c-format
msgid ""
"<![CDATA[package MyApplicationPermissions;\n"
@@ -4128,7 +4134,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2975
+#: Security.xml:2978
#, no-c-format
msgid ""
"Let's break this down step by step. The first thing we see is the package "
@@ -4138,7 +4144,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2981
+#: Security.xml:2984
#, no-c-format
msgid ""
"The next thing we can notice is a couple of import statements for the "
@@ -4148,7 +4154,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2987
+#: Security.xml:2990
#, no-c-format
msgid ""
"Finally we have the code for the rule. Each rule within a package should be "
@@ -4158,7 +4164,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2993
+#: Security.xml:2996
#, no-c-format
msgid ""
"Looking at the body of the rule definition we can notice two distinct "
@@ -4173,7 +4179,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3002
+#: Security.xml:3005
#, no-c-format
msgid ""
"If we look at the LHS of the rule, we see two conditions listed there. Let's "
@@ -4181,14 +4187,14 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3006
+#: Security.xml:3009
#, no-c-format
msgid ""
"<![CDATA[c: PermissionCheck(target == \"customer\", action == \"delete\")]]>"
msgstr ""
#. Tag: para
-#: Security.xml:3008
+#: Security.xml:3011
#, no-c-format
msgid ""
"In plain english, this condition is stating that there must exist a "
@@ -4198,7 +4204,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3014
+#: Security.xml:3017
#, no-c-format
msgid ""
"So what is the working memory? Also known as a \"stateful session\" in "
@@ -4216,7 +4222,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3026
+#: Security.xml:3029
#, no-c-format
msgid ""
"Besides the <literal>PermissionCheck</literal> facts, there is also a "
@@ -4233,7 +4239,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3037
+#: Security.xml:3040
#, no-c-format
msgid ""
"It is also possible to insert additional long-lived facts into the working "
@@ -4244,7 +4250,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3044
+#: Security.xml:3047
#, no-c-format
msgid ""
"Getting back to our simple example, we can also notice that the first line "
@@ -4255,13 +4261,13 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3051
+#: Security.xml:3054
#, no-c-format
msgid "<![CDATA[Role(name == \"admin\")]]>"
msgstr ""
#. Tag: para
-#: Security.xml:3053
+#: Security.xml:3056
#, no-c-format
msgid ""
"This condition simply states that there must be a <literal>Role</literal> "
@@ -4274,7 +4280,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3061
+#: Security.xml:3064
#, no-c-format
msgid ""
"So what is the consequence of the rule firing? Let's take a look at the RHS "
@@ -4282,13 +4288,13 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3065
+#: Security.xml:3068
#, no-c-format
msgid "<![CDATA[c.grant()]]>"
msgstr ""
#. Tag: para
-#: Security.xml:3067
+#: Security.xml:3070
#, no-c-format
msgid ""
"The RHS consists of Java code, and in this case is invoking the "
@@ -4305,13 +4311,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3081
+#: Security.xml:3084
#, no-c-format
msgid "Non-String permission targets"
msgstr ""
#. Tag: para
-#: Security.xml:3083
+#: Security.xml:3086
#, no-c-format
msgid ""
"So far we have only seen permission checks for String-literal permission "
@@ -4325,7 +4331,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3092
+#: Security.xml:3095
#, no-c-format
msgid ""
"<![CDATA[rule CanCreateBlogComment\n"
@@ -4343,13 +4349,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3097
+#: Security.xml:3100
#, no-c-format
msgid "Wildcard permission checks"
msgstr ""
#. Tag: para
-#: Security.xml:3099
+#: Security.xml:3102
#, no-c-format
msgid ""
"It is possible to implement a wildcard permission check (which allows all "
@@ -4359,7 +4365,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3105
+#: Security.xml:3108
#, no-c-format
msgid ""
"<![CDATA[rule CanDoAnythingToCustomersIfYouAreAnAdmin\n"
@@ -4373,7 +4379,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3107
+#: Security.xml:3110
#, no-c-format
msgid ""
"This rule allows users with the <literal>admin</literal> role to perform "
@@ -4382,13 +4388,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3117
+#: Security.xml:3120
#, no-c-format
msgid "PersistentPermissionResolver"
msgstr ""
#. Tag: para
-#: Security.xml:3119
+#: Security.xml:3122
#, no-c-format
msgid ""
"Another built-in permission resolver provided by Seam, "
@@ -4401,7 +4407,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3130
+#: Security.xml:3133
#, no-c-format
msgid ""
"Before it can be used, <literal>PersistentPermissionResolver</literal> must "
@@ -4414,7 +4420,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3138
+#: Security.xml:3141
#, no-c-format
msgid ""
"<![CDATA[ <security:persistent-permission-resolver permission-store=\"#"
@@ -4422,13 +4428,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3143
+#: Security.xml:3146
#, no-c-format
msgid "Permission Stores"
msgstr ""
#. Tag: para
-#: Security.xml:3145
+#: Security.xml:3148
#, no-c-format
msgid ""
"A permission store is required for <literal>PersistentPermissionResolver</"
@@ -4441,26 +4447,26 @@
msgstr ""
#. Tag: title
-#: Security.xml:3155
+#: Security.xml:3158
#, no-c-format
msgid "PermissionStore interface"
msgstr ""
#. Tag: literal
-#: Security.xml:3181 Security.xml:3200 Security.xml:3219 Security.xml:3802
-#: Security.xml:3821
+#: Security.xml:3184 Security.xml:3203 Security.xml:3222 Security.xml:3805
+#: Security.xml:3824
#, no-c-format
msgid "List<Permission>"
msgstr ""
#. Tag: literal
-#: Security.xml:3186 Security.xml:3826
+#: Security.xml:3189 Security.xml:3829
#, no-c-format
msgid "listPermissions(Object target)"
msgstr ""
#. Tag: para
-#: Security.xml:3190
+#: Security.xml:3193
#, no-c-format
msgid ""
"This method should return a <literal>List</literal> of <literal>Permission</"
@@ -4469,13 +4475,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3205 Security.xml:3807
+#: Security.xml:3208 Security.xml:3810
#, no-c-format
msgid "listPermissions(Object target, String action)"
msgstr ""
#. Tag: para
-#: Security.xml:3209
+#: Security.xml:3212
#, no-c-format
msgid ""
"This method should return a <literal>List</literal> of <literal>Permission</"
@@ -4484,13 +4490,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3224
+#: Security.xml:3227
#, no-c-format
msgid "listPermissions(Set<Object> targets, String action)"
msgstr ""
#. Tag: para
-#: Security.xml:3228
+#: Security.xml:3231
#, no-c-format
msgid ""
"This method should return a <literal>List</literal> of <literal>Permission</"
@@ -4499,13 +4505,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3244
+#: Security.xml:3247
#, no-c-format
msgid "grantPermission(Permission)"
msgstr ""
#. Tag: para
-#: Security.xml:3248
+#: Security.xml:3251
#, no-c-format
msgid ""
"This method should persist the specified <literal>Permission</literal> "
@@ -4513,13 +4519,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3263 Security.xml:3864
+#: Security.xml:3266 Security.xml:3867
#, no-c-format
msgid "grantPermissions(List<Permission> permissions)"
msgstr ""
#. Tag: para
-#: Security.xml:3267
+#: Security.xml:3270
#, no-c-format
msgid ""
"This method should persist all of the <literal>Permission</literal> objects "
@@ -4528,13 +4534,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3282 Security.xml:3883
+#: Security.xml:3285 Security.xml:3886
#, no-c-format
msgid "revokePermission(Permission permission)"
msgstr ""
#. Tag: para
-#: Security.xml:3286
+#: Security.xml:3289
#, no-c-format
msgid ""
"This method should remove the specified <literal>Permission</literal> object "
@@ -4542,13 +4548,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3300 Security.xml:3902
+#: Security.xml:3303 Security.xml:3905
#, no-c-format
msgid "revokePermissions(List<Permission> permissions)"
msgstr ""
#. Tag: para
-#: Security.xml:3304
+#: Security.xml:3307
#, no-c-format
msgid ""
"This method should remove all of the <literal>Permission</literal> objects "
@@ -4556,19 +4562,19 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3314 Security.xml:3916
+#: Security.xml:3317 Security.xml:3919
#, no-c-format
msgid "List<String>"
msgstr ""
#. Tag: literal
-#: Security.xml:3319 Security.xml:3921
+#: Security.xml:3322 Security.xml:3924
#, no-c-format
msgid "listAvailableActions(Object target)"
msgstr ""
#. Tag: para
-#: Security.xml:3323
+#: Security.xml:3326
#, no-c-format
msgid ""
"This method should return a list of all the available actions (as Strings) "
@@ -4578,13 +4584,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3337
+#: Security.xml:3340
#, no-c-format
msgid "JpaPermissionStore"
msgstr ""
#. Tag: para
-#: Security.xml:3339
+#: Security.xml:3342
#, no-c-format
msgid ""
"This is the default <literal>PermissionStore</literal> implementation (and "
@@ -4597,7 +4603,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3347
+#: Security.xml:3350
#, no-c-format
msgid ""
"If you wish to use the same entity (i.e. a single database table) to store "
@@ -4609,7 +4615,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3354
+#: Security.xml:3357
#, no-c-format
msgid ""
"For example, to configure a single entity class to store both user and role "
@@ -4617,7 +4623,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3356
+#: Security.xml:3359
#, no-c-format
msgid ""
"<![CDATA[ <security:jpa-permission-store user-permission-class=\"com.acme."
@@ -4625,14 +4631,14 @@
msgstr ""
#. Tag: para
-#: Security.xml:3358
+#: Security.xml:3361
#, no-c-format
msgid ""
"To configure separate entity classes for storing user and role permissions:"
msgstr ""
#. Tag: programlisting
-#: Security.xml:3360
+#: Security.xml:3363
#, no-c-format
msgid ""
"<![CDATA[ <security:jpa-permission-store user-permission-class=\"com.acme."
@@ -4641,13 +4647,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3363
+#: Security.xml:3366
#, no-c-format
msgid "Permission annotations"
msgstr ""
#. Tag: para
-#: Security.xml:3365
+#: Security.xml:3368
#, no-c-format
msgid ""
"As mentioned, the entity classes that contain the user and role permissions "
@@ -4658,32 +4664,32 @@
msgstr ""
#. Tag: title
-#: Security.xml:3372
+#: Security.xml:3375
#, no-c-format
msgid "Entity Permission annotations"
msgstr ""
#. Tag: para
-#: Security.xml:3385 Security.xml:3548
+#: Security.xml:3388 Security.xml:3551
#, no-c-format
msgid "Target"
msgstr ""
#. Tag: literal
-#: Security.xml:3398
+#: Security.xml:3401
#, no-c-format
msgid "@PermissionTarget"
msgstr ""
#. Tag: literal
-#: Security.xml:3403 Security.xml:3422 Security.xml:3441 Security.xml:3460
-#: Security.xml:3479
+#: Security.xml:3406 Security.xml:3425 Security.xml:3444 Security.xml:3463
+#: Security.xml:3482
#, no-c-format
msgid "FIELD,METHOD"
msgstr ""
#. Tag: para
-#: Security.xml:3407
+#: Security.xml:3410
#, no-c-format
msgid ""
"This annotation identifies the property of the entity that will contain the "
@@ -4692,13 +4698,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3417
+#: Security.xml:3420
#, no-c-format
msgid "@PermissionAction"
msgstr ""
#. Tag: para
-#: Security.xml:3426
+#: Security.xml:3429
#, no-c-format
msgid ""
"This annotation identifies the property of the entity that will contain the "
@@ -4707,13 +4713,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3436
+#: Security.xml:3439
#, no-c-format
msgid "@PermissionUser"
msgstr ""
#. Tag: para
-#: Security.xml:3445
+#: Security.xml:3448
#, no-c-format
msgid ""
"This annotation identifies the property of the entity that will contain the "
@@ -4722,13 +4728,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3455
+#: Security.xml:3458
#, no-c-format
msgid "@PermissionRole"
msgstr ""
#. Tag: para
-#: Security.xml:3464
+#: Security.xml:3467
#, no-c-format
msgid ""
"This annotation identifies the property of the entity that will contain the "
@@ -4737,13 +4743,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3474
+#: Security.xml:3477
#, no-c-format
msgid "@PermissionDiscriminator"
msgstr ""
#. Tag: para
-#: Security.xml:3483
+#: Security.xml:3486
#, no-c-format
msgid ""
"This annotation should be used when the same entity/table is used to store "
@@ -4760,20 +4766,20 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3493
+#: Security.xml:3496
#, no-c-format
msgid ""
"<![CDATA[ @PermissionDiscriminator(userValue = \"u\", roleValue = \"r\")]]>"
msgstr ""
#. Tag: title
-#: Security.xml:3504
+#: Security.xml:3507
#, no-c-format
msgid "Example Entity"
msgstr ""
#. Tag: para
-#: Security.xml:3506
+#: Security.xml:3509
#, no-c-format
msgid ""
"Here is an example of an entity class that is used to store both user and "
@@ -4782,7 +4788,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3511
+#: Security.xml:3514
#, no-c-format
msgid ""
"<![CDATA[\n"
@@ -4843,7 +4849,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3513
+#: Security.xml:3516
#, no-c-format
msgid ""
"As can be seen in the above example, the <literal>getDiscriminator()</"
@@ -4860,13 +4866,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3526
+#: Security.xml:3529
#, no-c-format
msgid "Class-specific Permission Configuration"
msgstr ""
#. Tag: para
-#: Security.xml:3528
+#: Security.xml:3531
#, no-c-format
msgid ""
"A further set of class-specific annotations can be used to configure a "
@@ -4876,25 +4882,25 @@
msgstr ""
#. Tag: title
-#: Security.xml:3535
+#: Security.xml:3538
#, no-c-format
msgid "Class Permission Annotations"
msgstr ""
#. Tag: literal
-#: Security.xml:3561
+#: Security.xml:3564
#, no-c-format
msgid "@Permissions"
msgstr ""
#. Tag: literal
-#: Security.xml:3566 Security.xml:3584
+#: Security.xml:3569 Security.xml:3587
#, no-c-format
msgid "TYPE"
msgstr ""
#. Tag: para
-#: Security.xml:3570
+#: Security.xml:3573
#, no-c-format
msgid ""
"A container annotation, this annotation may contain an array of "
@@ -4902,13 +4908,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3579
+#: Security.xml:3582
#, no-c-format
msgid "@Permission"
msgstr ""
#. Tag: para
-#: Security.xml:3588
+#: Security.xml:3591
#, no-c-format
msgid ""
"This annotation defines a single allowable permission action for the target "
@@ -4919,7 +4925,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3600
+#: Security.xml:3603
#, no-c-format
msgid ""
"Here's an example of the above annotations in action. The following class "
@@ -4927,7 +4933,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3604
+#: Security.xml:3607
#, no-c-format
msgid ""
"<![CDATA[@Permissions({\n"
@@ -4939,7 +4945,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3606
+#: Security.xml:3609
#, no-c-format
msgid ""
"This example demonstrates how two allowable permission actions, "
@@ -4948,13 +4954,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3614
+#: Security.xml:3617
#, no-c-format
msgid "Permission masks"
msgstr ""
#. Tag: para
-#: Security.xml:3616
+#: Security.xml:3619
#, no-c-format
msgid ""
"By default, multiple permissions for the same target object and recipient "
@@ -4966,7 +4972,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3623
+#: Security.xml:3626
#, no-c-format
msgid ""
"For example, if recipient \"Bob\" is granted both the <literal>view</"
@@ -4979,7 +4985,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3630
+#: Security.xml:3633
#, no-c-format
msgid ""
"<![CDATA[@Permissions({\n"
@@ -4991,7 +4997,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3632
+#: Security.xml:3635
#, no-c-format
msgid ""
"The <literal>action</literal> property will instead simply contain \"3"
@@ -5001,7 +5007,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3638
+#: Security.xml:3641
#, no-c-format
msgid ""
"Obviously, it is very important that the <literal>mask</literal> values "
@@ -5009,13 +5015,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3644
+#: Security.xml:3647
#, no-c-format
msgid "Identifier Policy"
msgstr ""
#. Tag: para
-#: Security.xml:3646
+#: Security.xml:3649
#, no-c-format
msgid ""
"When storing or looking up permissions, <literal>JpaPermissionStore</"
@@ -5029,7 +5035,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3654
+#: Security.xml:3657
#, no-c-format
msgid ""
"The <literal>IdentifierStrategy</literal> interface is very simple, "
@@ -5037,7 +5043,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3658
+#: Security.xml:3661
#, no-c-format
msgid ""
"<![CDATA[public interface IdentifierStrategy {\n"
@@ -5047,7 +5053,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3660
+#: Security.xml:3663
#, no-c-format
msgid ""
"The first method, <literal>canIdentify()</literal> simply returns "
@@ -5058,7 +5064,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3666
+#: Security.xml:3669
#, no-c-format
msgid ""
"Seam provides two <literal>IdentifierStrategy</literal> implementations, "
@@ -5067,7 +5073,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3671
+#: Security.xml:3674
#, no-c-format
msgid ""
"To explicitly configure a specific identifier strategy to use for a "
@@ -5080,13 +5086,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3681
+#: Security.xml:3684
#, no-c-format
msgid "ClassIdentifierStrategy"
msgstr ""
#. Tag: para
-#: Security.xml:3683
+#: Security.xml:3686
#, no-c-format
msgid ""
"This identifier strategy is used to generate unique identifiers for classes, "
@@ -5100,7 +5106,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3692
+#: Security.xml:3695
#, no-c-format
msgid ""
"<![CDATA[@Identifier(name = \"customer\")\n"
@@ -5108,7 +5114,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3694
+#: Security.xml:3697
#, no-c-format
msgid ""
"The identifier for the following class will be \"<literal>customerAction</"
@@ -5116,7 +5122,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3698
+#: Security.xml:3701
#, no-c-format
msgid ""
"<![CDATA[@Name(\"customerAction\")\n"
@@ -5124,7 +5130,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3700
+#: Security.xml:3703
#, no-c-format
msgid ""
"Finally, the identifier for the following class will be \"<literal>Customer</"
@@ -5132,19 +5138,19 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3704
+#: Security.xml:3707
#, no-c-format
msgid "<![CDATA[public class Customer { ]]>"
msgstr ""
#. Tag: title
-#: Security.xml:3709
+#: Security.xml:3712
#, no-c-format
msgid "EntityIdentifierStrategy"
msgstr ""
#. Tag: para
-#: Security.xml:3711
+#: Security.xml:3714
#, no-c-format
msgid ""
"This identifier strategy is used to generate unique identifiers for entity "
@@ -5161,7 +5167,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3722
+#: Security.xml:3725
#, no-c-format
msgid ""
"<![CDATA[@Identifier(value = EntityIdentifierStrategy.class)\n"
@@ -5169,7 +5175,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3724
+#: Security.xml:3727
#, no-c-format
msgid ""
"For an example of the type of identifier values generated, assume we have "
@@ -5177,7 +5183,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3728
+#: Security.xml:3731
#, no-c-format
msgid ""
"<![CDATA[@Entity\n"
@@ -5200,7 +5206,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3730
+#: Security.xml:3733
#, no-c-format
msgid ""
"For a <literal>Customer</literal> instance with an <literal>id</literal> "
@@ -5210,7 +5216,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3736
+#: Security.xml:3739
#, no-c-format
msgid ""
"<![CDATA[@Entity\n"
@@ -5219,7 +5225,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3738
+#: Security.xml:3741
#, no-c-format
msgid ""
"Then a <literal>Customer</literal> with an <literal>id</literal> value of "
@@ -5228,13 +5234,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3751
+#: Security.xml:3754
#, no-c-format
msgid "Permission Management"
msgstr ""
#. Tag: para
-#: Security.xml:3753
+#: Security.xml:3756
#, no-c-format
msgid ""
"In much the same way that Seam Security provides an Identity Management API "
@@ -5244,13 +5250,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3760
+#: Security.xml:3763
#, no-c-format
msgid "PermissionManager"
msgstr ""
#. Tag: para
-#: Security.xml:3762
+#: Security.xml:3765
#, no-c-format
msgid ""
"The <literal>PermissionManager</literal> component is an application-scoped "
@@ -5263,7 +5269,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3769
+#: Security.xml:3772
#, no-c-format
msgid ""
"<![CDATA[\n"
@@ -5273,7 +5279,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3771
+#: Security.xml:3774
#, no-c-format
msgid ""
"The following table describes each of the available methods provided by "
@@ -5281,13 +5287,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3776
+#: Security.xml:3779
#, no-c-format
msgid "PermissionManager API methods"
msgstr ""
#. Tag: para
-#: Security.xml:3811 Security.xml:3830
+#: Security.xml:3814 Security.xml:3833
#, no-c-format
msgid ""
"Returns a list of <literal>Permission</literal> objects representing all of "
@@ -5295,13 +5301,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3845
+#: Security.xml:3848
#, no-c-format
msgid "grantPermission(Permission permission)"
msgstr ""
#. Tag: para
-#: Security.xml:3849
+#: Security.xml:3852
#, no-c-format
msgid ""
"Persists (grants) the specified <literal>Permission</literal> to the backend "
@@ -5309,7 +5315,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3868
+#: Security.xml:3871
#, no-c-format
msgid ""
"Persists (grants) the specified list of <literal>Permission</literal>s to "
@@ -5317,7 +5323,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3887
+#: Security.xml:3890
#, no-c-format
msgid ""
"Removes (revokes) the specified <literal>Permission</literal> from the "
@@ -5325,7 +5331,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3906
+#: Security.xml:3909
#, no-c-format
msgid ""
"Removes (revokes) the specified list of <literal>Permission</literal>s from "
@@ -5333,7 +5339,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3925
+#: Security.xml:3928
#, no-c-format
msgid ""
"Returns a list of the available actions for the specified target object. The "
@@ -5342,13 +5348,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3940
+#: Security.xml:3943
#, no-c-format
msgid "Permission checks for PermissionManager operations"
msgstr ""
#. Tag: para
-#: Security.xml:3942
+#: Security.xml:3945
#, no-c-format
msgid ""
"Invoking the methods of <literal>PermissionManager</literal> requires that "
@@ -5358,37 +5364,37 @@
msgstr ""
#. Tag: title
-#: Security.xml:3949
+#: Security.xml:3952
#, no-c-format
msgid "Permission Management Security Permissions"
msgstr ""
#. Tag: literal
-#: Security.xml:3973
+#: Security.xml:3976
#, no-c-format
msgid "listPermissions()"
msgstr ""
#. Tag: para
-#: Security.xml:3977
+#: Security.xml:3980
#, no-c-format
msgid "The specified <literal>target</literal>"
msgstr ""
#. Tag: literal
-#: Security.xml:3983
+#: Security.xml:3986
#, no-c-format
msgid "seam.read-permissions"
msgstr ""
#. Tag: literal
-#: Security.xml:3991 Security.xml:4011
+#: Security.xml:3994 Security.xml:4014
#, no-c-format
msgid "grantPermission()"
msgstr ""
#. Tag: para
-#: Security.xml:3995
+#: Security.xml:3998
#, no-c-format
msgid ""
"The target of the specified <literal>Permission</literal>, or each of the "
@@ -5397,56 +5403,56 @@
msgstr ""
#. Tag: literal
-#: Security.xml:4003 Security.xml:4021 Security.xml:4039
+#: Security.xml:4006 Security.xml:4024 Security.xml:4042
#, no-c-format
msgid "seam.grant-permission"
msgstr ""
#. Tag: para
-#: Security.xml:4015 Security.xml:4051
+#: Security.xml:4018 Security.xml:4054
#, no-c-format
msgid "The target of the specified <literal>Permission</literal>."
msgstr ""
#. Tag: literal
-#: Security.xml:4029
+#: Security.xml:4032
#, no-c-format
msgid "grantPermissions()"
msgstr ""
#. Tag: para
-#: Security.xml:4033 Security.xml:4069
+#: Security.xml:4036 Security.xml:4072
#, no-c-format
msgid ""
"Each of the targets of the specified list of <literal>Permission</literal>s."
msgstr ""
#. Tag: literal
-#: Security.xml:4047
+#: Security.xml:4050
#, no-c-format
msgid "revokePermission()"
msgstr ""
#. Tag: literal
-#: Security.xml:4057 Security.xml:4075
+#: Security.xml:4060 Security.xml:4078
#, no-c-format
msgid "seam.revoke-permission"
msgstr ""
#. Tag: literal
-#: Security.xml:4065
+#: Security.xml:4068
#, no-c-format
msgid "revokePermissions()"
msgstr ""
#. Tag: title
-#: Security.xml:4088
+#: Security.xml:4091
#, no-c-format
msgid "SSL Security"
msgstr ""
#. Tag: para
-#: Security.xml:4090
+#: Security.xml:4093
#, no-c-format
msgid ""
"Seam includes basic support for serving sensitive pages via the HTTPS "
@@ -5457,13 +5463,13 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4097
+#: Security.xml:4100
#, no-c-format
msgid "<![CDATA[<page view-id=\"/login.xhtml\" scheme=\"https\"/>]]>"
msgstr ""
#. Tag: para
-#: Security.xml:4099
+#: Security.xml:4102
#, no-c-format
msgid ""
"This configuration is automatically extended to both <literal>s:link</"
@@ -5475,13 +5481,13 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4106
+#: Security.xml:4109
#, no-c-format
msgid "<![CDATA[<s:link view=\"/login.xhtml\" value=\"Login\"/>]]>"
msgstr ""
#. Tag: para
-#: Security.xml:4108
+#: Security.xml:4111
#, no-c-format
msgid ""
"Browsing directly to a view when using the <emphasis>incorrect</emphasis> "
@@ -5492,7 +5498,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4115
+#: Security.xml:4118
#, no-c-format
msgid ""
"It is also possible to configure a <emphasis>default scheme</emphasis> for "
@@ -5506,13 +5512,13 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4124
+#: Security.xml:4127
#, no-c-format
msgid "<![CDATA[<page view-id=\"*\" scheme=\"http\" />]]>"
msgstr ""
#. Tag: para
-#: Security.xml:4126
+#: Security.xml:4129
#, no-c-format
msgid ""
"Of course, if <emphasis>none</emphasis> of the pages in your application use "
@@ -5520,7 +5526,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4131
+#: Security.xml:4134
#, no-c-format
msgid ""
"You may configure Seam to automatically invalidate the current HTTP session "
@@ -5529,13 +5535,13 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4136
+#: Security.xml:4139
#, no-c-format
msgid "<![CDATA[<web:session invalidate-on-scheme-change=\"true\"/>]]>"
msgstr ""
#. Tag: para
-#: Security.xml:4138
+#: Security.xml:4141
#, no-c-format
msgid ""
"This option helps make your system less vulnerable to sniffing of the "
@@ -5544,13 +5550,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4144
+#: Security.xml:4147
#, no-c-format
msgid "Overriding the default ports"
msgstr ""
#. Tag: para
-#: Security.xml:4146
+#: Security.xml:4149
#, no-c-format
msgid ""
"If you wish to configure the HTTP and HTTPS ports manually, they may be "
@@ -5560,7 +5566,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4152
+#: Security.xml:4155
#, no-c-format
msgid ""
"<![CDATA[\n"
@@ -5576,13 +5582,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4158
+#: Security.xml:4161
#, no-c-format
msgid "CAPTCHA"
msgstr ""
#. Tag: para
-#: Security.xml:4160
+#: Security.xml:4163
#, no-c-format
msgid ""
"Though strictly not part of the security API, Seam provides a built-in "
@@ -5594,13 +5600,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4168
+#: Security.xml:4171
#, no-c-format
msgid "Configuring the CAPTCHA Servlet"
msgstr ""
#. Tag: para
-#: Security.xml:4169
+#: Security.xml:4172
#, no-c-format
msgid ""
"To get up and running, it is necessary to configure the Seam Resource "
@@ -5609,7 +5615,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4174
+#: Security.xml:4177
#, no-c-format
msgid ""
"<![CDATA[<servlet>\n"
@@ -5625,20 +5631,20 @@
msgstr ""
#. Tag: title
-#: Security.xml:4179
+#: Security.xml:4182
#, no-c-format
msgid "Adding a CAPTCHA to a form"
msgstr ""
#. Tag: para
-#: Security.xml:4181
+#: Security.xml:4184
#, no-c-format
msgid ""
"Adding a CAPTCHA challenge to a form is extremely easy. Here's an example:"
msgstr ""
#. Tag: programlisting
-#: Security.xml:4185
+#: Security.xml:4188
#, no-c-format
msgid ""
"<![CDATA[<h:graphicImage value=\"/seam/resource/captcha\"/>\n"
@@ -5650,7 +5656,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4187
+#: Security.xml:4190
#, no-c-format
msgid ""
"That's all there is to it. The <literal>graphicImage</literal> control "
@@ -5660,20 +5666,20 @@
msgstr ""
#. Tag: title
-#: Security.xml:4196
+#: Security.xml:4199
#, no-c-format
msgid "Customising the CAPTCHA algorithm"
msgstr ""
#. Tag: para
-#: Security.xml:4198
+#: Security.xml:4201
#, no-c-format
msgid ""
"You may customize the CAPTCHA algorithm by overriding the built-in component:"
msgstr ""
#. Tag: programlisting
-#: Security.xml:4202
+#: Security.xml:4205
#, no-c-format
msgid ""
"<![CDATA[@Name(\"org.jboss.seam.captcha.captcha\")\n"
@@ -5700,13 +5706,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4209 Security.xml:4217
+#: Security.xml:4212 Security.xml:4220
#, no-c-format
msgid "Security Events"
msgstr ""
#. Tag: para
-#: Security.xml:4211
+#: Security.xml:4214
#, no-c-format
msgid ""
"The following table describes a number of events (see <xref linkend=\"events"
@@ -5714,68 +5720,68 @@
msgstr ""
#. Tag: para
-#: Security.xml:4226
+#: Security.xml:4229
#, no-c-format
msgid "Event Key"
msgstr ""
#. Tag: literal
-#: Security.xml:4239
+#: Security.xml:4242
#, no-c-format
msgid "org.jboss.seam.security.loginSuccessful"
msgstr ""
#. Tag: para
-#: Security.xml:4243
+#: Security.xml:4246
#, no-c-format
msgid "Raised when a login attempt is successful."
msgstr ""
#. Tag: literal
-#: Security.xml:4251
+#: Security.xml:4254
#, no-c-format
msgid "org.jboss.seam.security.loginFailed"
msgstr ""
#. Tag: para
-#: Security.xml:4255
+#: Security.xml:4258
#, no-c-format
msgid "Raised when a login attempt fails."
msgstr ""
#. Tag: literal
-#: Security.xml:4263
+#: Security.xml:4266
#, no-c-format
msgid "org.jboss.seam.security.alreadyLoggedIn"
msgstr ""
#. Tag: para
-#: Security.xml:4267
+#: Security.xml:4270
#, no-c-format
msgid ""
"Raised when a user that is already authenticated attempts to log in again."
msgstr ""
#. Tag: literal
-#: Security.xml:4275
+#: Security.xml:4278
#, no-c-format
msgid "org.jboss.seam.security.notLoggedIn"
msgstr ""
#. Tag: para
-#: Security.xml:4279
+#: Security.xml:4282
#, no-c-format
msgid "Raised when a security check fails when the user is not logged in."
msgstr ""
#. Tag: literal
-#: Security.xml:4287
+#: Security.xml:4290
#, no-c-format
msgid "org.jboss.seam.security.notAuthorized"
msgstr ""
#. Tag: para
-#: Security.xml:4291
+#: Security.xml:4294
#, no-c-format
msgid ""
"Raised when a security check fails when the user is logged in however "
@@ -5783,73 +5789,73 @@
msgstr ""
#. Tag: literal
-#: Security.xml:4299
+#: Security.xml:4302
#, no-c-format
msgid "org.jboss.seam.security.preAuthenticate"
msgstr ""
#. Tag: para
-#: Security.xml:4303
+#: Security.xml:4306
#, no-c-format
msgid "Raised just prior to user authentication."
msgstr ""
#. Tag: literal
-#: Security.xml:4311
+#: Security.xml:4314
#, no-c-format
msgid "org.jboss.seam.security.postAuthenticate"
msgstr ""
#. Tag: para
-#: Security.xml:4315
+#: Security.xml:4318
#, no-c-format
msgid "Raised just after user authentication."
msgstr ""
#. Tag: literal
-#: Security.xml:4323
+#: Security.xml:4326
#, no-c-format
msgid "org.jboss.seam.security.loggedOut"
msgstr ""
#. Tag: para
-#: Security.xml:4327
+#: Security.xml:4330
#, no-c-format
msgid "Raised after the user has logged out."
msgstr ""
#. Tag: literal
-#: Security.xml:4335
+#: Security.xml:4338
#, no-c-format
msgid "org.jboss.seam.security.credentialsUpdated"
msgstr ""
#. Tag: para
-#: Security.xml:4339
+#: Security.xml:4342
#, no-c-format
msgid "Raised when the user's credentials have been changed."
msgstr ""
#. Tag: literal
-#: Security.xml:4347
+#: Security.xml:4350
#, no-c-format
msgid "org.jboss.seam.security.rememberMe"
msgstr ""
#. Tag: para
-#: Security.xml:4351
+#: Security.xml:4354
#, no-c-format
msgid "Raised when the Identity's rememberMe property is changed."
msgstr ""
#. Tag: title
-#: Security.xml:4364
+#: Security.xml:4367
#, no-c-format
msgid "Run As"
msgstr ""
#. Tag: para
-#: Security.xml:4366
+#: Security.xml:4369
#, no-c-format
msgid ""
"Sometimes it may be necessary to perform certain operations with elevated "
@@ -5861,7 +5867,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4374
+#: Security.xml:4377
#, no-c-format
msgid ""
"The following code example demonstrates how <literal>RunAsOperation</"
@@ -5872,7 +5878,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4381
+#: Security.xml:4384
#, no-c-format
msgid ""
"<![CDATA[ new RunAsOperation() { \n"
@@ -5884,7 +5890,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4383
+#: Security.xml:4386
#, no-c-format
msgid ""
"In a similar way, the <literal>getPrincipal()</literal> or "
@@ -5895,13 +5901,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4394
+#: Security.xml:4397
#, no-c-format
msgid "Extending the Identity component"
msgstr ""
#. Tag: para
-#: Security.xml:4396
+#: Security.xml:4399
#, no-c-format
msgid ""
"Sometimes it might be necessary to extend the Identity component if your "
@@ -5914,7 +5920,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4404
+#: Security.xml:4407
#, no-c-format
msgid ""
"<![CDATA[@Name(\"org.jboss.seam.security.identity\")\n"
@@ -5949,7 +5955,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4407
+#: Security.xml:4410
#, no-c-format
msgid ""
"Note that an <literal>Identity</literal> component must be marked "
@@ -5959,13 +5965,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4419
+#: Security.xml:4422
#, no-c-format
msgid "OpenID"
msgstr ""
#. Tag: para
-#: Security.xml:4421
+#: Security.xml:4424
#, no-c-format
msgid ""
"OpenID is a community standard for external web-based authentication. The "
@@ -5978,7 +5984,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4430
+#: Security.xml:4433
#, no-c-format
msgid ""
"When using OpenID, the user selects an OpenID provider, and the provider "
@@ -5995,7 +6001,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4439
+#: Security.xml:4442
#, no-c-format
msgid ""
"It's important to realize at this point that authentication does not imply "
@@ -6008,13 +6014,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4449
+#: Security.xml:4452
#, no-c-format
msgid "Configuring OpenID"
msgstr ""
#. Tag: para
-#: Security.xml:4450
+#: Security.xml:4453
#, no-c-format
msgid ""
"Seam uses the openid4java package and requires four additional JARs to make "
@@ -6024,7 +6030,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4456
+#: Security.xml:4459
#, no-c-format
msgid ""
"OpenID processing requires the use of the <literal>OpenIdPhaseListener</"
@@ -6034,7 +6040,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4462
+#: Security.xml:4465
#, no-c-format
msgid ""
"<lifecycle>\n"
@@ -6044,7 +6050,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4465
+#: Security.xml:4468
#, no-c-format
msgid ""
"With this configuration, OpenID support is available to your application. "
@@ -6054,13 +6060,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4473
+#: Security.xml:4476
#, no-c-format
msgid "Presenting an OpenIdDLogin form"
msgstr ""
#. Tag: para
-#: Security.xml:4475
+#: Security.xml:4478
#, no-c-format
msgid ""
"To initiate an OpenID login, you can present a simply form to the user "
@@ -6070,7 +6076,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4480
+#: Security.xml:4483
#, no-c-format
msgid ""
"<h:form>\n"
@@ -6081,7 +6087,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4482
+#: Security.xml:4485
#, no-c-format
msgid ""
"When the user submits the login form, he will be redirected to his OpenID "
@@ -6093,13 +6099,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4491
+#: Security.xml:4494
#, no-c-format
msgid "Logging in immediately"
msgstr ""
#. Tag: para
-#: Security.xml:4493
+#: Security.xml:4496
#, no-c-format
msgid ""
"The simplest strategy is to simply login the user immediately. The following "
@@ -6108,7 +6114,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4497
+#: Security.xml:4500
#, no-c-format
msgid ""
"<page view-id="/openid.xhtml">\n"
@@ -6128,7 +6134,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4499
+#: Security.xml:4502
#, no-c-format
msgid ""
"Thie <literal>loginImmediately()</literal> action checks to see if the "
@@ -6142,13 +6148,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4510
+#: Security.xml:4513
#, no-c-format
msgid "Deferring login"
msgstr ""
#. Tag: para
-#: Security.xml:4512
+#: Security.xml:4515
#, no-c-format
msgid ""
"You may not want the user to be immediately logged in to your application. "
@@ -6165,13 +6171,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4526
+#: Security.xml:4529
#, no-c-format
msgid "Logging out"
msgstr ""
#. Tag: para
-#: Security.xml:4528
+#: Security.xml:4531
#, no-c-format
msgid ""
"Logging out (forgetting an OpenID association) is done by calling <literal>#"
@@ -6182,7 +6188,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4535
+#: Security.xml:4538
#, no-c-format
msgid ""
"<event type="org.jboss.seam.security.loggedOut">\n"
@@ -6191,7 +6197,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4537
+#: Security.xml:4540
#, no-c-format
msgid ""
"It's important that you do not leave this out or the user will not be able "
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/si-LK/Dependencies.po
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/si-LK/Dependencies.po 2009-06-11 20:41:36 UTC (rev 11125)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/si-LK/Dependencies.po 2009-06-11 20:43:04 UTC (rev 11126)
@@ -5,7 +5,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-04-15 13:51+0000\n"
+"POT-Creation-Date: 2009-06-11 18:45+0000\n"
"PO-Revision-Date: 2008-04-04 01:24+0000\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -938,8 +938,8 @@
#: Dependencies.xml:1182
#, no-c-format
msgid ""
-"This sample POM will give you Seam, JPA (provided by Hibernate) and "
-"Hibernate Validator:"
+"This sample POM will give you Seam, JPA (provided by Hibernate), Hibernate "
+"Validator and Hibernate Search:"
msgstr ""
#. Tag: programlisting
@@ -970,25 +970,31 @@
" <dependency>\n"
" <groupId>org.hibernate</groupId>\n"
" <artifactId>hibernate-validator</artifactId>\n"
-" <version>3.0.0.GA</version>\n"
+" <version>3.1.0.GA</version>\n"
" </dependency>\n"
"\n"
" <dependency>\n"
" <groupId>org.hibernate</groupId>\n"
" <artifactId>hibernate-annotations</artifactId>\n"
-" <version>3.3.0.ga</version>\n"
+" <version>3.4.0.GA</version>\n"
" </dependency>\n"
"\n"
" <dependency>\n"
" <groupId>org.hibernate</groupId>\n"
" <artifactId>hibernate-entitymanager</artifactId>\n"
-" <version>3.3.1.ga</version>\n"
+" <version>3.4.0.GA</version>\n"
" </dependency>\n"
+" \n"
+" <dependency>\n"
+" <groupId>org.hibernate</groupId>\n"
+" <artifactId>hibernate-search</artifactId>\n"
+" <version>3.1.1.GA</version>\n"
+" </dependency>\n"
"\n"
" <dependency>\n"
" <groupId>org.jboss.seam</groupId>\n"
" <artifactId>jboss-seam</artifactId>\n"
-" <version>2.0.0.GA</version>\n"
+" <version>2.2.0.GA</version>\n"
" </dependency>\n"
" \n"
" </dependencies>\n"
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/si-LK/Hsearch.po
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/si-LK/Hsearch.po 2009-06-11 20:41:36 UTC (rev 11125)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/si-LK/Hsearch.po 2009-06-11 20:43:04 UTC (rev 11126)
@@ -5,7 +5,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-04-15 13:51+0000\n"
+"POT-Creation-Date: 2009-06-11 18:45+0000\n"
"PO-Revision-Date: 2008-04-04 01:24+0000\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -45,7 +45,7 @@
#: Hsearch.xml:21
#, no-c-format
msgid ""
-"Hibernate Search has been designed to integrates nicely and as naturally as "
+"Hibernate Search has been designed to integrate nicely and as naturally as "
"possible with JPA and Hibernate. As a natural extension, JBoss Seam provides "
"an Hibernate Search integration."
msgstr ""
@@ -132,7 +132,7 @@
" <property name=\"hibernate.ejb.event.post-delete\" \n"
" value=\"org.hibernate.search.event.FullTextIndexEventListener"
"\"/>\n"
-"\n"
+" \n"
" </properties>\n"
"</persistence-unit>]]>"
msgstr ""
@@ -141,12 +141,15 @@
#: Hsearch.xml:52
#, no-c-format
msgid ""
-"This step is no longer necessary if Hibernate Annotation or EntityManager "
-"3.3.x are used."
+"It is not longer necessary the register the event listeners if Hibernate "
+"Annotations or EntityManager 3.3.x are used. When using Hibernate Search 3.1."
+"x more eventlisteners are needed, but these are registered automatically by "
+"Hibernate Annotations; refer to the Hibernate Search reference for "
+"configuring it without EntityManager and Annotations."
msgstr ""
#. Tag: para
-#: Hsearch.xml:56
+#: Hsearch.xml:60
#, no-c-format
msgid ""
"In addition to the configuration file, the following jars have to be "
@@ -154,25 +157,25 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:61
+#: Hsearch.xml:65
#, no-c-format
msgid "hibernate-search.jar"
msgstr ""
#. Tag: para
-#: Hsearch.xml:65
+#: Hsearch.xml:69
#, no-c-format
msgid "hibernate-commons-annotations.jar"
msgstr ""
#. Tag: para
-#: Hsearch.xml:69
+#: Hsearch.xml:73
#, no-c-format
msgid "lucene-core.jar"
msgstr ""
#. Tag: para
-#: Hsearch.xml:74
+#: Hsearch.xml:78
#, no-c-format
msgid ""
"If you deploy those in a EAR, don't forget to update <filename>application."
@@ -180,13 +183,13 @@
msgstr ""
#. Tag: title
-#: Hsearch.xml:80
+#: Hsearch.xml:84
#, no-c-format
msgid "Usage"
msgstr ""
#. Tag: para
-#: Hsearch.xml:82
+#: Hsearch.xml:86
#, no-c-format
msgid ""
"Hibernate Search uses annotations to map entities to a Lucene index, check "
@@ -195,7 +198,7 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:87
+#: Hsearch.xml:91
#, no-c-format
msgid ""
"Hibernate Search is fully integrated with the API and semantic of JPA / "
@@ -206,7 +209,7 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:93
+#: Hsearch.xml:97
#, no-c-format
msgid ""
"When Hibernate Search is present, JBoss Seam injects a "
@@ -214,7 +217,7 @@
msgstr ""
#. Tag: programlisting
-#: Hsearch.xml:96
+#: Hsearch.xml:100
#, no-c-format
msgid ""
"<![CDATA[@Stateful\n"
@@ -237,7 +240,7 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:99
+#: Hsearch.xml:103
#, no-c-format
msgid ""
"<classname>FullTextSession</classname> extends <classname>org.hibernate."
@@ -245,14 +248,14 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:104
+#: Hsearch.xml:108
#, no-c-format
msgid ""
"If the Java Persistence API is used, a smoother integration is proposed."
msgstr ""
#. Tag: programlisting
-#: Hsearch.xml:107
+#: Hsearch.xml:111
#, no-c-format
msgid ""
"<![CDATA[@Stateful\n"
@@ -275,7 +278,7 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:109
+#: Hsearch.xml:113
#, no-c-format
msgid ""
"When Hibernate Search is present, a <classname>FulltextEntityManager</"
@@ -286,7 +289,7 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:116
+#: Hsearch.xml:120
#, no-c-format
msgid ""
"When an EJB 3.0 Session or Message Driven Bean injection is used (i.e. via "
@@ -299,7 +302,7 @@
msgstr ""
#. Tag: programlisting
-#: Hsearch.xml:124
+#: Hsearch.xml:128
#, no-c-format
msgid ""
"<![CDATA[@Stateful\n"
@@ -323,15 +326,15 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:129
+#: Hsearch.xml:133
#, no-c-format
msgid ""
"For people accustomed to Hibernate Search out of Seam, note that using "
-"<methodname>Search.createFullTextSession</methodname> is not necessary."
+"<methodname>Search.getFullTextSession</methodname> is not necessary."
msgstr ""
#. Tag: para
-#: Hsearch.xml:134
+#: Hsearch.xml:138
#, no-c-format
msgid ""
"Check the DVDStore or the blog examples of the JBoss Seam distribution for a "
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/si-LK/Security.po
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/si-LK/Security.po 2009-06-11 20:41:36 UTC (rev 11125)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/si-LK/Security.po 2009-06-11 20:43:04 UTC (rev 11126)
@@ -5,7 +5,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-06-11 07:43+0000\n"
+"POT-Creation-Date: 2009-06-11 18:45+0000\n"
"PO-Revision-Date: 2008-04-04 01:24+0000\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -1190,7 +1190,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:630 Security.xml:764 Security.xml:3382 Security.xml:3545
+#: Security.xml:630 Security.xml:764 Security.xml:3385 Security.xml:3548
#, no-c-format
msgid "Annotation"
msgstr ""
@@ -1203,8 +1203,8 @@
#. Tag: para
#: Security.xml:636 Security.xml:770 Security.xml:966 Security.xml:1418
-#: Security.xml:2147 Security.xml:2756 Security.xml:3171 Security.xml:3388
-#: Security.xml:3551 Security.xml:3792 Security.xml:4229
+#: Security.xml:2147 Security.xml:2756 Security.xml:3174 Security.xml:3391
+#: Security.xml:3554 Security.xml:3795 Security.xml:4232
#, no-c-format
msgid "Description"
msgstr ""
@@ -2228,8 +2228,8 @@
msgstr ""
#. Tag: para
-#: Security.xml:1412 Security.xml:1828 Security.xml:2753 Security.xml:3168
-#: Security.xml:3789 Security.xml:3958
+#: Security.xml:1412 Security.xml:1828 Security.xml:2753 Security.xml:3171
+#: Security.xml:3792 Security.xml:3961
#, no-c-format
msgid "Method"
msgstr ""
@@ -2250,9 +2250,9 @@
#: Security.xml:1433 Security.xml:1452 Security.xml:1471 Security.xml:1490
#: Security.xml:1509 Security.xml:1529 Security.xml:1548 Security.xml:1567
#: Security.xml:1586 Security.xml:1606 Security.xml:1626 Security.xml:1740
-#: Security.xml:1762 Security.xml:1780 Security.xml:2766 Security.xml:3239
-#: Security.xml:3258 Security.xml:3277 Security.xml:3295 Security.xml:3840
-#: Security.xml:3859 Security.xml:3878 Security.xml:3897
+#: Security.xml:1762 Security.xml:1780 Security.xml:2766 Security.xml:3242
+#: Security.xml:3261 Security.xml:3280 Security.xml:3298 Security.xml:3843
+#: Security.xml:3862 Security.xml:3881 Security.xml:3900
#, no-c-format
msgid "boolean"
msgstr ""
@@ -2558,13 +2558,13 @@
msgstr ""
#. Tag: para
-#: Security.xml:1831 Security.xml:3961
+#: Security.xml:1831 Security.xml:3964
#, no-c-format
msgid "Permission Target"
msgstr ""
#. Tag: para
-#: Security.xml:1834 Security.xml:3964
+#: Security.xml:1834 Security.xml:3967
#, no-c-format
msgid "Permission Action"
msgstr ""
@@ -3806,7 +3806,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2750 Security.xml:3165 Security.xml:3786
+#: Security.xml:2750 Security.xml:3168 Security.xml:3789
#, no-c-format
msgid "Return type"
msgstr ""
@@ -3986,41 +3986,47 @@
#. Tag: para
#: Security.xml:2917
#, no-c-format
-msgid "drools-compiler.jar"
+msgid "drools-api.jar"
msgstr ""
#. Tag: para
#: Security.xml:2920
#, no-c-format
-msgid "drools-core.jar"
+msgid "drools-compiler.jar"
msgstr ""
#. Tag: para
#: Security.xml:2923
#, no-c-format
-msgid "janino.jar"
+msgid "drools-core.jar"
msgstr ""
#. Tag: para
#: Security.xml:2926
#, no-c-format
-msgid "antlr-runtime.jar"
+msgid "janino.jar"
msgstr ""
#. Tag: para
#: Security.xml:2929
#, no-c-format
-msgid "mvel14.jar"
+msgid "antlr-runtime.jar"
msgstr ""
+#. Tag: para
+#: Security.xml:2932
+#, no-c-format
+msgid "mvel2.jar"
+msgstr ""
+
#. Tag: title
-#: Security.xml:2936 Security.xml:3128
+#: Security.xml:2939 Security.xml:3131
#, no-c-format
msgid "Configuration"
msgstr ""
#. Tag: para
-#: Security.xml:2938
+#: Security.xml:2941
#, no-c-format
msgid ""
"The configuration for <literal>RuleBasedPermissionResolver</literal> "
@@ -4030,7 +4036,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:2944
+#: Security.xml:2947
#, no-c-format
msgid ""
"<![CDATA[<components xmlns=\"http://jboss.com/products/seam/components\"\n"
@@ -4058,7 +4064,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2946
+#: Security.xml:2949
#, no-c-format
msgid ""
"The default rule base name can be overridden by specifying the "
@@ -4067,7 +4073,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:2951
+#: Security.xml:2954
#, no-c-format
msgid ""
"<![CDATA[\n"
@@ -4076,7 +4082,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2953
+#: Security.xml:2956
#, no-c-format
msgid ""
"Once the <literal>RuleBase</literal> component is configured, it's time to "
@@ -4084,13 +4090,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:2959
+#: Security.xml:2962
#, no-c-format
msgid "Writing Security Rules"
msgstr ""
#. Tag: para
-#: Security.xml:2961
+#: Security.xml:2964
#, no-c-format
msgid ""
"The first step to writing security rules is to create a new rule file in the "
@@ -4101,7 +4107,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2968
+#: Security.xml:2971
#, no-c-format
msgid ""
"So what should the security rules file contain? At this stage it might be a "
@@ -4110,7 +4116,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:2973
+#: Security.xml:2976
#, no-c-format
msgid ""
"<![CDATA[package MyApplicationPermissions;\n"
@@ -4128,7 +4134,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2975
+#: Security.xml:2978
#, no-c-format
msgid ""
"Let's break this down step by step. The first thing we see is the package "
@@ -4138,7 +4144,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2981
+#: Security.xml:2984
#, no-c-format
msgid ""
"The next thing we can notice is a couple of import statements for the "
@@ -4148,7 +4154,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2987
+#: Security.xml:2990
#, no-c-format
msgid ""
"Finally we have the code for the rule. Each rule within a package should be "
@@ -4158,7 +4164,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2993
+#: Security.xml:2996
#, no-c-format
msgid ""
"Looking at the body of the rule definition we can notice two distinct "
@@ -4173,7 +4179,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3002
+#: Security.xml:3005
#, no-c-format
msgid ""
"If we look at the LHS of the rule, we see two conditions listed there. Let's "
@@ -4181,14 +4187,14 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3006
+#: Security.xml:3009
#, no-c-format
msgid ""
"<![CDATA[c: PermissionCheck(target == \"customer\", action == \"delete\")]]>"
msgstr ""
#. Tag: para
-#: Security.xml:3008
+#: Security.xml:3011
#, no-c-format
msgid ""
"In plain english, this condition is stating that there must exist a "
@@ -4198,7 +4204,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3014
+#: Security.xml:3017
#, no-c-format
msgid ""
"So what is the working memory? Also known as a \"stateful session\" in "
@@ -4216,7 +4222,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3026
+#: Security.xml:3029
#, no-c-format
msgid ""
"Besides the <literal>PermissionCheck</literal> facts, there is also a "
@@ -4233,7 +4239,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3037
+#: Security.xml:3040
#, no-c-format
msgid ""
"It is also possible to insert additional long-lived facts into the working "
@@ -4244,7 +4250,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3044
+#: Security.xml:3047
#, no-c-format
msgid ""
"Getting back to our simple example, we can also notice that the first line "
@@ -4255,13 +4261,13 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3051
+#: Security.xml:3054
#, no-c-format
msgid "<![CDATA[Role(name == \"admin\")]]>"
msgstr ""
#. Tag: para
-#: Security.xml:3053
+#: Security.xml:3056
#, no-c-format
msgid ""
"This condition simply states that there must be a <literal>Role</literal> "
@@ -4274,7 +4280,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3061
+#: Security.xml:3064
#, no-c-format
msgid ""
"So what is the consequence of the rule firing? Let's take a look at the RHS "
@@ -4282,13 +4288,13 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3065
+#: Security.xml:3068
#, no-c-format
msgid "<![CDATA[c.grant()]]>"
msgstr ""
#. Tag: para
-#: Security.xml:3067
+#: Security.xml:3070
#, no-c-format
msgid ""
"The RHS consists of Java code, and in this case is invoking the "
@@ -4305,13 +4311,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3081
+#: Security.xml:3084
#, no-c-format
msgid "Non-String permission targets"
msgstr ""
#. Tag: para
-#: Security.xml:3083
+#: Security.xml:3086
#, no-c-format
msgid ""
"So far we have only seen permission checks for String-literal permission "
@@ -4325,7 +4331,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3092
+#: Security.xml:3095
#, no-c-format
msgid ""
"<![CDATA[rule CanCreateBlogComment\n"
@@ -4343,13 +4349,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3097
+#: Security.xml:3100
#, no-c-format
msgid "Wildcard permission checks"
msgstr ""
#. Tag: para
-#: Security.xml:3099
+#: Security.xml:3102
#, no-c-format
msgid ""
"It is possible to implement a wildcard permission check (which allows all "
@@ -4359,7 +4365,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3105
+#: Security.xml:3108
#, no-c-format
msgid ""
"<![CDATA[rule CanDoAnythingToCustomersIfYouAreAnAdmin\n"
@@ -4373,7 +4379,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3107
+#: Security.xml:3110
#, no-c-format
msgid ""
"This rule allows users with the <literal>admin</literal> role to perform "
@@ -4382,13 +4388,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3117
+#: Security.xml:3120
#, no-c-format
msgid "PersistentPermissionResolver"
msgstr ""
#. Tag: para
-#: Security.xml:3119
+#: Security.xml:3122
#, no-c-format
msgid ""
"Another built-in permission resolver provided by Seam, "
@@ -4401,7 +4407,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3130
+#: Security.xml:3133
#, no-c-format
msgid ""
"Before it can be used, <literal>PersistentPermissionResolver</literal> must "
@@ -4414,7 +4420,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3138
+#: Security.xml:3141
#, no-c-format
msgid ""
"<![CDATA[ <security:persistent-permission-resolver permission-store=\"#"
@@ -4422,13 +4428,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3143
+#: Security.xml:3146
#, no-c-format
msgid "Permission Stores"
msgstr ""
#. Tag: para
-#: Security.xml:3145
+#: Security.xml:3148
#, no-c-format
msgid ""
"A permission store is required for <literal>PersistentPermissionResolver</"
@@ -4441,26 +4447,26 @@
msgstr ""
#. Tag: title
-#: Security.xml:3155
+#: Security.xml:3158
#, no-c-format
msgid "PermissionStore interface"
msgstr ""
#. Tag: literal
-#: Security.xml:3181 Security.xml:3200 Security.xml:3219 Security.xml:3802
-#: Security.xml:3821
+#: Security.xml:3184 Security.xml:3203 Security.xml:3222 Security.xml:3805
+#: Security.xml:3824
#, no-c-format
msgid "List<Permission>"
msgstr ""
#. Tag: literal
-#: Security.xml:3186 Security.xml:3826
+#: Security.xml:3189 Security.xml:3829
#, no-c-format
msgid "listPermissions(Object target)"
msgstr ""
#. Tag: para
-#: Security.xml:3190
+#: Security.xml:3193
#, no-c-format
msgid ""
"This method should return a <literal>List</literal> of <literal>Permission</"
@@ -4469,13 +4475,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3205 Security.xml:3807
+#: Security.xml:3208 Security.xml:3810
#, no-c-format
msgid "listPermissions(Object target, String action)"
msgstr ""
#. Tag: para
-#: Security.xml:3209
+#: Security.xml:3212
#, no-c-format
msgid ""
"This method should return a <literal>List</literal> of <literal>Permission</"
@@ -4484,13 +4490,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3224
+#: Security.xml:3227
#, no-c-format
msgid "listPermissions(Set<Object> targets, String action)"
msgstr ""
#. Tag: para
-#: Security.xml:3228
+#: Security.xml:3231
#, no-c-format
msgid ""
"This method should return a <literal>List</literal> of <literal>Permission</"
@@ -4499,13 +4505,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3244
+#: Security.xml:3247
#, no-c-format
msgid "grantPermission(Permission)"
msgstr ""
#. Tag: para
-#: Security.xml:3248
+#: Security.xml:3251
#, no-c-format
msgid ""
"This method should persist the specified <literal>Permission</literal> "
@@ -4513,13 +4519,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3263 Security.xml:3864
+#: Security.xml:3266 Security.xml:3867
#, no-c-format
msgid "grantPermissions(List<Permission> permissions)"
msgstr ""
#. Tag: para
-#: Security.xml:3267
+#: Security.xml:3270
#, no-c-format
msgid ""
"This method should persist all of the <literal>Permission</literal> objects "
@@ -4528,13 +4534,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3282 Security.xml:3883
+#: Security.xml:3285 Security.xml:3886
#, no-c-format
msgid "revokePermission(Permission permission)"
msgstr ""
#. Tag: para
-#: Security.xml:3286
+#: Security.xml:3289
#, no-c-format
msgid ""
"This method should remove the specified <literal>Permission</literal> object "
@@ -4542,13 +4548,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3300 Security.xml:3902
+#: Security.xml:3303 Security.xml:3905
#, no-c-format
msgid "revokePermissions(List<Permission> permissions)"
msgstr ""
#. Tag: para
-#: Security.xml:3304
+#: Security.xml:3307
#, no-c-format
msgid ""
"This method should remove all of the <literal>Permission</literal> objects "
@@ -4556,19 +4562,19 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3314 Security.xml:3916
+#: Security.xml:3317 Security.xml:3919
#, no-c-format
msgid "List<String>"
msgstr ""
#. Tag: literal
-#: Security.xml:3319 Security.xml:3921
+#: Security.xml:3322 Security.xml:3924
#, no-c-format
msgid "listAvailableActions(Object target)"
msgstr ""
#. Tag: para
-#: Security.xml:3323
+#: Security.xml:3326
#, no-c-format
msgid ""
"This method should return a list of all the available actions (as Strings) "
@@ -4578,13 +4584,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3337
+#: Security.xml:3340
#, no-c-format
msgid "JpaPermissionStore"
msgstr ""
#. Tag: para
-#: Security.xml:3339
+#: Security.xml:3342
#, no-c-format
msgid ""
"This is the default <literal>PermissionStore</literal> implementation (and "
@@ -4597,7 +4603,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3347
+#: Security.xml:3350
#, no-c-format
msgid ""
"If you wish to use the same entity (i.e. a single database table) to store "
@@ -4609,7 +4615,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3354
+#: Security.xml:3357
#, no-c-format
msgid ""
"For example, to configure a single entity class to store both user and role "
@@ -4617,7 +4623,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3356
+#: Security.xml:3359
#, no-c-format
msgid ""
"<![CDATA[ <security:jpa-permission-store user-permission-class=\"com.acme."
@@ -4625,14 +4631,14 @@
msgstr ""
#. Tag: para
-#: Security.xml:3358
+#: Security.xml:3361
#, no-c-format
msgid ""
"To configure separate entity classes for storing user and role permissions:"
msgstr ""
#. Tag: programlisting
-#: Security.xml:3360
+#: Security.xml:3363
#, no-c-format
msgid ""
"<![CDATA[ <security:jpa-permission-store user-permission-class=\"com.acme."
@@ -4641,13 +4647,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3363
+#: Security.xml:3366
#, no-c-format
msgid "Permission annotations"
msgstr ""
#. Tag: para
-#: Security.xml:3365
+#: Security.xml:3368
#, no-c-format
msgid ""
"As mentioned, the entity classes that contain the user and role permissions "
@@ -4658,32 +4664,32 @@
msgstr ""
#. Tag: title
-#: Security.xml:3372
+#: Security.xml:3375
#, no-c-format
msgid "Entity Permission annotations"
msgstr ""
#. Tag: para
-#: Security.xml:3385 Security.xml:3548
+#: Security.xml:3388 Security.xml:3551
#, no-c-format
msgid "Target"
msgstr ""
#. Tag: literal
-#: Security.xml:3398
+#: Security.xml:3401
#, no-c-format
msgid "@PermissionTarget"
msgstr ""
#. Tag: literal
-#: Security.xml:3403 Security.xml:3422 Security.xml:3441 Security.xml:3460
-#: Security.xml:3479
+#: Security.xml:3406 Security.xml:3425 Security.xml:3444 Security.xml:3463
+#: Security.xml:3482
#, no-c-format
msgid "FIELD,METHOD"
msgstr ""
#. Tag: para
-#: Security.xml:3407
+#: Security.xml:3410
#, no-c-format
msgid ""
"This annotation identifies the property of the entity that will contain the "
@@ -4692,13 +4698,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3417
+#: Security.xml:3420
#, no-c-format
msgid "@PermissionAction"
msgstr ""
#. Tag: para
-#: Security.xml:3426
+#: Security.xml:3429
#, no-c-format
msgid ""
"This annotation identifies the property of the entity that will contain the "
@@ -4707,13 +4713,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3436
+#: Security.xml:3439
#, no-c-format
msgid "@PermissionUser"
msgstr ""
#. Tag: para
-#: Security.xml:3445
+#: Security.xml:3448
#, no-c-format
msgid ""
"This annotation identifies the property of the entity that will contain the "
@@ -4722,13 +4728,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3455
+#: Security.xml:3458
#, no-c-format
msgid "@PermissionRole"
msgstr ""
#. Tag: para
-#: Security.xml:3464
+#: Security.xml:3467
#, no-c-format
msgid ""
"This annotation identifies the property of the entity that will contain the "
@@ -4737,13 +4743,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3474
+#: Security.xml:3477
#, no-c-format
msgid "@PermissionDiscriminator"
msgstr ""
#. Tag: para
-#: Security.xml:3483
+#: Security.xml:3486
#, no-c-format
msgid ""
"This annotation should be used when the same entity/table is used to store "
@@ -4760,20 +4766,20 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3493
+#: Security.xml:3496
#, no-c-format
msgid ""
"<![CDATA[ @PermissionDiscriminator(userValue = \"u\", roleValue = \"r\")]]>"
msgstr ""
#. Tag: title
-#: Security.xml:3504
+#: Security.xml:3507
#, no-c-format
msgid "Example Entity"
msgstr ""
#. Tag: para
-#: Security.xml:3506
+#: Security.xml:3509
#, no-c-format
msgid ""
"Here is an example of an entity class that is used to store both user and "
@@ -4782,7 +4788,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3511
+#: Security.xml:3514
#, no-c-format
msgid ""
"<![CDATA[\n"
@@ -4843,7 +4849,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3513
+#: Security.xml:3516
#, no-c-format
msgid ""
"As can be seen in the above example, the <literal>getDiscriminator()</"
@@ -4860,13 +4866,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3526
+#: Security.xml:3529
#, no-c-format
msgid "Class-specific Permission Configuration"
msgstr ""
#. Tag: para
-#: Security.xml:3528
+#: Security.xml:3531
#, no-c-format
msgid ""
"A further set of class-specific annotations can be used to configure a "
@@ -4876,25 +4882,25 @@
msgstr ""
#. Tag: title
-#: Security.xml:3535
+#: Security.xml:3538
#, no-c-format
msgid "Class Permission Annotations"
msgstr ""
#. Tag: literal
-#: Security.xml:3561
+#: Security.xml:3564
#, no-c-format
msgid "@Permissions"
msgstr ""
#. Tag: literal
-#: Security.xml:3566 Security.xml:3584
+#: Security.xml:3569 Security.xml:3587
#, no-c-format
msgid "TYPE"
msgstr ""
#. Tag: para
-#: Security.xml:3570
+#: Security.xml:3573
#, no-c-format
msgid ""
"A container annotation, this annotation may contain an array of "
@@ -4902,13 +4908,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3579
+#: Security.xml:3582
#, no-c-format
msgid "@Permission"
msgstr ""
#. Tag: para
-#: Security.xml:3588
+#: Security.xml:3591
#, no-c-format
msgid ""
"This annotation defines a single allowable permission action for the target "
@@ -4919,7 +4925,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3600
+#: Security.xml:3603
#, no-c-format
msgid ""
"Here's an example of the above annotations in action. The following class "
@@ -4927,7 +4933,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3604
+#: Security.xml:3607
#, no-c-format
msgid ""
"<![CDATA[@Permissions({\n"
@@ -4939,7 +4945,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3606
+#: Security.xml:3609
#, no-c-format
msgid ""
"This example demonstrates how two allowable permission actions, "
@@ -4948,13 +4954,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3614
+#: Security.xml:3617
#, no-c-format
msgid "Permission masks"
msgstr ""
#. Tag: para
-#: Security.xml:3616
+#: Security.xml:3619
#, no-c-format
msgid ""
"By default, multiple permissions for the same target object and recipient "
@@ -4966,7 +4972,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3623
+#: Security.xml:3626
#, no-c-format
msgid ""
"For example, if recipient \"Bob\" is granted both the <literal>view</"
@@ -4979,7 +4985,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3630
+#: Security.xml:3633
#, no-c-format
msgid ""
"<![CDATA[@Permissions({\n"
@@ -4991,7 +4997,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3632
+#: Security.xml:3635
#, no-c-format
msgid ""
"The <literal>action</literal> property will instead simply contain \"3"
@@ -5001,7 +5007,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3638
+#: Security.xml:3641
#, no-c-format
msgid ""
"Obviously, it is very important that the <literal>mask</literal> values "
@@ -5009,13 +5015,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3644
+#: Security.xml:3647
#, no-c-format
msgid "Identifier Policy"
msgstr ""
#. Tag: para
-#: Security.xml:3646
+#: Security.xml:3649
#, no-c-format
msgid ""
"When storing or looking up permissions, <literal>JpaPermissionStore</"
@@ -5029,7 +5035,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3654
+#: Security.xml:3657
#, no-c-format
msgid ""
"The <literal>IdentifierStrategy</literal> interface is very simple, "
@@ -5037,7 +5043,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3658
+#: Security.xml:3661
#, no-c-format
msgid ""
"<![CDATA[public interface IdentifierStrategy {\n"
@@ -5047,7 +5053,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3660
+#: Security.xml:3663
#, no-c-format
msgid ""
"The first method, <literal>canIdentify()</literal> simply returns "
@@ -5058,7 +5064,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3666
+#: Security.xml:3669
#, no-c-format
msgid ""
"Seam provides two <literal>IdentifierStrategy</literal> implementations, "
@@ -5067,7 +5073,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3671
+#: Security.xml:3674
#, no-c-format
msgid ""
"To explicitly configure a specific identifier strategy to use for a "
@@ -5080,13 +5086,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3681
+#: Security.xml:3684
#, no-c-format
msgid "ClassIdentifierStrategy"
msgstr ""
#. Tag: para
-#: Security.xml:3683
+#: Security.xml:3686
#, no-c-format
msgid ""
"This identifier strategy is used to generate unique identifiers for classes, "
@@ -5100,7 +5106,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3692
+#: Security.xml:3695
#, no-c-format
msgid ""
"<![CDATA[@Identifier(name = \"customer\")\n"
@@ -5108,7 +5114,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3694
+#: Security.xml:3697
#, no-c-format
msgid ""
"The identifier for the following class will be \"<literal>customerAction</"
@@ -5116,7 +5122,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3698
+#: Security.xml:3701
#, no-c-format
msgid ""
"<![CDATA[@Name(\"customerAction\")\n"
@@ -5124,7 +5130,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3700
+#: Security.xml:3703
#, no-c-format
msgid ""
"Finally, the identifier for the following class will be \"<literal>Customer</"
@@ -5132,19 +5138,19 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3704
+#: Security.xml:3707
#, no-c-format
msgid "<![CDATA[public class Customer { ]]>"
msgstr ""
#. Tag: title
-#: Security.xml:3709
+#: Security.xml:3712
#, no-c-format
msgid "EntityIdentifierStrategy"
msgstr ""
#. Tag: para
-#: Security.xml:3711
+#: Security.xml:3714
#, no-c-format
msgid ""
"This identifier strategy is used to generate unique identifiers for entity "
@@ -5161,7 +5167,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3722
+#: Security.xml:3725
#, no-c-format
msgid ""
"<![CDATA[@Identifier(value = EntityIdentifierStrategy.class)\n"
@@ -5169,7 +5175,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3724
+#: Security.xml:3727
#, no-c-format
msgid ""
"For an example of the type of identifier values generated, assume we have "
@@ -5177,7 +5183,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3728
+#: Security.xml:3731
#, no-c-format
msgid ""
"<![CDATA[@Entity\n"
@@ -5200,7 +5206,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3730
+#: Security.xml:3733
#, no-c-format
msgid ""
"For a <literal>Customer</literal> instance with an <literal>id</literal> "
@@ -5210,7 +5216,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3736
+#: Security.xml:3739
#, no-c-format
msgid ""
"<![CDATA[@Entity\n"
@@ -5219,7 +5225,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3738
+#: Security.xml:3741
#, no-c-format
msgid ""
"Then a <literal>Customer</literal> with an <literal>id</literal> value of "
@@ -5228,13 +5234,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3751
+#: Security.xml:3754
#, no-c-format
msgid "Permission Management"
msgstr ""
#. Tag: para
-#: Security.xml:3753
+#: Security.xml:3756
#, no-c-format
msgid ""
"In much the same way that Seam Security provides an Identity Management API "
@@ -5244,13 +5250,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3760
+#: Security.xml:3763
#, no-c-format
msgid "PermissionManager"
msgstr ""
#. Tag: para
-#: Security.xml:3762
+#: Security.xml:3765
#, no-c-format
msgid ""
"The <literal>PermissionManager</literal> component is an application-scoped "
@@ -5263,7 +5269,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3769
+#: Security.xml:3772
#, no-c-format
msgid ""
"<![CDATA[\n"
@@ -5273,7 +5279,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3771
+#: Security.xml:3774
#, no-c-format
msgid ""
"The following table describes each of the available methods provided by "
@@ -5281,13 +5287,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3776
+#: Security.xml:3779
#, no-c-format
msgid "PermissionManager API methods"
msgstr ""
#. Tag: para
-#: Security.xml:3811 Security.xml:3830
+#: Security.xml:3814 Security.xml:3833
#, no-c-format
msgid ""
"Returns a list of <literal>Permission</literal> objects representing all of "
@@ -5295,13 +5301,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3845
+#: Security.xml:3848
#, no-c-format
msgid "grantPermission(Permission permission)"
msgstr ""
#. Tag: para
-#: Security.xml:3849
+#: Security.xml:3852
#, no-c-format
msgid ""
"Persists (grants) the specified <literal>Permission</literal> to the backend "
@@ -5309,7 +5315,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3868
+#: Security.xml:3871
#, no-c-format
msgid ""
"Persists (grants) the specified list of <literal>Permission</literal>s to "
@@ -5317,7 +5323,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3887
+#: Security.xml:3890
#, no-c-format
msgid ""
"Removes (revokes) the specified <literal>Permission</literal> from the "
@@ -5325,7 +5331,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3906
+#: Security.xml:3909
#, no-c-format
msgid ""
"Removes (revokes) the specified list of <literal>Permission</literal>s from "
@@ -5333,7 +5339,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3925
+#: Security.xml:3928
#, no-c-format
msgid ""
"Returns a list of the available actions for the specified target object. The "
@@ -5342,13 +5348,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3940
+#: Security.xml:3943
#, no-c-format
msgid "Permission checks for PermissionManager operations"
msgstr ""
#. Tag: para
-#: Security.xml:3942
+#: Security.xml:3945
#, no-c-format
msgid ""
"Invoking the methods of <literal>PermissionManager</literal> requires that "
@@ -5358,37 +5364,37 @@
msgstr ""
#. Tag: title
-#: Security.xml:3949
+#: Security.xml:3952
#, no-c-format
msgid "Permission Management Security Permissions"
msgstr ""
#. Tag: literal
-#: Security.xml:3973
+#: Security.xml:3976
#, no-c-format
msgid "listPermissions()"
msgstr ""
#. Tag: para
-#: Security.xml:3977
+#: Security.xml:3980
#, no-c-format
msgid "The specified <literal>target</literal>"
msgstr ""
#. Tag: literal
-#: Security.xml:3983
+#: Security.xml:3986
#, no-c-format
msgid "seam.read-permissions"
msgstr ""
#. Tag: literal
-#: Security.xml:3991 Security.xml:4011
+#: Security.xml:3994 Security.xml:4014
#, no-c-format
msgid "grantPermission()"
msgstr ""
#. Tag: para
-#: Security.xml:3995
+#: Security.xml:3998
#, no-c-format
msgid ""
"The target of the specified <literal>Permission</literal>, or each of the "
@@ -5397,56 +5403,56 @@
msgstr ""
#. Tag: literal
-#: Security.xml:4003 Security.xml:4021 Security.xml:4039
+#: Security.xml:4006 Security.xml:4024 Security.xml:4042
#, no-c-format
msgid "seam.grant-permission"
msgstr ""
#. Tag: para
-#: Security.xml:4015 Security.xml:4051
+#: Security.xml:4018 Security.xml:4054
#, no-c-format
msgid "The target of the specified <literal>Permission</literal>."
msgstr ""
#. Tag: literal
-#: Security.xml:4029
+#: Security.xml:4032
#, no-c-format
msgid "grantPermissions()"
msgstr ""
#. Tag: para
-#: Security.xml:4033 Security.xml:4069
+#: Security.xml:4036 Security.xml:4072
#, no-c-format
msgid ""
"Each of the targets of the specified list of <literal>Permission</literal>s."
msgstr ""
#. Tag: literal
-#: Security.xml:4047
+#: Security.xml:4050
#, no-c-format
msgid "revokePermission()"
msgstr ""
#. Tag: literal
-#: Security.xml:4057 Security.xml:4075
+#: Security.xml:4060 Security.xml:4078
#, no-c-format
msgid "seam.revoke-permission"
msgstr ""
#. Tag: literal
-#: Security.xml:4065
+#: Security.xml:4068
#, no-c-format
msgid "revokePermissions()"
msgstr ""
#. Tag: title
-#: Security.xml:4088
+#: Security.xml:4091
#, no-c-format
msgid "SSL Security"
msgstr ""
#. Tag: para
-#: Security.xml:4090
+#: Security.xml:4093
#, no-c-format
msgid ""
"Seam includes basic support for serving sensitive pages via the HTTPS "
@@ -5457,13 +5463,13 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4097
+#: Security.xml:4100
#, no-c-format
msgid "<![CDATA[<page view-id=\"/login.xhtml\" scheme=\"https\"/>]]>"
msgstr ""
#. Tag: para
-#: Security.xml:4099
+#: Security.xml:4102
#, no-c-format
msgid ""
"This configuration is automatically extended to both <literal>s:link</"
@@ -5475,13 +5481,13 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4106
+#: Security.xml:4109
#, no-c-format
msgid "<![CDATA[<s:link view=\"/login.xhtml\" value=\"Login\"/>]]>"
msgstr ""
#. Tag: para
-#: Security.xml:4108
+#: Security.xml:4111
#, no-c-format
msgid ""
"Browsing directly to a view when using the <emphasis>incorrect</emphasis> "
@@ -5492,7 +5498,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4115
+#: Security.xml:4118
#, no-c-format
msgid ""
"It is also possible to configure a <emphasis>default scheme</emphasis> for "
@@ -5506,13 +5512,13 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4124
+#: Security.xml:4127
#, no-c-format
msgid "<![CDATA[<page view-id=\"*\" scheme=\"http\" />]]>"
msgstr ""
#. Tag: para
-#: Security.xml:4126
+#: Security.xml:4129
#, no-c-format
msgid ""
"Of course, if <emphasis>none</emphasis> of the pages in your application use "
@@ -5520,7 +5526,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4131
+#: Security.xml:4134
#, no-c-format
msgid ""
"You may configure Seam to automatically invalidate the current HTTP session "
@@ -5529,13 +5535,13 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4136
+#: Security.xml:4139
#, no-c-format
msgid "<![CDATA[<web:session invalidate-on-scheme-change=\"true\"/>]]>"
msgstr ""
#. Tag: para
-#: Security.xml:4138
+#: Security.xml:4141
#, no-c-format
msgid ""
"This option helps make your system less vulnerable to sniffing of the "
@@ -5544,13 +5550,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4144
+#: Security.xml:4147
#, no-c-format
msgid "Overriding the default ports"
msgstr ""
#. Tag: para
-#: Security.xml:4146
+#: Security.xml:4149
#, no-c-format
msgid ""
"If you wish to configure the HTTP and HTTPS ports manually, they may be "
@@ -5560,7 +5566,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4152
+#: Security.xml:4155
#, no-c-format
msgid ""
"<![CDATA[\n"
@@ -5576,13 +5582,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4158
+#: Security.xml:4161
#, no-c-format
msgid "CAPTCHA"
msgstr ""
#. Tag: para
-#: Security.xml:4160
+#: Security.xml:4163
#, no-c-format
msgid ""
"Though strictly not part of the security API, Seam provides a built-in "
@@ -5594,13 +5600,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4168
+#: Security.xml:4171
#, no-c-format
msgid "Configuring the CAPTCHA Servlet"
msgstr ""
#. Tag: para
-#: Security.xml:4169
+#: Security.xml:4172
#, no-c-format
msgid ""
"To get up and running, it is necessary to configure the Seam Resource "
@@ -5609,7 +5615,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4174
+#: Security.xml:4177
#, no-c-format
msgid ""
"<![CDATA[<servlet>\n"
@@ -5625,20 +5631,20 @@
msgstr ""
#. Tag: title
-#: Security.xml:4179
+#: Security.xml:4182
#, no-c-format
msgid "Adding a CAPTCHA to a form"
msgstr ""
#. Tag: para
-#: Security.xml:4181
+#: Security.xml:4184
#, no-c-format
msgid ""
"Adding a CAPTCHA challenge to a form is extremely easy. Here's an example:"
msgstr ""
#. Tag: programlisting
-#: Security.xml:4185
+#: Security.xml:4188
#, no-c-format
msgid ""
"<![CDATA[<h:graphicImage value=\"/seam/resource/captcha\"/>\n"
@@ -5650,7 +5656,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4187
+#: Security.xml:4190
#, no-c-format
msgid ""
"That's all there is to it. The <literal>graphicImage</literal> control "
@@ -5660,20 +5666,20 @@
msgstr ""
#. Tag: title
-#: Security.xml:4196
+#: Security.xml:4199
#, no-c-format
msgid "Customising the CAPTCHA algorithm"
msgstr ""
#. Tag: para
-#: Security.xml:4198
+#: Security.xml:4201
#, no-c-format
msgid ""
"You may customize the CAPTCHA algorithm by overriding the built-in component:"
msgstr ""
#. Tag: programlisting
-#: Security.xml:4202
+#: Security.xml:4205
#, no-c-format
msgid ""
"<![CDATA[@Name(\"org.jboss.seam.captcha.captcha\")\n"
@@ -5700,13 +5706,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4209 Security.xml:4217
+#: Security.xml:4212 Security.xml:4220
#, no-c-format
msgid "Security Events"
msgstr ""
#. Tag: para
-#: Security.xml:4211
+#: Security.xml:4214
#, no-c-format
msgid ""
"The following table describes a number of events (see <xref linkend=\"events"
@@ -5714,68 +5720,68 @@
msgstr ""
#. Tag: para
-#: Security.xml:4226
+#: Security.xml:4229
#, no-c-format
msgid "Event Key"
msgstr ""
#. Tag: literal
-#: Security.xml:4239
+#: Security.xml:4242
#, no-c-format
msgid "org.jboss.seam.security.loginSuccessful"
msgstr ""
#. Tag: para
-#: Security.xml:4243
+#: Security.xml:4246
#, no-c-format
msgid "Raised when a login attempt is successful."
msgstr ""
#. Tag: literal
-#: Security.xml:4251
+#: Security.xml:4254
#, no-c-format
msgid "org.jboss.seam.security.loginFailed"
msgstr ""
#. Tag: para
-#: Security.xml:4255
+#: Security.xml:4258
#, no-c-format
msgid "Raised when a login attempt fails."
msgstr ""
#. Tag: literal
-#: Security.xml:4263
+#: Security.xml:4266
#, no-c-format
msgid "org.jboss.seam.security.alreadyLoggedIn"
msgstr ""
#. Tag: para
-#: Security.xml:4267
+#: Security.xml:4270
#, no-c-format
msgid ""
"Raised when a user that is already authenticated attempts to log in again."
msgstr ""
#. Tag: literal
-#: Security.xml:4275
+#: Security.xml:4278
#, no-c-format
msgid "org.jboss.seam.security.notLoggedIn"
msgstr ""
#. Tag: para
-#: Security.xml:4279
+#: Security.xml:4282
#, no-c-format
msgid "Raised when a security check fails when the user is not logged in."
msgstr ""
#. Tag: literal
-#: Security.xml:4287
+#: Security.xml:4290
#, no-c-format
msgid "org.jboss.seam.security.notAuthorized"
msgstr ""
#. Tag: para
-#: Security.xml:4291
+#: Security.xml:4294
#, no-c-format
msgid ""
"Raised when a security check fails when the user is logged in however "
@@ -5783,73 +5789,73 @@
msgstr ""
#. Tag: literal
-#: Security.xml:4299
+#: Security.xml:4302
#, no-c-format
msgid "org.jboss.seam.security.preAuthenticate"
msgstr ""
#. Tag: para
-#: Security.xml:4303
+#: Security.xml:4306
#, no-c-format
msgid "Raised just prior to user authentication."
msgstr ""
#. Tag: literal
-#: Security.xml:4311
+#: Security.xml:4314
#, no-c-format
msgid "org.jboss.seam.security.postAuthenticate"
msgstr ""
#. Tag: para
-#: Security.xml:4315
+#: Security.xml:4318
#, no-c-format
msgid "Raised just after user authentication."
msgstr ""
#. Tag: literal
-#: Security.xml:4323
+#: Security.xml:4326
#, no-c-format
msgid "org.jboss.seam.security.loggedOut"
msgstr ""
#. Tag: para
-#: Security.xml:4327
+#: Security.xml:4330
#, no-c-format
msgid "Raised after the user has logged out."
msgstr ""
#. Tag: literal
-#: Security.xml:4335
+#: Security.xml:4338
#, no-c-format
msgid "org.jboss.seam.security.credentialsUpdated"
msgstr ""
#. Tag: para
-#: Security.xml:4339
+#: Security.xml:4342
#, no-c-format
msgid "Raised when the user's credentials have been changed."
msgstr ""
#. Tag: literal
-#: Security.xml:4347
+#: Security.xml:4350
#, no-c-format
msgid "org.jboss.seam.security.rememberMe"
msgstr ""
#. Tag: para
-#: Security.xml:4351
+#: Security.xml:4354
#, no-c-format
msgid "Raised when the Identity's rememberMe property is changed."
msgstr ""
#. Tag: title
-#: Security.xml:4364
+#: Security.xml:4367
#, no-c-format
msgid "Run As"
msgstr ""
#. Tag: para
-#: Security.xml:4366
+#: Security.xml:4369
#, no-c-format
msgid ""
"Sometimes it may be necessary to perform certain operations with elevated "
@@ -5861,7 +5867,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4374
+#: Security.xml:4377
#, no-c-format
msgid ""
"The following code example demonstrates how <literal>RunAsOperation</"
@@ -5872,7 +5878,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4381
+#: Security.xml:4384
#, no-c-format
msgid ""
"<![CDATA[ new RunAsOperation() { \n"
@@ -5884,7 +5890,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4383
+#: Security.xml:4386
#, no-c-format
msgid ""
"In a similar way, the <literal>getPrincipal()</literal> or "
@@ -5895,13 +5901,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4394
+#: Security.xml:4397
#, no-c-format
msgid "Extending the Identity component"
msgstr ""
#. Tag: para
-#: Security.xml:4396
+#: Security.xml:4399
#, no-c-format
msgid ""
"Sometimes it might be necessary to extend the Identity component if your "
@@ -5914,7 +5920,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4404
+#: Security.xml:4407
#, no-c-format
msgid ""
"<![CDATA[@Name(\"org.jboss.seam.security.identity\")\n"
@@ -5949,7 +5955,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4407
+#: Security.xml:4410
#, no-c-format
msgid ""
"Note that an <literal>Identity</literal> component must be marked "
@@ -5959,13 +5965,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4419
+#: Security.xml:4422
#, no-c-format
msgid "OpenID"
msgstr ""
#. Tag: para
-#: Security.xml:4421
+#: Security.xml:4424
#, no-c-format
msgid ""
"OpenID is a community standard for external web-based authentication. The "
@@ -5978,7 +5984,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4430
+#: Security.xml:4433
#, no-c-format
msgid ""
"When using OpenID, the user selects an OpenID provider, and the provider "
@@ -5995,7 +6001,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4439
+#: Security.xml:4442
#, no-c-format
msgid ""
"It's important to realize at this point that authentication does not imply "
@@ -6008,13 +6014,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4449
+#: Security.xml:4452
#, no-c-format
msgid "Configuring OpenID"
msgstr ""
#. Tag: para
-#: Security.xml:4450
+#: Security.xml:4453
#, no-c-format
msgid ""
"Seam uses the openid4java package and requires four additional JARs to make "
@@ -6024,7 +6030,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4456
+#: Security.xml:4459
#, no-c-format
msgid ""
"OpenID processing requires the use of the <literal>OpenIdPhaseListener</"
@@ -6034,7 +6040,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4462
+#: Security.xml:4465
#, no-c-format
msgid ""
"<lifecycle>\n"
@@ -6044,7 +6050,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4465
+#: Security.xml:4468
#, no-c-format
msgid ""
"With this configuration, OpenID support is available to your application. "
@@ -6054,13 +6060,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4473
+#: Security.xml:4476
#, no-c-format
msgid "Presenting an OpenIdDLogin form"
msgstr ""
#. Tag: para
-#: Security.xml:4475
+#: Security.xml:4478
#, no-c-format
msgid ""
"To initiate an OpenID login, you can present a simply form to the user "
@@ -6070,7 +6076,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4480
+#: Security.xml:4483
#, no-c-format
msgid ""
"<h:form>\n"
@@ -6081,7 +6087,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4482
+#: Security.xml:4485
#, no-c-format
msgid ""
"When the user submits the login form, he will be redirected to his OpenID "
@@ -6093,13 +6099,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4491
+#: Security.xml:4494
#, no-c-format
msgid "Logging in immediately"
msgstr ""
#. Tag: para
-#: Security.xml:4493
+#: Security.xml:4496
#, no-c-format
msgid ""
"The simplest strategy is to simply login the user immediately. The following "
@@ -6108,7 +6114,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4497
+#: Security.xml:4500
#, no-c-format
msgid ""
"<page view-id="/openid.xhtml">\n"
@@ -6128,7 +6134,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4499
+#: Security.xml:4502
#, no-c-format
msgid ""
"Thie <literal>loginImmediately()</literal> action checks to see if the "
@@ -6142,13 +6148,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4510
+#: Security.xml:4513
#, no-c-format
msgid "Deferring login"
msgstr ""
#. Tag: para
-#: Security.xml:4512
+#: Security.xml:4515
#, no-c-format
msgid ""
"You may not want the user to be immediately logged in to your application. "
@@ -6165,13 +6171,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4526
+#: Security.xml:4529
#, no-c-format
msgid "Logging out"
msgstr ""
#. Tag: para
-#: Security.xml:4528
+#: Security.xml:4531
#, no-c-format
msgid ""
"Logging out (forgetting an OpenID association) is done by calling <literal>#"
@@ -6182,7 +6188,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4535
+#: Security.xml:4538
#, no-c-format
msgid ""
"<event type="org.jboss.seam.security.loggedOut">\n"
@@ -6191,7 +6197,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4537
+#: Security.xml:4540
#, no-c-format
msgid ""
"It's important that you do not leave this out or the user will not be able "
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/sl-SL/Dependencies.po
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/sl-SL/Dependencies.po 2009-06-11 20:41:36 UTC (rev 11125)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/sl-SL/Dependencies.po 2009-06-11 20:43:04 UTC (rev 11126)
@@ -5,7 +5,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-04-15 13:51+0000\n"
+"POT-Creation-Date: 2009-06-11 18:45+0000\n"
"PO-Revision-Date: 2008-04-21 00:37+0000\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -938,8 +938,8 @@
#: Dependencies.xml:1182
#, no-c-format
msgid ""
-"This sample POM will give you Seam, JPA (provided by Hibernate) and "
-"Hibernate Validator:"
+"This sample POM will give you Seam, JPA (provided by Hibernate), Hibernate "
+"Validator and Hibernate Search:"
msgstr ""
#. Tag: programlisting
@@ -970,25 +970,31 @@
" <dependency>\n"
" <groupId>org.hibernate</groupId>\n"
" <artifactId>hibernate-validator</artifactId>\n"
-" <version>3.0.0.GA</version>\n"
+" <version>3.1.0.GA</version>\n"
" </dependency>\n"
"\n"
" <dependency>\n"
" <groupId>org.hibernate</groupId>\n"
" <artifactId>hibernate-annotations</artifactId>\n"
-" <version>3.3.0.ga</version>\n"
+" <version>3.4.0.GA</version>\n"
" </dependency>\n"
"\n"
" <dependency>\n"
" <groupId>org.hibernate</groupId>\n"
" <artifactId>hibernate-entitymanager</artifactId>\n"
-" <version>3.3.1.ga</version>\n"
+" <version>3.4.0.GA</version>\n"
" </dependency>\n"
+" \n"
+" <dependency>\n"
+" <groupId>org.hibernate</groupId>\n"
+" <artifactId>hibernate-search</artifactId>\n"
+" <version>3.1.1.GA</version>\n"
+" </dependency>\n"
"\n"
" <dependency>\n"
" <groupId>org.jboss.seam</groupId>\n"
" <artifactId>jboss-seam</artifactId>\n"
-" <version>2.0.0.GA</version>\n"
+" <version>2.2.0.GA</version>\n"
" </dependency>\n"
" \n"
" </dependencies>\n"
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/sl-SL/Hsearch.po
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/sl-SL/Hsearch.po 2009-06-11 20:41:36 UTC (rev 11125)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/sl-SL/Hsearch.po 2009-06-11 20:43:04 UTC (rev 11126)
@@ -5,7 +5,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-04-15 13:51+0000\n"
+"POT-Creation-Date: 2009-06-11 18:45+0000\n"
"PO-Revision-Date: 2008-04-21 00:37+0000\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -45,7 +45,7 @@
#: Hsearch.xml:21
#, no-c-format
msgid ""
-"Hibernate Search has been designed to integrates nicely and as naturally as "
+"Hibernate Search has been designed to integrate nicely and as naturally as "
"possible with JPA and Hibernate. As a natural extension, JBoss Seam provides "
"an Hibernate Search integration."
msgstr ""
@@ -132,7 +132,7 @@
" <property name=\"hibernate.ejb.event.post-delete\" \n"
" value=\"org.hibernate.search.event.FullTextIndexEventListener"
"\"/>\n"
-"\n"
+" \n"
" </properties>\n"
"</persistence-unit>]]>"
msgstr ""
@@ -141,12 +141,15 @@
#: Hsearch.xml:52
#, no-c-format
msgid ""
-"This step is no longer necessary if Hibernate Annotation or EntityManager "
-"3.3.x are used."
+"It is not longer necessary the register the event listeners if Hibernate "
+"Annotations or EntityManager 3.3.x are used. When using Hibernate Search 3.1."
+"x more eventlisteners are needed, but these are registered automatically by "
+"Hibernate Annotations; refer to the Hibernate Search reference for "
+"configuring it without EntityManager and Annotations."
msgstr ""
#. Tag: para
-#: Hsearch.xml:56
+#: Hsearch.xml:60
#, no-c-format
msgid ""
"In addition to the configuration file, the following jars have to be "
@@ -154,25 +157,25 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:61
+#: Hsearch.xml:65
#, no-c-format
msgid "hibernate-search.jar"
msgstr ""
#. Tag: para
-#: Hsearch.xml:65
+#: Hsearch.xml:69
#, no-c-format
msgid "hibernate-commons-annotations.jar"
msgstr ""
#. Tag: para
-#: Hsearch.xml:69
+#: Hsearch.xml:73
#, no-c-format
msgid "lucene-core.jar"
msgstr ""
#. Tag: para
-#: Hsearch.xml:74
+#: Hsearch.xml:78
#, no-c-format
msgid ""
"If you deploy those in a EAR, don't forget to update <filename>application."
@@ -180,13 +183,13 @@
msgstr ""
#. Tag: title
-#: Hsearch.xml:80
+#: Hsearch.xml:84
#, no-c-format
msgid "Usage"
msgstr ""
#. Tag: para
-#: Hsearch.xml:82
+#: Hsearch.xml:86
#, no-c-format
msgid ""
"Hibernate Search uses annotations to map entities to a Lucene index, check "
@@ -195,7 +198,7 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:87
+#: Hsearch.xml:91
#, no-c-format
msgid ""
"Hibernate Search is fully integrated with the API and semantic of JPA / "
@@ -206,7 +209,7 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:93
+#: Hsearch.xml:97
#, no-c-format
msgid ""
"When Hibernate Search is present, JBoss Seam injects a "
@@ -214,7 +217,7 @@
msgstr ""
#. Tag: programlisting
-#: Hsearch.xml:96
+#: Hsearch.xml:100
#, no-c-format
msgid ""
"<![CDATA[@Stateful\n"
@@ -237,7 +240,7 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:99
+#: Hsearch.xml:103
#, no-c-format
msgid ""
"<classname>FullTextSession</classname> extends <classname>org.hibernate."
@@ -245,14 +248,14 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:104
+#: Hsearch.xml:108
#, no-c-format
msgid ""
"If the Java Persistence API is used, a smoother integration is proposed."
msgstr ""
#. Tag: programlisting
-#: Hsearch.xml:107
+#: Hsearch.xml:111
#, no-c-format
msgid ""
"<![CDATA[@Stateful\n"
@@ -275,7 +278,7 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:109
+#: Hsearch.xml:113
#, no-c-format
msgid ""
"When Hibernate Search is present, a <classname>FulltextEntityManager</"
@@ -286,7 +289,7 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:116
+#: Hsearch.xml:120
#, no-c-format
msgid ""
"When an EJB 3.0 Session or Message Driven Bean injection is used (i.e. via "
@@ -299,7 +302,7 @@
msgstr ""
#. Tag: programlisting
-#: Hsearch.xml:124
+#: Hsearch.xml:128
#, no-c-format
msgid ""
"<![CDATA[@Stateful\n"
@@ -323,15 +326,15 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:129
+#: Hsearch.xml:133
#, no-c-format
msgid ""
"For people accustomed to Hibernate Search out of Seam, note that using "
-"<methodname>Search.createFullTextSession</methodname> is not necessary."
+"<methodname>Search.getFullTextSession</methodname> is not necessary."
msgstr ""
#. Tag: para
-#: Hsearch.xml:134
+#: Hsearch.xml:138
#, no-c-format
msgid ""
"Check the DVDStore or the blog examples of the JBoss Seam distribution for a "
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/sl-SL/Security.po
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/sl-SL/Security.po 2009-06-11 20:41:36 UTC (rev 11125)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/sl-SL/Security.po 2009-06-11 20:43:04 UTC (rev 11126)
@@ -5,7 +5,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-06-11 07:43+0000\n"
+"POT-Creation-Date: 2009-06-11 18:45+0000\n"
"PO-Revision-Date: 2008-04-21 00:37+0000\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -1190,7 +1190,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:630 Security.xml:764 Security.xml:3382 Security.xml:3545
+#: Security.xml:630 Security.xml:764 Security.xml:3385 Security.xml:3548
#, no-c-format
msgid "Annotation"
msgstr ""
@@ -1203,8 +1203,8 @@
#. Tag: para
#: Security.xml:636 Security.xml:770 Security.xml:966 Security.xml:1418
-#: Security.xml:2147 Security.xml:2756 Security.xml:3171 Security.xml:3388
-#: Security.xml:3551 Security.xml:3792 Security.xml:4229
+#: Security.xml:2147 Security.xml:2756 Security.xml:3174 Security.xml:3391
+#: Security.xml:3554 Security.xml:3795 Security.xml:4232
#, no-c-format
msgid "Description"
msgstr ""
@@ -2228,8 +2228,8 @@
msgstr ""
#. Tag: para
-#: Security.xml:1412 Security.xml:1828 Security.xml:2753 Security.xml:3168
-#: Security.xml:3789 Security.xml:3958
+#: Security.xml:1412 Security.xml:1828 Security.xml:2753 Security.xml:3171
+#: Security.xml:3792 Security.xml:3961
#, no-c-format
msgid "Method"
msgstr ""
@@ -2250,9 +2250,9 @@
#: Security.xml:1433 Security.xml:1452 Security.xml:1471 Security.xml:1490
#: Security.xml:1509 Security.xml:1529 Security.xml:1548 Security.xml:1567
#: Security.xml:1586 Security.xml:1606 Security.xml:1626 Security.xml:1740
-#: Security.xml:1762 Security.xml:1780 Security.xml:2766 Security.xml:3239
-#: Security.xml:3258 Security.xml:3277 Security.xml:3295 Security.xml:3840
-#: Security.xml:3859 Security.xml:3878 Security.xml:3897
+#: Security.xml:1762 Security.xml:1780 Security.xml:2766 Security.xml:3242
+#: Security.xml:3261 Security.xml:3280 Security.xml:3298 Security.xml:3843
+#: Security.xml:3862 Security.xml:3881 Security.xml:3900
#, no-c-format
msgid "boolean"
msgstr ""
@@ -2558,13 +2558,13 @@
msgstr ""
#. Tag: para
-#: Security.xml:1831 Security.xml:3961
+#: Security.xml:1831 Security.xml:3964
#, no-c-format
msgid "Permission Target"
msgstr ""
#. Tag: para
-#: Security.xml:1834 Security.xml:3964
+#: Security.xml:1834 Security.xml:3967
#, no-c-format
msgid "Permission Action"
msgstr ""
@@ -3806,7 +3806,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2750 Security.xml:3165 Security.xml:3786
+#: Security.xml:2750 Security.xml:3168 Security.xml:3789
#, no-c-format
msgid "Return type"
msgstr ""
@@ -3986,41 +3986,47 @@
#. Tag: para
#: Security.xml:2917
#, no-c-format
-msgid "drools-compiler.jar"
+msgid "drools-api.jar"
msgstr ""
#. Tag: para
#: Security.xml:2920
#, no-c-format
-msgid "drools-core.jar"
+msgid "drools-compiler.jar"
msgstr ""
#. Tag: para
#: Security.xml:2923
#, no-c-format
-msgid "janino.jar"
+msgid "drools-core.jar"
msgstr ""
#. Tag: para
#: Security.xml:2926
#, no-c-format
-msgid "antlr-runtime.jar"
+msgid "janino.jar"
msgstr ""
#. Tag: para
#: Security.xml:2929
#, no-c-format
-msgid "mvel14.jar"
+msgid "antlr-runtime.jar"
msgstr ""
+#. Tag: para
+#: Security.xml:2932
+#, no-c-format
+msgid "mvel2.jar"
+msgstr ""
+
#. Tag: title
-#: Security.xml:2936 Security.xml:3128
+#: Security.xml:2939 Security.xml:3131
#, no-c-format
msgid "Configuration"
msgstr ""
#. Tag: para
-#: Security.xml:2938
+#: Security.xml:2941
#, no-c-format
msgid ""
"The configuration for <literal>RuleBasedPermissionResolver</literal> "
@@ -4030,7 +4036,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:2944
+#: Security.xml:2947
#, no-c-format
msgid ""
"<![CDATA[<components xmlns=\"http://jboss.com/products/seam/components\"\n"
@@ -4058,7 +4064,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2946
+#: Security.xml:2949
#, no-c-format
msgid ""
"The default rule base name can be overridden by specifying the "
@@ -4067,7 +4073,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:2951
+#: Security.xml:2954
#, no-c-format
msgid ""
"<![CDATA[\n"
@@ -4076,7 +4082,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2953
+#: Security.xml:2956
#, no-c-format
msgid ""
"Once the <literal>RuleBase</literal> component is configured, it's time to "
@@ -4084,13 +4090,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:2959
+#: Security.xml:2962
#, no-c-format
msgid "Writing Security Rules"
msgstr ""
#. Tag: para
-#: Security.xml:2961
+#: Security.xml:2964
#, no-c-format
msgid ""
"The first step to writing security rules is to create a new rule file in the "
@@ -4101,7 +4107,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2968
+#: Security.xml:2971
#, no-c-format
msgid ""
"So what should the security rules file contain? At this stage it might be a "
@@ -4110,7 +4116,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:2973
+#: Security.xml:2976
#, no-c-format
msgid ""
"<![CDATA[package MyApplicationPermissions;\n"
@@ -4128,7 +4134,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2975
+#: Security.xml:2978
#, no-c-format
msgid ""
"Let's break this down step by step. The first thing we see is the package "
@@ -4138,7 +4144,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2981
+#: Security.xml:2984
#, no-c-format
msgid ""
"The next thing we can notice is a couple of import statements for the "
@@ -4148,7 +4154,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2987
+#: Security.xml:2990
#, no-c-format
msgid ""
"Finally we have the code for the rule. Each rule within a package should be "
@@ -4158,7 +4164,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2993
+#: Security.xml:2996
#, no-c-format
msgid ""
"Looking at the body of the rule definition we can notice two distinct "
@@ -4173,7 +4179,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3002
+#: Security.xml:3005
#, no-c-format
msgid ""
"If we look at the LHS of the rule, we see two conditions listed there. Let's "
@@ -4181,14 +4187,14 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3006
+#: Security.xml:3009
#, no-c-format
msgid ""
"<![CDATA[c: PermissionCheck(target == \"customer\", action == \"delete\")]]>"
msgstr ""
#. Tag: para
-#: Security.xml:3008
+#: Security.xml:3011
#, no-c-format
msgid ""
"In plain english, this condition is stating that there must exist a "
@@ -4198,7 +4204,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3014
+#: Security.xml:3017
#, no-c-format
msgid ""
"So what is the working memory? Also known as a \"stateful session\" in "
@@ -4216,7 +4222,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3026
+#: Security.xml:3029
#, no-c-format
msgid ""
"Besides the <literal>PermissionCheck</literal> facts, there is also a "
@@ -4233,7 +4239,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3037
+#: Security.xml:3040
#, no-c-format
msgid ""
"It is also possible to insert additional long-lived facts into the working "
@@ -4244,7 +4250,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3044
+#: Security.xml:3047
#, no-c-format
msgid ""
"Getting back to our simple example, we can also notice that the first line "
@@ -4255,13 +4261,13 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3051
+#: Security.xml:3054
#, no-c-format
msgid "<![CDATA[Role(name == \"admin\")]]>"
msgstr ""
#. Tag: para
-#: Security.xml:3053
+#: Security.xml:3056
#, no-c-format
msgid ""
"This condition simply states that there must be a <literal>Role</literal> "
@@ -4274,7 +4280,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3061
+#: Security.xml:3064
#, no-c-format
msgid ""
"So what is the consequence of the rule firing? Let's take a look at the RHS "
@@ -4282,13 +4288,13 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3065
+#: Security.xml:3068
#, no-c-format
msgid "<![CDATA[c.grant()]]>"
msgstr ""
#. Tag: para
-#: Security.xml:3067
+#: Security.xml:3070
#, no-c-format
msgid ""
"The RHS consists of Java code, and in this case is invoking the "
@@ -4305,13 +4311,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3081
+#: Security.xml:3084
#, no-c-format
msgid "Non-String permission targets"
msgstr ""
#. Tag: para
-#: Security.xml:3083
+#: Security.xml:3086
#, no-c-format
msgid ""
"So far we have only seen permission checks for String-literal permission "
@@ -4325,7 +4331,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3092
+#: Security.xml:3095
#, no-c-format
msgid ""
"<![CDATA[rule CanCreateBlogComment\n"
@@ -4343,13 +4349,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3097
+#: Security.xml:3100
#, no-c-format
msgid "Wildcard permission checks"
msgstr ""
#. Tag: para
-#: Security.xml:3099
+#: Security.xml:3102
#, no-c-format
msgid ""
"It is possible to implement a wildcard permission check (which allows all "
@@ -4359,7 +4365,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3105
+#: Security.xml:3108
#, no-c-format
msgid ""
"<![CDATA[rule CanDoAnythingToCustomersIfYouAreAnAdmin\n"
@@ -4373,7 +4379,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3107
+#: Security.xml:3110
#, no-c-format
msgid ""
"This rule allows users with the <literal>admin</literal> role to perform "
@@ -4382,13 +4388,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3117
+#: Security.xml:3120
#, no-c-format
msgid "PersistentPermissionResolver"
msgstr ""
#. Tag: para
-#: Security.xml:3119
+#: Security.xml:3122
#, no-c-format
msgid ""
"Another built-in permission resolver provided by Seam, "
@@ -4401,7 +4407,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3130
+#: Security.xml:3133
#, no-c-format
msgid ""
"Before it can be used, <literal>PersistentPermissionResolver</literal> must "
@@ -4414,7 +4420,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3138
+#: Security.xml:3141
#, no-c-format
msgid ""
"<![CDATA[ <security:persistent-permission-resolver permission-store=\"#"
@@ -4422,13 +4428,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3143
+#: Security.xml:3146
#, no-c-format
msgid "Permission Stores"
msgstr ""
#. Tag: para
-#: Security.xml:3145
+#: Security.xml:3148
#, no-c-format
msgid ""
"A permission store is required for <literal>PersistentPermissionResolver</"
@@ -4441,26 +4447,26 @@
msgstr ""
#. Tag: title
-#: Security.xml:3155
+#: Security.xml:3158
#, no-c-format
msgid "PermissionStore interface"
msgstr ""
#. Tag: literal
-#: Security.xml:3181 Security.xml:3200 Security.xml:3219 Security.xml:3802
-#: Security.xml:3821
+#: Security.xml:3184 Security.xml:3203 Security.xml:3222 Security.xml:3805
+#: Security.xml:3824
#, no-c-format
msgid "List<Permission>"
msgstr ""
#. Tag: literal
-#: Security.xml:3186 Security.xml:3826
+#: Security.xml:3189 Security.xml:3829
#, no-c-format
msgid "listPermissions(Object target)"
msgstr ""
#. Tag: para
-#: Security.xml:3190
+#: Security.xml:3193
#, no-c-format
msgid ""
"This method should return a <literal>List</literal> of <literal>Permission</"
@@ -4469,13 +4475,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3205 Security.xml:3807
+#: Security.xml:3208 Security.xml:3810
#, no-c-format
msgid "listPermissions(Object target, String action)"
msgstr ""
#. Tag: para
-#: Security.xml:3209
+#: Security.xml:3212
#, no-c-format
msgid ""
"This method should return a <literal>List</literal> of <literal>Permission</"
@@ -4484,13 +4490,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3224
+#: Security.xml:3227
#, no-c-format
msgid "listPermissions(Set<Object> targets, String action)"
msgstr ""
#. Tag: para
-#: Security.xml:3228
+#: Security.xml:3231
#, no-c-format
msgid ""
"This method should return a <literal>List</literal> of <literal>Permission</"
@@ -4499,13 +4505,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3244
+#: Security.xml:3247
#, no-c-format
msgid "grantPermission(Permission)"
msgstr ""
#. Tag: para
-#: Security.xml:3248
+#: Security.xml:3251
#, no-c-format
msgid ""
"This method should persist the specified <literal>Permission</literal> "
@@ -4513,13 +4519,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3263 Security.xml:3864
+#: Security.xml:3266 Security.xml:3867
#, no-c-format
msgid "grantPermissions(List<Permission> permissions)"
msgstr ""
#. Tag: para
-#: Security.xml:3267
+#: Security.xml:3270
#, no-c-format
msgid ""
"This method should persist all of the <literal>Permission</literal> objects "
@@ -4528,13 +4534,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3282 Security.xml:3883
+#: Security.xml:3285 Security.xml:3886
#, no-c-format
msgid "revokePermission(Permission permission)"
msgstr ""
#. Tag: para
-#: Security.xml:3286
+#: Security.xml:3289
#, no-c-format
msgid ""
"This method should remove the specified <literal>Permission</literal> object "
@@ -4542,13 +4548,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3300 Security.xml:3902
+#: Security.xml:3303 Security.xml:3905
#, no-c-format
msgid "revokePermissions(List<Permission> permissions)"
msgstr ""
#. Tag: para
-#: Security.xml:3304
+#: Security.xml:3307
#, no-c-format
msgid ""
"This method should remove all of the <literal>Permission</literal> objects "
@@ -4556,19 +4562,19 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3314 Security.xml:3916
+#: Security.xml:3317 Security.xml:3919
#, no-c-format
msgid "List<String>"
msgstr ""
#. Tag: literal
-#: Security.xml:3319 Security.xml:3921
+#: Security.xml:3322 Security.xml:3924
#, no-c-format
msgid "listAvailableActions(Object target)"
msgstr ""
#. Tag: para
-#: Security.xml:3323
+#: Security.xml:3326
#, no-c-format
msgid ""
"This method should return a list of all the available actions (as Strings) "
@@ -4578,13 +4584,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3337
+#: Security.xml:3340
#, no-c-format
msgid "JpaPermissionStore"
msgstr ""
#. Tag: para
-#: Security.xml:3339
+#: Security.xml:3342
#, no-c-format
msgid ""
"This is the default <literal>PermissionStore</literal> implementation (and "
@@ -4597,7 +4603,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3347
+#: Security.xml:3350
#, no-c-format
msgid ""
"If you wish to use the same entity (i.e. a single database table) to store "
@@ -4609,7 +4615,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3354
+#: Security.xml:3357
#, no-c-format
msgid ""
"For example, to configure a single entity class to store both user and role "
@@ -4617,7 +4623,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3356
+#: Security.xml:3359
#, no-c-format
msgid ""
"<![CDATA[ <security:jpa-permission-store user-permission-class=\"com.acme."
@@ -4625,14 +4631,14 @@
msgstr ""
#. Tag: para
-#: Security.xml:3358
+#: Security.xml:3361
#, no-c-format
msgid ""
"To configure separate entity classes for storing user and role permissions:"
msgstr ""
#. Tag: programlisting
-#: Security.xml:3360
+#: Security.xml:3363
#, no-c-format
msgid ""
"<![CDATA[ <security:jpa-permission-store user-permission-class=\"com.acme."
@@ -4641,13 +4647,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3363
+#: Security.xml:3366
#, no-c-format
msgid "Permission annotations"
msgstr ""
#. Tag: para
-#: Security.xml:3365
+#: Security.xml:3368
#, no-c-format
msgid ""
"As mentioned, the entity classes that contain the user and role permissions "
@@ -4658,32 +4664,32 @@
msgstr ""
#. Tag: title
-#: Security.xml:3372
+#: Security.xml:3375
#, no-c-format
msgid "Entity Permission annotations"
msgstr ""
#. Tag: para
-#: Security.xml:3385 Security.xml:3548
+#: Security.xml:3388 Security.xml:3551
#, no-c-format
msgid "Target"
msgstr ""
#. Tag: literal
-#: Security.xml:3398
+#: Security.xml:3401
#, no-c-format
msgid "@PermissionTarget"
msgstr ""
#. Tag: literal
-#: Security.xml:3403 Security.xml:3422 Security.xml:3441 Security.xml:3460
-#: Security.xml:3479
+#: Security.xml:3406 Security.xml:3425 Security.xml:3444 Security.xml:3463
+#: Security.xml:3482
#, no-c-format
msgid "FIELD,METHOD"
msgstr ""
#. Tag: para
-#: Security.xml:3407
+#: Security.xml:3410
#, no-c-format
msgid ""
"This annotation identifies the property of the entity that will contain the "
@@ -4692,13 +4698,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3417
+#: Security.xml:3420
#, no-c-format
msgid "@PermissionAction"
msgstr ""
#. Tag: para
-#: Security.xml:3426
+#: Security.xml:3429
#, no-c-format
msgid ""
"This annotation identifies the property of the entity that will contain the "
@@ -4707,13 +4713,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3436
+#: Security.xml:3439
#, no-c-format
msgid "@PermissionUser"
msgstr ""
#. Tag: para
-#: Security.xml:3445
+#: Security.xml:3448
#, no-c-format
msgid ""
"This annotation identifies the property of the entity that will contain the "
@@ -4722,13 +4728,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3455
+#: Security.xml:3458
#, no-c-format
msgid "@PermissionRole"
msgstr ""
#. Tag: para
-#: Security.xml:3464
+#: Security.xml:3467
#, no-c-format
msgid ""
"This annotation identifies the property of the entity that will contain the "
@@ -4737,13 +4743,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3474
+#: Security.xml:3477
#, no-c-format
msgid "@PermissionDiscriminator"
msgstr ""
#. Tag: para
-#: Security.xml:3483
+#: Security.xml:3486
#, no-c-format
msgid ""
"This annotation should be used when the same entity/table is used to store "
@@ -4760,20 +4766,20 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3493
+#: Security.xml:3496
#, no-c-format
msgid ""
"<![CDATA[ @PermissionDiscriminator(userValue = \"u\", roleValue = \"r\")]]>"
msgstr ""
#. Tag: title
-#: Security.xml:3504
+#: Security.xml:3507
#, no-c-format
msgid "Example Entity"
msgstr ""
#. Tag: para
-#: Security.xml:3506
+#: Security.xml:3509
#, no-c-format
msgid ""
"Here is an example of an entity class that is used to store both user and "
@@ -4782,7 +4788,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3511
+#: Security.xml:3514
#, no-c-format
msgid ""
"<![CDATA[\n"
@@ -4843,7 +4849,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3513
+#: Security.xml:3516
#, no-c-format
msgid ""
"As can be seen in the above example, the <literal>getDiscriminator()</"
@@ -4860,13 +4866,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3526
+#: Security.xml:3529
#, no-c-format
msgid "Class-specific Permission Configuration"
msgstr ""
#. Tag: para
-#: Security.xml:3528
+#: Security.xml:3531
#, no-c-format
msgid ""
"A further set of class-specific annotations can be used to configure a "
@@ -4876,25 +4882,25 @@
msgstr ""
#. Tag: title
-#: Security.xml:3535
+#: Security.xml:3538
#, no-c-format
msgid "Class Permission Annotations"
msgstr ""
#. Tag: literal
-#: Security.xml:3561
+#: Security.xml:3564
#, no-c-format
msgid "@Permissions"
msgstr ""
#. Tag: literal
-#: Security.xml:3566 Security.xml:3584
+#: Security.xml:3569 Security.xml:3587
#, no-c-format
msgid "TYPE"
msgstr ""
#. Tag: para
-#: Security.xml:3570
+#: Security.xml:3573
#, no-c-format
msgid ""
"A container annotation, this annotation may contain an array of "
@@ -4902,13 +4908,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3579
+#: Security.xml:3582
#, no-c-format
msgid "@Permission"
msgstr ""
#. Tag: para
-#: Security.xml:3588
+#: Security.xml:3591
#, no-c-format
msgid ""
"This annotation defines a single allowable permission action for the target "
@@ -4919,7 +4925,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3600
+#: Security.xml:3603
#, no-c-format
msgid ""
"Here's an example of the above annotations in action. The following class "
@@ -4927,7 +4933,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3604
+#: Security.xml:3607
#, no-c-format
msgid ""
"<![CDATA[@Permissions({\n"
@@ -4939,7 +4945,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3606
+#: Security.xml:3609
#, no-c-format
msgid ""
"This example demonstrates how two allowable permission actions, "
@@ -4948,13 +4954,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3614
+#: Security.xml:3617
#, no-c-format
msgid "Permission masks"
msgstr ""
#. Tag: para
-#: Security.xml:3616
+#: Security.xml:3619
#, no-c-format
msgid ""
"By default, multiple permissions for the same target object and recipient "
@@ -4966,7 +4972,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3623
+#: Security.xml:3626
#, no-c-format
msgid ""
"For example, if recipient \"Bob\" is granted both the <literal>view</"
@@ -4979,7 +4985,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3630
+#: Security.xml:3633
#, no-c-format
msgid ""
"<![CDATA[@Permissions({\n"
@@ -4991,7 +4997,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3632
+#: Security.xml:3635
#, no-c-format
msgid ""
"The <literal>action</literal> property will instead simply contain \"3"
@@ -5001,7 +5007,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3638
+#: Security.xml:3641
#, no-c-format
msgid ""
"Obviously, it is very important that the <literal>mask</literal> values "
@@ -5009,13 +5015,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3644
+#: Security.xml:3647
#, no-c-format
msgid "Identifier Policy"
msgstr ""
#. Tag: para
-#: Security.xml:3646
+#: Security.xml:3649
#, no-c-format
msgid ""
"When storing or looking up permissions, <literal>JpaPermissionStore</"
@@ -5029,7 +5035,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3654
+#: Security.xml:3657
#, no-c-format
msgid ""
"The <literal>IdentifierStrategy</literal> interface is very simple, "
@@ -5037,7 +5043,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3658
+#: Security.xml:3661
#, no-c-format
msgid ""
"<![CDATA[public interface IdentifierStrategy {\n"
@@ -5047,7 +5053,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3660
+#: Security.xml:3663
#, no-c-format
msgid ""
"The first method, <literal>canIdentify()</literal> simply returns "
@@ -5058,7 +5064,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3666
+#: Security.xml:3669
#, no-c-format
msgid ""
"Seam provides two <literal>IdentifierStrategy</literal> implementations, "
@@ -5067,7 +5073,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3671
+#: Security.xml:3674
#, no-c-format
msgid ""
"To explicitly configure a specific identifier strategy to use for a "
@@ -5080,13 +5086,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3681
+#: Security.xml:3684
#, no-c-format
msgid "ClassIdentifierStrategy"
msgstr ""
#. Tag: para
-#: Security.xml:3683
+#: Security.xml:3686
#, no-c-format
msgid ""
"This identifier strategy is used to generate unique identifiers for classes, "
@@ -5100,7 +5106,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3692
+#: Security.xml:3695
#, no-c-format
msgid ""
"<![CDATA[@Identifier(name = \"customer\")\n"
@@ -5108,7 +5114,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3694
+#: Security.xml:3697
#, no-c-format
msgid ""
"The identifier for the following class will be \"<literal>customerAction</"
@@ -5116,7 +5122,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3698
+#: Security.xml:3701
#, no-c-format
msgid ""
"<![CDATA[@Name(\"customerAction\")\n"
@@ -5124,7 +5130,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3700
+#: Security.xml:3703
#, no-c-format
msgid ""
"Finally, the identifier for the following class will be \"<literal>Customer</"
@@ -5132,19 +5138,19 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3704
+#: Security.xml:3707
#, no-c-format
msgid "<![CDATA[public class Customer { ]]>"
msgstr ""
#. Tag: title
-#: Security.xml:3709
+#: Security.xml:3712
#, no-c-format
msgid "EntityIdentifierStrategy"
msgstr ""
#. Tag: para
-#: Security.xml:3711
+#: Security.xml:3714
#, no-c-format
msgid ""
"This identifier strategy is used to generate unique identifiers for entity "
@@ -5161,7 +5167,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3722
+#: Security.xml:3725
#, no-c-format
msgid ""
"<![CDATA[@Identifier(value = EntityIdentifierStrategy.class)\n"
@@ -5169,7 +5175,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3724
+#: Security.xml:3727
#, no-c-format
msgid ""
"For an example of the type of identifier values generated, assume we have "
@@ -5177,7 +5183,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3728
+#: Security.xml:3731
#, no-c-format
msgid ""
"<![CDATA[@Entity\n"
@@ -5200,7 +5206,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3730
+#: Security.xml:3733
#, no-c-format
msgid ""
"For a <literal>Customer</literal> instance with an <literal>id</literal> "
@@ -5210,7 +5216,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3736
+#: Security.xml:3739
#, no-c-format
msgid ""
"<![CDATA[@Entity\n"
@@ -5219,7 +5225,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3738
+#: Security.xml:3741
#, no-c-format
msgid ""
"Then a <literal>Customer</literal> with an <literal>id</literal> value of "
@@ -5228,13 +5234,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3751
+#: Security.xml:3754
#, no-c-format
msgid "Permission Management"
msgstr ""
#. Tag: para
-#: Security.xml:3753
+#: Security.xml:3756
#, no-c-format
msgid ""
"In much the same way that Seam Security provides an Identity Management API "
@@ -5244,13 +5250,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3760
+#: Security.xml:3763
#, no-c-format
msgid "PermissionManager"
msgstr ""
#. Tag: para
-#: Security.xml:3762
+#: Security.xml:3765
#, no-c-format
msgid ""
"The <literal>PermissionManager</literal> component is an application-scoped "
@@ -5263,7 +5269,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3769
+#: Security.xml:3772
#, no-c-format
msgid ""
"<![CDATA[\n"
@@ -5273,7 +5279,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3771
+#: Security.xml:3774
#, no-c-format
msgid ""
"The following table describes each of the available methods provided by "
@@ -5281,13 +5287,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3776
+#: Security.xml:3779
#, no-c-format
msgid "PermissionManager API methods"
msgstr ""
#. Tag: para
-#: Security.xml:3811 Security.xml:3830
+#: Security.xml:3814 Security.xml:3833
#, no-c-format
msgid ""
"Returns a list of <literal>Permission</literal> objects representing all of "
@@ -5295,13 +5301,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3845
+#: Security.xml:3848
#, no-c-format
msgid "grantPermission(Permission permission)"
msgstr ""
#. Tag: para
-#: Security.xml:3849
+#: Security.xml:3852
#, no-c-format
msgid ""
"Persists (grants) the specified <literal>Permission</literal> to the backend "
@@ -5309,7 +5315,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3868
+#: Security.xml:3871
#, no-c-format
msgid ""
"Persists (grants) the specified list of <literal>Permission</literal>s to "
@@ -5317,7 +5323,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3887
+#: Security.xml:3890
#, no-c-format
msgid ""
"Removes (revokes) the specified <literal>Permission</literal> from the "
@@ -5325,7 +5331,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3906
+#: Security.xml:3909
#, no-c-format
msgid ""
"Removes (revokes) the specified list of <literal>Permission</literal>s from "
@@ -5333,7 +5339,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3925
+#: Security.xml:3928
#, no-c-format
msgid ""
"Returns a list of the available actions for the specified target object. The "
@@ -5342,13 +5348,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3940
+#: Security.xml:3943
#, no-c-format
msgid "Permission checks for PermissionManager operations"
msgstr ""
#. Tag: para
-#: Security.xml:3942
+#: Security.xml:3945
#, no-c-format
msgid ""
"Invoking the methods of <literal>PermissionManager</literal> requires that "
@@ -5358,37 +5364,37 @@
msgstr ""
#. Tag: title
-#: Security.xml:3949
+#: Security.xml:3952
#, no-c-format
msgid "Permission Management Security Permissions"
msgstr ""
#. Tag: literal
-#: Security.xml:3973
+#: Security.xml:3976
#, no-c-format
msgid "listPermissions()"
msgstr ""
#. Tag: para
-#: Security.xml:3977
+#: Security.xml:3980
#, no-c-format
msgid "The specified <literal>target</literal>"
msgstr ""
#. Tag: literal
-#: Security.xml:3983
+#: Security.xml:3986
#, no-c-format
msgid "seam.read-permissions"
msgstr ""
#. Tag: literal
-#: Security.xml:3991 Security.xml:4011
+#: Security.xml:3994 Security.xml:4014
#, no-c-format
msgid "grantPermission()"
msgstr ""
#. Tag: para
-#: Security.xml:3995
+#: Security.xml:3998
#, no-c-format
msgid ""
"The target of the specified <literal>Permission</literal>, or each of the "
@@ -5397,56 +5403,56 @@
msgstr ""
#. Tag: literal
-#: Security.xml:4003 Security.xml:4021 Security.xml:4039
+#: Security.xml:4006 Security.xml:4024 Security.xml:4042
#, no-c-format
msgid "seam.grant-permission"
msgstr ""
#. Tag: para
-#: Security.xml:4015 Security.xml:4051
+#: Security.xml:4018 Security.xml:4054
#, no-c-format
msgid "The target of the specified <literal>Permission</literal>."
msgstr ""
#. Tag: literal
-#: Security.xml:4029
+#: Security.xml:4032
#, no-c-format
msgid "grantPermissions()"
msgstr ""
#. Tag: para
-#: Security.xml:4033 Security.xml:4069
+#: Security.xml:4036 Security.xml:4072
#, no-c-format
msgid ""
"Each of the targets of the specified list of <literal>Permission</literal>s."
msgstr ""
#. Tag: literal
-#: Security.xml:4047
+#: Security.xml:4050
#, no-c-format
msgid "revokePermission()"
msgstr ""
#. Tag: literal
-#: Security.xml:4057 Security.xml:4075
+#: Security.xml:4060 Security.xml:4078
#, no-c-format
msgid "seam.revoke-permission"
msgstr ""
#. Tag: literal
-#: Security.xml:4065
+#: Security.xml:4068
#, no-c-format
msgid "revokePermissions()"
msgstr ""
#. Tag: title
-#: Security.xml:4088
+#: Security.xml:4091
#, no-c-format
msgid "SSL Security"
msgstr ""
#. Tag: para
-#: Security.xml:4090
+#: Security.xml:4093
#, no-c-format
msgid ""
"Seam includes basic support for serving sensitive pages via the HTTPS "
@@ -5457,13 +5463,13 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4097
+#: Security.xml:4100
#, no-c-format
msgid "<![CDATA[<page view-id=\"/login.xhtml\" scheme=\"https\"/>]]>"
msgstr ""
#. Tag: para
-#: Security.xml:4099
+#: Security.xml:4102
#, no-c-format
msgid ""
"This configuration is automatically extended to both <literal>s:link</"
@@ -5475,13 +5481,13 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4106
+#: Security.xml:4109
#, no-c-format
msgid "<![CDATA[<s:link view=\"/login.xhtml\" value=\"Login\"/>]]>"
msgstr ""
#. Tag: para
-#: Security.xml:4108
+#: Security.xml:4111
#, no-c-format
msgid ""
"Browsing directly to a view when using the <emphasis>incorrect</emphasis> "
@@ -5492,7 +5498,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4115
+#: Security.xml:4118
#, no-c-format
msgid ""
"It is also possible to configure a <emphasis>default scheme</emphasis> for "
@@ -5506,13 +5512,13 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4124
+#: Security.xml:4127
#, no-c-format
msgid "<![CDATA[<page view-id=\"*\" scheme=\"http\" />]]>"
msgstr ""
#. Tag: para
-#: Security.xml:4126
+#: Security.xml:4129
#, no-c-format
msgid ""
"Of course, if <emphasis>none</emphasis> of the pages in your application use "
@@ -5520,7 +5526,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4131
+#: Security.xml:4134
#, no-c-format
msgid ""
"You may configure Seam to automatically invalidate the current HTTP session "
@@ -5529,13 +5535,13 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4136
+#: Security.xml:4139
#, no-c-format
msgid "<![CDATA[<web:session invalidate-on-scheme-change=\"true\"/>]]>"
msgstr ""
#. Tag: para
-#: Security.xml:4138
+#: Security.xml:4141
#, no-c-format
msgid ""
"This option helps make your system less vulnerable to sniffing of the "
@@ -5544,13 +5550,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4144
+#: Security.xml:4147
#, no-c-format
msgid "Overriding the default ports"
msgstr ""
#. Tag: para
-#: Security.xml:4146
+#: Security.xml:4149
#, no-c-format
msgid ""
"If you wish to configure the HTTP and HTTPS ports manually, they may be "
@@ -5560,7 +5566,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4152
+#: Security.xml:4155
#, no-c-format
msgid ""
"<![CDATA[\n"
@@ -5576,13 +5582,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4158
+#: Security.xml:4161
#, no-c-format
msgid "CAPTCHA"
msgstr ""
#. Tag: para
-#: Security.xml:4160
+#: Security.xml:4163
#, no-c-format
msgid ""
"Though strictly not part of the security API, Seam provides a built-in "
@@ -5594,13 +5600,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4168
+#: Security.xml:4171
#, no-c-format
msgid "Configuring the CAPTCHA Servlet"
msgstr ""
#. Tag: para
-#: Security.xml:4169
+#: Security.xml:4172
#, no-c-format
msgid ""
"To get up and running, it is necessary to configure the Seam Resource "
@@ -5609,7 +5615,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4174
+#: Security.xml:4177
#, no-c-format
msgid ""
"<![CDATA[<servlet>\n"
@@ -5625,20 +5631,20 @@
msgstr ""
#. Tag: title
-#: Security.xml:4179
+#: Security.xml:4182
#, no-c-format
msgid "Adding a CAPTCHA to a form"
msgstr ""
#. Tag: para
-#: Security.xml:4181
+#: Security.xml:4184
#, no-c-format
msgid ""
"Adding a CAPTCHA challenge to a form is extremely easy. Here's an example:"
msgstr ""
#. Tag: programlisting
-#: Security.xml:4185
+#: Security.xml:4188
#, no-c-format
msgid ""
"<![CDATA[<h:graphicImage value=\"/seam/resource/captcha\"/>\n"
@@ -5650,7 +5656,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4187
+#: Security.xml:4190
#, no-c-format
msgid ""
"That's all there is to it. The <literal>graphicImage</literal> control "
@@ -5660,20 +5666,20 @@
msgstr ""
#. Tag: title
-#: Security.xml:4196
+#: Security.xml:4199
#, no-c-format
msgid "Customising the CAPTCHA algorithm"
msgstr ""
#. Tag: para
-#: Security.xml:4198
+#: Security.xml:4201
#, no-c-format
msgid ""
"You may customize the CAPTCHA algorithm by overriding the built-in component:"
msgstr ""
#. Tag: programlisting
-#: Security.xml:4202
+#: Security.xml:4205
#, no-c-format
msgid ""
"<![CDATA[@Name(\"org.jboss.seam.captcha.captcha\")\n"
@@ -5700,13 +5706,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4209 Security.xml:4217
+#: Security.xml:4212 Security.xml:4220
#, no-c-format
msgid "Security Events"
msgstr ""
#. Tag: para
-#: Security.xml:4211
+#: Security.xml:4214
#, no-c-format
msgid ""
"The following table describes a number of events (see <xref linkend=\"events"
@@ -5714,68 +5720,68 @@
msgstr ""
#. Tag: para
-#: Security.xml:4226
+#: Security.xml:4229
#, no-c-format
msgid "Event Key"
msgstr ""
#. Tag: literal
-#: Security.xml:4239
+#: Security.xml:4242
#, no-c-format
msgid "org.jboss.seam.security.loginSuccessful"
msgstr ""
#. Tag: para
-#: Security.xml:4243
+#: Security.xml:4246
#, no-c-format
msgid "Raised when a login attempt is successful."
msgstr ""
#. Tag: literal
-#: Security.xml:4251
+#: Security.xml:4254
#, no-c-format
msgid "org.jboss.seam.security.loginFailed"
msgstr ""
#. Tag: para
-#: Security.xml:4255
+#: Security.xml:4258
#, no-c-format
msgid "Raised when a login attempt fails."
msgstr ""
#. Tag: literal
-#: Security.xml:4263
+#: Security.xml:4266
#, no-c-format
msgid "org.jboss.seam.security.alreadyLoggedIn"
msgstr ""
#. Tag: para
-#: Security.xml:4267
+#: Security.xml:4270
#, no-c-format
msgid ""
"Raised when a user that is already authenticated attempts to log in again."
msgstr ""
#. Tag: literal
-#: Security.xml:4275
+#: Security.xml:4278
#, no-c-format
msgid "org.jboss.seam.security.notLoggedIn"
msgstr ""
#. Tag: para
-#: Security.xml:4279
+#: Security.xml:4282
#, no-c-format
msgid "Raised when a security check fails when the user is not logged in."
msgstr ""
#. Tag: literal
-#: Security.xml:4287
+#: Security.xml:4290
#, no-c-format
msgid "org.jboss.seam.security.notAuthorized"
msgstr ""
#. Tag: para
-#: Security.xml:4291
+#: Security.xml:4294
#, no-c-format
msgid ""
"Raised when a security check fails when the user is logged in however "
@@ -5783,73 +5789,73 @@
msgstr ""
#. Tag: literal
-#: Security.xml:4299
+#: Security.xml:4302
#, no-c-format
msgid "org.jboss.seam.security.preAuthenticate"
msgstr ""
#. Tag: para
-#: Security.xml:4303
+#: Security.xml:4306
#, no-c-format
msgid "Raised just prior to user authentication."
msgstr ""
#. Tag: literal
-#: Security.xml:4311
+#: Security.xml:4314
#, no-c-format
msgid "org.jboss.seam.security.postAuthenticate"
msgstr ""
#. Tag: para
-#: Security.xml:4315
+#: Security.xml:4318
#, no-c-format
msgid "Raised just after user authentication."
msgstr ""
#. Tag: literal
-#: Security.xml:4323
+#: Security.xml:4326
#, no-c-format
msgid "org.jboss.seam.security.loggedOut"
msgstr ""
#. Tag: para
-#: Security.xml:4327
+#: Security.xml:4330
#, no-c-format
msgid "Raised after the user has logged out."
msgstr ""
#. Tag: literal
-#: Security.xml:4335
+#: Security.xml:4338
#, no-c-format
msgid "org.jboss.seam.security.credentialsUpdated"
msgstr ""
#. Tag: para
-#: Security.xml:4339
+#: Security.xml:4342
#, no-c-format
msgid "Raised when the user's credentials have been changed."
msgstr ""
#. Tag: literal
-#: Security.xml:4347
+#: Security.xml:4350
#, no-c-format
msgid "org.jboss.seam.security.rememberMe"
msgstr ""
#. Tag: para
-#: Security.xml:4351
+#: Security.xml:4354
#, no-c-format
msgid "Raised when the Identity's rememberMe property is changed."
msgstr ""
#. Tag: title
-#: Security.xml:4364
+#: Security.xml:4367
#, no-c-format
msgid "Run As"
msgstr ""
#. Tag: para
-#: Security.xml:4366
+#: Security.xml:4369
#, no-c-format
msgid ""
"Sometimes it may be necessary to perform certain operations with elevated "
@@ -5861,7 +5867,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4374
+#: Security.xml:4377
#, no-c-format
msgid ""
"The following code example demonstrates how <literal>RunAsOperation</"
@@ -5872,7 +5878,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4381
+#: Security.xml:4384
#, no-c-format
msgid ""
"<![CDATA[ new RunAsOperation() { \n"
@@ -5884,7 +5890,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4383
+#: Security.xml:4386
#, no-c-format
msgid ""
"In a similar way, the <literal>getPrincipal()</literal> or "
@@ -5895,13 +5901,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4394
+#: Security.xml:4397
#, no-c-format
msgid "Extending the Identity component"
msgstr ""
#. Tag: para
-#: Security.xml:4396
+#: Security.xml:4399
#, no-c-format
msgid ""
"Sometimes it might be necessary to extend the Identity component if your "
@@ -5914,7 +5920,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4404
+#: Security.xml:4407
#, no-c-format
msgid ""
"<![CDATA[@Name(\"org.jboss.seam.security.identity\")\n"
@@ -5949,7 +5955,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4407
+#: Security.xml:4410
#, no-c-format
msgid ""
"Note that an <literal>Identity</literal> component must be marked "
@@ -5959,13 +5965,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4419
+#: Security.xml:4422
#, no-c-format
msgid "OpenID"
msgstr ""
#. Tag: para
-#: Security.xml:4421
+#: Security.xml:4424
#, no-c-format
msgid ""
"OpenID is a community standard for external web-based authentication. The "
@@ -5978,7 +5984,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4430
+#: Security.xml:4433
#, no-c-format
msgid ""
"When using OpenID, the user selects an OpenID provider, and the provider "
@@ -5995,7 +6001,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4439
+#: Security.xml:4442
#, no-c-format
msgid ""
"It's important to realize at this point that authentication does not imply "
@@ -6008,13 +6014,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4449
+#: Security.xml:4452
#, no-c-format
msgid "Configuring OpenID"
msgstr ""
#. Tag: para
-#: Security.xml:4450
+#: Security.xml:4453
#, no-c-format
msgid ""
"Seam uses the openid4java package and requires four additional JARs to make "
@@ -6024,7 +6030,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4456
+#: Security.xml:4459
#, no-c-format
msgid ""
"OpenID processing requires the use of the <literal>OpenIdPhaseListener</"
@@ -6034,7 +6040,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4462
+#: Security.xml:4465
#, no-c-format
msgid ""
"<lifecycle>\n"
@@ -6044,7 +6050,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4465
+#: Security.xml:4468
#, no-c-format
msgid ""
"With this configuration, OpenID support is available to your application. "
@@ -6054,13 +6060,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4473
+#: Security.xml:4476
#, no-c-format
msgid "Presenting an OpenIdDLogin form"
msgstr ""
#. Tag: para
-#: Security.xml:4475
+#: Security.xml:4478
#, no-c-format
msgid ""
"To initiate an OpenID login, you can present a simply form to the user "
@@ -6070,7 +6076,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4480
+#: Security.xml:4483
#, no-c-format
msgid ""
"<h:form>\n"
@@ -6081,7 +6087,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4482
+#: Security.xml:4485
#, no-c-format
msgid ""
"When the user submits the login form, he will be redirected to his OpenID "
@@ -6093,13 +6099,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4491
+#: Security.xml:4494
#, no-c-format
msgid "Logging in immediately"
msgstr ""
#. Tag: para
-#: Security.xml:4493
+#: Security.xml:4496
#, no-c-format
msgid ""
"The simplest strategy is to simply login the user immediately. The following "
@@ -6108,7 +6114,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4497
+#: Security.xml:4500
#, no-c-format
msgid ""
"<page view-id="/openid.xhtml">\n"
@@ -6128,7 +6134,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4499
+#: Security.xml:4502
#, no-c-format
msgid ""
"Thie <literal>loginImmediately()</literal> action checks to see if the "
@@ -6142,13 +6148,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4510
+#: Security.xml:4513
#, no-c-format
msgid "Deferring login"
msgstr ""
#. Tag: para
-#: Security.xml:4512
+#: Security.xml:4515
#, no-c-format
msgid ""
"You may not want the user to be immediately logged in to your application. "
@@ -6165,13 +6171,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4526
+#: Security.xml:4529
#, no-c-format
msgid "Logging out"
msgstr ""
#. Tag: para
-#: Security.xml:4528
+#: Security.xml:4531
#, no-c-format
msgid ""
"Logging out (forgetting an OpenID association) is done by calling <literal>#"
@@ -6182,7 +6188,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4535
+#: Security.xml:4538
#, no-c-format
msgid ""
"<event type="org.jboss.seam.security.loggedOut">\n"
@@ -6191,7 +6197,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4537
+#: Security.xml:4540
#, no-c-format
msgid ""
"It's important that you do not leave this out or the user will not be able "
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/ta-IN/Dependencies.po
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/ta-IN/Dependencies.po 2009-06-11 20:41:36 UTC (rev 11125)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/ta-IN/Dependencies.po 2009-06-11 20:43:04 UTC (rev 11126)
@@ -5,7 +5,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-04-15 13:51+0000\n"
+"POT-Creation-Date: 2009-06-11 18:45+0000\n"
"PO-Revision-Date: 2008-04-04 01:24+0000\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -938,8 +938,8 @@
#: Dependencies.xml:1182
#, no-c-format
msgid ""
-"This sample POM will give you Seam, JPA (provided by Hibernate) and "
-"Hibernate Validator:"
+"This sample POM will give you Seam, JPA (provided by Hibernate), Hibernate "
+"Validator and Hibernate Search:"
msgstr ""
#. Tag: programlisting
@@ -970,25 +970,31 @@
" <dependency>\n"
" <groupId>org.hibernate</groupId>\n"
" <artifactId>hibernate-validator</artifactId>\n"
-" <version>3.0.0.GA</version>\n"
+" <version>3.1.0.GA</version>\n"
" </dependency>\n"
"\n"
" <dependency>\n"
" <groupId>org.hibernate</groupId>\n"
" <artifactId>hibernate-annotations</artifactId>\n"
-" <version>3.3.0.ga</version>\n"
+" <version>3.4.0.GA</version>\n"
" </dependency>\n"
"\n"
" <dependency>\n"
" <groupId>org.hibernate</groupId>\n"
" <artifactId>hibernate-entitymanager</artifactId>\n"
-" <version>3.3.1.ga</version>\n"
+" <version>3.4.0.GA</version>\n"
" </dependency>\n"
+" \n"
+" <dependency>\n"
+" <groupId>org.hibernate</groupId>\n"
+" <artifactId>hibernate-search</artifactId>\n"
+" <version>3.1.1.GA</version>\n"
+" </dependency>\n"
"\n"
" <dependency>\n"
" <groupId>org.jboss.seam</groupId>\n"
" <artifactId>jboss-seam</artifactId>\n"
-" <version>2.0.0.GA</version>\n"
+" <version>2.2.0.GA</version>\n"
" </dependency>\n"
" \n"
" </dependencies>\n"
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/ta-IN/Hsearch.po
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/ta-IN/Hsearch.po 2009-06-11 20:41:36 UTC (rev 11125)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/ta-IN/Hsearch.po 2009-06-11 20:43:04 UTC (rev 11126)
@@ -5,7 +5,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-04-15 13:51+0000\n"
+"POT-Creation-Date: 2009-06-11 18:45+0000\n"
"PO-Revision-Date: 2008-04-04 01:24+0000\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -45,7 +45,7 @@
#: Hsearch.xml:21
#, no-c-format
msgid ""
-"Hibernate Search has been designed to integrates nicely and as naturally as "
+"Hibernate Search has been designed to integrate nicely and as naturally as "
"possible with JPA and Hibernate. As a natural extension, JBoss Seam provides "
"an Hibernate Search integration."
msgstr ""
@@ -132,7 +132,7 @@
" <property name=\"hibernate.ejb.event.post-delete\" \n"
" value=\"org.hibernate.search.event.FullTextIndexEventListener"
"\"/>\n"
-"\n"
+" \n"
" </properties>\n"
"</persistence-unit>]]>"
msgstr ""
@@ -141,12 +141,15 @@
#: Hsearch.xml:52
#, no-c-format
msgid ""
-"This step is no longer necessary if Hibernate Annotation or EntityManager "
-"3.3.x are used."
+"It is not longer necessary the register the event listeners if Hibernate "
+"Annotations or EntityManager 3.3.x are used. When using Hibernate Search 3.1."
+"x more eventlisteners are needed, but these are registered automatically by "
+"Hibernate Annotations; refer to the Hibernate Search reference for "
+"configuring it without EntityManager and Annotations."
msgstr ""
#. Tag: para
-#: Hsearch.xml:56
+#: Hsearch.xml:60
#, no-c-format
msgid ""
"In addition to the configuration file, the following jars have to be "
@@ -154,25 +157,25 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:61
+#: Hsearch.xml:65
#, no-c-format
msgid "hibernate-search.jar"
msgstr ""
#. Tag: para
-#: Hsearch.xml:65
+#: Hsearch.xml:69
#, no-c-format
msgid "hibernate-commons-annotations.jar"
msgstr ""
#. Tag: para
-#: Hsearch.xml:69
+#: Hsearch.xml:73
#, no-c-format
msgid "lucene-core.jar"
msgstr ""
#. Tag: para
-#: Hsearch.xml:74
+#: Hsearch.xml:78
#, no-c-format
msgid ""
"If you deploy those in a EAR, don't forget to update <filename>application."
@@ -180,13 +183,13 @@
msgstr ""
#. Tag: title
-#: Hsearch.xml:80
+#: Hsearch.xml:84
#, no-c-format
msgid "Usage"
msgstr ""
#. Tag: para
-#: Hsearch.xml:82
+#: Hsearch.xml:86
#, no-c-format
msgid ""
"Hibernate Search uses annotations to map entities to a Lucene index, check "
@@ -195,7 +198,7 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:87
+#: Hsearch.xml:91
#, no-c-format
msgid ""
"Hibernate Search is fully integrated with the API and semantic of JPA / "
@@ -206,7 +209,7 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:93
+#: Hsearch.xml:97
#, no-c-format
msgid ""
"When Hibernate Search is present, JBoss Seam injects a "
@@ -214,7 +217,7 @@
msgstr ""
#. Tag: programlisting
-#: Hsearch.xml:96
+#: Hsearch.xml:100
#, no-c-format
msgid ""
"<![CDATA[@Stateful\n"
@@ -237,7 +240,7 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:99
+#: Hsearch.xml:103
#, no-c-format
msgid ""
"<classname>FullTextSession</classname> extends <classname>org.hibernate."
@@ -245,14 +248,14 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:104
+#: Hsearch.xml:108
#, no-c-format
msgid ""
"If the Java Persistence API is used, a smoother integration is proposed."
msgstr ""
#. Tag: programlisting
-#: Hsearch.xml:107
+#: Hsearch.xml:111
#, no-c-format
msgid ""
"<![CDATA[@Stateful\n"
@@ -275,7 +278,7 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:109
+#: Hsearch.xml:113
#, no-c-format
msgid ""
"When Hibernate Search is present, a <classname>FulltextEntityManager</"
@@ -286,7 +289,7 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:116
+#: Hsearch.xml:120
#, no-c-format
msgid ""
"When an EJB 3.0 Session or Message Driven Bean injection is used (i.e. via "
@@ -299,7 +302,7 @@
msgstr ""
#. Tag: programlisting
-#: Hsearch.xml:124
+#: Hsearch.xml:128
#, no-c-format
msgid ""
"<![CDATA[@Stateful\n"
@@ -323,15 +326,15 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:129
+#: Hsearch.xml:133
#, no-c-format
msgid ""
"For people accustomed to Hibernate Search out of Seam, note that using "
-"<methodname>Search.createFullTextSession</methodname> is not necessary."
+"<methodname>Search.getFullTextSession</methodname> is not necessary."
msgstr ""
#. Tag: para
-#: Hsearch.xml:134
+#: Hsearch.xml:138
#, no-c-format
msgid ""
"Check the DVDStore or the blog examples of the JBoss Seam distribution for a "
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/ta-IN/Security.po
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/ta-IN/Security.po 2009-06-11 20:41:36 UTC (rev 11125)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/ta-IN/Security.po 2009-06-11 20:43:04 UTC (rev 11126)
@@ -5,7 +5,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-06-11 07:43+0000\n"
+"POT-Creation-Date: 2009-06-11 18:45+0000\n"
"PO-Revision-Date: 2008-04-04 01:24+0000\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -1190,7 +1190,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:630 Security.xml:764 Security.xml:3382 Security.xml:3545
+#: Security.xml:630 Security.xml:764 Security.xml:3385 Security.xml:3548
#, no-c-format
msgid "Annotation"
msgstr ""
@@ -1203,8 +1203,8 @@
#. Tag: para
#: Security.xml:636 Security.xml:770 Security.xml:966 Security.xml:1418
-#: Security.xml:2147 Security.xml:2756 Security.xml:3171 Security.xml:3388
-#: Security.xml:3551 Security.xml:3792 Security.xml:4229
+#: Security.xml:2147 Security.xml:2756 Security.xml:3174 Security.xml:3391
+#: Security.xml:3554 Security.xml:3795 Security.xml:4232
#, no-c-format
msgid "Description"
msgstr ""
@@ -2228,8 +2228,8 @@
msgstr ""
#. Tag: para
-#: Security.xml:1412 Security.xml:1828 Security.xml:2753 Security.xml:3168
-#: Security.xml:3789 Security.xml:3958
+#: Security.xml:1412 Security.xml:1828 Security.xml:2753 Security.xml:3171
+#: Security.xml:3792 Security.xml:3961
#, no-c-format
msgid "Method"
msgstr ""
@@ -2250,9 +2250,9 @@
#: Security.xml:1433 Security.xml:1452 Security.xml:1471 Security.xml:1490
#: Security.xml:1509 Security.xml:1529 Security.xml:1548 Security.xml:1567
#: Security.xml:1586 Security.xml:1606 Security.xml:1626 Security.xml:1740
-#: Security.xml:1762 Security.xml:1780 Security.xml:2766 Security.xml:3239
-#: Security.xml:3258 Security.xml:3277 Security.xml:3295 Security.xml:3840
-#: Security.xml:3859 Security.xml:3878 Security.xml:3897
+#: Security.xml:1762 Security.xml:1780 Security.xml:2766 Security.xml:3242
+#: Security.xml:3261 Security.xml:3280 Security.xml:3298 Security.xml:3843
+#: Security.xml:3862 Security.xml:3881 Security.xml:3900
#, no-c-format
msgid "boolean"
msgstr ""
@@ -2558,13 +2558,13 @@
msgstr ""
#. Tag: para
-#: Security.xml:1831 Security.xml:3961
+#: Security.xml:1831 Security.xml:3964
#, no-c-format
msgid "Permission Target"
msgstr ""
#. Tag: para
-#: Security.xml:1834 Security.xml:3964
+#: Security.xml:1834 Security.xml:3967
#, no-c-format
msgid "Permission Action"
msgstr ""
@@ -3806,7 +3806,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2750 Security.xml:3165 Security.xml:3786
+#: Security.xml:2750 Security.xml:3168 Security.xml:3789
#, no-c-format
msgid "Return type"
msgstr ""
@@ -3986,41 +3986,47 @@
#. Tag: para
#: Security.xml:2917
#, no-c-format
-msgid "drools-compiler.jar"
+msgid "drools-api.jar"
msgstr ""
#. Tag: para
#: Security.xml:2920
#, no-c-format
-msgid "drools-core.jar"
+msgid "drools-compiler.jar"
msgstr ""
#. Tag: para
#: Security.xml:2923
#, no-c-format
-msgid "janino.jar"
+msgid "drools-core.jar"
msgstr ""
#. Tag: para
#: Security.xml:2926
#, no-c-format
-msgid "antlr-runtime.jar"
+msgid "janino.jar"
msgstr ""
#. Tag: para
#: Security.xml:2929
#, no-c-format
-msgid "mvel14.jar"
+msgid "antlr-runtime.jar"
msgstr ""
+#. Tag: para
+#: Security.xml:2932
+#, no-c-format
+msgid "mvel2.jar"
+msgstr ""
+
#. Tag: title
-#: Security.xml:2936 Security.xml:3128
+#: Security.xml:2939 Security.xml:3131
#, no-c-format
msgid "Configuration"
msgstr ""
#. Tag: para
-#: Security.xml:2938
+#: Security.xml:2941
#, no-c-format
msgid ""
"The configuration for <literal>RuleBasedPermissionResolver</literal> "
@@ -4030,7 +4036,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:2944
+#: Security.xml:2947
#, no-c-format
msgid ""
"<![CDATA[<components xmlns=\"http://jboss.com/products/seam/components\"\n"
@@ -4058,7 +4064,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2946
+#: Security.xml:2949
#, no-c-format
msgid ""
"The default rule base name can be overridden by specifying the "
@@ -4067,7 +4073,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:2951
+#: Security.xml:2954
#, no-c-format
msgid ""
"<![CDATA[\n"
@@ -4076,7 +4082,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2953
+#: Security.xml:2956
#, no-c-format
msgid ""
"Once the <literal>RuleBase</literal> component is configured, it's time to "
@@ -4084,13 +4090,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:2959
+#: Security.xml:2962
#, no-c-format
msgid "Writing Security Rules"
msgstr ""
#. Tag: para
-#: Security.xml:2961
+#: Security.xml:2964
#, no-c-format
msgid ""
"The first step to writing security rules is to create a new rule file in the "
@@ -4101,7 +4107,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2968
+#: Security.xml:2971
#, no-c-format
msgid ""
"So what should the security rules file contain? At this stage it might be a "
@@ -4110,7 +4116,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:2973
+#: Security.xml:2976
#, no-c-format
msgid ""
"<![CDATA[package MyApplicationPermissions;\n"
@@ -4128,7 +4134,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2975
+#: Security.xml:2978
#, no-c-format
msgid ""
"Let's break this down step by step. The first thing we see is the package "
@@ -4138,7 +4144,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2981
+#: Security.xml:2984
#, no-c-format
msgid ""
"The next thing we can notice is a couple of import statements for the "
@@ -4148,7 +4154,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2987
+#: Security.xml:2990
#, no-c-format
msgid ""
"Finally we have the code for the rule. Each rule within a package should be "
@@ -4158,7 +4164,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2993
+#: Security.xml:2996
#, no-c-format
msgid ""
"Looking at the body of the rule definition we can notice two distinct "
@@ -4173,7 +4179,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3002
+#: Security.xml:3005
#, no-c-format
msgid ""
"If we look at the LHS of the rule, we see two conditions listed there. Let's "
@@ -4181,14 +4187,14 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3006
+#: Security.xml:3009
#, no-c-format
msgid ""
"<![CDATA[c: PermissionCheck(target == \"customer\", action == \"delete\")]]>"
msgstr ""
#. Tag: para
-#: Security.xml:3008
+#: Security.xml:3011
#, no-c-format
msgid ""
"In plain english, this condition is stating that there must exist a "
@@ -4198,7 +4204,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3014
+#: Security.xml:3017
#, no-c-format
msgid ""
"So what is the working memory? Also known as a \"stateful session\" in "
@@ -4216,7 +4222,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3026
+#: Security.xml:3029
#, no-c-format
msgid ""
"Besides the <literal>PermissionCheck</literal> facts, there is also a "
@@ -4233,7 +4239,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3037
+#: Security.xml:3040
#, no-c-format
msgid ""
"It is also possible to insert additional long-lived facts into the working "
@@ -4244,7 +4250,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3044
+#: Security.xml:3047
#, no-c-format
msgid ""
"Getting back to our simple example, we can also notice that the first line "
@@ -4255,13 +4261,13 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3051
+#: Security.xml:3054
#, no-c-format
msgid "<![CDATA[Role(name == \"admin\")]]>"
msgstr ""
#. Tag: para
-#: Security.xml:3053
+#: Security.xml:3056
#, no-c-format
msgid ""
"This condition simply states that there must be a <literal>Role</literal> "
@@ -4274,7 +4280,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3061
+#: Security.xml:3064
#, no-c-format
msgid ""
"So what is the consequence of the rule firing? Let's take a look at the RHS "
@@ -4282,13 +4288,13 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3065
+#: Security.xml:3068
#, no-c-format
msgid "<![CDATA[c.grant()]]>"
msgstr ""
#. Tag: para
-#: Security.xml:3067
+#: Security.xml:3070
#, no-c-format
msgid ""
"The RHS consists of Java code, and in this case is invoking the "
@@ -4305,13 +4311,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3081
+#: Security.xml:3084
#, no-c-format
msgid "Non-String permission targets"
msgstr ""
#. Tag: para
-#: Security.xml:3083
+#: Security.xml:3086
#, no-c-format
msgid ""
"So far we have only seen permission checks for String-literal permission "
@@ -4325,7 +4331,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3092
+#: Security.xml:3095
#, no-c-format
msgid ""
"<![CDATA[rule CanCreateBlogComment\n"
@@ -4343,13 +4349,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3097
+#: Security.xml:3100
#, no-c-format
msgid "Wildcard permission checks"
msgstr ""
#. Tag: para
-#: Security.xml:3099
+#: Security.xml:3102
#, no-c-format
msgid ""
"It is possible to implement a wildcard permission check (which allows all "
@@ -4359,7 +4365,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3105
+#: Security.xml:3108
#, no-c-format
msgid ""
"<![CDATA[rule CanDoAnythingToCustomersIfYouAreAnAdmin\n"
@@ -4373,7 +4379,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3107
+#: Security.xml:3110
#, no-c-format
msgid ""
"This rule allows users with the <literal>admin</literal> role to perform "
@@ -4382,13 +4388,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3117
+#: Security.xml:3120
#, no-c-format
msgid "PersistentPermissionResolver"
msgstr ""
#. Tag: para
-#: Security.xml:3119
+#: Security.xml:3122
#, no-c-format
msgid ""
"Another built-in permission resolver provided by Seam, "
@@ -4401,7 +4407,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3130
+#: Security.xml:3133
#, no-c-format
msgid ""
"Before it can be used, <literal>PersistentPermissionResolver</literal> must "
@@ -4414,7 +4420,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3138
+#: Security.xml:3141
#, no-c-format
msgid ""
"<![CDATA[ <security:persistent-permission-resolver permission-store=\"#"
@@ -4422,13 +4428,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3143
+#: Security.xml:3146
#, no-c-format
msgid "Permission Stores"
msgstr ""
#. Tag: para
-#: Security.xml:3145
+#: Security.xml:3148
#, no-c-format
msgid ""
"A permission store is required for <literal>PersistentPermissionResolver</"
@@ -4441,26 +4447,26 @@
msgstr ""
#. Tag: title
-#: Security.xml:3155
+#: Security.xml:3158
#, no-c-format
msgid "PermissionStore interface"
msgstr ""
#. Tag: literal
-#: Security.xml:3181 Security.xml:3200 Security.xml:3219 Security.xml:3802
-#: Security.xml:3821
+#: Security.xml:3184 Security.xml:3203 Security.xml:3222 Security.xml:3805
+#: Security.xml:3824
#, no-c-format
msgid "List<Permission>"
msgstr ""
#. Tag: literal
-#: Security.xml:3186 Security.xml:3826
+#: Security.xml:3189 Security.xml:3829
#, no-c-format
msgid "listPermissions(Object target)"
msgstr ""
#. Tag: para
-#: Security.xml:3190
+#: Security.xml:3193
#, no-c-format
msgid ""
"This method should return a <literal>List</literal> of <literal>Permission</"
@@ -4469,13 +4475,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3205 Security.xml:3807
+#: Security.xml:3208 Security.xml:3810
#, no-c-format
msgid "listPermissions(Object target, String action)"
msgstr ""
#. Tag: para
-#: Security.xml:3209
+#: Security.xml:3212
#, no-c-format
msgid ""
"This method should return a <literal>List</literal> of <literal>Permission</"
@@ -4484,13 +4490,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3224
+#: Security.xml:3227
#, no-c-format
msgid "listPermissions(Set<Object> targets, String action)"
msgstr ""
#. Tag: para
-#: Security.xml:3228
+#: Security.xml:3231
#, no-c-format
msgid ""
"This method should return a <literal>List</literal> of <literal>Permission</"
@@ -4499,13 +4505,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3244
+#: Security.xml:3247
#, no-c-format
msgid "grantPermission(Permission)"
msgstr ""
#. Tag: para
-#: Security.xml:3248
+#: Security.xml:3251
#, no-c-format
msgid ""
"This method should persist the specified <literal>Permission</literal> "
@@ -4513,13 +4519,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3263 Security.xml:3864
+#: Security.xml:3266 Security.xml:3867
#, no-c-format
msgid "grantPermissions(List<Permission> permissions)"
msgstr ""
#. Tag: para
-#: Security.xml:3267
+#: Security.xml:3270
#, no-c-format
msgid ""
"This method should persist all of the <literal>Permission</literal> objects "
@@ -4528,13 +4534,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3282 Security.xml:3883
+#: Security.xml:3285 Security.xml:3886
#, no-c-format
msgid "revokePermission(Permission permission)"
msgstr ""
#. Tag: para
-#: Security.xml:3286
+#: Security.xml:3289
#, no-c-format
msgid ""
"This method should remove the specified <literal>Permission</literal> object "
@@ -4542,13 +4548,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3300 Security.xml:3902
+#: Security.xml:3303 Security.xml:3905
#, no-c-format
msgid "revokePermissions(List<Permission> permissions)"
msgstr ""
#. Tag: para
-#: Security.xml:3304
+#: Security.xml:3307
#, no-c-format
msgid ""
"This method should remove all of the <literal>Permission</literal> objects "
@@ -4556,19 +4562,19 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3314 Security.xml:3916
+#: Security.xml:3317 Security.xml:3919
#, no-c-format
msgid "List<String>"
msgstr ""
#. Tag: literal
-#: Security.xml:3319 Security.xml:3921
+#: Security.xml:3322 Security.xml:3924
#, no-c-format
msgid "listAvailableActions(Object target)"
msgstr ""
#. Tag: para
-#: Security.xml:3323
+#: Security.xml:3326
#, no-c-format
msgid ""
"This method should return a list of all the available actions (as Strings) "
@@ -4578,13 +4584,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3337
+#: Security.xml:3340
#, no-c-format
msgid "JpaPermissionStore"
msgstr ""
#. Tag: para
-#: Security.xml:3339
+#: Security.xml:3342
#, no-c-format
msgid ""
"This is the default <literal>PermissionStore</literal> implementation (and "
@@ -4597,7 +4603,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3347
+#: Security.xml:3350
#, no-c-format
msgid ""
"If you wish to use the same entity (i.e. a single database table) to store "
@@ -4609,7 +4615,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3354
+#: Security.xml:3357
#, no-c-format
msgid ""
"For example, to configure a single entity class to store both user and role "
@@ -4617,7 +4623,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3356
+#: Security.xml:3359
#, no-c-format
msgid ""
"<![CDATA[ <security:jpa-permission-store user-permission-class=\"com.acme."
@@ -4625,14 +4631,14 @@
msgstr ""
#. Tag: para
-#: Security.xml:3358
+#: Security.xml:3361
#, no-c-format
msgid ""
"To configure separate entity classes for storing user and role permissions:"
msgstr ""
#. Tag: programlisting
-#: Security.xml:3360
+#: Security.xml:3363
#, no-c-format
msgid ""
"<![CDATA[ <security:jpa-permission-store user-permission-class=\"com.acme."
@@ -4641,13 +4647,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3363
+#: Security.xml:3366
#, no-c-format
msgid "Permission annotations"
msgstr ""
#. Tag: para
-#: Security.xml:3365
+#: Security.xml:3368
#, no-c-format
msgid ""
"As mentioned, the entity classes that contain the user and role permissions "
@@ -4658,32 +4664,32 @@
msgstr ""
#. Tag: title
-#: Security.xml:3372
+#: Security.xml:3375
#, no-c-format
msgid "Entity Permission annotations"
msgstr ""
#. Tag: para
-#: Security.xml:3385 Security.xml:3548
+#: Security.xml:3388 Security.xml:3551
#, no-c-format
msgid "Target"
msgstr ""
#. Tag: literal
-#: Security.xml:3398
+#: Security.xml:3401
#, no-c-format
msgid "@PermissionTarget"
msgstr ""
#. Tag: literal
-#: Security.xml:3403 Security.xml:3422 Security.xml:3441 Security.xml:3460
-#: Security.xml:3479
+#: Security.xml:3406 Security.xml:3425 Security.xml:3444 Security.xml:3463
+#: Security.xml:3482
#, no-c-format
msgid "FIELD,METHOD"
msgstr ""
#. Tag: para
-#: Security.xml:3407
+#: Security.xml:3410
#, no-c-format
msgid ""
"This annotation identifies the property of the entity that will contain the "
@@ -4692,13 +4698,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3417
+#: Security.xml:3420
#, no-c-format
msgid "@PermissionAction"
msgstr ""
#. Tag: para
-#: Security.xml:3426
+#: Security.xml:3429
#, no-c-format
msgid ""
"This annotation identifies the property of the entity that will contain the "
@@ -4707,13 +4713,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3436
+#: Security.xml:3439
#, no-c-format
msgid "@PermissionUser"
msgstr ""
#. Tag: para
-#: Security.xml:3445
+#: Security.xml:3448
#, no-c-format
msgid ""
"This annotation identifies the property of the entity that will contain the "
@@ -4722,13 +4728,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3455
+#: Security.xml:3458
#, no-c-format
msgid "@PermissionRole"
msgstr ""
#. Tag: para
-#: Security.xml:3464
+#: Security.xml:3467
#, no-c-format
msgid ""
"This annotation identifies the property of the entity that will contain the "
@@ -4737,13 +4743,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3474
+#: Security.xml:3477
#, no-c-format
msgid "@PermissionDiscriminator"
msgstr ""
#. Tag: para
-#: Security.xml:3483
+#: Security.xml:3486
#, no-c-format
msgid ""
"This annotation should be used when the same entity/table is used to store "
@@ -4760,20 +4766,20 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3493
+#: Security.xml:3496
#, no-c-format
msgid ""
"<![CDATA[ @PermissionDiscriminator(userValue = \"u\", roleValue = \"r\")]]>"
msgstr ""
#. Tag: title
-#: Security.xml:3504
+#: Security.xml:3507
#, no-c-format
msgid "Example Entity"
msgstr ""
#. Tag: para
-#: Security.xml:3506
+#: Security.xml:3509
#, no-c-format
msgid ""
"Here is an example of an entity class that is used to store both user and "
@@ -4782,7 +4788,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3511
+#: Security.xml:3514
#, no-c-format
msgid ""
"<![CDATA[\n"
@@ -4843,7 +4849,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3513
+#: Security.xml:3516
#, no-c-format
msgid ""
"As can be seen in the above example, the <literal>getDiscriminator()</"
@@ -4860,13 +4866,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3526
+#: Security.xml:3529
#, no-c-format
msgid "Class-specific Permission Configuration"
msgstr ""
#. Tag: para
-#: Security.xml:3528
+#: Security.xml:3531
#, no-c-format
msgid ""
"A further set of class-specific annotations can be used to configure a "
@@ -4876,25 +4882,25 @@
msgstr ""
#. Tag: title
-#: Security.xml:3535
+#: Security.xml:3538
#, no-c-format
msgid "Class Permission Annotations"
msgstr ""
#. Tag: literal
-#: Security.xml:3561
+#: Security.xml:3564
#, no-c-format
msgid "@Permissions"
msgstr ""
#. Tag: literal
-#: Security.xml:3566 Security.xml:3584
+#: Security.xml:3569 Security.xml:3587
#, no-c-format
msgid "TYPE"
msgstr ""
#. Tag: para
-#: Security.xml:3570
+#: Security.xml:3573
#, no-c-format
msgid ""
"A container annotation, this annotation may contain an array of "
@@ -4902,13 +4908,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3579
+#: Security.xml:3582
#, no-c-format
msgid "@Permission"
msgstr ""
#. Tag: para
-#: Security.xml:3588
+#: Security.xml:3591
#, no-c-format
msgid ""
"This annotation defines a single allowable permission action for the target "
@@ -4919,7 +4925,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3600
+#: Security.xml:3603
#, no-c-format
msgid ""
"Here's an example of the above annotations in action. The following class "
@@ -4927,7 +4933,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3604
+#: Security.xml:3607
#, no-c-format
msgid ""
"<![CDATA[@Permissions({\n"
@@ -4939,7 +4945,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3606
+#: Security.xml:3609
#, no-c-format
msgid ""
"This example demonstrates how two allowable permission actions, "
@@ -4948,13 +4954,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3614
+#: Security.xml:3617
#, no-c-format
msgid "Permission masks"
msgstr ""
#. Tag: para
-#: Security.xml:3616
+#: Security.xml:3619
#, no-c-format
msgid ""
"By default, multiple permissions for the same target object and recipient "
@@ -4966,7 +4972,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3623
+#: Security.xml:3626
#, no-c-format
msgid ""
"For example, if recipient \"Bob\" is granted both the <literal>view</"
@@ -4979,7 +4985,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3630
+#: Security.xml:3633
#, no-c-format
msgid ""
"<![CDATA[@Permissions({\n"
@@ -4991,7 +4997,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3632
+#: Security.xml:3635
#, no-c-format
msgid ""
"The <literal>action</literal> property will instead simply contain \"3"
@@ -5001,7 +5007,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3638
+#: Security.xml:3641
#, no-c-format
msgid ""
"Obviously, it is very important that the <literal>mask</literal> values "
@@ -5009,13 +5015,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3644
+#: Security.xml:3647
#, no-c-format
msgid "Identifier Policy"
msgstr ""
#. Tag: para
-#: Security.xml:3646
+#: Security.xml:3649
#, no-c-format
msgid ""
"When storing or looking up permissions, <literal>JpaPermissionStore</"
@@ -5029,7 +5035,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3654
+#: Security.xml:3657
#, no-c-format
msgid ""
"The <literal>IdentifierStrategy</literal> interface is very simple, "
@@ -5037,7 +5043,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3658
+#: Security.xml:3661
#, no-c-format
msgid ""
"<![CDATA[public interface IdentifierStrategy {\n"
@@ -5047,7 +5053,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3660
+#: Security.xml:3663
#, no-c-format
msgid ""
"The first method, <literal>canIdentify()</literal> simply returns "
@@ -5058,7 +5064,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3666
+#: Security.xml:3669
#, no-c-format
msgid ""
"Seam provides two <literal>IdentifierStrategy</literal> implementations, "
@@ -5067,7 +5073,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3671
+#: Security.xml:3674
#, no-c-format
msgid ""
"To explicitly configure a specific identifier strategy to use for a "
@@ -5080,13 +5086,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3681
+#: Security.xml:3684
#, no-c-format
msgid "ClassIdentifierStrategy"
msgstr ""
#. Tag: para
-#: Security.xml:3683
+#: Security.xml:3686
#, no-c-format
msgid ""
"This identifier strategy is used to generate unique identifiers for classes, "
@@ -5100,7 +5106,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3692
+#: Security.xml:3695
#, no-c-format
msgid ""
"<![CDATA[@Identifier(name = \"customer\")\n"
@@ -5108,7 +5114,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3694
+#: Security.xml:3697
#, no-c-format
msgid ""
"The identifier for the following class will be \"<literal>customerAction</"
@@ -5116,7 +5122,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3698
+#: Security.xml:3701
#, no-c-format
msgid ""
"<![CDATA[@Name(\"customerAction\")\n"
@@ -5124,7 +5130,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3700
+#: Security.xml:3703
#, no-c-format
msgid ""
"Finally, the identifier for the following class will be \"<literal>Customer</"
@@ -5132,19 +5138,19 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3704
+#: Security.xml:3707
#, no-c-format
msgid "<![CDATA[public class Customer { ]]>"
msgstr ""
#. Tag: title
-#: Security.xml:3709
+#: Security.xml:3712
#, no-c-format
msgid "EntityIdentifierStrategy"
msgstr ""
#. Tag: para
-#: Security.xml:3711
+#: Security.xml:3714
#, no-c-format
msgid ""
"This identifier strategy is used to generate unique identifiers for entity "
@@ -5161,7 +5167,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3722
+#: Security.xml:3725
#, no-c-format
msgid ""
"<![CDATA[@Identifier(value = EntityIdentifierStrategy.class)\n"
@@ -5169,7 +5175,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3724
+#: Security.xml:3727
#, no-c-format
msgid ""
"For an example of the type of identifier values generated, assume we have "
@@ -5177,7 +5183,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3728
+#: Security.xml:3731
#, no-c-format
msgid ""
"<![CDATA[@Entity\n"
@@ -5200,7 +5206,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3730
+#: Security.xml:3733
#, no-c-format
msgid ""
"For a <literal>Customer</literal> instance with an <literal>id</literal> "
@@ -5210,7 +5216,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3736
+#: Security.xml:3739
#, no-c-format
msgid ""
"<![CDATA[@Entity\n"
@@ -5219,7 +5225,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3738
+#: Security.xml:3741
#, no-c-format
msgid ""
"Then a <literal>Customer</literal> with an <literal>id</literal> value of "
@@ -5228,13 +5234,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3751
+#: Security.xml:3754
#, no-c-format
msgid "Permission Management"
msgstr ""
#. Tag: para
-#: Security.xml:3753
+#: Security.xml:3756
#, no-c-format
msgid ""
"In much the same way that Seam Security provides an Identity Management API "
@@ -5244,13 +5250,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3760
+#: Security.xml:3763
#, no-c-format
msgid "PermissionManager"
msgstr ""
#. Tag: para
-#: Security.xml:3762
+#: Security.xml:3765
#, no-c-format
msgid ""
"The <literal>PermissionManager</literal> component is an application-scoped "
@@ -5263,7 +5269,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3769
+#: Security.xml:3772
#, no-c-format
msgid ""
"<![CDATA[\n"
@@ -5273,7 +5279,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3771
+#: Security.xml:3774
#, no-c-format
msgid ""
"The following table describes each of the available methods provided by "
@@ -5281,13 +5287,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3776
+#: Security.xml:3779
#, no-c-format
msgid "PermissionManager API methods"
msgstr ""
#. Tag: para
-#: Security.xml:3811 Security.xml:3830
+#: Security.xml:3814 Security.xml:3833
#, no-c-format
msgid ""
"Returns a list of <literal>Permission</literal> objects representing all of "
@@ -5295,13 +5301,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3845
+#: Security.xml:3848
#, no-c-format
msgid "grantPermission(Permission permission)"
msgstr ""
#. Tag: para
-#: Security.xml:3849
+#: Security.xml:3852
#, no-c-format
msgid ""
"Persists (grants) the specified <literal>Permission</literal> to the backend "
@@ -5309,7 +5315,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3868
+#: Security.xml:3871
#, no-c-format
msgid ""
"Persists (grants) the specified list of <literal>Permission</literal>s to "
@@ -5317,7 +5323,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3887
+#: Security.xml:3890
#, no-c-format
msgid ""
"Removes (revokes) the specified <literal>Permission</literal> from the "
@@ -5325,7 +5331,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3906
+#: Security.xml:3909
#, no-c-format
msgid ""
"Removes (revokes) the specified list of <literal>Permission</literal>s from "
@@ -5333,7 +5339,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3925
+#: Security.xml:3928
#, no-c-format
msgid ""
"Returns a list of the available actions for the specified target object. The "
@@ -5342,13 +5348,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3940
+#: Security.xml:3943
#, no-c-format
msgid "Permission checks for PermissionManager operations"
msgstr ""
#. Tag: para
-#: Security.xml:3942
+#: Security.xml:3945
#, no-c-format
msgid ""
"Invoking the methods of <literal>PermissionManager</literal> requires that "
@@ -5358,37 +5364,37 @@
msgstr ""
#. Tag: title
-#: Security.xml:3949
+#: Security.xml:3952
#, no-c-format
msgid "Permission Management Security Permissions"
msgstr ""
#. Tag: literal
-#: Security.xml:3973
+#: Security.xml:3976
#, no-c-format
msgid "listPermissions()"
msgstr ""
#. Tag: para
-#: Security.xml:3977
+#: Security.xml:3980
#, no-c-format
msgid "The specified <literal>target</literal>"
msgstr ""
#. Tag: literal
-#: Security.xml:3983
+#: Security.xml:3986
#, no-c-format
msgid "seam.read-permissions"
msgstr ""
#. Tag: literal
-#: Security.xml:3991 Security.xml:4011
+#: Security.xml:3994 Security.xml:4014
#, no-c-format
msgid "grantPermission()"
msgstr ""
#. Tag: para
-#: Security.xml:3995
+#: Security.xml:3998
#, no-c-format
msgid ""
"The target of the specified <literal>Permission</literal>, or each of the "
@@ -5397,56 +5403,56 @@
msgstr ""
#. Tag: literal
-#: Security.xml:4003 Security.xml:4021 Security.xml:4039
+#: Security.xml:4006 Security.xml:4024 Security.xml:4042
#, no-c-format
msgid "seam.grant-permission"
msgstr ""
#. Tag: para
-#: Security.xml:4015 Security.xml:4051
+#: Security.xml:4018 Security.xml:4054
#, no-c-format
msgid "The target of the specified <literal>Permission</literal>."
msgstr ""
#. Tag: literal
-#: Security.xml:4029
+#: Security.xml:4032
#, no-c-format
msgid "grantPermissions()"
msgstr ""
#. Tag: para
-#: Security.xml:4033 Security.xml:4069
+#: Security.xml:4036 Security.xml:4072
#, no-c-format
msgid ""
"Each of the targets of the specified list of <literal>Permission</literal>s."
msgstr ""
#. Tag: literal
-#: Security.xml:4047
+#: Security.xml:4050
#, no-c-format
msgid "revokePermission()"
msgstr ""
#. Tag: literal
-#: Security.xml:4057 Security.xml:4075
+#: Security.xml:4060 Security.xml:4078
#, no-c-format
msgid "seam.revoke-permission"
msgstr ""
#. Tag: literal
-#: Security.xml:4065
+#: Security.xml:4068
#, no-c-format
msgid "revokePermissions()"
msgstr ""
#. Tag: title
-#: Security.xml:4088
+#: Security.xml:4091
#, no-c-format
msgid "SSL Security"
msgstr ""
#. Tag: para
-#: Security.xml:4090
+#: Security.xml:4093
#, no-c-format
msgid ""
"Seam includes basic support for serving sensitive pages via the HTTPS "
@@ -5457,13 +5463,13 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4097
+#: Security.xml:4100
#, no-c-format
msgid "<![CDATA[<page view-id=\"/login.xhtml\" scheme=\"https\"/>]]>"
msgstr ""
#. Tag: para
-#: Security.xml:4099
+#: Security.xml:4102
#, no-c-format
msgid ""
"This configuration is automatically extended to both <literal>s:link</"
@@ -5475,13 +5481,13 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4106
+#: Security.xml:4109
#, no-c-format
msgid "<![CDATA[<s:link view=\"/login.xhtml\" value=\"Login\"/>]]>"
msgstr ""
#. Tag: para
-#: Security.xml:4108
+#: Security.xml:4111
#, no-c-format
msgid ""
"Browsing directly to a view when using the <emphasis>incorrect</emphasis> "
@@ -5492,7 +5498,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4115
+#: Security.xml:4118
#, no-c-format
msgid ""
"It is also possible to configure a <emphasis>default scheme</emphasis> for "
@@ -5506,13 +5512,13 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4124
+#: Security.xml:4127
#, no-c-format
msgid "<![CDATA[<page view-id=\"*\" scheme=\"http\" />]]>"
msgstr ""
#. Tag: para
-#: Security.xml:4126
+#: Security.xml:4129
#, no-c-format
msgid ""
"Of course, if <emphasis>none</emphasis> of the pages in your application use "
@@ -5520,7 +5526,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4131
+#: Security.xml:4134
#, no-c-format
msgid ""
"You may configure Seam to automatically invalidate the current HTTP session "
@@ -5529,13 +5535,13 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4136
+#: Security.xml:4139
#, no-c-format
msgid "<![CDATA[<web:session invalidate-on-scheme-change=\"true\"/>]]>"
msgstr ""
#. Tag: para
-#: Security.xml:4138
+#: Security.xml:4141
#, no-c-format
msgid ""
"This option helps make your system less vulnerable to sniffing of the "
@@ -5544,13 +5550,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4144
+#: Security.xml:4147
#, no-c-format
msgid "Overriding the default ports"
msgstr ""
#. Tag: para
-#: Security.xml:4146
+#: Security.xml:4149
#, no-c-format
msgid ""
"If you wish to configure the HTTP and HTTPS ports manually, they may be "
@@ -5560,7 +5566,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4152
+#: Security.xml:4155
#, no-c-format
msgid ""
"<![CDATA[\n"
@@ -5576,13 +5582,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4158
+#: Security.xml:4161
#, no-c-format
msgid "CAPTCHA"
msgstr ""
#. Tag: para
-#: Security.xml:4160
+#: Security.xml:4163
#, no-c-format
msgid ""
"Though strictly not part of the security API, Seam provides a built-in "
@@ -5594,13 +5600,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4168
+#: Security.xml:4171
#, no-c-format
msgid "Configuring the CAPTCHA Servlet"
msgstr ""
#. Tag: para
-#: Security.xml:4169
+#: Security.xml:4172
#, no-c-format
msgid ""
"To get up and running, it is necessary to configure the Seam Resource "
@@ -5609,7 +5615,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4174
+#: Security.xml:4177
#, no-c-format
msgid ""
"<![CDATA[<servlet>\n"
@@ -5625,20 +5631,20 @@
msgstr ""
#. Tag: title
-#: Security.xml:4179
+#: Security.xml:4182
#, no-c-format
msgid "Adding a CAPTCHA to a form"
msgstr ""
#. Tag: para
-#: Security.xml:4181
+#: Security.xml:4184
#, no-c-format
msgid ""
"Adding a CAPTCHA challenge to a form is extremely easy. Here's an example:"
msgstr ""
#. Tag: programlisting
-#: Security.xml:4185
+#: Security.xml:4188
#, no-c-format
msgid ""
"<![CDATA[<h:graphicImage value=\"/seam/resource/captcha\"/>\n"
@@ -5650,7 +5656,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4187
+#: Security.xml:4190
#, no-c-format
msgid ""
"That's all there is to it. The <literal>graphicImage</literal> control "
@@ -5660,20 +5666,20 @@
msgstr ""
#. Tag: title
-#: Security.xml:4196
+#: Security.xml:4199
#, no-c-format
msgid "Customising the CAPTCHA algorithm"
msgstr ""
#. Tag: para
-#: Security.xml:4198
+#: Security.xml:4201
#, no-c-format
msgid ""
"You may customize the CAPTCHA algorithm by overriding the built-in component:"
msgstr ""
#. Tag: programlisting
-#: Security.xml:4202
+#: Security.xml:4205
#, no-c-format
msgid ""
"<![CDATA[@Name(\"org.jboss.seam.captcha.captcha\")\n"
@@ -5700,13 +5706,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4209 Security.xml:4217
+#: Security.xml:4212 Security.xml:4220
#, no-c-format
msgid "Security Events"
msgstr ""
#. Tag: para
-#: Security.xml:4211
+#: Security.xml:4214
#, no-c-format
msgid ""
"The following table describes a number of events (see <xref linkend=\"events"
@@ -5714,68 +5720,68 @@
msgstr ""
#. Tag: para
-#: Security.xml:4226
+#: Security.xml:4229
#, no-c-format
msgid "Event Key"
msgstr ""
#. Tag: literal
-#: Security.xml:4239
+#: Security.xml:4242
#, no-c-format
msgid "org.jboss.seam.security.loginSuccessful"
msgstr ""
#. Tag: para
-#: Security.xml:4243
+#: Security.xml:4246
#, no-c-format
msgid "Raised when a login attempt is successful."
msgstr ""
#. Tag: literal
-#: Security.xml:4251
+#: Security.xml:4254
#, no-c-format
msgid "org.jboss.seam.security.loginFailed"
msgstr ""
#. Tag: para
-#: Security.xml:4255
+#: Security.xml:4258
#, no-c-format
msgid "Raised when a login attempt fails."
msgstr ""
#. Tag: literal
-#: Security.xml:4263
+#: Security.xml:4266
#, no-c-format
msgid "org.jboss.seam.security.alreadyLoggedIn"
msgstr ""
#. Tag: para
-#: Security.xml:4267
+#: Security.xml:4270
#, no-c-format
msgid ""
"Raised when a user that is already authenticated attempts to log in again."
msgstr ""
#. Tag: literal
-#: Security.xml:4275
+#: Security.xml:4278
#, no-c-format
msgid "org.jboss.seam.security.notLoggedIn"
msgstr ""
#. Tag: para
-#: Security.xml:4279
+#: Security.xml:4282
#, no-c-format
msgid "Raised when a security check fails when the user is not logged in."
msgstr ""
#. Tag: literal
-#: Security.xml:4287
+#: Security.xml:4290
#, no-c-format
msgid "org.jboss.seam.security.notAuthorized"
msgstr ""
#. Tag: para
-#: Security.xml:4291
+#: Security.xml:4294
#, no-c-format
msgid ""
"Raised when a security check fails when the user is logged in however "
@@ -5783,73 +5789,73 @@
msgstr ""
#. Tag: literal
-#: Security.xml:4299
+#: Security.xml:4302
#, no-c-format
msgid "org.jboss.seam.security.preAuthenticate"
msgstr ""
#. Tag: para
-#: Security.xml:4303
+#: Security.xml:4306
#, no-c-format
msgid "Raised just prior to user authentication."
msgstr ""
#. Tag: literal
-#: Security.xml:4311
+#: Security.xml:4314
#, no-c-format
msgid "org.jboss.seam.security.postAuthenticate"
msgstr ""
#. Tag: para
-#: Security.xml:4315
+#: Security.xml:4318
#, no-c-format
msgid "Raised just after user authentication."
msgstr ""
#. Tag: literal
-#: Security.xml:4323
+#: Security.xml:4326
#, no-c-format
msgid "org.jboss.seam.security.loggedOut"
msgstr ""
#. Tag: para
-#: Security.xml:4327
+#: Security.xml:4330
#, no-c-format
msgid "Raised after the user has logged out."
msgstr ""
#. Tag: literal
-#: Security.xml:4335
+#: Security.xml:4338
#, no-c-format
msgid "org.jboss.seam.security.credentialsUpdated"
msgstr ""
#. Tag: para
-#: Security.xml:4339
+#: Security.xml:4342
#, no-c-format
msgid "Raised when the user's credentials have been changed."
msgstr ""
#. Tag: literal
-#: Security.xml:4347
+#: Security.xml:4350
#, no-c-format
msgid "org.jboss.seam.security.rememberMe"
msgstr ""
#. Tag: para
-#: Security.xml:4351
+#: Security.xml:4354
#, no-c-format
msgid "Raised when the Identity's rememberMe property is changed."
msgstr ""
#. Tag: title
-#: Security.xml:4364
+#: Security.xml:4367
#, no-c-format
msgid "Run As"
msgstr ""
#. Tag: para
-#: Security.xml:4366
+#: Security.xml:4369
#, no-c-format
msgid ""
"Sometimes it may be necessary to perform certain operations with elevated "
@@ -5861,7 +5867,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4374
+#: Security.xml:4377
#, no-c-format
msgid ""
"The following code example demonstrates how <literal>RunAsOperation</"
@@ -5872,7 +5878,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4381
+#: Security.xml:4384
#, no-c-format
msgid ""
"<![CDATA[ new RunAsOperation() { \n"
@@ -5884,7 +5890,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4383
+#: Security.xml:4386
#, no-c-format
msgid ""
"In a similar way, the <literal>getPrincipal()</literal> or "
@@ -5895,13 +5901,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4394
+#: Security.xml:4397
#, no-c-format
msgid "Extending the Identity component"
msgstr ""
#. Tag: para
-#: Security.xml:4396
+#: Security.xml:4399
#, no-c-format
msgid ""
"Sometimes it might be necessary to extend the Identity component if your "
@@ -5914,7 +5920,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4404
+#: Security.xml:4407
#, no-c-format
msgid ""
"<![CDATA[@Name(\"org.jboss.seam.security.identity\")\n"
@@ -5949,7 +5955,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4407
+#: Security.xml:4410
#, no-c-format
msgid ""
"Note that an <literal>Identity</literal> component must be marked "
@@ -5959,13 +5965,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4419
+#: Security.xml:4422
#, no-c-format
msgid "OpenID"
msgstr ""
#. Tag: para
-#: Security.xml:4421
+#: Security.xml:4424
#, no-c-format
msgid ""
"OpenID is a community standard for external web-based authentication. The "
@@ -5978,7 +5984,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4430
+#: Security.xml:4433
#, no-c-format
msgid ""
"When using OpenID, the user selects an OpenID provider, and the provider "
@@ -5995,7 +6001,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4439
+#: Security.xml:4442
#, no-c-format
msgid ""
"It's important to realize at this point that authentication does not imply "
@@ -6008,13 +6014,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4449
+#: Security.xml:4452
#, no-c-format
msgid "Configuring OpenID"
msgstr ""
#. Tag: para
-#: Security.xml:4450
+#: Security.xml:4453
#, no-c-format
msgid ""
"Seam uses the openid4java package and requires four additional JARs to make "
@@ -6024,7 +6030,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4456
+#: Security.xml:4459
#, no-c-format
msgid ""
"OpenID processing requires the use of the <literal>OpenIdPhaseListener</"
@@ -6034,7 +6040,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4462
+#: Security.xml:4465
#, no-c-format
msgid ""
"<lifecycle>\n"
@@ -6044,7 +6050,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4465
+#: Security.xml:4468
#, no-c-format
msgid ""
"With this configuration, OpenID support is available to your application. "
@@ -6054,13 +6060,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4473
+#: Security.xml:4476
#, no-c-format
msgid "Presenting an OpenIdDLogin form"
msgstr ""
#. Tag: para
-#: Security.xml:4475
+#: Security.xml:4478
#, no-c-format
msgid ""
"To initiate an OpenID login, you can present a simply form to the user "
@@ -6070,7 +6076,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4480
+#: Security.xml:4483
#, no-c-format
msgid ""
"<h:form>\n"
@@ -6081,7 +6087,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4482
+#: Security.xml:4485
#, no-c-format
msgid ""
"When the user submits the login form, he will be redirected to his OpenID "
@@ -6093,13 +6099,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4491
+#: Security.xml:4494
#, no-c-format
msgid "Logging in immediately"
msgstr ""
#. Tag: para
-#: Security.xml:4493
+#: Security.xml:4496
#, no-c-format
msgid ""
"The simplest strategy is to simply login the user immediately. The following "
@@ -6108,7 +6114,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4497
+#: Security.xml:4500
#, no-c-format
msgid ""
"<page view-id="/openid.xhtml">\n"
@@ -6128,7 +6134,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4499
+#: Security.xml:4502
#, no-c-format
msgid ""
"Thie <literal>loginImmediately()</literal> action checks to see if the "
@@ -6142,13 +6148,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4510
+#: Security.xml:4513
#, no-c-format
msgid "Deferring login"
msgstr ""
#. Tag: para
-#: Security.xml:4512
+#: Security.xml:4515
#, no-c-format
msgid ""
"You may not want the user to be immediately logged in to your application. "
@@ -6165,13 +6171,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4526
+#: Security.xml:4529
#, no-c-format
msgid "Logging out"
msgstr ""
#. Tag: para
-#: Security.xml:4528
+#: Security.xml:4531
#, no-c-format
msgid ""
"Logging out (forgetting an OpenID association) is done by calling <literal>#"
@@ -6182,7 +6188,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4535
+#: Security.xml:4538
#, no-c-format
msgid ""
"<event type="org.jboss.seam.security.loggedOut">\n"
@@ -6191,7 +6197,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4537
+#: Security.xml:4540
#, no-c-format
msgid ""
"It's important that you do not leave this out or the user will not be able "
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/te-IN/Dependencies.po
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/te-IN/Dependencies.po 2009-06-11 20:41:36 UTC (rev 11125)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/te-IN/Dependencies.po 2009-06-11 20:43:04 UTC (rev 11126)
@@ -5,7 +5,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-04-15 13:51+0000\n"
+"POT-Creation-Date: 2009-06-11 18:45+0000\n"
"PO-Revision-Date: 2008-04-04 01:24+0000\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -938,8 +938,8 @@
#: Dependencies.xml:1182
#, no-c-format
msgid ""
-"This sample POM will give you Seam, JPA (provided by Hibernate) and "
-"Hibernate Validator:"
+"This sample POM will give you Seam, JPA (provided by Hibernate), Hibernate "
+"Validator and Hibernate Search:"
msgstr ""
#. Tag: programlisting
@@ -970,25 +970,31 @@
" <dependency>\n"
" <groupId>org.hibernate</groupId>\n"
" <artifactId>hibernate-validator</artifactId>\n"
-" <version>3.0.0.GA</version>\n"
+" <version>3.1.0.GA</version>\n"
" </dependency>\n"
"\n"
" <dependency>\n"
" <groupId>org.hibernate</groupId>\n"
" <artifactId>hibernate-annotations</artifactId>\n"
-" <version>3.3.0.ga</version>\n"
+" <version>3.4.0.GA</version>\n"
" </dependency>\n"
"\n"
" <dependency>\n"
" <groupId>org.hibernate</groupId>\n"
" <artifactId>hibernate-entitymanager</artifactId>\n"
-" <version>3.3.1.ga</version>\n"
+" <version>3.4.0.GA</version>\n"
" </dependency>\n"
+" \n"
+" <dependency>\n"
+" <groupId>org.hibernate</groupId>\n"
+" <artifactId>hibernate-search</artifactId>\n"
+" <version>3.1.1.GA</version>\n"
+" </dependency>\n"
"\n"
" <dependency>\n"
" <groupId>org.jboss.seam</groupId>\n"
" <artifactId>jboss-seam</artifactId>\n"
-" <version>2.0.0.GA</version>\n"
+" <version>2.2.0.GA</version>\n"
" </dependency>\n"
" \n"
" </dependencies>\n"
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/te-IN/Hsearch.po
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/te-IN/Hsearch.po 2009-06-11 20:41:36 UTC (rev 11125)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/te-IN/Hsearch.po 2009-06-11 20:43:04 UTC (rev 11126)
@@ -5,7 +5,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-04-15 13:51+0000\n"
+"POT-Creation-Date: 2009-06-11 18:45+0000\n"
"PO-Revision-Date: 2008-04-04 01:24+0000\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -45,7 +45,7 @@
#: Hsearch.xml:21
#, no-c-format
msgid ""
-"Hibernate Search has been designed to integrates nicely and as naturally as "
+"Hibernate Search has been designed to integrate nicely and as naturally as "
"possible with JPA and Hibernate. As a natural extension, JBoss Seam provides "
"an Hibernate Search integration."
msgstr ""
@@ -132,7 +132,7 @@
" <property name=\"hibernate.ejb.event.post-delete\" \n"
" value=\"org.hibernate.search.event.FullTextIndexEventListener"
"\"/>\n"
-"\n"
+" \n"
" </properties>\n"
"</persistence-unit>]]>"
msgstr ""
@@ -141,12 +141,15 @@
#: Hsearch.xml:52
#, no-c-format
msgid ""
-"This step is no longer necessary if Hibernate Annotation or EntityManager "
-"3.3.x are used."
+"It is not longer necessary the register the event listeners if Hibernate "
+"Annotations or EntityManager 3.3.x are used. When using Hibernate Search 3.1."
+"x more eventlisteners are needed, but these are registered automatically by "
+"Hibernate Annotations; refer to the Hibernate Search reference for "
+"configuring it without EntityManager and Annotations."
msgstr ""
#. Tag: para
-#: Hsearch.xml:56
+#: Hsearch.xml:60
#, no-c-format
msgid ""
"In addition to the configuration file, the following jars have to be "
@@ -154,25 +157,25 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:61
+#: Hsearch.xml:65
#, no-c-format
msgid "hibernate-search.jar"
msgstr ""
#. Tag: para
-#: Hsearch.xml:65
+#: Hsearch.xml:69
#, no-c-format
msgid "hibernate-commons-annotations.jar"
msgstr ""
#. Tag: para
-#: Hsearch.xml:69
+#: Hsearch.xml:73
#, no-c-format
msgid "lucene-core.jar"
msgstr ""
#. Tag: para
-#: Hsearch.xml:74
+#: Hsearch.xml:78
#, no-c-format
msgid ""
"If you deploy those in a EAR, don't forget to update <filename>application."
@@ -180,13 +183,13 @@
msgstr ""
#. Tag: title
-#: Hsearch.xml:80
+#: Hsearch.xml:84
#, no-c-format
msgid "Usage"
msgstr ""
#. Tag: para
-#: Hsearch.xml:82
+#: Hsearch.xml:86
#, no-c-format
msgid ""
"Hibernate Search uses annotations to map entities to a Lucene index, check "
@@ -195,7 +198,7 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:87
+#: Hsearch.xml:91
#, no-c-format
msgid ""
"Hibernate Search is fully integrated with the API and semantic of JPA / "
@@ -206,7 +209,7 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:93
+#: Hsearch.xml:97
#, no-c-format
msgid ""
"When Hibernate Search is present, JBoss Seam injects a "
@@ -214,7 +217,7 @@
msgstr ""
#. Tag: programlisting
-#: Hsearch.xml:96
+#: Hsearch.xml:100
#, no-c-format
msgid ""
"<![CDATA[@Stateful\n"
@@ -237,7 +240,7 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:99
+#: Hsearch.xml:103
#, no-c-format
msgid ""
"<classname>FullTextSession</classname> extends <classname>org.hibernate."
@@ -245,14 +248,14 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:104
+#: Hsearch.xml:108
#, no-c-format
msgid ""
"If the Java Persistence API is used, a smoother integration is proposed."
msgstr ""
#. Tag: programlisting
-#: Hsearch.xml:107
+#: Hsearch.xml:111
#, no-c-format
msgid ""
"<![CDATA[@Stateful\n"
@@ -275,7 +278,7 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:109
+#: Hsearch.xml:113
#, no-c-format
msgid ""
"When Hibernate Search is present, a <classname>FulltextEntityManager</"
@@ -286,7 +289,7 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:116
+#: Hsearch.xml:120
#, no-c-format
msgid ""
"When an EJB 3.0 Session or Message Driven Bean injection is used (i.e. via "
@@ -299,7 +302,7 @@
msgstr ""
#. Tag: programlisting
-#: Hsearch.xml:124
+#: Hsearch.xml:128
#, no-c-format
msgid ""
"<![CDATA[@Stateful\n"
@@ -323,15 +326,15 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:129
+#: Hsearch.xml:133
#, no-c-format
msgid ""
"For people accustomed to Hibernate Search out of Seam, note that using "
-"<methodname>Search.createFullTextSession</methodname> is not necessary."
+"<methodname>Search.getFullTextSession</methodname> is not necessary."
msgstr ""
#. Tag: para
-#: Hsearch.xml:134
+#: Hsearch.xml:138
#, no-c-format
msgid ""
"Check the DVDStore or the blog examples of the JBoss Seam distribution for a "
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/te-IN/Security.po
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/te-IN/Security.po 2009-06-11 20:41:36 UTC (rev 11125)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/te-IN/Security.po 2009-06-11 20:43:04 UTC (rev 11126)
@@ -5,7 +5,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-06-11 07:43+0000\n"
+"POT-Creation-Date: 2009-06-11 18:45+0000\n"
"PO-Revision-Date: 2008-04-04 01:24+0000\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -1190,7 +1190,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:630 Security.xml:764 Security.xml:3382 Security.xml:3545
+#: Security.xml:630 Security.xml:764 Security.xml:3385 Security.xml:3548
#, no-c-format
msgid "Annotation"
msgstr ""
@@ -1203,8 +1203,8 @@
#. Tag: para
#: Security.xml:636 Security.xml:770 Security.xml:966 Security.xml:1418
-#: Security.xml:2147 Security.xml:2756 Security.xml:3171 Security.xml:3388
-#: Security.xml:3551 Security.xml:3792 Security.xml:4229
+#: Security.xml:2147 Security.xml:2756 Security.xml:3174 Security.xml:3391
+#: Security.xml:3554 Security.xml:3795 Security.xml:4232
#, no-c-format
msgid "Description"
msgstr ""
@@ -2228,8 +2228,8 @@
msgstr ""
#. Tag: para
-#: Security.xml:1412 Security.xml:1828 Security.xml:2753 Security.xml:3168
-#: Security.xml:3789 Security.xml:3958
+#: Security.xml:1412 Security.xml:1828 Security.xml:2753 Security.xml:3171
+#: Security.xml:3792 Security.xml:3961
#, no-c-format
msgid "Method"
msgstr ""
@@ -2250,9 +2250,9 @@
#: Security.xml:1433 Security.xml:1452 Security.xml:1471 Security.xml:1490
#: Security.xml:1509 Security.xml:1529 Security.xml:1548 Security.xml:1567
#: Security.xml:1586 Security.xml:1606 Security.xml:1626 Security.xml:1740
-#: Security.xml:1762 Security.xml:1780 Security.xml:2766 Security.xml:3239
-#: Security.xml:3258 Security.xml:3277 Security.xml:3295 Security.xml:3840
-#: Security.xml:3859 Security.xml:3878 Security.xml:3897
+#: Security.xml:1762 Security.xml:1780 Security.xml:2766 Security.xml:3242
+#: Security.xml:3261 Security.xml:3280 Security.xml:3298 Security.xml:3843
+#: Security.xml:3862 Security.xml:3881 Security.xml:3900
#, no-c-format
msgid "boolean"
msgstr ""
@@ -2558,13 +2558,13 @@
msgstr ""
#. Tag: para
-#: Security.xml:1831 Security.xml:3961
+#: Security.xml:1831 Security.xml:3964
#, no-c-format
msgid "Permission Target"
msgstr ""
#. Tag: para
-#: Security.xml:1834 Security.xml:3964
+#: Security.xml:1834 Security.xml:3967
#, no-c-format
msgid "Permission Action"
msgstr ""
@@ -3806,7 +3806,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2750 Security.xml:3165 Security.xml:3786
+#: Security.xml:2750 Security.xml:3168 Security.xml:3789
#, no-c-format
msgid "Return type"
msgstr ""
@@ -3986,41 +3986,47 @@
#. Tag: para
#: Security.xml:2917
#, no-c-format
-msgid "drools-compiler.jar"
+msgid "drools-api.jar"
msgstr ""
#. Tag: para
#: Security.xml:2920
#, no-c-format
-msgid "drools-core.jar"
+msgid "drools-compiler.jar"
msgstr ""
#. Tag: para
#: Security.xml:2923
#, no-c-format
-msgid "janino.jar"
+msgid "drools-core.jar"
msgstr ""
#. Tag: para
#: Security.xml:2926
#, no-c-format
-msgid "antlr-runtime.jar"
+msgid "janino.jar"
msgstr ""
#. Tag: para
#: Security.xml:2929
#, no-c-format
-msgid "mvel14.jar"
+msgid "antlr-runtime.jar"
msgstr ""
+#. Tag: para
+#: Security.xml:2932
+#, no-c-format
+msgid "mvel2.jar"
+msgstr ""
+
#. Tag: title
-#: Security.xml:2936 Security.xml:3128
+#: Security.xml:2939 Security.xml:3131
#, no-c-format
msgid "Configuration"
msgstr ""
#. Tag: para
-#: Security.xml:2938
+#: Security.xml:2941
#, no-c-format
msgid ""
"The configuration for <literal>RuleBasedPermissionResolver</literal> "
@@ -4030,7 +4036,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:2944
+#: Security.xml:2947
#, no-c-format
msgid ""
"<![CDATA[<components xmlns=\"http://jboss.com/products/seam/components\"\n"
@@ -4058,7 +4064,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2946
+#: Security.xml:2949
#, no-c-format
msgid ""
"The default rule base name can be overridden by specifying the "
@@ -4067,7 +4073,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:2951
+#: Security.xml:2954
#, no-c-format
msgid ""
"<![CDATA[\n"
@@ -4076,7 +4082,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2953
+#: Security.xml:2956
#, no-c-format
msgid ""
"Once the <literal>RuleBase</literal> component is configured, it's time to "
@@ -4084,13 +4090,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:2959
+#: Security.xml:2962
#, no-c-format
msgid "Writing Security Rules"
msgstr ""
#. Tag: para
-#: Security.xml:2961
+#: Security.xml:2964
#, no-c-format
msgid ""
"The first step to writing security rules is to create a new rule file in the "
@@ -4101,7 +4107,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2968
+#: Security.xml:2971
#, no-c-format
msgid ""
"So what should the security rules file contain? At this stage it might be a "
@@ -4110,7 +4116,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:2973
+#: Security.xml:2976
#, no-c-format
msgid ""
"<![CDATA[package MyApplicationPermissions;\n"
@@ -4128,7 +4134,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2975
+#: Security.xml:2978
#, no-c-format
msgid ""
"Let's break this down step by step. The first thing we see is the package "
@@ -4138,7 +4144,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2981
+#: Security.xml:2984
#, no-c-format
msgid ""
"The next thing we can notice is a couple of import statements for the "
@@ -4148,7 +4154,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2987
+#: Security.xml:2990
#, no-c-format
msgid ""
"Finally we have the code for the rule. Each rule within a package should be "
@@ -4158,7 +4164,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2993
+#: Security.xml:2996
#, no-c-format
msgid ""
"Looking at the body of the rule definition we can notice two distinct "
@@ -4173,7 +4179,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3002
+#: Security.xml:3005
#, no-c-format
msgid ""
"If we look at the LHS of the rule, we see two conditions listed there. Let's "
@@ -4181,14 +4187,14 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3006
+#: Security.xml:3009
#, no-c-format
msgid ""
"<![CDATA[c: PermissionCheck(target == \"customer\", action == \"delete\")]]>"
msgstr ""
#. Tag: para
-#: Security.xml:3008
+#: Security.xml:3011
#, no-c-format
msgid ""
"In plain english, this condition is stating that there must exist a "
@@ -4198,7 +4204,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3014
+#: Security.xml:3017
#, no-c-format
msgid ""
"So what is the working memory? Also known as a \"stateful session\" in "
@@ -4216,7 +4222,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3026
+#: Security.xml:3029
#, no-c-format
msgid ""
"Besides the <literal>PermissionCheck</literal> facts, there is also a "
@@ -4233,7 +4239,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3037
+#: Security.xml:3040
#, no-c-format
msgid ""
"It is also possible to insert additional long-lived facts into the working "
@@ -4244,7 +4250,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3044
+#: Security.xml:3047
#, no-c-format
msgid ""
"Getting back to our simple example, we can also notice that the first line "
@@ -4255,13 +4261,13 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3051
+#: Security.xml:3054
#, no-c-format
msgid "<![CDATA[Role(name == \"admin\")]]>"
msgstr ""
#. Tag: para
-#: Security.xml:3053
+#: Security.xml:3056
#, no-c-format
msgid ""
"This condition simply states that there must be a <literal>Role</literal> "
@@ -4274,7 +4280,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3061
+#: Security.xml:3064
#, no-c-format
msgid ""
"So what is the consequence of the rule firing? Let's take a look at the RHS "
@@ -4282,13 +4288,13 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3065
+#: Security.xml:3068
#, no-c-format
msgid "<![CDATA[c.grant()]]>"
msgstr ""
#. Tag: para
-#: Security.xml:3067
+#: Security.xml:3070
#, no-c-format
msgid ""
"The RHS consists of Java code, and in this case is invoking the "
@@ -4305,13 +4311,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3081
+#: Security.xml:3084
#, no-c-format
msgid "Non-String permission targets"
msgstr ""
#. Tag: para
-#: Security.xml:3083
+#: Security.xml:3086
#, no-c-format
msgid ""
"So far we have only seen permission checks for String-literal permission "
@@ -4325,7 +4331,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3092
+#: Security.xml:3095
#, no-c-format
msgid ""
"<![CDATA[rule CanCreateBlogComment\n"
@@ -4343,13 +4349,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3097
+#: Security.xml:3100
#, no-c-format
msgid "Wildcard permission checks"
msgstr ""
#. Tag: para
-#: Security.xml:3099
+#: Security.xml:3102
#, no-c-format
msgid ""
"It is possible to implement a wildcard permission check (which allows all "
@@ -4359,7 +4365,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3105
+#: Security.xml:3108
#, no-c-format
msgid ""
"<![CDATA[rule CanDoAnythingToCustomersIfYouAreAnAdmin\n"
@@ -4373,7 +4379,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3107
+#: Security.xml:3110
#, no-c-format
msgid ""
"This rule allows users with the <literal>admin</literal> role to perform "
@@ -4382,13 +4388,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3117
+#: Security.xml:3120
#, no-c-format
msgid "PersistentPermissionResolver"
msgstr ""
#. Tag: para
-#: Security.xml:3119
+#: Security.xml:3122
#, no-c-format
msgid ""
"Another built-in permission resolver provided by Seam, "
@@ -4401,7 +4407,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3130
+#: Security.xml:3133
#, no-c-format
msgid ""
"Before it can be used, <literal>PersistentPermissionResolver</literal> must "
@@ -4414,7 +4420,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3138
+#: Security.xml:3141
#, no-c-format
msgid ""
"<![CDATA[ <security:persistent-permission-resolver permission-store=\"#"
@@ -4422,13 +4428,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3143
+#: Security.xml:3146
#, no-c-format
msgid "Permission Stores"
msgstr ""
#. Tag: para
-#: Security.xml:3145
+#: Security.xml:3148
#, no-c-format
msgid ""
"A permission store is required for <literal>PersistentPermissionResolver</"
@@ -4441,26 +4447,26 @@
msgstr ""
#. Tag: title
-#: Security.xml:3155
+#: Security.xml:3158
#, no-c-format
msgid "PermissionStore interface"
msgstr ""
#. Tag: literal
-#: Security.xml:3181 Security.xml:3200 Security.xml:3219 Security.xml:3802
-#: Security.xml:3821
+#: Security.xml:3184 Security.xml:3203 Security.xml:3222 Security.xml:3805
+#: Security.xml:3824
#, no-c-format
msgid "List<Permission>"
msgstr ""
#. Tag: literal
-#: Security.xml:3186 Security.xml:3826
+#: Security.xml:3189 Security.xml:3829
#, no-c-format
msgid "listPermissions(Object target)"
msgstr ""
#. Tag: para
-#: Security.xml:3190
+#: Security.xml:3193
#, no-c-format
msgid ""
"This method should return a <literal>List</literal> of <literal>Permission</"
@@ -4469,13 +4475,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3205 Security.xml:3807
+#: Security.xml:3208 Security.xml:3810
#, no-c-format
msgid "listPermissions(Object target, String action)"
msgstr ""
#. Tag: para
-#: Security.xml:3209
+#: Security.xml:3212
#, no-c-format
msgid ""
"This method should return a <literal>List</literal> of <literal>Permission</"
@@ -4484,13 +4490,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3224
+#: Security.xml:3227
#, no-c-format
msgid "listPermissions(Set<Object> targets, String action)"
msgstr ""
#. Tag: para
-#: Security.xml:3228
+#: Security.xml:3231
#, no-c-format
msgid ""
"This method should return a <literal>List</literal> of <literal>Permission</"
@@ -4499,13 +4505,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3244
+#: Security.xml:3247
#, no-c-format
msgid "grantPermission(Permission)"
msgstr ""
#. Tag: para
-#: Security.xml:3248
+#: Security.xml:3251
#, no-c-format
msgid ""
"This method should persist the specified <literal>Permission</literal> "
@@ -4513,13 +4519,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3263 Security.xml:3864
+#: Security.xml:3266 Security.xml:3867
#, no-c-format
msgid "grantPermissions(List<Permission> permissions)"
msgstr ""
#. Tag: para
-#: Security.xml:3267
+#: Security.xml:3270
#, no-c-format
msgid ""
"This method should persist all of the <literal>Permission</literal> objects "
@@ -4528,13 +4534,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3282 Security.xml:3883
+#: Security.xml:3285 Security.xml:3886
#, no-c-format
msgid "revokePermission(Permission permission)"
msgstr ""
#. Tag: para
-#: Security.xml:3286
+#: Security.xml:3289
#, no-c-format
msgid ""
"This method should remove the specified <literal>Permission</literal> object "
@@ -4542,13 +4548,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3300 Security.xml:3902
+#: Security.xml:3303 Security.xml:3905
#, no-c-format
msgid "revokePermissions(List<Permission> permissions)"
msgstr ""
#. Tag: para
-#: Security.xml:3304
+#: Security.xml:3307
#, no-c-format
msgid ""
"This method should remove all of the <literal>Permission</literal> objects "
@@ -4556,19 +4562,19 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3314 Security.xml:3916
+#: Security.xml:3317 Security.xml:3919
#, no-c-format
msgid "List<String>"
msgstr ""
#. Tag: literal
-#: Security.xml:3319 Security.xml:3921
+#: Security.xml:3322 Security.xml:3924
#, no-c-format
msgid "listAvailableActions(Object target)"
msgstr ""
#. Tag: para
-#: Security.xml:3323
+#: Security.xml:3326
#, no-c-format
msgid ""
"This method should return a list of all the available actions (as Strings) "
@@ -4578,13 +4584,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3337
+#: Security.xml:3340
#, no-c-format
msgid "JpaPermissionStore"
msgstr ""
#. Tag: para
-#: Security.xml:3339
+#: Security.xml:3342
#, no-c-format
msgid ""
"This is the default <literal>PermissionStore</literal> implementation (and "
@@ -4597,7 +4603,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3347
+#: Security.xml:3350
#, no-c-format
msgid ""
"If you wish to use the same entity (i.e. a single database table) to store "
@@ -4609,7 +4615,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3354
+#: Security.xml:3357
#, no-c-format
msgid ""
"For example, to configure a single entity class to store both user and role "
@@ -4617,7 +4623,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3356
+#: Security.xml:3359
#, no-c-format
msgid ""
"<![CDATA[ <security:jpa-permission-store user-permission-class=\"com.acme."
@@ -4625,14 +4631,14 @@
msgstr ""
#. Tag: para
-#: Security.xml:3358
+#: Security.xml:3361
#, no-c-format
msgid ""
"To configure separate entity classes for storing user and role permissions:"
msgstr ""
#. Tag: programlisting
-#: Security.xml:3360
+#: Security.xml:3363
#, no-c-format
msgid ""
"<![CDATA[ <security:jpa-permission-store user-permission-class=\"com.acme."
@@ -4641,13 +4647,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3363
+#: Security.xml:3366
#, no-c-format
msgid "Permission annotations"
msgstr ""
#. Tag: para
-#: Security.xml:3365
+#: Security.xml:3368
#, no-c-format
msgid ""
"As mentioned, the entity classes that contain the user and role permissions "
@@ -4658,32 +4664,32 @@
msgstr ""
#. Tag: title
-#: Security.xml:3372
+#: Security.xml:3375
#, no-c-format
msgid "Entity Permission annotations"
msgstr ""
#. Tag: para
-#: Security.xml:3385 Security.xml:3548
+#: Security.xml:3388 Security.xml:3551
#, no-c-format
msgid "Target"
msgstr ""
#. Tag: literal
-#: Security.xml:3398
+#: Security.xml:3401
#, no-c-format
msgid "@PermissionTarget"
msgstr ""
#. Tag: literal
-#: Security.xml:3403 Security.xml:3422 Security.xml:3441 Security.xml:3460
-#: Security.xml:3479
+#: Security.xml:3406 Security.xml:3425 Security.xml:3444 Security.xml:3463
+#: Security.xml:3482
#, no-c-format
msgid "FIELD,METHOD"
msgstr ""
#. Tag: para
-#: Security.xml:3407
+#: Security.xml:3410
#, no-c-format
msgid ""
"This annotation identifies the property of the entity that will contain the "
@@ -4692,13 +4698,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3417
+#: Security.xml:3420
#, no-c-format
msgid "@PermissionAction"
msgstr ""
#. Tag: para
-#: Security.xml:3426
+#: Security.xml:3429
#, no-c-format
msgid ""
"This annotation identifies the property of the entity that will contain the "
@@ -4707,13 +4713,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3436
+#: Security.xml:3439
#, no-c-format
msgid "@PermissionUser"
msgstr ""
#. Tag: para
-#: Security.xml:3445
+#: Security.xml:3448
#, no-c-format
msgid ""
"This annotation identifies the property of the entity that will contain the "
@@ -4722,13 +4728,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3455
+#: Security.xml:3458
#, no-c-format
msgid "@PermissionRole"
msgstr ""
#. Tag: para
-#: Security.xml:3464
+#: Security.xml:3467
#, no-c-format
msgid ""
"This annotation identifies the property of the entity that will contain the "
@@ -4737,13 +4743,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3474
+#: Security.xml:3477
#, no-c-format
msgid "@PermissionDiscriminator"
msgstr ""
#. Tag: para
-#: Security.xml:3483
+#: Security.xml:3486
#, no-c-format
msgid ""
"This annotation should be used when the same entity/table is used to store "
@@ -4760,20 +4766,20 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3493
+#: Security.xml:3496
#, no-c-format
msgid ""
"<![CDATA[ @PermissionDiscriminator(userValue = \"u\", roleValue = \"r\")]]>"
msgstr ""
#. Tag: title
-#: Security.xml:3504
+#: Security.xml:3507
#, no-c-format
msgid "Example Entity"
msgstr ""
#. Tag: para
-#: Security.xml:3506
+#: Security.xml:3509
#, no-c-format
msgid ""
"Here is an example of an entity class that is used to store both user and "
@@ -4782,7 +4788,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3511
+#: Security.xml:3514
#, no-c-format
msgid ""
"<![CDATA[\n"
@@ -4843,7 +4849,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3513
+#: Security.xml:3516
#, no-c-format
msgid ""
"As can be seen in the above example, the <literal>getDiscriminator()</"
@@ -4860,13 +4866,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3526
+#: Security.xml:3529
#, no-c-format
msgid "Class-specific Permission Configuration"
msgstr ""
#. Tag: para
-#: Security.xml:3528
+#: Security.xml:3531
#, no-c-format
msgid ""
"A further set of class-specific annotations can be used to configure a "
@@ -4876,25 +4882,25 @@
msgstr ""
#. Tag: title
-#: Security.xml:3535
+#: Security.xml:3538
#, no-c-format
msgid "Class Permission Annotations"
msgstr ""
#. Tag: literal
-#: Security.xml:3561
+#: Security.xml:3564
#, no-c-format
msgid "@Permissions"
msgstr ""
#. Tag: literal
-#: Security.xml:3566 Security.xml:3584
+#: Security.xml:3569 Security.xml:3587
#, no-c-format
msgid "TYPE"
msgstr ""
#. Tag: para
-#: Security.xml:3570
+#: Security.xml:3573
#, no-c-format
msgid ""
"A container annotation, this annotation may contain an array of "
@@ -4902,13 +4908,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3579
+#: Security.xml:3582
#, no-c-format
msgid "@Permission"
msgstr ""
#. Tag: para
-#: Security.xml:3588
+#: Security.xml:3591
#, no-c-format
msgid ""
"This annotation defines a single allowable permission action for the target "
@@ -4919,7 +4925,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3600
+#: Security.xml:3603
#, no-c-format
msgid ""
"Here's an example of the above annotations in action. The following class "
@@ -4927,7 +4933,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3604
+#: Security.xml:3607
#, no-c-format
msgid ""
"<![CDATA[@Permissions({\n"
@@ -4939,7 +4945,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3606
+#: Security.xml:3609
#, no-c-format
msgid ""
"This example demonstrates how two allowable permission actions, "
@@ -4948,13 +4954,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3614
+#: Security.xml:3617
#, no-c-format
msgid "Permission masks"
msgstr ""
#. Tag: para
-#: Security.xml:3616
+#: Security.xml:3619
#, no-c-format
msgid ""
"By default, multiple permissions for the same target object and recipient "
@@ -4966,7 +4972,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3623
+#: Security.xml:3626
#, no-c-format
msgid ""
"For example, if recipient \"Bob\" is granted both the <literal>view</"
@@ -4979,7 +4985,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3630
+#: Security.xml:3633
#, no-c-format
msgid ""
"<![CDATA[@Permissions({\n"
@@ -4991,7 +4997,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3632
+#: Security.xml:3635
#, no-c-format
msgid ""
"The <literal>action</literal> property will instead simply contain \"3"
@@ -5001,7 +5007,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3638
+#: Security.xml:3641
#, no-c-format
msgid ""
"Obviously, it is very important that the <literal>mask</literal> values "
@@ -5009,13 +5015,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3644
+#: Security.xml:3647
#, no-c-format
msgid "Identifier Policy"
msgstr ""
#. Tag: para
-#: Security.xml:3646
+#: Security.xml:3649
#, no-c-format
msgid ""
"When storing or looking up permissions, <literal>JpaPermissionStore</"
@@ -5029,7 +5035,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3654
+#: Security.xml:3657
#, no-c-format
msgid ""
"The <literal>IdentifierStrategy</literal> interface is very simple, "
@@ -5037,7 +5043,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3658
+#: Security.xml:3661
#, no-c-format
msgid ""
"<![CDATA[public interface IdentifierStrategy {\n"
@@ -5047,7 +5053,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3660
+#: Security.xml:3663
#, no-c-format
msgid ""
"The first method, <literal>canIdentify()</literal> simply returns "
@@ -5058,7 +5064,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3666
+#: Security.xml:3669
#, no-c-format
msgid ""
"Seam provides two <literal>IdentifierStrategy</literal> implementations, "
@@ -5067,7 +5073,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3671
+#: Security.xml:3674
#, no-c-format
msgid ""
"To explicitly configure a specific identifier strategy to use for a "
@@ -5080,13 +5086,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3681
+#: Security.xml:3684
#, no-c-format
msgid "ClassIdentifierStrategy"
msgstr ""
#. Tag: para
-#: Security.xml:3683
+#: Security.xml:3686
#, no-c-format
msgid ""
"This identifier strategy is used to generate unique identifiers for classes, "
@@ -5100,7 +5106,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3692
+#: Security.xml:3695
#, no-c-format
msgid ""
"<![CDATA[@Identifier(name = \"customer\")\n"
@@ -5108,7 +5114,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3694
+#: Security.xml:3697
#, no-c-format
msgid ""
"The identifier for the following class will be \"<literal>customerAction</"
@@ -5116,7 +5122,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3698
+#: Security.xml:3701
#, no-c-format
msgid ""
"<![CDATA[@Name(\"customerAction\")\n"
@@ -5124,7 +5130,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3700
+#: Security.xml:3703
#, no-c-format
msgid ""
"Finally, the identifier for the following class will be \"<literal>Customer</"
@@ -5132,19 +5138,19 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3704
+#: Security.xml:3707
#, no-c-format
msgid "<![CDATA[public class Customer { ]]>"
msgstr ""
#. Tag: title
-#: Security.xml:3709
+#: Security.xml:3712
#, no-c-format
msgid "EntityIdentifierStrategy"
msgstr ""
#. Tag: para
-#: Security.xml:3711
+#: Security.xml:3714
#, no-c-format
msgid ""
"This identifier strategy is used to generate unique identifiers for entity "
@@ -5161,7 +5167,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3722
+#: Security.xml:3725
#, no-c-format
msgid ""
"<![CDATA[@Identifier(value = EntityIdentifierStrategy.class)\n"
@@ -5169,7 +5175,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3724
+#: Security.xml:3727
#, no-c-format
msgid ""
"For an example of the type of identifier values generated, assume we have "
@@ -5177,7 +5183,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3728
+#: Security.xml:3731
#, no-c-format
msgid ""
"<![CDATA[@Entity\n"
@@ -5200,7 +5206,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3730
+#: Security.xml:3733
#, no-c-format
msgid ""
"For a <literal>Customer</literal> instance with an <literal>id</literal> "
@@ -5210,7 +5216,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3736
+#: Security.xml:3739
#, no-c-format
msgid ""
"<![CDATA[@Entity\n"
@@ -5219,7 +5225,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3738
+#: Security.xml:3741
#, no-c-format
msgid ""
"Then a <literal>Customer</literal> with an <literal>id</literal> value of "
@@ -5228,13 +5234,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3751
+#: Security.xml:3754
#, no-c-format
msgid "Permission Management"
msgstr ""
#. Tag: para
-#: Security.xml:3753
+#: Security.xml:3756
#, no-c-format
msgid ""
"In much the same way that Seam Security provides an Identity Management API "
@@ -5244,13 +5250,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3760
+#: Security.xml:3763
#, no-c-format
msgid "PermissionManager"
msgstr ""
#. Tag: para
-#: Security.xml:3762
+#: Security.xml:3765
#, no-c-format
msgid ""
"The <literal>PermissionManager</literal> component is an application-scoped "
@@ -5263,7 +5269,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3769
+#: Security.xml:3772
#, no-c-format
msgid ""
"<![CDATA[\n"
@@ -5273,7 +5279,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3771
+#: Security.xml:3774
#, no-c-format
msgid ""
"The following table describes each of the available methods provided by "
@@ -5281,13 +5287,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3776
+#: Security.xml:3779
#, no-c-format
msgid "PermissionManager API methods"
msgstr ""
#. Tag: para
-#: Security.xml:3811 Security.xml:3830
+#: Security.xml:3814 Security.xml:3833
#, no-c-format
msgid ""
"Returns a list of <literal>Permission</literal> objects representing all of "
@@ -5295,13 +5301,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3845
+#: Security.xml:3848
#, no-c-format
msgid "grantPermission(Permission permission)"
msgstr ""
#. Tag: para
-#: Security.xml:3849
+#: Security.xml:3852
#, no-c-format
msgid ""
"Persists (grants) the specified <literal>Permission</literal> to the backend "
@@ -5309,7 +5315,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3868
+#: Security.xml:3871
#, no-c-format
msgid ""
"Persists (grants) the specified list of <literal>Permission</literal>s to "
@@ -5317,7 +5323,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3887
+#: Security.xml:3890
#, no-c-format
msgid ""
"Removes (revokes) the specified <literal>Permission</literal> from the "
@@ -5325,7 +5331,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3906
+#: Security.xml:3909
#, no-c-format
msgid ""
"Removes (revokes) the specified list of <literal>Permission</literal>s from "
@@ -5333,7 +5339,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3925
+#: Security.xml:3928
#, no-c-format
msgid ""
"Returns a list of the available actions for the specified target object. The "
@@ -5342,13 +5348,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3940
+#: Security.xml:3943
#, no-c-format
msgid "Permission checks for PermissionManager operations"
msgstr ""
#. Tag: para
-#: Security.xml:3942
+#: Security.xml:3945
#, no-c-format
msgid ""
"Invoking the methods of <literal>PermissionManager</literal> requires that "
@@ -5358,37 +5364,37 @@
msgstr ""
#. Tag: title
-#: Security.xml:3949
+#: Security.xml:3952
#, no-c-format
msgid "Permission Management Security Permissions"
msgstr ""
#. Tag: literal
-#: Security.xml:3973
+#: Security.xml:3976
#, no-c-format
msgid "listPermissions()"
msgstr ""
#. Tag: para
-#: Security.xml:3977
+#: Security.xml:3980
#, no-c-format
msgid "The specified <literal>target</literal>"
msgstr ""
#. Tag: literal
-#: Security.xml:3983
+#: Security.xml:3986
#, no-c-format
msgid "seam.read-permissions"
msgstr ""
#. Tag: literal
-#: Security.xml:3991 Security.xml:4011
+#: Security.xml:3994 Security.xml:4014
#, no-c-format
msgid "grantPermission()"
msgstr ""
#. Tag: para
-#: Security.xml:3995
+#: Security.xml:3998
#, no-c-format
msgid ""
"The target of the specified <literal>Permission</literal>, or each of the "
@@ -5397,56 +5403,56 @@
msgstr ""
#. Tag: literal
-#: Security.xml:4003 Security.xml:4021 Security.xml:4039
+#: Security.xml:4006 Security.xml:4024 Security.xml:4042
#, no-c-format
msgid "seam.grant-permission"
msgstr ""
#. Tag: para
-#: Security.xml:4015 Security.xml:4051
+#: Security.xml:4018 Security.xml:4054
#, no-c-format
msgid "The target of the specified <literal>Permission</literal>."
msgstr ""
#. Tag: literal
-#: Security.xml:4029
+#: Security.xml:4032
#, no-c-format
msgid "grantPermissions()"
msgstr ""
#. Tag: para
-#: Security.xml:4033 Security.xml:4069
+#: Security.xml:4036 Security.xml:4072
#, no-c-format
msgid ""
"Each of the targets of the specified list of <literal>Permission</literal>s."
msgstr ""
#. Tag: literal
-#: Security.xml:4047
+#: Security.xml:4050
#, no-c-format
msgid "revokePermission()"
msgstr ""
#. Tag: literal
-#: Security.xml:4057 Security.xml:4075
+#: Security.xml:4060 Security.xml:4078
#, no-c-format
msgid "seam.revoke-permission"
msgstr ""
#. Tag: literal
-#: Security.xml:4065
+#: Security.xml:4068
#, no-c-format
msgid "revokePermissions()"
msgstr ""
#. Tag: title
-#: Security.xml:4088
+#: Security.xml:4091
#, no-c-format
msgid "SSL Security"
msgstr ""
#. Tag: para
-#: Security.xml:4090
+#: Security.xml:4093
#, no-c-format
msgid ""
"Seam includes basic support for serving sensitive pages via the HTTPS "
@@ -5457,13 +5463,13 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4097
+#: Security.xml:4100
#, no-c-format
msgid "<![CDATA[<page view-id=\"/login.xhtml\" scheme=\"https\"/>]]>"
msgstr ""
#. Tag: para
-#: Security.xml:4099
+#: Security.xml:4102
#, no-c-format
msgid ""
"This configuration is automatically extended to both <literal>s:link</"
@@ -5475,13 +5481,13 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4106
+#: Security.xml:4109
#, no-c-format
msgid "<![CDATA[<s:link view=\"/login.xhtml\" value=\"Login\"/>]]>"
msgstr ""
#. Tag: para
-#: Security.xml:4108
+#: Security.xml:4111
#, no-c-format
msgid ""
"Browsing directly to a view when using the <emphasis>incorrect</emphasis> "
@@ -5492,7 +5498,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4115
+#: Security.xml:4118
#, no-c-format
msgid ""
"It is also possible to configure a <emphasis>default scheme</emphasis> for "
@@ -5506,13 +5512,13 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4124
+#: Security.xml:4127
#, no-c-format
msgid "<![CDATA[<page view-id=\"*\" scheme=\"http\" />]]>"
msgstr ""
#. Tag: para
-#: Security.xml:4126
+#: Security.xml:4129
#, no-c-format
msgid ""
"Of course, if <emphasis>none</emphasis> of the pages in your application use "
@@ -5520,7 +5526,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4131
+#: Security.xml:4134
#, no-c-format
msgid ""
"You may configure Seam to automatically invalidate the current HTTP session "
@@ -5529,13 +5535,13 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4136
+#: Security.xml:4139
#, no-c-format
msgid "<![CDATA[<web:session invalidate-on-scheme-change=\"true\"/>]]>"
msgstr ""
#. Tag: para
-#: Security.xml:4138
+#: Security.xml:4141
#, no-c-format
msgid ""
"This option helps make your system less vulnerable to sniffing of the "
@@ -5544,13 +5550,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4144
+#: Security.xml:4147
#, no-c-format
msgid "Overriding the default ports"
msgstr ""
#. Tag: para
-#: Security.xml:4146
+#: Security.xml:4149
#, no-c-format
msgid ""
"If you wish to configure the HTTP and HTTPS ports manually, they may be "
@@ -5560,7 +5566,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4152
+#: Security.xml:4155
#, no-c-format
msgid ""
"<![CDATA[\n"
@@ -5576,13 +5582,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4158
+#: Security.xml:4161
#, no-c-format
msgid "CAPTCHA"
msgstr ""
#. Tag: para
-#: Security.xml:4160
+#: Security.xml:4163
#, no-c-format
msgid ""
"Though strictly not part of the security API, Seam provides a built-in "
@@ -5594,13 +5600,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4168
+#: Security.xml:4171
#, no-c-format
msgid "Configuring the CAPTCHA Servlet"
msgstr ""
#. Tag: para
-#: Security.xml:4169
+#: Security.xml:4172
#, no-c-format
msgid ""
"To get up and running, it is necessary to configure the Seam Resource "
@@ -5609,7 +5615,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4174
+#: Security.xml:4177
#, no-c-format
msgid ""
"<![CDATA[<servlet>\n"
@@ -5625,20 +5631,20 @@
msgstr ""
#. Tag: title
-#: Security.xml:4179
+#: Security.xml:4182
#, no-c-format
msgid "Adding a CAPTCHA to a form"
msgstr ""
#. Tag: para
-#: Security.xml:4181
+#: Security.xml:4184
#, no-c-format
msgid ""
"Adding a CAPTCHA challenge to a form is extremely easy. Here's an example:"
msgstr ""
#. Tag: programlisting
-#: Security.xml:4185
+#: Security.xml:4188
#, no-c-format
msgid ""
"<![CDATA[<h:graphicImage value=\"/seam/resource/captcha\"/>\n"
@@ -5650,7 +5656,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4187
+#: Security.xml:4190
#, no-c-format
msgid ""
"That's all there is to it. The <literal>graphicImage</literal> control "
@@ -5660,20 +5666,20 @@
msgstr ""
#. Tag: title
-#: Security.xml:4196
+#: Security.xml:4199
#, no-c-format
msgid "Customising the CAPTCHA algorithm"
msgstr ""
#. Tag: para
-#: Security.xml:4198
+#: Security.xml:4201
#, no-c-format
msgid ""
"You may customize the CAPTCHA algorithm by overriding the built-in component:"
msgstr ""
#. Tag: programlisting
-#: Security.xml:4202
+#: Security.xml:4205
#, no-c-format
msgid ""
"<![CDATA[@Name(\"org.jboss.seam.captcha.captcha\")\n"
@@ -5700,13 +5706,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4209 Security.xml:4217
+#: Security.xml:4212 Security.xml:4220
#, no-c-format
msgid "Security Events"
msgstr ""
#. Tag: para
-#: Security.xml:4211
+#: Security.xml:4214
#, no-c-format
msgid ""
"The following table describes a number of events (see <xref linkend=\"events"
@@ -5714,68 +5720,68 @@
msgstr ""
#. Tag: para
-#: Security.xml:4226
+#: Security.xml:4229
#, no-c-format
msgid "Event Key"
msgstr ""
#. Tag: literal
-#: Security.xml:4239
+#: Security.xml:4242
#, no-c-format
msgid "org.jboss.seam.security.loginSuccessful"
msgstr ""
#. Tag: para
-#: Security.xml:4243
+#: Security.xml:4246
#, no-c-format
msgid "Raised when a login attempt is successful."
msgstr ""
#. Tag: literal
-#: Security.xml:4251
+#: Security.xml:4254
#, no-c-format
msgid "org.jboss.seam.security.loginFailed"
msgstr ""
#. Tag: para
-#: Security.xml:4255
+#: Security.xml:4258
#, no-c-format
msgid "Raised when a login attempt fails."
msgstr ""
#. Tag: literal
-#: Security.xml:4263
+#: Security.xml:4266
#, no-c-format
msgid "org.jboss.seam.security.alreadyLoggedIn"
msgstr ""
#. Tag: para
-#: Security.xml:4267
+#: Security.xml:4270
#, no-c-format
msgid ""
"Raised when a user that is already authenticated attempts to log in again."
msgstr ""
#. Tag: literal
-#: Security.xml:4275
+#: Security.xml:4278
#, no-c-format
msgid "org.jboss.seam.security.notLoggedIn"
msgstr ""
#. Tag: para
-#: Security.xml:4279
+#: Security.xml:4282
#, no-c-format
msgid "Raised when a security check fails when the user is not logged in."
msgstr ""
#. Tag: literal
-#: Security.xml:4287
+#: Security.xml:4290
#, no-c-format
msgid "org.jboss.seam.security.notAuthorized"
msgstr ""
#. Tag: para
-#: Security.xml:4291
+#: Security.xml:4294
#, no-c-format
msgid ""
"Raised when a security check fails when the user is logged in however "
@@ -5783,73 +5789,73 @@
msgstr ""
#. Tag: literal
-#: Security.xml:4299
+#: Security.xml:4302
#, no-c-format
msgid "org.jboss.seam.security.preAuthenticate"
msgstr ""
#. Tag: para
-#: Security.xml:4303
+#: Security.xml:4306
#, no-c-format
msgid "Raised just prior to user authentication."
msgstr ""
#. Tag: literal
-#: Security.xml:4311
+#: Security.xml:4314
#, no-c-format
msgid "org.jboss.seam.security.postAuthenticate"
msgstr ""
#. Tag: para
-#: Security.xml:4315
+#: Security.xml:4318
#, no-c-format
msgid "Raised just after user authentication."
msgstr ""
#. Tag: literal
-#: Security.xml:4323
+#: Security.xml:4326
#, no-c-format
msgid "org.jboss.seam.security.loggedOut"
msgstr ""
#. Tag: para
-#: Security.xml:4327
+#: Security.xml:4330
#, no-c-format
msgid "Raised after the user has logged out."
msgstr ""
#. Tag: literal
-#: Security.xml:4335
+#: Security.xml:4338
#, no-c-format
msgid "org.jboss.seam.security.credentialsUpdated"
msgstr ""
#. Tag: para
-#: Security.xml:4339
+#: Security.xml:4342
#, no-c-format
msgid "Raised when the user's credentials have been changed."
msgstr ""
#. Tag: literal
-#: Security.xml:4347
+#: Security.xml:4350
#, no-c-format
msgid "org.jboss.seam.security.rememberMe"
msgstr ""
#. Tag: para
-#: Security.xml:4351
+#: Security.xml:4354
#, no-c-format
msgid "Raised when the Identity's rememberMe property is changed."
msgstr ""
#. Tag: title
-#: Security.xml:4364
+#: Security.xml:4367
#, no-c-format
msgid "Run As"
msgstr ""
#. Tag: para
-#: Security.xml:4366
+#: Security.xml:4369
#, no-c-format
msgid ""
"Sometimes it may be necessary to perform certain operations with elevated "
@@ -5861,7 +5867,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4374
+#: Security.xml:4377
#, no-c-format
msgid ""
"The following code example demonstrates how <literal>RunAsOperation</"
@@ -5872,7 +5878,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4381
+#: Security.xml:4384
#, no-c-format
msgid ""
"<![CDATA[ new RunAsOperation() { \n"
@@ -5884,7 +5890,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4383
+#: Security.xml:4386
#, no-c-format
msgid ""
"In a similar way, the <literal>getPrincipal()</literal> or "
@@ -5895,13 +5901,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4394
+#: Security.xml:4397
#, no-c-format
msgid "Extending the Identity component"
msgstr ""
#. Tag: para
-#: Security.xml:4396
+#: Security.xml:4399
#, no-c-format
msgid ""
"Sometimes it might be necessary to extend the Identity component if your "
@@ -5914,7 +5920,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4404
+#: Security.xml:4407
#, no-c-format
msgid ""
"<![CDATA[@Name(\"org.jboss.seam.security.identity\")\n"
@@ -5949,7 +5955,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4407
+#: Security.xml:4410
#, no-c-format
msgid ""
"Note that an <literal>Identity</literal> component must be marked "
@@ -5959,13 +5965,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4419
+#: Security.xml:4422
#, no-c-format
msgid "OpenID"
msgstr ""
#. Tag: para
-#: Security.xml:4421
+#: Security.xml:4424
#, no-c-format
msgid ""
"OpenID is a community standard for external web-based authentication. The "
@@ -5978,7 +5984,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4430
+#: Security.xml:4433
#, no-c-format
msgid ""
"When using OpenID, the user selects an OpenID provider, and the provider "
@@ -5995,7 +6001,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4439
+#: Security.xml:4442
#, no-c-format
msgid ""
"It's important to realize at this point that authentication does not imply "
@@ -6008,13 +6014,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4449
+#: Security.xml:4452
#, no-c-format
msgid "Configuring OpenID"
msgstr ""
#. Tag: para
-#: Security.xml:4450
+#: Security.xml:4453
#, no-c-format
msgid ""
"Seam uses the openid4java package and requires four additional JARs to make "
@@ -6024,7 +6030,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4456
+#: Security.xml:4459
#, no-c-format
msgid ""
"OpenID processing requires the use of the <literal>OpenIdPhaseListener</"
@@ -6034,7 +6040,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4462
+#: Security.xml:4465
#, no-c-format
msgid ""
"<lifecycle>\n"
@@ -6044,7 +6050,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4465
+#: Security.xml:4468
#, no-c-format
msgid ""
"With this configuration, OpenID support is available to your application. "
@@ -6054,13 +6060,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4473
+#: Security.xml:4476
#, no-c-format
msgid "Presenting an OpenIdDLogin form"
msgstr ""
#. Tag: para
-#: Security.xml:4475
+#: Security.xml:4478
#, no-c-format
msgid ""
"To initiate an OpenID login, you can present a simply form to the user "
@@ -6070,7 +6076,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4480
+#: Security.xml:4483
#, no-c-format
msgid ""
"<h:form>\n"
@@ -6081,7 +6087,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4482
+#: Security.xml:4485
#, no-c-format
msgid ""
"When the user submits the login form, he will be redirected to his OpenID "
@@ -6093,13 +6099,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4491
+#: Security.xml:4494
#, no-c-format
msgid "Logging in immediately"
msgstr ""
#. Tag: para
-#: Security.xml:4493
+#: Security.xml:4496
#, no-c-format
msgid ""
"The simplest strategy is to simply login the user immediately. The following "
@@ -6108,7 +6114,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4497
+#: Security.xml:4500
#, no-c-format
msgid ""
"<page view-id="/openid.xhtml">\n"
@@ -6128,7 +6134,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4499
+#: Security.xml:4502
#, no-c-format
msgid ""
"Thie <literal>loginImmediately()</literal> action checks to see if the "
@@ -6142,13 +6148,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4510
+#: Security.xml:4513
#, no-c-format
msgid "Deferring login"
msgstr ""
#. Tag: para
-#: Security.xml:4512
+#: Security.xml:4515
#, no-c-format
msgid ""
"You may not want the user to be immediately logged in to your application. "
@@ -6165,13 +6171,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4526
+#: Security.xml:4529
#, no-c-format
msgid "Logging out"
msgstr ""
#. Tag: para
-#: Security.xml:4528
+#: Security.xml:4531
#, no-c-format
msgid ""
"Logging out (forgetting an OpenID association) is done by calling <literal>#"
@@ -6182,7 +6188,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4535
+#: Security.xml:4538
#, no-c-format
msgid ""
"<event type="org.jboss.seam.security.loggedOut">\n"
@@ -6191,7 +6197,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4537
+#: Security.xml:4540
#, no-c-format
msgid ""
"It's important that you do not leave this out or the user will not be able "
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/zh-CN/Dependencies.po
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/zh-CN/Dependencies.po 2009-06-11 20:41:36 UTC (rev 11125)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/zh-CN/Dependencies.po 2009-06-11 20:43:04 UTC (rev 11126)
@@ -5,7 +5,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-04-15 13:51+0000\n"
+"POT-Creation-Date: 2009-06-11 18:45+0000\n"
"PO-Revision-Date: 2008-04-04 01:24+0000\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -938,8 +938,8 @@
#: Dependencies.xml:1182
#, no-c-format
msgid ""
-"This sample POM will give you Seam, JPA (provided by Hibernate) and "
-"Hibernate Validator:"
+"This sample POM will give you Seam, JPA (provided by Hibernate), Hibernate "
+"Validator and Hibernate Search:"
msgstr ""
#. Tag: programlisting
@@ -970,25 +970,31 @@
" <dependency>\n"
" <groupId>org.hibernate</groupId>\n"
" <artifactId>hibernate-validator</artifactId>\n"
-" <version>3.0.0.GA</version>\n"
+" <version>3.1.0.GA</version>\n"
" </dependency>\n"
"\n"
" <dependency>\n"
" <groupId>org.hibernate</groupId>\n"
" <artifactId>hibernate-annotations</artifactId>\n"
-" <version>3.3.0.ga</version>\n"
+" <version>3.4.0.GA</version>\n"
" </dependency>\n"
"\n"
" <dependency>\n"
" <groupId>org.hibernate</groupId>\n"
" <artifactId>hibernate-entitymanager</artifactId>\n"
-" <version>3.3.1.ga</version>\n"
+" <version>3.4.0.GA</version>\n"
" </dependency>\n"
+" \n"
+" <dependency>\n"
+" <groupId>org.hibernate</groupId>\n"
+" <artifactId>hibernate-search</artifactId>\n"
+" <version>3.1.1.GA</version>\n"
+" </dependency>\n"
"\n"
" <dependency>\n"
" <groupId>org.jboss.seam</groupId>\n"
" <artifactId>jboss-seam</artifactId>\n"
-" <version>2.0.0.GA</version>\n"
+" <version>2.2.0.GA</version>\n"
" </dependency>\n"
" \n"
" </dependencies>\n"
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/zh-CN/Hsearch.po
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/zh-CN/Hsearch.po 2009-06-11 20:41:36 UTC (rev 11125)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/zh-CN/Hsearch.po 2009-06-11 20:43:04 UTC (rev 11126)
@@ -5,7 +5,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-04-15 13:51+0000\n"
+"POT-Creation-Date: 2009-06-11 18:45+0000\n"
"PO-Revision-Date: 2008-04-04 01:24+0000\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -45,7 +45,7 @@
#: Hsearch.xml:21
#, no-c-format
msgid ""
-"Hibernate Search has been designed to integrates nicely and as naturally as "
+"Hibernate Search has been designed to integrate nicely and as naturally as "
"possible with JPA and Hibernate. As a natural extension, JBoss Seam provides "
"an Hibernate Search integration."
msgstr ""
@@ -132,7 +132,7 @@
" <property name=\"hibernate.ejb.event.post-delete\" \n"
" value=\"org.hibernate.search.event.FullTextIndexEventListener"
"\"/>\n"
-"\n"
+" \n"
" </properties>\n"
"</persistence-unit>]]>"
msgstr ""
@@ -141,12 +141,15 @@
#: Hsearch.xml:52
#, no-c-format
msgid ""
-"This step is no longer necessary if Hibernate Annotation or EntityManager "
-"3.3.x are used."
+"It is not longer necessary the register the event listeners if Hibernate "
+"Annotations or EntityManager 3.3.x are used. When using Hibernate Search 3.1."
+"x more eventlisteners are needed, but these are registered automatically by "
+"Hibernate Annotations; refer to the Hibernate Search reference for "
+"configuring it without EntityManager and Annotations."
msgstr ""
#. Tag: para
-#: Hsearch.xml:56
+#: Hsearch.xml:60
#, no-c-format
msgid ""
"In addition to the configuration file, the following jars have to be "
@@ -154,25 +157,25 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:61
+#: Hsearch.xml:65
#, no-c-format
msgid "hibernate-search.jar"
msgstr ""
#. Tag: para
-#: Hsearch.xml:65
+#: Hsearch.xml:69
#, no-c-format
msgid "hibernate-commons-annotations.jar"
msgstr ""
#. Tag: para
-#: Hsearch.xml:69
+#: Hsearch.xml:73
#, no-c-format
msgid "lucene-core.jar"
msgstr ""
#. Tag: para
-#: Hsearch.xml:74
+#: Hsearch.xml:78
#, no-c-format
msgid ""
"If you deploy those in a EAR, don't forget to update <filename>application."
@@ -180,13 +183,13 @@
msgstr ""
#. Tag: title
-#: Hsearch.xml:80
+#: Hsearch.xml:84
#, no-c-format
msgid "Usage"
msgstr ""
#. Tag: para
-#: Hsearch.xml:82
+#: Hsearch.xml:86
#, no-c-format
msgid ""
"Hibernate Search uses annotations to map entities to a Lucene index, check "
@@ -195,7 +198,7 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:87
+#: Hsearch.xml:91
#, no-c-format
msgid ""
"Hibernate Search is fully integrated with the API and semantic of JPA / "
@@ -206,7 +209,7 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:93
+#: Hsearch.xml:97
#, no-c-format
msgid ""
"When Hibernate Search is present, JBoss Seam injects a "
@@ -214,7 +217,7 @@
msgstr ""
#. Tag: programlisting
-#: Hsearch.xml:96
+#: Hsearch.xml:100
#, no-c-format
msgid ""
"<![CDATA[@Stateful\n"
@@ -237,7 +240,7 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:99
+#: Hsearch.xml:103
#, no-c-format
msgid ""
"<classname>FullTextSession</classname> extends <classname>org.hibernate."
@@ -245,14 +248,14 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:104
+#: Hsearch.xml:108
#, no-c-format
msgid ""
"If the Java Persistence API is used, a smoother integration is proposed."
msgstr ""
#. Tag: programlisting
-#: Hsearch.xml:107
+#: Hsearch.xml:111
#, no-c-format
msgid ""
"<![CDATA[@Stateful\n"
@@ -275,7 +278,7 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:109
+#: Hsearch.xml:113
#, no-c-format
msgid ""
"When Hibernate Search is present, a <classname>FulltextEntityManager</"
@@ -286,7 +289,7 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:116
+#: Hsearch.xml:120
#, no-c-format
msgid ""
"When an EJB 3.0 Session or Message Driven Bean injection is used (i.e. via "
@@ -299,7 +302,7 @@
msgstr ""
#. Tag: programlisting
-#: Hsearch.xml:124
+#: Hsearch.xml:128
#, no-c-format
msgid ""
"<![CDATA[@Stateful\n"
@@ -323,15 +326,15 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:129
+#: Hsearch.xml:133
#, no-c-format
msgid ""
"For people accustomed to Hibernate Search out of Seam, note that using "
-"<methodname>Search.createFullTextSession</methodname> is not necessary."
+"<methodname>Search.getFullTextSession</methodname> is not necessary."
msgstr ""
#. Tag: para
-#: Hsearch.xml:134
+#: Hsearch.xml:138
#, no-c-format
msgid ""
"Check the DVDStore or the blog examples of the JBoss Seam distribution for a "
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/zh-CN/Security.po
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/zh-CN/Security.po 2009-06-11 20:41:36 UTC (rev 11125)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/zh-CN/Security.po 2009-06-11 20:43:04 UTC (rev 11126)
@@ -5,7 +5,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-06-11 07:43+0000\n"
+"POT-Creation-Date: 2009-06-11 18:45+0000\n"
"PO-Revision-Date: 2008-04-04 01:24+0000\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -1190,7 +1190,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:630 Security.xml:764 Security.xml:3382 Security.xml:3545
+#: Security.xml:630 Security.xml:764 Security.xml:3385 Security.xml:3548
#, no-c-format
msgid "Annotation"
msgstr ""
@@ -1203,8 +1203,8 @@
#. Tag: para
#: Security.xml:636 Security.xml:770 Security.xml:966 Security.xml:1418
-#: Security.xml:2147 Security.xml:2756 Security.xml:3171 Security.xml:3388
-#: Security.xml:3551 Security.xml:3792 Security.xml:4229
+#: Security.xml:2147 Security.xml:2756 Security.xml:3174 Security.xml:3391
+#: Security.xml:3554 Security.xml:3795 Security.xml:4232
#, no-c-format
msgid "Description"
msgstr ""
@@ -2228,8 +2228,8 @@
msgstr ""
#. Tag: para
-#: Security.xml:1412 Security.xml:1828 Security.xml:2753 Security.xml:3168
-#: Security.xml:3789 Security.xml:3958
+#: Security.xml:1412 Security.xml:1828 Security.xml:2753 Security.xml:3171
+#: Security.xml:3792 Security.xml:3961
#, no-c-format
msgid "Method"
msgstr ""
@@ -2250,9 +2250,9 @@
#: Security.xml:1433 Security.xml:1452 Security.xml:1471 Security.xml:1490
#: Security.xml:1509 Security.xml:1529 Security.xml:1548 Security.xml:1567
#: Security.xml:1586 Security.xml:1606 Security.xml:1626 Security.xml:1740
-#: Security.xml:1762 Security.xml:1780 Security.xml:2766 Security.xml:3239
-#: Security.xml:3258 Security.xml:3277 Security.xml:3295 Security.xml:3840
-#: Security.xml:3859 Security.xml:3878 Security.xml:3897
+#: Security.xml:1762 Security.xml:1780 Security.xml:2766 Security.xml:3242
+#: Security.xml:3261 Security.xml:3280 Security.xml:3298 Security.xml:3843
+#: Security.xml:3862 Security.xml:3881 Security.xml:3900
#, no-c-format
msgid "boolean"
msgstr ""
@@ -2558,13 +2558,13 @@
msgstr ""
#. Tag: para
-#: Security.xml:1831 Security.xml:3961
+#: Security.xml:1831 Security.xml:3964
#, no-c-format
msgid "Permission Target"
msgstr ""
#. Tag: para
-#: Security.xml:1834 Security.xml:3964
+#: Security.xml:1834 Security.xml:3967
#, no-c-format
msgid "Permission Action"
msgstr ""
@@ -3806,7 +3806,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2750 Security.xml:3165 Security.xml:3786
+#: Security.xml:2750 Security.xml:3168 Security.xml:3789
#, no-c-format
msgid "Return type"
msgstr ""
@@ -3986,41 +3986,47 @@
#. Tag: para
#: Security.xml:2917
#, no-c-format
-msgid "drools-compiler.jar"
+msgid "drools-api.jar"
msgstr ""
#. Tag: para
#: Security.xml:2920
#, no-c-format
-msgid "drools-core.jar"
+msgid "drools-compiler.jar"
msgstr ""
#. Tag: para
#: Security.xml:2923
#, no-c-format
-msgid "janino.jar"
+msgid "drools-core.jar"
msgstr ""
#. Tag: para
#: Security.xml:2926
#, no-c-format
-msgid "antlr-runtime.jar"
+msgid "janino.jar"
msgstr ""
#. Tag: para
#: Security.xml:2929
#, no-c-format
-msgid "mvel14.jar"
+msgid "antlr-runtime.jar"
msgstr ""
+#. Tag: para
+#: Security.xml:2932
+#, no-c-format
+msgid "mvel2.jar"
+msgstr ""
+
#. Tag: title
-#: Security.xml:2936 Security.xml:3128
+#: Security.xml:2939 Security.xml:3131
#, no-c-format
msgid "Configuration"
msgstr ""
#. Tag: para
-#: Security.xml:2938
+#: Security.xml:2941
#, no-c-format
msgid ""
"The configuration for <literal>RuleBasedPermissionResolver</literal> "
@@ -4030,7 +4036,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:2944
+#: Security.xml:2947
#, no-c-format
msgid ""
"<![CDATA[<components xmlns=\"http://jboss.com/products/seam/components\"\n"
@@ -4058,7 +4064,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2946
+#: Security.xml:2949
#, no-c-format
msgid ""
"The default rule base name can be overridden by specifying the "
@@ -4067,7 +4073,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:2951
+#: Security.xml:2954
#, no-c-format
msgid ""
"<![CDATA[\n"
@@ -4076,7 +4082,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2953
+#: Security.xml:2956
#, no-c-format
msgid ""
"Once the <literal>RuleBase</literal> component is configured, it's time to "
@@ -4084,13 +4090,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:2959
+#: Security.xml:2962
#, no-c-format
msgid "Writing Security Rules"
msgstr ""
#. Tag: para
-#: Security.xml:2961
+#: Security.xml:2964
#, no-c-format
msgid ""
"The first step to writing security rules is to create a new rule file in the "
@@ -4101,7 +4107,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2968
+#: Security.xml:2971
#, no-c-format
msgid ""
"So what should the security rules file contain? At this stage it might be a "
@@ -4110,7 +4116,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:2973
+#: Security.xml:2976
#, no-c-format
msgid ""
"<![CDATA[package MyApplicationPermissions;\n"
@@ -4128,7 +4134,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2975
+#: Security.xml:2978
#, no-c-format
msgid ""
"Let's break this down step by step. The first thing we see is the package "
@@ -4138,7 +4144,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2981
+#: Security.xml:2984
#, no-c-format
msgid ""
"The next thing we can notice is a couple of import statements for the "
@@ -4148,7 +4154,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2987
+#: Security.xml:2990
#, no-c-format
msgid ""
"Finally we have the code for the rule. Each rule within a package should be "
@@ -4158,7 +4164,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2993
+#: Security.xml:2996
#, no-c-format
msgid ""
"Looking at the body of the rule definition we can notice two distinct "
@@ -4173,7 +4179,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3002
+#: Security.xml:3005
#, no-c-format
msgid ""
"If we look at the LHS of the rule, we see two conditions listed there. Let's "
@@ -4181,14 +4187,14 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3006
+#: Security.xml:3009
#, no-c-format
msgid ""
"<![CDATA[c: PermissionCheck(target == \"customer\", action == \"delete\")]]>"
msgstr ""
#. Tag: para
-#: Security.xml:3008
+#: Security.xml:3011
#, no-c-format
msgid ""
"In plain english, this condition is stating that there must exist a "
@@ -4198,7 +4204,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3014
+#: Security.xml:3017
#, no-c-format
msgid ""
"So what is the working memory? Also known as a \"stateful session\" in "
@@ -4216,7 +4222,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3026
+#: Security.xml:3029
#, no-c-format
msgid ""
"Besides the <literal>PermissionCheck</literal> facts, there is also a "
@@ -4233,7 +4239,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3037
+#: Security.xml:3040
#, no-c-format
msgid ""
"It is also possible to insert additional long-lived facts into the working "
@@ -4244,7 +4250,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3044
+#: Security.xml:3047
#, no-c-format
msgid ""
"Getting back to our simple example, we can also notice that the first line "
@@ -4255,13 +4261,13 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3051
+#: Security.xml:3054
#, no-c-format
msgid "<![CDATA[Role(name == \"admin\")]]>"
msgstr ""
#. Tag: para
-#: Security.xml:3053
+#: Security.xml:3056
#, no-c-format
msgid ""
"This condition simply states that there must be a <literal>Role</literal> "
@@ -4274,7 +4280,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3061
+#: Security.xml:3064
#, no-c-format
msgid ""
"So what is the consequence of the rule firing? Let's take a look at the RHS "
@@ -4282,13 +4288,13 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3065
+#: Security.xml:3068
#, no-c-format
msgid "<![CDATA[c.grant()]]>"
msgstr ""
#. Tag: para
-#: Security.xml:3067
+#: Security.xml:3070
#, no-c-format
msgid ""
"The RHS consists of Java code, and in this case is invoking the "
@@ -4305,13 +4311,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3081
+#: Security.xml:3084
#, no-c-format
msgid "Non-String permission targets"
msgstr ""
#. Tag: para
-#: Security.xml:3083
+#: Security.xml:3086
#, no-c-format
msgid ""
"So far we have only seen permission checks for String-literal permission "
@@ -4325,7 +4331,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3092
+#: Security.xml:3095
#, no-c-format
msgid ""
"<![CDATA[rule CanCreateBlogComment\n"
@@ -4343,13 +4349,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3097
+#: Security.xml:3100
#, no-c-format
msgid "Wildcard permission checks"
msgstr ""
#. Tag: para
-#: Security.xml:3099
+#: Security.xml:3102
#, no-c-format
msgid ""
"It is possible to implement a wildcard permission check (which allows all "
@@ -4359,7 +4365,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3105
+#: Security.xml:3108
#, no-c-format
msgid ""
"<![CDATA[rule CanDoAnythingToCustomersIfYouAreAnAdmin\n"
@@ -4373,7 +4379,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3107
+#: Security.xml:3110
#, no-c-format
msgid ""
"This rule allows users with the <literal>admin</literal> role to perform "
@@ -4382,13 +4388,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3117
+#: Security.xml:3120
#, no-c-format
msgid "PersistentPermissionResolver"
msgstr ""
#. Tag: para
-#: Security.xml:3119
+#: Security.xml:3122
#, no-c-format
msgid ""
"Another built-in permission resolver provided by Seam, "
@@ -4401,7 +4407,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3130
+#: Security.xml:3133
#, no-c-format
msgid ""
"Before it can be used, <literal>PersistentPermissionResolver</literal> must "
@@ -4414,7 +4420,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3138
+#: Security.xml:3141
#, no-c-format
msgid ""
"<![CDATA[ <security:persistent-permission-resolver permission-store=\"#"
@@ -4422,13 +4428,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3143
+#: Security.xml:3146
#, no-c-format
msgid "Permission Stores"
msgstr ""
#. Tag: para
-#: Security.xml:3145
+#: Security.xml:3148
#, no-c-format
msgid ""
"A permission store is required for <literal>PersistentPermissionResolver</"
@@ -4441,26 +4447,26 @@
msgstr ""
#. Tag: title
-#: Security.xml:3155
+#: Security.xml:3158
#, no-c-format
msgid "PermissionStore interface"
msgstr ""
#. Tag: literal
-#: Security.xml:3181 Security.xml:3200 Security.xml:3219 Security.xml:3802
-#: Security.xml:3821
+#: Security.xml:3184 Security.xml:3203 Security.xml:3222 Security.xml:3805
+#: Security.xml:3824
#, no-c-format
msgid "List<Permission>"
msgstr ""
#. Tag: literal
-#: Security.xml:3186 Security.xml:3826
+#: Security.xml:3189 Security.xml:3829
#, no-c-format
msgid "listPermissions(Object target)"
msgstr ""
#. Tag: para
-#: Security.xml:3190
+#: Security.xml:3193
#, no-c-format
msgid ""
"This method should return a <literal>List</literal> of <literal>Permission</"
@@ -4469,13 +4475,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3205 Security.xml:3807
+#: Security.xml:3208 Security.xml:3810
#, no-c-format
msgid "listPermissions(Object target, String action)"
msgstr ""
#. Tag: para
-#: Security.xml:3209
+#: Security.xml:3212
#, no-c-format
msgid ""
"This method should return a <literal>List</literal> of <literal>Permission</"
@@ -4484,13 +4490,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3224
+#: Security.xml:3227
#, no-c-format
msgid "listPermissions(Set<Object> targets, String action)"
msgstr ""
#. Tag: para
-#: Security.xml:3228
+#: Security.xml:3231
#, no-c-format
msgid ""
"This method should return a <literal>List</literal> of <literal>Permission</"
@@ -4499,13 +4505,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3244
+#: Security.xml:3247
#, no-c-format
msgid "grantPermission(Permission)"
msgstr ""
#. Tag: para
-#: Security.xml:3248
+#: Security.xml:3251
#, no-c-format
msgid ""
"This method should persist the specified <literal>Permission</literal> "
@@ -4513,13 +4519,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3263 Security.xml:3864
+#: Security.xml:3266 Security.xml:3867
#, no-c-format
msgid "grantPermissions(List<Permission> permissions)"
msgstr ""
#. Tag: para
-#: Security.xml:3267
+#: Security.xml:3270
#, no-c-format
msgid ""
"This method should persist all of the <literal>Permission</literal> objects "
@@ -4528,13 +4534,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3282 Security.xml:3883
+#: Security.xml:3285 Security.xml:3886
#, no-c-format
msgid "revokePermission(Permission permission)"
msgstr ""
#. Tag: para
-#: Security.xml:3286
+#: Security.xml:3289
#, no-c-format
msgid ""
"This method should remove the specified <literal>Permission</literal> object "
@@ -4542,13 +4548,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3300 Security.xml:3902
+#: Security.xml:3303 Security.xml:3905
#, no-c-format
msgid "revokePermissions(List<Permission> permissions)"
msgstr ""
#. Tag: para
-#: Security.xml:3304
+#: Security.xml:3307
#, no-c-format
msgid ""
"This method should remove all of the <literal>Permission</literal> objects "
@@ -4556,19 +4562,19 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3314 Security.xml:3916
+#: Security.xml:3317 Security.xml:3919
#, no-c-format
msgid "List<String>"
msgstr ""
#. Tag: literal
-#: Security.xml:3319 Security.xml:3921
+#: Security.xml:3322 Security.xml:3924
#, no-c-format
msgid "listAvailableActions(Object target)"
msgstr ""
#. Tag: para
-#: Security.xml:3323
+#: Security.xml:3326
#, no-c-format
msgid ""
"This method should return a list of all the available actions (as Strings) "
@@ -4578,13 +4584,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3337
+#: Security.xml:3340
#, no-c-format
msgid "JpaPermissionStore"
msgstr ""
#. Tag: para
-#: Security.xml:3339
+#: Security.xml:3342
#, no-c-format
msgid ""
"This is the default <literal>PermissionStore</literal> implementation (and "
@@ -4597,7 +4603,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3347
+#: Security.xml:3350
#, no-c-format
msgid ""
"If you wish to use the same entity (i.e. a single database table) to store "
@@ -4609,7 +4615,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3354
+#: Security.xml:3357
#, no-c-format
msgid ""
"For example, to configure a single entity class to store both user and role "
@@ -4617,7 +4623,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3356
+#: Security.xml:3359
#, no-c-format
msgid ""
"<![CDATA[ <security:jpa-permission-store user-permission-class=\"com.acme."
@@ -4625,14 +4631,14 @@
msgstr ""
#. Tag: para
-#: Security.xml:3358
+#: Security.xml:3361
#, no-c-format
msgid ""
"To configure separate entity classes for storing user and role permissions:"
msgstr ""
#. Tag: programlisting
-#: Security.xml:3360
+#: Security.xml:3363
#, no-c-format
msgid ""
"<![CDATA[ <security:jpa-permission-store user-permission-class=\"com.acme."
@@ -4641,13 +4647,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3363
+#: Security.xml:3366
#, no-c-format
msgid "Permission annotations"
msgstr ""
#. Tag: para
-#: Security.xml:3365
+#: Security.xml:3368
#, no-c-format
msgid ""
"As mentioned, the entity classes that contain the user and role permissions "
@@ -4658,32 +4664,32 @@
msgstr ""
#. Tag: title
-#: Security.xml:3372
+#: Security.xml:3375
#, no-c-format
msgid "Entity Permission annotations"
msgstr ""
#. Tag: para
-#: Security.xml:3385 Security.xml:3548
+#: Security.xml:3388 Security.xml:3551
#, no-c-format
msgid "Target"
msgstr ""
#. Tag: literal
-#: Security.xml:3398
+#: Security.xml:3401
#, no-c-format
msgid "@PermissionTarget"
msgstr ""
#. Tag: literal
-#: Security.xml:3403 Security.xml:3422 Security.xml:3441 Security.xml:3460
-#: Security.xml:3479
+#: Security.xml:3406 Security.xml:3425 Security.xml:3444 Security.xml:3463
+#: Security.xml:3482
#, no-c-format
msgid "FIELD,METHOD"
msgstr ""
#. Tag: para
-#: Security.xml:3407
+#: Security.xml:3410
#, no-c-format
msgid ""
"This annotation identifies the property of the entity that will contain the "
@@ -4692,13 +4698,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3417
+#: Security.xml:3420
#, no-c-format
msgid "@PermissionAction"
msgstr ""
#. Tag: para
-#: Security.xml:3426
+#: Security.xml:3429
#, no-c-format
msgid ""
"This annotation identifies the property of the entity that will contain the "
@@ -4707,13 +4713,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3436
+#: Security.xml:3439
#, no-c-format
msgid "@PermissionUser"
msgstr ""
#. Tag: para
-#: Security.xml:3445
+#: Security.xml:3448
#, no-c-format
msgid ""
"This annotation identifies the property of the entity that will contain the "
@@ -4722,13 +4728,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3455
+#: Security.xml:3458
#, no-c-format
msgid "@PermissionRole"
msgstr ""
#. Tag: para
-#: Security.xml:3464
+#: Security.xml:3467
#, no-c-format
msgid ""
"This annotation identifies the property of the entity that will contain the "
@@ -4737,13 +4743,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3474
+#: Security.xml:3477
#, no-c-format
msgid "@PermissionDiscriminator"
msgstr ""
#. Tag: para
-#: Security.xml:3483
+#: Security.xml:3486
#, no-c-format
msgid ""
"This annotation should be used when the same entity/table is used to store "
@@ -4760,20 +4766,20 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3493
+#: Security.xml:3496
#, no-c-format
msgid ""
"<![CDATA[ @PermissionDiscriminator(userValue = \"u\", roleValue = \"r\")]]>"
msgstr ""
#. Tag: title
-#: Security.xml:3504
+#: Security.xml:3507
#, no-c-format
msgid "Example Entity"
msgstr ""
#. Tag: para
-#: Security.xml:3506
+#: Security.xml:3509
#, no-c-format
msgid ""
"Here is an example of an entity class that is used to store both user and "
@@ -4782,7 +4788,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3511
+#: Security.xml:3514
#, no-c-format
msgid ""
"<![CDATA[\n"
@@ -4843,7 +4849,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3513
+#: Security.xml:3516
#, no-c-format
msgid ""
"As can be seen in the above example, the <literal>getDiscriminator()</"
@@ -4860,13 +4866,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3526
+#: Security.xml:3529
#, no-c-format
msgid "Class-specific Permission Configuration"
msgstr ""
#. Tag: para
-#: Security.xml:3528
+#: Security.xml:3531
#, no-c-format
msgid ""
"A further set of class-specific annotations can be used to configure a "
@@ -4876,25 +4882,25 @@
msgstr ""
#. Tag: title
-#: Security.xml:3535
+#: Security.xml:3538
#, no-c-format
msgid "Class Permission Annotations"
msgstr ""
#. Tag: literal
-#: Security.xml:3561
+#: Security.xml:3564
#, no-c-format
msgid "@Permissions"
msgstr ""
#. Tag: literal
-#: Security.xml:3566 Security.xml:3584
+#: Security.xml:3569 Security.xml:3587
#, no-c-format
msgid "TYPE"
msgstr ""
#. Tag: para
-#: Security.xml:3570
+#: Security.xml:3573
#, no-c-format
msgid ""
"A container annotation, this annotation may contain an array of "
@@ -4902,13 +4908,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3579
+#: Security.xml:3582
#, no-c-format
msgid "@Permission"
msgstr ""
#. Tag: para
-#: Security.xml:3588
+#: Security.xml:3591
#, no-c-format
msgid ""
"This annotation defines a single allowable permission action for the target "
@@ -4919,7 +4925,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3600
+#: Security.xml:3603
#, no-c-format
msgid ""
"Here's an example of the above annotations in action. The following class "
@@ -4927,7 +4933,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3604
+#: Security.xml:3607
#, no-c-format
msgid ""
"<![CDATA[@Permissions({\n"
@@ -4939,7 +4945,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3606
+#: Security.xml:3609
#, no-c-format
msgid ""
"This example demonstrates how two allowable permission actions, "
@@ -4948,13 +4954,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3614
+#: Security.xml:3617
#, no-c-format
msgid "Permission masks"
msgstr ""
#. Tag: para
-#: Security.xml:3616
+#: Security.xml:3619
#, no-c-format
msgid ""
"By default, multiple permissions for the same target object and recipient "
@@ -4966,7 +4972,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3623
+#: Security.xml:3626
#, no-c-format
msgid ""
"For example, if recipient \"Bob\" is granted both the <literal>view</"
@@ -4979,7 +4985,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3630
+#: Security.xml:3633
#, no-c-format
msgid ""
"<![CDATA[@Permissions({\n"
@@ -4991,7 +4997,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3632
+#: Security.xml:3635
#, no-c-format
msgid ""
"The <literal>action</literal> property will instead simply contain \"3"
@@ -5001,7 +5007,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3638
+#: Security.xml:3641
#, no-c-format
msgid ""
"Obviously, it is very important that the <literal>mask</literal> values "
@@ -5009,13 +5015,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3644
+#: Security.xml:3647
#, no-c-format
msgid "Identifier Policy"
msgstr ""
#. Tag: para
-#: Security.xml:3646
+#: Security.xml:3649
#, no-c-format
msgid ""
"When storing or looking up permissions, <literal>JpaPermissionStore</"
@@ -5029,7 +5035,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3654
+#: Security.xml:3657
#, no-c-format
msgid ""
"The <literal>IdentifierStrategy</literal> interface is very simple, "
@@ -5037,7 +5043,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3658
+#: Security.xml:3661
#, no-c-format
msgid ""
"<![CDATA[public interface IdentifierStrategy {\n"
@@ -5047,7 +5053,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3660
+#: Security.xml:3663
#, no-c-format
msgid ""
"The first method, <literal>canIdentify()</literal> simply returns "
@@ -5058,7 +5064,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3666
+#: Security.xml:3669
#, no-c-format
msgid ""
"Seam provides two <literal>IdentifierStrategy</literal> implementations, "
@@ -5067,7 +5073,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3671
+#: Security.xml:3674
#, no-c-format
msgid ""
"To explicitly configure a specific identifier strategy to use for a "
@@ -5080,13 +5086,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3681
+#: Security.xml:3684
#, no-c-format
msgid "ClassIdentifierStrategy"
msgstr ""
#. Tag: para
-#: Security.xml:3683
+#: Security.xml:3686
#, no-c-format
msgid ""
"This identifier strategy is used to generate unique identifiers for classes, "
@@ -5100,7 +5106,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3692
+#: Security.xml:3695
#, no-c-format
msgid ""
"<![CDATA[@Identifier(name = \"customer\")\n"
@@ -5108,7 +5114,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3694
+#: Security.xml:3697
#, no-c-format
msgid ""
"The identifier for the following class will be \"<literal>customerAction</"
@@ -5116,7 +5122,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3698
+#: Security.xml:3701
#, no-c-format
msgid ""
"<![CDATA[@Name(\"customerAction\")\n"
@@ -5124,7 +5130,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3700
+#: Security.xml:3703
#, no-c-format
msgid ""
"Finally, the identifier for the following class will be \"<literal>Customer</"
@@ -5132,19 +5138,19 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3704
+#: Security.xml:3707
#, no-c-format
msgid "<![CDATA[public class Customer { ]]>"
msgstr ""
#. Tag: title
-#: Security.xml:3709
+#: Security.xml:3712
#, no-c-format
msgid "EntityIdentifierStrategy"
msgstr ""
#. Tag: para
-#: Security.xml:3711
+#: Security.xml:3714
#, no-c-format
msgid ""
"This identifier strategy is used to generate unique identifiers for entity "
@@ -5161,7 +5167,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3722
+#: Security.xml:3725
#, no-c-format
msgid ""
"<![CDATA[@Identifier(value = EntityIdentifierStrategy.class)\n"
@@ -5169,7 +5175,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3724
+#: Security.xml:3727
#, no-c-format
msgid ""
"For an example of the type of identifier values generated, assume we have "
@@ -5177,7 +5183,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3728
+#: Security.xml:3731
#, no-c-format
msgid ""
"<![CDATA[@Entity\n"
@@ -5200,7 +5206,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3730
+#: Security.xml:3733
#, no-c-format
msgid ""
"For a <literal>Customer</literal> instance with an <literal>id</literal> "
@@ -5210,7 +5216,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3736
+#: Security.xml:3739
#, no-c-format
msgid ""
"<![CDATA[@Entity\n"
@@ -5219,7 +5225,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3738
+#: Security.xml:3741
#, no-c-format
msgid ""
"Then a <literal>Customer</literal> with an <literal>id</literal> value of "
@@ -5228,13 +5234,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3751
+#: Security.xml:3754
#, no-c-format
msgid "Permission Management"
msgstr ""
#. Tag: para
-#: Security.xml:3753
+#: Security.xml:3756
#, no-c-format
msgid ""
"In much the same way that Seam Security provides an Identity Management API "
@@ -5244,13 +5250,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3760
+#: Security.xml:3763
#, no-c-format
msgid "PermissionManager"
msgstr ""
#. Tag: para
-#: Security.xml:3762
+#: Security.xml:3765
#, no-c-format
msgid ""
"The <literal>PermissionManager</literal> component is an application-scoped "
@@ -5263,7 +5269,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3769
+#: Security.xml:3772
#, no-c-format
msgid ""
"<![CDATA[\n"
@@ -5273,7 +5279,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3771
+#: Security.xml:3774
#, no-c-format
msgid ""
"The following table describes each of the available methods provided by "
@@ -5281,13 +5287,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3776
+#: Security.xml:3779
#, no-c-format
msgid "PermissionManager API methods"
msgstr ""
#. Tag: para
-#: Security.xml:3811 Security.xml:3830
+#: Security.xml:3814 Security.xml:3833
#, no-c-format
msgid ""
"Returns a list of <literal>Permission</literal> objects representing all of "
@@ -5295,13 +5301,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3845
+#: Security.xml:3848
#, no-c-format
msgid "grantPermission(Permission permission)"
msgstr ""
#. Tag: para
-#: Security.xml:3849
+#: Security.xml:3852
#, no-c-format
msgid ""
"Persists (grants) the specified <literal>Permission</literal> to the backend "
@@ -5309,7 +5315,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3868
+#: Security.xml:3871
#, no-c-format
msgid ""
"Persists (grants) the specified list of <literal>Permission</literal>s to "
@@ -5317,7 +5323,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3887
+#: Security.xml:3890
#, no-c-format
msgid ""
"Removes (revokes) the specified <literal>Permission</literal> from the "
@@ -5325,7 +5331,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3906
+#: Security.xml:3909
#, no-c-format
msgid ""
"Removes (revokes) the specified list of <literal>Permission</literal>s from "
@@ -5333,7 +5339,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3925
+#: Security.xml:3928
#, no-c-format
msgid ""
"Returns a list of the available actions for the specified target object. The "
@@ -5342,13 +5348,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3940
+#: Security.xml:3943
#, no-c-format
msgid "Permission checks for PermissionManager operations"
msgstr ""
#. Tag: para
-#: Security.xml:3942
+#: Security.xml:3945
#, no-c-format
msgid ""
"Invoking the methods of <literal>PermissionManager</literal> requires that "
@@ -5358,37 +5364,37 @@
msgstr ""
#. Tag: title
-#: Security.xml:3949
+#: Security.xml:3952
#, no-c-format
msgid "Permission Management Security Permissions"
msgstr ""
#. Tag: literal
-#: Security.xml:3973
+#: Security.xml:3976
#, no-c-format
msgid "listPermissions()"
msgstr ""
#. Tag: para
-#: Security.xml:3977
+#: Security.xml:3980
#, no-c-format
msgid "The specified <literal>target</literal>"
msgstr ""
#. Tag: literal
-#: Security.xml:3983
+#: Security.xml:3986
#, no-c-format
msgid "seam.read-permissions"
msgstr ""
#. Tag: literal
-#: Security.xml:3991 Security.xml:4011
+#: Security.xml:3994 Security.xml:4014
#, no-c-format
msgid "grantPermission()"
msgstr ""
#. Tag: para
-#: Security.xml:3995
+#: Security.xml:3998
#, no-c-format
msgid ""
"The target of the specified <literal>Permission</literal>, or each of the "
@@ -5397,56 +5403,56 @@
msgstr ""
#. Tag: literal
-#: Security.xml:4003 Security.xml:4021 Security.xml:4039
+#: Security.xml:4006 Security.xml:4024 Security.xml:4042
#, no-c-format
msgid "seam.grant-permission"
msgstr ""
#. Tag: para
-#: Security.xml:4015 Security.xml:4051
+#: Security.xml:4018 Security.xml:4054
#, no-c-format
msgid "The target of the specified <literal>Permission</literal>."
msgstr ""
#. Tag: literal
-#: Security.xml:4029
+#: Security.xml:4032
#, no-c-format
msgid "grantPermissions()"
msgstr ""
#. Tag: para
-#: Security.xml:4033 Security.xml:4069
+#: Security.xml:4036 Security.xml:4072
#, no-c-format
msgid ""
"Each of the targets of the specified list of <literal>Permission</literal>s."
msgstr ""
#. Tag: literal
-#: Security.xml:4047
+#: Security.xml:4050
#, no-c-format
msgid "revokePermission()"
msgstr ""
#. Tag: literal
-#: Security.xml:4057 Security.xml:4075
+#: Security.xml:4060 Security.xml:4078
#, no-c-format
msgid "seam.revoke-permission"
msgstr ""
#. Tag: literal
-#: Security.xml:4065
+#: Security.xml:4068
#, no-c-format
msgid "revokePermissions()"
msgstr ""
#. Tag: title
-#: Security.xml:4088
+#: Security.xml:4091
#, no-c-format
msgid "SSL Security"
msgstr ""
#. Tag: para
-#: Security.xml:4090
+#: Security.xml:4093
#, no-c-format
msgid ""
"Seam includes basic support for serving sensitive pages via the HTTPS "
@@ -5457,13 +5463,13 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4097
+#: Security.xml:4100
#, no-c-format
msgid "<![CDATA[<page view-id=\"/login.xhtml\" scheme=\"https\"/>]]>"
msgstr ""
#. Tag: para
-#: Security.xml:4099
+#: Security.xml:4102
#, no-c-format
msgid ""
"This configuration is automatically extended to both <literal>s:link</"
@@ -5475,13 +5481,13 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4106
+#: Security.xml:4109
#, no-c-format
msgid "<![CDATA[<s:link view=\"/login.xhtml\" value=\"Login\"/>]]>"
msgstr ""
#. Tag: para
-#: Security.xml:4108
+#: Security.xml:4111
#, no-c-format
msgid ""
"Browsing directly to a view when using the <emphasis>incorrect</emphasis> "
@@ -5492,7 +5498,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4115
+#: Security.xml:4118
#, no-c-format
msgid ""
"It is also possible to configure a <emphasis>default scheme</emphasis> for "
@@ -5506,13 +5512,13 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4124
+#: Security.xml:4127
#, no-c-format
msgid "<![CDATA[<page view-id=\"*\" scheme=\"http\" />]]>"
msgstr ""
#. Tag: para
-#: Security.xml:4126
+#: Security.xml:4129
#, no-c-format
msgid ""
"Of course, if <emphasis>none</emphasis> of the pages in your application use "
@@ -5520,7 +5526,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4131
+#: Security.xml:4134
#, no-c-format
msgid ""
"You may configure Seam to automatically invalidate the current HTTP session "
@@ -5529,13 +5535,13 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4136
+#: Security.xml:4139
#, no-c-format
msgid "<![CDATA[<web:session invalidate-on-scheme-change=\"true\"/>]]>"
msgstr ""
#. Tag: para
-#: Security.xml:4138
+#: Security.xml:4141
#, no-c-format
msgid ""
"This option helps make your system less vulnerable to sniffing of the "
@@ -5544,13 +5550,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4144
+#: Security.xml:4147
#, no-c-format
msgid "Overriding the default ports"
msgstr ""
#. Tag: para
-#: Security.xml:4146
+#: Security.xml:4149
#, no-c-format
msgid ""
"If you wish to configure the HTTP and HTTPS ports manually, they may be "
@@ -5560,7 +5566,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4152
+#: Security.xml:4155
#, no-c-format
msgid ""
"<![CDATA[\n"
@@ -5576,13 +5582,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4158
+#: Security.xml:4161
#, no-c-format
msgid "CAPTCHA"
msgstr ""
#. Tag: para
-#: Security.xml:4160
+#: Security.xml:4163
#, no-c-format
msgid ""
"Though strictly not part of the security API, Seam provides a built-in "
@@ -5594,13 +5600,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4168
+#: Security.xml:4171
#, no-c-format
msgid "Configuring the CAPTCHA Servlet"
msgstr ""
#. Tag: para
-#: Security.xml:4169
+#: Security.xml:4172
#, no-c-format
msgid ""
"To get up and running, it is necessary to configure the Seam Resource "
@@ -5609,7 +5615,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4174
+#: Security.xml:4177
#, no-c-format
msgid ""
"<![CDATA[<servlet>\n"
@@ -5625,20 +5631,20 @@
msgstr ""
#. Tag: title
-#: Security.xml:4179
+#: Security.xml:4182
#, no-c-format
msgid "Adding a CAPTCHA to a form"
msgstr ""
#. Tag: para
-#: Security.xml:4181
+#: Security.xml:4184
#, no-c-format
msgid ""
"Adding a CAPTCHA challenge to a form is extremely easy. Here's an example:"
msgstr ""
#. Tag: programlisting
-#: Security.xml:4185
+#: Security.xml:4188
#, no-c-format
msgid ""
"<![CDATA[<h:graphicImage value=\"/seam/resource/captcha\"/>\n"
@@ -5650,7 +5656,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4187
+#: Security.xml:4190
#, no-c-format
msgid ""
"That's all there is to it. The <literal>graphicImage</literal> control "
@@ -5660,20 +5666,20 @@
msgstr ""
#. Tag: title
-#: Security.xml:4196
+#: Security.xml:4199
#, no-c-format
msgid "Customising the CAPTCHA algorithm"
msgstr ""
#. Tag: para
-#: Security.xml:4198
+#: Security.xml:4201
#, no-c-format
msgid ""
"You may customize the CAPTCHA algorithm by overriding the built-in component:"
msgstr ""
#. Tag: programlisting
-#: Security.xml:4202
+#: Security.xml:4205
#, no-c-format
msgid ""
"<![CDATA[@Name(\"org.jboss.seam.captcha.captcha\")\n"
@@ -5700,13 +5706,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4209 Security.xml:4217
+#: Security.xml:4212 Security.xml:4220
#, no-c-format
msgid "Security Events"
msgstr ""
#. Tag: para
-#: Security.xml:4211
+#: Security.xml:4214
#, no-c-format
msgid ""
"The following table describes a number of events (see <xref linkend=\"events"
@@ -5714,68 +5720,68 @@
msgstr ""
#. Tag: para
-#: Security.xml:4226
+#: Security.xml:4229
#, no-c-format
msgid "Event Key"
msgstr ""
#. Tag: literal
-#: Security.xml:4239
+#: Security.xml:4242
#, no-c-format
msgid "org.jboss.seam.security.loginSuccessful"
msgstr ""
#. Tag: para
-#: Security.xml:4243
+#: Security.xml:4246
#, no-c-format
msgid "Raised when a login attempt is successful."
msgstr ""
#. Tag: literal
-#: Security.xml:4251
+#: Security.xml:4254
#, no-c-format
msgid "org.jboss.seam.security.loginFailed"
msgstr ""
#. Tag: para
-#: Security.xml:4255
+#: Security.xml:4258
#, no-c-format
msgid "Raised when a login attempt fails."
msgstr ""
#. Tag: literal
-#: Security.xml:4263
+#: Security.xml:4266
#, no-c-format
msgid "org.jboss.seam.security.alreadyLoggedIn"
msgstr ""
#. Tag: para
-#: Security.xml:4267
+#: Security.xml:4270
#, no-c-format
msgid ""
"Raised when a user that is already authenticated attempts to log in again."
msgstr ""
#. Tag: literal
-#: Security.xml:4275
+#: Security.xml:4278
#, no-c-format
msgid "org.jboss.seam.security.notLoggedIn"
msgstr ""
#. Tag: para
-#: Security.xml:4279
+#: Security.xml:4282
#, no-c-format
msgid "Raised when a security check fails when the user is not logged in."
msgstr ""
#. Tag: literal
-#: Security.xml:4287
+#: Security.xml:4290
#, no-c-format
msgid "org.jboss.seam.security.notAuthorized"
msgstr ""
#. Tag: para
-#: Security.xml:4291
+#: Security.xml:4294
#, no-c-format
msgid ""
"Raised when a security check fails when the user is logged in however "
@@ -5783,73 +5789,73 @@
msgstr ""
#. Tag: literal
-#: Security.xml:4299
+#: Security.xml:4302
#, no-c-format
msgid "org.jboss.seam.security.preAuthenticate"
msgstr ""
#. Tag: para
-#: Security.xml:4303
+#: Security.xml:4306
#, no-c-format
msgid "Raised just prior to user authentication."
msgstr ""
#. Tag: literal
-#: Security.xml:4311
+#: Security.xml:4314
#, no-c-format
msgid "org.jboss.seam.security.postAuthenticate"
msgstr ""
#. Tag: para
-#: Security.xml:4315
+#: Security.xml:4318
#, no-c-format
msgid "Raised just after user authentication."
msgstr ""
#. Tag: literal
-#: Security.xml:4323
+#: Security.xml:4326
#, no-c-format
msgid "org.jboss.seam.security.loggedOut"
msgstr ""
#. Tag: para
-#: Security.xml:4327
+#: Security.xml:4330
#, no-c-format
msgid "Raised after the user has logged out."
msgstr ""
#. Tag: literal
-#: Security.xml:4335
+#: Security.xml:4338
#, no-c-format
msgid "org.jboss.seam.security.credentialsUpdated"
msgstr ""
#. Tag: para
-#: Security.xml:4339
+#: Security.xml:4342
#, no-c-format
msgid "Raised when the user's credentials have been changed."
msgstr ""
#. Tag: literal
-#: Security.xml:4347
+#: Security.xml:4350
#, no-c-format
msgid "org.jboss.seam.security.rememberMe"
msgstr ""
#. Tag: para
-#: Security.xml:4351
+#: Security.xml:4354
#, no-c-format
msgid "Raised when the Identity's rememberMe property is changed."
msgstr ""
#. Tag: title
-#: Security.xml:4364
+#: Security.xml:4367
#, no-c-format
msgid "Run As"
msgstr ""
#. Tag: para
-#: Security.xml:4366
+#: Security.xml:4369
#, no-c-format
msgid ""
"Sometimes it may be necessary to perform certain operations with elevated "
@@ -5861,7 +5867,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4374
+#: Security.xml:4377
#, no-c-format
msgid ""
"The following code example demonstrates how <literal>RunAsOperation</"
@@ -5872,7 +5878,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4381
+#: Security.xml:4384
#, no-c-format
msgid ""
"<![CDATA[ new RunAsOperation() { \n"
@@ -5884,7 +5890,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4383
+#: Security.xml:4386
#, no-c-format
msgid ""
"In a similar way, the <literal>getPrincipal()</literal> or "
@@ -5895,13 +5901,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4394
+#: Security.xml:4397
#, no-c-format
msgid "Extending the Identity component"
msgstr ""
#. Tag: para
-#: Security.xml:4396
+#: Security.xml:4399
#, no-c-format
msgid ""
"Sometimes it might be necessary to extend the Identity component if your "
@@ -5914,7 +5920,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4404
+#: Security.xml:4407
#, no-c-format
msgid ""
"<![CDATA[@Name(\"org.jboss.seam.security.identity\")\n"
@@ -5949,7 +5955,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4407
+#: Security.xml:4410
#, no-c-format
msgid ""
"Note that an <literal>Identity</literal> component must be marked "
@@ -5959,13 +5965,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4419
+#: Security.xml:4422
#, no-c-format
msgid "OpenID"
msgstr ""
#. Tag: para
-#: Security.xml:4421
+#: Security.xml:4424
#, no-c-format
msgid ""
"OpenID is a community standard for external web-based authentication. The "
@@ -5978,7 +5984,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4430
+#: Security.xml:4433
#, no-c-format
msgid ""
"When using OpenID, the user selects an OpenID provider, and the provider "
@@ -5995,7 +6001,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4439
+#: Security.xml:4442
#, no-c-format
msgid ""
"It's important to realize at this point that authentication does not imply "
@@ -6008,13 +6014,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4449
+#: Security.xml:4452
#, no-c-format
msgid "Configuring OpenID"
msgstr ""
#. Tag: para
-#: Security.xml:4450
+#: Security.xml:4453
#, no-c-format
msgid ""
"Seam uses the openid4java package and requires four additional JARs to make "
@@ -6024,7 +6030,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4456
+#: Security.xml:4459
#, no-c-format
msgid ""
"OpenID processing requires the use of the <literal>OpenIdPhaseListener</"
@@ -6034,7 +6040,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4462
+#: Security.xml:4465
#, no-c-format
msgid ""
"<lifecycle>\n"
@@ -6044,7 +6050,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4465
+#: Security.xml:4468
#, no-c-format
msgid ""
"With this configuration, OpenID support is available to your application. "
@@ -6054,13 +6060,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4473
+#: Security.xml:4476
#, no-c-format
msgid "Presenting an OpenIdDLogin form"
msgstr ""
#. Tag: para
-#: Security.xml:4475
+#: Security.xml:4478
#, no-c-format
msgid ""
"To initiate an OpenID login, you can present a simply form to the user "
@@ -6070,7 +6076,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4480
+#: Security.xml:4483
#, no-c-format
msgid ""
"<h:form>\n"
@@ -6081,7 +6087,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4482
+#: Security.xml:4485
#, no-c-format
msgid ""
"When the user submits the login form, he will be redirected to his OpenID "
@@ -6093,13 +6099,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4491
+#: Security.xml:4494
#, no-c-format
msgid "Logging in immediately"
msgstr ""
#. Tag: para
-#: Security.xml:4493
+#: Security.xml:4496
#, no-c-format
msgid ""
"The simplest strategy is to simply login the user immediately. The following "
@@ -6108,7 +6114,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4497
+#: Security.xml:4500
#, no-c-format
msgid ""
"<page view-id="/openid.xhtml">\n"
@@ -6128,7 +6134,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4499
+#: Security.xml:4502
#, no-c-format
msgid ""
"Thie <literal>loginImmediately()</literal> action checks to see if the "
@@ -6142,13 +6148,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4510
+#: Security.xml:4513
#, no-c-format
msgid "Deferring login"
msgstr ""
#. Tag: para
-#: Security.xml:4512
+#: Security.xml:4515
#, no-c-format
msgid ""
"You may not want the user to be immediately logged in to your application. "
@@ -6165,13 +6171,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4526
+#: Security.xml:4529
#, no-c-format
msgid "Logging out"
msgstr ""
#. Tag: para
-#: Security.xml:4528
+#: Security.xml:4531
#, no-c-format
msgid ""
"Logging out (forgetting an OpenID association) is done by calling <literal>#"
@@ -6182,7 +6188,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4535
+#: Security.xml:4538
#, no-c-format
msgid ""
"<event type="org.jboss.seam.security.loggedOut">\n"
@@ -6191,7 +6197,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4537
+#: Security.xml:4540
#, no-c-format
msgid ""
"It's important that you do not leave this out or the user will not be able "
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/zh-TW/Dependencies.po
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/zh-TW/Dependencies.po 2009-06-11 20:41:36 UTC (rev 11125)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/zh-TW/Dependencies.po 2009-06-11 20:43:04 UTC (rev 11126)
@@ -5,7 +5,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-04-15 13:51+0000\n"
+"POT-Creation-Date: 2009-06-11 18:45+0000\n"
"PO-Revision-Date: 2008-04-04 01:24+0000\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -938,8 +938,8 @@
#: Dependencies.xml:1182
#, no-c-format
msgid ""
-"This sample POM will give you Seam, JPA (provided by Hibernate) and "
-"Hibernate Validator:"
+"This sample POM will give you Seam, JPA (provided by Hibernate), Hibernate "
+"Validator and Hibernate Search:"
msgstr ""
#. Tag: programlisting
@@ -970,25 +970,31 @@
" <dependency>\n"
" <groupId>org.hibernate</groupId>\n"
" <artifactId>hibernate-validator</artifactId>\n"
-" <version>3.0.0.GA</version>\n"
+" <version>3.1.0.GA</version>\n"
" </dependency>\n"
"\n"
" <dependency>\n"
" <groupId>org.hibernate</groupId>\n"
" <artifactId>hibernate-annotations</artifactId>\n"
-" <version>3.3.0.ga</version>\n"
+" <version>3.4.0.GA</version>\n"
" </dependency>\n"
"\n"
" <dependency>\n"
" <groupId>org.hibernate</groupId>\n"
" <artifactId>hibernate-entitymanager</artifactId>\n"
-" <version>3.3.1.ga</version>\n"
+" <version>3.4.0.GA</version>\n"
" </dependency>\n"
+" \n"
+" <dependency>\n"
+" <groupId>org.hibernate</groupId>\n"
+" <artifactId>hibernate-search</artifactId>\n"
+" <version>3.1.1.GA</version>\n"
+" </dependency>\n"
"\n"
" <dependency>\n"
" <groupId>org.jboss.seam</groupId>\n"
" <artifactId>jboss-seam</artifactId>\n"
-" <version>2.0.0.GA</version>\n"
+" <version>2.2.0.GA</version>\n"
" </dependency>\n"
" \n"
" </dependencies>\n"
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/zh-TW/Hsearch.po
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/zh-TW/Hsearch.po 2009-06-11 20:41:36 UTC (rev 11125)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/zh-TW/Hsearch.po 2009-06-11 20:43:04 UTC (rev 11126)
@@ -5,7 +5,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-04-15 13:51+0000\n"
+"POT-Creation-Date: 2009-06-11 18:45+0000\n"
"PO-Revision-Date: 2008-04-04 01:24+0000\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -45,7 +45,7 @@
#: Hsearch.xml:21
#, no-c-format
msgid ""
-"Hibernate Search has been designed to integrates nicely and as naturally as "
+"Hibernate Search has been designed to integrate nicely and as naturally as "
"possible with JPA and Hibernate. As a natural extension, JBoss Seam provides "
"an Hibernate Search integration."
msgstr ""
@@ -132,7 +132,7 @@
" <property name=\"hibernate.ejb.event.post-delete\" \n"
" value=\"org.hibernate.search.event.FullTextIndexEventListener"
"\"/>\n"
-"\n"
+" \n"
" </properties>\n"
"</persistence-unit>]]>"
msgstr ""
@@ -141,12 +141,15 @@
#: Hsearch.xml:52
#, no-c-format
msgid ""
-"This step is no longer necessary if Hibernate Annotation or EntityManager "
-"3.3.x are used."
+"It is not longer necessary the register the event listeners if Hibernate "
+"Annotations or EntityManager 3.3.x are used. When using Hibernate Search 3.1."
+"x more eventlisteners are needed, but these are registered automatically by "
+"Hibernate Annotations; refer to the Hibernate Search reference for "
+"configuring it without EntityManager and Annotations."
msgstr ""
#. Tag: para
-#: Hsearch.xml:56
+#: Hsearch.xml:60
#, no-c-format
msgid ""
"In addition to the configuration file, the following jars have to be "
@@ -154,25 +157,25 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:61
+#: Hsearch.xml:65
#, no-c-format
msgid "hibernate-search.jar"
msgstr ""
#. Tag: para
-#: Hsearch.xml:65
+#: Hsearch.xml:69
#, no-c-format
msgid "hibernate-commons-annotations.jar"
msgstr ""
#. Tag: para
-#: Hsearch.xml:69
+#: Hsearch.xml:73
#, no-c-format
msgid "lucene-core.jar"
msgstr ""
#. Tag: para
-#: Hsearch.xml:74
+#: Hsearch.xml:78
#, no-c-format
msgid ""
"If you deploy those in a EAR, don't forget to update <filename>application."
@@ -180,13 +183,13 @@
msgstr ""
#. Tag: title
-#: Hsearch.xml:80
+#: Hsearch.xml:84
#, no-c-format
msgid "Usage"
msgstr ""
#. Tag: para
-#: Hsearch.xml:82
+#: Hsearch.xml:86
#, no-c-format
msgid ""
"Hibernate Search uses annotations to map entities to a Lucene index, check "
@@ -195,7 +198,7 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:87
+#: Hsearch.xml:91
#, no-c-format
msgid ""
"Hibernate Search is fully integrated with the API and semantic of JPA / "
@@ -206,7 +209,7 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:93
+#: Hsearch.xml:97
#, no-c-format
msgid ""
"When Hibernate Search is present, JBoss Seam injects a "
@@ -214,7 +217,7 @@
msgstr ""
#. Tag: programlisting
-#: Hsearch.xml:96
+#: Hsearch.xml:100
#, no-c-format
msgid ""
"<![CDATA[@Stateful\n"
@@ -237,7 +240,7 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:99
+#: Hsearch.xml:103
#, no-c-format
msgid ""
"<classname>FullTextSession</classname> extends <classname>org.hibernate."
@@ -245,14 +248,14 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:104
+#: Hsearch.xml:108
#, no-c-format
msgid ""
"If the Java Persistence API is used, a smoother integration is proposed."
msgstr ""
#. Tag: programlisting
-#: Hsearch.xml:107
+#: Hsearch.xml:111
#, no-c-format
msgid ""
"<![CDATA[@Stateful\n"
@@ -275,7 +278,7 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:109
+#: Hsearch.xml:113
#, no-c-format
msgid ""
"When Hibernate Search is present, a <classname>FulltextEntityManager</"
@@ -286,7 +289,7 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:116
+#: Hsearch.xml:120
#, no-c-format
msgid ""
"When an EJB 3.0 Session or Message Driven Bean injection is used (i.e. via "
@@ -299,7 +302,7 @@
msgstr ""
#. Tag: programlisting
-#: Hsearch.xml:124
+#: Hsearch.xml:128
#, no-c-format
msgid ""
"<![CDATA[@Stateful\n"
@@ -323,15 +326,15 @@
msgstr ""
#. Tag: para
-#: Hsearch.xml:129
+#: Hsearch.xml:133
#, no-c-format
msgid ""
"For people accustomed to Hibernate Search out of Seam, note that using "
-"<methodname>Search.createFullTextSession</methodname> is not necessary."
+"<methodname>Search.getFullTextSession</methodname> is not necessary."
msgstr ""
#. Tag: para
-#: Hsearch.xml:134
+#: Hsearch.xml:138
#, no-c-format
msgid ""
"Check the DVDStore or the blog examples of the JBoss Seam distribution for a "
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/zh-TW/Security.po
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/zh-TW/Security.po 2009-06-11 20:41:36 UTC (rev 11125)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/zh-TW/Security.po 2009-06-11 20:43:04 UTC (rev 11126)
@@ -5,7 +5,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-06-11 07:43+0000\n"
+"POT-Creation-Date: 2009-06-11 18:45+0000\n"
"PO-Revision-Date: 2008-04-04 01:24+0000\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -1190,7 +1190,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:630 Security.xml:764 Security.xml:3382 Security.xml:3545
+#: Security.xml:630 Security.xml:764 Security.xml:3385 Security.xml:3548
#, no-c-format
msgid "Annotation"
msgstr ""
@@ -1203,8 +1203,8 @@
#. Tag: para
#: Security.xml:636 Security.xml:770 Security.xml:966 Security.xml:1418
-#: Security.xml:2147 Security.xml:2756 Security.xml:3171 Security.xml:3388
-#: Security.xml:3551 Security.xml:3792 Security.xml:4229
+#: Security.xml:2147 Security.xml:2756 Security.xml:3174 Security.xml:3391
+#: Security.xml:3554 Security.xml:3795 Security.xml:4232
#, no-c-format
msgid "Description"
msgstr ""
@@ -2228,8 +2228,8 @@
msgstr ""
#. Tag: para
-#: Security.xml:1412 Security.xml:1828 Security.xml:2753 Security.xml:3168
-#: Security.xml:3789 Security.xml:3958
+#: Security.xml:1412 Security.xml:1828 Security.xml:2753 Security.xml:3171
+#: Security.xml:3792 Security.xml:3961
#, no-c-format
msgid "Method"
msgstr ""
@@ -2250,9 +2250,9 @@
#: Security.xml:1433 Security.xml:1452 Security.xml:1471 Security.xml:1490
#: Security.xml:1509 Security.xml:1529 Security.xml:1548 Security.xml:1567
#: Security.xml:1586 Security.xml:1606 Security.xml:1626 Security.xml:1740
-#: Security.xml:1762 Security.xml:1780 Security.xml:2766 Security.xml:3239
-#: Security.xml:3258 Security.xml:3277 Security.xml:3295 Security.xml:3840
-#: Security.xml:3859 Security.xml:3878 Security.xml:3897
+#: Security.xml:1762 Security.xml:1780 Security.xml:2766 Security.xml:3242
+#: Security.xml:3261 Security.xml:3280 Security.xml:3298 Security.xml:3843
+#: Security.xml:3862 Security.xml:3881 Security.xml:3900
#, no-c-format
msgid "boolean"
msgstr ""
@@ -2558,13 +2558,13 @@
msgstr ""
#. Tag: para
-#: Security.xml:1831 Security.xml:3961
+#: Security.xml:1831 Security.xml:3964
#, no-c-format
msgid "Permission Target"
msgstr ""
#. Tag: para
-#: Security.xml:1834 Security.xml:3964
+#: Security.xml:1834 Security.xml:3967
#, no-c-format
msgid "Permission Action"
msgstr ""
@@ -3806,7 +3806,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2750 Security.xml:3165 Security.xml:3786
+#: Security.xml:2750 Security.xml:3168 Security.xml:3789
#, no-c-format
msgid "Return type"
msgstr ""
@@ -3986,41 +3986,47 @@
#. Tag: para
#: Security.xml:2917
#, no-c-format
-msgid "drools-compiler.jar"
+msgid "drools-api.jar"
msgstr ""
#. Tag: para
#: Security.xml:2920
#, no-c-format
-msgid "drools-core.jar"
+msgid "drools-compiler.jar"
msgstr ""
#. Tag: para
#: Security.xml:2923
#, no-c-format
-msgid "janino.jar"
+msgid "drools-core.jar"
msgstr ""
#. Tag: para
#: Security.xml:2926
#, no-c-format
-msgid "antlr-runtime.jar"
+msgid "janino.jar"
msgstr ""
#. Tag: para
#: Security.xml:2929
#, no-c-format
-msgid "mvel14.jar"
+msgid "antlr-runtime.jar"
msgstr ""
+#. Tag: para
+#: Security.xml:2932
+#, no-c-format
+msgid "mvel2.jar"
+msgstr ""
+
#. Tag: title
-#: Security.xml:2936 Security.xml:3128
+#: Security.xml:2939 Security.xml:3131
#, no-c-format
msgid "Configuration"
msgstr ""
#. Tag: para
-#: Security.xml:2938
+#: Security.xml:2941
#, no-c-format
msgid ""
"The configuration for <literal>RuleBasedPermissionResolver</literal> "
@@ -4030,7 +4036,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:2944
+#: Security.xml:2947
#, no-c-format
msgid ""
"<![CDATA[<components xmlns=\"http://jboss.com/products/seam/components\"\n"
@@ -4058,7 +4064,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2946
+#: Security.xml:2949
#, no-c-format
msgid ""
"The default rule base name can be overridden by specifying the "
@@ -4067,7 +4073,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:2951
+#: Security.xml:2954
#, no-c-format
msgid ""
"<![CDATA[\n"
@@ -4076,7 +4082,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2953
+#: Security.xml:2956
#, no-c-format
msgid ""
"Once the <literal>RuleBase</literal> component is configured, it's time to "
@@ -4084,13 +4090,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:2959
+#: Security.xml:2962
#, no-c-format
msgid "Writing Security Rules"
msgstr ""
#. Tag: para
-#: Security.xml:2961
+#: Security.xml:2964
#, no-c-format
msgid ""
"The first step to writing security rules is to create a new rule file in the "
@@ -4101,7 +4107,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2968
+#: Security.xml:2971
#, no-c-format
msgid ""
"So what should the security rules file contain? At this stage it might be a "
@@ -4110,7 +4116,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:2973
+#: Security.xml:2976
#, no-c-format
msgid ""
"<![CDATA[package MyApplicationPermissions;\n"
@@ -4128,7 +4134,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2975
+#: Security.xml:2978
#, no-c-format
msgid ""
"Let's break this down step by step. The first thing we see is the package "
@@ -4138,7 +4144,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2981
+#: Security.xml:2984
#, no-c-format
msgid ""
"The next thing we can notice is a couple of import statements for the "
@@ -4148,7 +4154,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2987
+#: Security.xml:2990
#, no-c-format
msgid ""
"Finally we have the code for the rule. Each rule within a package should be "
@@ -4158,7 +4164,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:2993
+#: Security.xml:2996
#, no-c-format
msgid ""
"Looking at the body of the rule definition we can notice two distinct "
@@ -4173,7 +4179,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3002
+#: Security.xml:3005
#, no-c-format
msgid ""
"If we look at the LHS of the rule, we see two conditions listed there. Let's "
@@ -4181,14 +4187,14 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3006
+#: Security.xml:3009
#, no-c-format
msgid ""
"<![CDATA[c: PermissionCheck(target == \"customer\", action == \"delete\")]]>"
msgstr ""
#. Tag: para
-#: Security.xml:3008
+#: Security.xml:3011
#, no-c-format
msgid ""
"In plain english, this condition is stating that there must exist a "
@@ -4198,7 +4204,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3014
+#: Security.xml:3017
#, no-c-format
msgid ""
"So what is the working memory? Also known as a \"stateful session\" in "
@@ -4216,7 +4222,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3026
+#: Security.xml:3029
#, no-c-format
msgid ""
"Besides the <literal>PermissionCheck</literal> facts, there is also a "
@@ -4233,7 +4239,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3037
+#: Security.xml:3040
#, no-c-format
msgid ""
"It is also possible to insert additional long-lived facts into the working "
@@ -4244,7 +4250,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3044
+#: Security.xml:3047
#, no-c-format
msgid ""
"Getting back to our simple example, we can also notice that the first line "
@@ -4255,13 +4261,13 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3051
+#: Security.xml:3054
#, no-c-format
msgid "<![CDATA[Role(name == \"admin\")]]>"
msgstr ""
#. Tag: para
-#: Security.xml:3053
+#: Security.xml:3056
#, no-c-format
msgid ""
"This condition simply states that there must be a <literal>Role</literal> "
@@ -4274,7 +4280,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3061
+#: Security.xml:3064
#, no-c-format
msgid ""
"So what is the consequence of the rule firing? Let's take a look at the RHS "
@@ -4282,13 +4288,13 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3065
+#: Security.xml:3068
#, no-c-format
msgid "<![CDATA[c.grant()]]>"
msgstr ""
#. Tag: para
-#: Security.xml:3067
+#: Security.xml:3070
#, no-c-format
msgid ""
"The RHS consists of Java code, and in this case is invoking the "
@@ -4305,13 +4311,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3081
+#: Security.xml:3084
#, no-c-format
msgid "Non-String permission targets"
msgstr ""
#. Tag: para
-#: Security.xml:3083
+#: Security.xml:3086
#, no-c-format
msgid ""
"So far we have only seen permission checks for String-literal permission "
@@ -4325,7 +4331,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3092
+#: Security.xml:3095
#, no-c-format
msgid ""
"<![CDATA[rule CanCreateBlogComment\n"
@@ -4343,13 +4349,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3097
+#: Security.xml:3100
#, no-c-format
msgid "Wildcard permission checks"
msgstr ""
#. Tag: para
-#: Security.xml:3099
+#: Security.xml:3102
#, no-c-format
msgid ""
"It is possible to implement a wildcard permission check (which allows all "
@@ -4359,7 +4365,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3105
+#: Security.xml:3108
#, no-c-format
msgid ""
"<![CDATA[rule CanDoAnythingToCustomersIfYouAreAnAdmin\n"
@@ -4373,7 +4379,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3107
+#: Security.xml:3110
#, no-c-format
msgid ""
"This rule allows users with the <literal>admin</literal> role to perform "
@@ -4382,13 +4388,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3117
+#: Security.xml:3120
#, no-c-format
msgid "PersistentPermissionResolver"
msgstr ""
#. Tag: para
-#: Security.xml:3119
+#: Security.xml:3122
#, no-c-format
msgid ""
"Another built-in permission resolver provided by Seam, "
@@ -4401,7 +4407,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3130
+#: Security.xml:3133
#, no-c-format
msgid ""
"Before it can be used, <literal>PersistentPermissionResolver</literal> must "
@@ -4414,7 +4420,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3138
+#: Security.xml:3141
#, no-c-format
msgid ""
"<![CDATA[ <security:persistent-permission-resolver permission-store=\"#"
@@ -4422,13 +4428,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3143
+#: Security.xml:3146
#, no-c-format
msgid "Permission Stores"
msgstr ""
#. Tag: para
-#: Security.xml:3145
+#: Security.xml:3148
#, no-c-format
msgid ""
"A permission store is required for <literal>PersistentPermissionResolver</"
@@ -4441,26 +4447,26 @@
msgstr ""
#. Tag: title
-#: Security.xml:3155
+#: Security.xml:3158
#, no-c-format
msgid "PermissionStore interface"
msgstr ""
#. Tag: literal
-#: Security.xml:3181 Security.xml:3200 Security.xml:3219 Security.xml:3802
-#: Security.xml:3821
+#: Security.xml:3184 Security.xml:3203 Security.xml:3222 Security.xml:3805
+#: Security.xml:3824
#, no-c-format
msgid "List<Permission>"
msgstr ""
#. Tag: literal
-#: Security.xml:3186 Security.xml:3826
+#: Security.xml:3189 Security.xml:3829
#, no-c-format
msgid "listPermissions(Object target)"
msgstr ""
#. Tag: para
-#: Security.xml:3190
+#: Security.xml:3193
#, no-c-format
msgid ""
"This method should return a <literal>List</literal> of <literal>Permission</"
@@ -4469,13 +4475,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3205 Security.xml:3807
+#: Security.xml:3208 Security.xml:3810
#, no-c-format
msgid "listPermissions(Object target, String action)"
msgstr ""
#. Tag: para
-#: Security.xml:3209
+#: Security.xml:3212
#, no-c-format
msgid ""
"This method should return a <literal>List</literal> of <literal>Permission</"
@@ -4484,13 +4490,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3224
+#: Security.xml:3227
#, no-c-format
msgid "listPermissions(Set<Object> targets, String action)"
msgstr ""
#. Tag: para
-#: Security.xml:3228
+#: Security.xml:3231
#, no-c-format
msgid ""
"This method should return a <literal>List</literal> of <literal>Permission</"
@@ -4499,13 +4505,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3244
+#: Security.xml:3247
#, no-c-format
msgid "grantPermission(Permission)"
msgstr ""
#. Tag: para
-#: Security.xml:3248
+#: Security.xml:3251
#, no-c-format
msgid ""
"This method should persist the specified <literal>Permission</literal> "
@@ -4513,13 +4519,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3263 Security.xml:3864
+#: Security.xml:3266 Security.xml:3867
#, no-c-format
msgid "grantPermissions(List<Permission> permissions)"
msgstr ""
#. Tag: para
-#: Security.xml:3267
+#: Security.xml:3270
#, no-c-format
msgid ""
"This method should persist all of the <literal>Permission</literal> objects "
@@ -4528,13 +4534,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3282 Security.xml:3883
+#: Security.xml:3285 Security.xml:3886
#, no-c-format
msgid "revokePermission(Permission permission)"
msgstr ""
#. Tag: para
-#: Security.xml:3286
+#: Security.xml:3289
#, no-c-format
msgid ""
"This method should remove the specified <literal>Permission</literal> object "
@@ -4542,13 +4548,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3300 Security.xml:3902
+#: Security.xml:3303 Security.xml:3905
#, no-c-format
msgid "revokePermissions(List<Permission> permissions)"
msgstr ""
#. Tag: para
-#: Security.xml:3304
+#: Security.xml:3307
#, no-c-format
msgid ""
"This method should remove all of the <literal>Permission</literal> objects "
@@ -4556,19 +4562,19 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3314 Security.xml:3916
+#: Security.xml:3317 Security.xml:3919
#, no-c-format
msgid "List<String>"
msgstr ""
#. Tag: literal
-#: Security.xml:3319 Security.xml:3921
+#: Security.xml:3322 Security.xml:3924
#, no-c-format
msgid "listAvailableActions(Object target)"
msgstr ""
#. Tag: para
-#: Security.xml:3323
+#: Security.xml:3326
#, no-c-format
msgid ""
"This method should return a list of all the available actions (as Strings) "
@@ -4578,13 +4584,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3337
+#: Security.xml:3340
#, no-c-format
msgid "JpaPermissionStore"
msgstr ""
#. Tag: para
-#: Security.xml:3339
+#: Security.xml:3342
#, no-c-format
msgid ""
"This is the default <literal>PermissionStore</literal> implementation (and "
@@ -4597,7 +4603,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3347
+#: Security.xml:3350
#, no-c-format
msgid ""
"If you wish to use the same entity (i.e. a single database table) to store "
@@ -4609,7 +4615,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3354
+#: Security.xml:3357
#, no-c-format
msgid ""
"For example, to configure a single entity class to store both user and role "
@@ -4617,7 +4623,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3356
+#: Security.xml:3359
#, no-c-format
msgid ""
"<![CDATA[ <security:jpa-permission-store user-permission-class=\"com.acme."
@@ -4625,14 +4631,14 @@
msgstr ""
#. Tag: para
-#: Security.xml:3358
+#: Security.xml:3361
#, no-c-format
msgid ""
"To configure separate entity classes for storing user and role permissions:"
msgstr ""
#. Tag: programlisting
-#: Security.xml:3360
+#: Security.xml:3363
#, no-c-format
msgid ""
"<![CDATA[ <security:jpa-permission-store user-permission-class=\"com.acme."
@@ -4641,13 +4647,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3363
+#: Security.xml:3366
#, no-c-format
msgid "Permission annotations"
msgstr ""
#. Tag: para
-#: Security.xml:3365
+#: Security.xml:3368
#, no-c-format
msgid ""
"As mentioned, the entity classes that contain the user and role permissions "
@@ -4658,32 +4664,32 @@
msgstr ""
#. Tag: title
-#: Security.xml:3372
+#: Security.xml:3375
#, no-c-format
msgid "Entity Permission annotations"
msgstr ""
#. Tag: para
-#: Security.xml:3385 Security.xml:3548
+#: Security.xml:3388 Security.xml:3551
#, no-c-format
msgid "Target"
msgstr ""
#. Tag: literal
-#: Security.xml:3398
+#: Security.xml:3401
#, no-c-format
msgid "@PermissionTarget"
msgstr ""
#. Tag: literal
-#: Security.xml:3403 Security.xml:3422 Security.xml:3441 Security.xml:3460
-#: Security.xml:3479
+#: Security.xml:3406 Security.xml:3425 Security.xml:3444 Security.xml:3463
+#: Security.xml:3482
#, no-c-format
msgid "FIELD,METHOD"
msgstr ""
#. Tag: para
-#: Security.xml:3407
+#: Security.xml:3410
#, no-c-format
msgid ""
"This annotation identifies the property of the entity that will contain the "
@@ -4692,13 +4698,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3417
+#: Security.xml:3420
#, no-c-format
msgid "@PermissionAction"
msgstr ""
#. Tag: para
-#: Security.xml:3426
+#: Security.xml:3429
#, no-c-format
msgid ""
"This annotation identifies the property of the entity that will contain the "
@@ -4707,13 +4713,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3436
+#: Security.xml:3439
#, no-c-format
msgid "@PermissionUser"
msgstr ""
#. Tag: para
-#: Security.xml:3445
+#: Security.xml:3448
#, no-c-format
msgid ""
"This annotation identifies the property of the entity that will contain the "
@@ -4722,13 +4728,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3455
+#: Security.xml:3458
#, no-c-format
msgid "@PermissionRole"
msgstr ""
#. Tag: para
-#: Security.xml:3464
+#: Security.xml:3467
#, no-c-format
msgid ""
"This annotation identifies the property of the entity that will contain the "
@@ -4737,13 +4743,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3474
+#: Security.xml:3477
#, no-c-format
msgid "@PermissionDiscriminator"
msgstr ""
#. Tag: para
-#: Security.xml:3483
+#: Security.xml:3486
#, no-c-format
msgid ""
"This annotation should be used when the same entity/table is used to store "
@@ -4760,20 +4766,20 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3493
+#: Security.xml:3496
#, no-c-format
msgid ""
"<![CDATA[ @PermissionDiscriminator(userValue = \"u\", roleValue = \"r\")]]>"
msgstr ""
#. Tag: title
-#: Security.xml:3504
+#: Security.xml:3507
#, no-c-format
msgid "Example Entity"
msgstr ""
#. Tag: para
-#: Security.xml:3506
+#: Security.xml:3509
#, no-c-format
msgid ""
"Here is an example of an entity class that is used to store both user and "
@@ -4782,7 +4788,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3511
+#: Security.xml:3514
#, no-c-format
msgid ""
"<![CDATA[\n"
@@ -4843,7 +4849,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3513
+#: Security.xml:3516
#, no-c-format
msgid ""
"As can be seen in the above example, the <literal>getDiscriminator()</"
@@ -4860,13 +4866,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3526
+#: Security.xml:3529
#, no-c-format
msgid "Class-specific Permission Configuration"
msgstr ""
#. Tag: para
-#: Security.xml:3528
+#: Security.xml:3531
#, no-c-format
msgid ""
"A further set of class-specific annotations can be used to configure a "
@@ -4876,25 +4882,25 @@
msgstr ""
#. Tag: title
-#: Security.xml:3535
+#: Security.xml:3538
#, no-c-format
msgid "Class Permission Annotations"
msgstr ""
#. Tag: literal
-#: Security.xml:3561
+#: Security.xml:3564
#, no-c-format
msgid "@Permissions"
msgstr ""
#. Tag: literal
-#: Security.xml:3566 Security.xml:3584
+#: Security.xml:3569 Security.xml:3587
#, no-c-format
msgid "TYPE"
msgstr ""
#. Tag: para
-#: Security.xml:3570
+#: Security.xml:3573
#, no-c-format
msgid ""
"A container annotation, this annotation may contain an array of "
@@ -4902,13 +4908,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3579
+#: Security.xml:3582
#, no-c-format
msgid "@Permission"
msgstr ""
#. Tag: para
-#: Security.xml:3588
+#: Security.xml:3591
#, no-c-format
msgid ""
"This annotation defines a single allowable permission action for the target "
@@ -4919,7 +4925,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3600
+#: Security.xml:3603
#, no-c-format
msgid ""
"Here's an example of the above annotations in action. The following class "
@@ -4927,7 +4933,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3604
+#: Security.xml:3607
#, no-c-format
msgid ""
"<![CDATA[@Permissions({\n"
@@ -4939,7 +4945,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3606
+#: Security.xml:3609
#, no-c-format
msgid ""
"This example demonstrates how two allowable permission actions, "
@@ -4948,13 +4954,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3614
+#: Security.xml:3617
#, no-c-format
msgid "Permission masks"
msgstr ""
#. Tag: para
-#: Security.xml:3616
+#: Security.xml:3619
#, no-c-format
msgid ""
"By default, multiple permissions for the same target object and recipient "
@@ -4966,7 +4972,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3623
+#: Security.xml:3626
#, no-c-format
msgid ""
"For example, if recipient \"Bob\" is granted both the <literal>view</"
@@ -4979,7 +4985,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3630
+#: Security.xml:3633
#, no-c-format
msgid ""
"<![CDATA[@Permissions({\n"
@@ -4991,7 +4997,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3632
+#: Security.xml:3635
#, no-c-format
msgid ""
"The <literal>action</literal> property will instead simply contain \"3"
@@ -5001,7 +5007,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3638
+#: Security.xml:3641
#, no-c-format
msgid ""
"Obviously, it is very important that the <literal>mask</literal> values "
@@ -5009,13 +5015,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3644
+#: Security.xml:3647
#, no-c-format
msgid "Identifier Policy"
msgstr ""
#. Tag: para
-#: Security.xml:3646
+#: Security.xml:3649
#, no-c-format
msgid ""
"When storing or looking up permissions, <literal>JpaPermissionStore</"
@@ -5029,7 +5035,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3654
+#: Security.xml:3657
#, no-c-format
msgid ""
"The <literal>IdentifierStrategy</literal> interface is very simple, "
@@ -5037,7 +5043,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3658
+#: Security.xml:3661
#, no-c-format
msgid ""
"<![CDATA[public interface IdentifierStrategy {\n"
@@ -5047,7 +5053,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3660
+#: Security.xml:3663
#, no-c-format
msgid ""
"The first method, <literal>canIdentify()</literal> simply returns "
@@ -5058,7 +5064,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3666
+#: Security.xml:3669
#, no-c-format
msgid ""
"Seam provides two <literal>IdentifierStrategy</literal> implementations, "
@@ -5067,7 +5073,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3671
+#: Security.xml:3674
#, no-c-format
msgid ""
"To explicitly configure a specific identifier strategy to use for a "
@@ -5080,13 +5086,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3681
+#: Security.xml:3684
#, no-c-format
msgid "ClassIdentifierStrategy"
msgstr ""
#. Tag: para
-#: Security.xml:3683
+#: Security.xml:3686
#, no-c-format
msgid ""
"This identifier strategy is used to generate unique identifiers for classes, "
@@ -5100,7 +5106,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3692
+#: Security.xml:3695
#, no-c-format
msgid ""
"<![CDATA[@Identifier(name = \"customer\")\n"
@@ -5108,7 +5114,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3694
+#: Security.xml:3697
#, no-c-format
msgid ""
"The identifier for the following class will be \"<literal>customerAction</"
@@ -5116,7 +5122,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3698
+#: Security.xml:3701
#, no-c-format
msgid ""
"<![CDATA[@Name(\"customerAction\")\n"
@@ -5124,7 +5130,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3700
+#: Security.xml:3703
#, no-c-format
msgid ""
"Finally, the identifier for the following class will be \"<literal>Customer</"
@@ -5132,19 +5138,19 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3704
+#: Security.xml:3707
#, no-c-format
msgid "<![CDATA[public class Customer { ]]>"
msgstr ""
#. Tag: title
-#: Security.xml:3709
+#: Security.xml:3712
#, no-c-format
msgid "EntityIdentifierStrategy"
msgstr ""
#. Tag: para
-#: Security.xml:3711
+#: Security.xml:3714
#, no-c-format
msgid ""
"This identifier strategy is used to generate unique identifiers for entity "
@@ -5161,7 +5167,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3722
+#: Security.xml:3725
#, no-c-format
msgid ""
"<![CDATA[@Identifier(value = EntityIdentifierStrategy.class)\n"
@@ -5169,7 +5175,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3724
+#: Security.xml:3727
#, no-c-format
msgid ""
"For an example of the type of identifier values generated, assume we have "
@@ -5177,7 +5183,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3728
+#: Security.xml:3731
#, no-c-format
msgid ""
"<![CDATA[@Entity\n"
@@ -5200,7 +5206,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3730
+#: Security.xml:3733
#, no-c-format
msgid ""
"For a <literal>Customer</literal> instance with an <literal>id</literal> "
@@ -5210,7 +5216,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3736
+#: Security.xml:3739
#, no-c-format
msgid ""
"<![CDATA[@Entity\n"
@@ -5219,7 +5225,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3738
+#: Security.xml:3741
#, no-c-format
msgid ""
"Then a <literal>Customer</literal> with an <literal>id</literal> value of "
@@ -5228,13 +5234,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3751
+#: Security.xml:3754
#, no-c-format
msgid "Permission Management"
msgstr ""
#. Tag: para
-#: Security.xml:3753
+#: Security.xml:3756
#, no-c-format
msgid ""
"In much the same way that Seam Security provides an Identity Management API "
@@ -5244,13 +5250,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3760
+#: Security.xml:3763
#, no-c-format
msgid "PermissionManager"
msgstr ""
#. Tag: para
-#: Security.xml:3762
+#: Security.xml:3765
#, no-c-format
msgid ""
"The <literal>PermissionManager</literal> component is an application-scoped "
@@ -5263,7 +5269,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:3769
+#: Security.xml:3772
#, no-c-format
msgid ""
"<![CDATA[\n"
@@ -5273,7 +5279,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3771
+#: Security.xml:3774
#, no-c-format
msgid ""
"The following table describes each of the available methods provided by "
@@ -5281,13 +5287,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3776
+#: Security.xml:3779
#, no-c-format
msgid "PermissionManager API methods"
msgstr ""
#. Tag: para
-#: Security.xml:3811 Security.xml:3830
+#: Security.xml:3814 Security.xml:3833
#, no-c-format
msgid ""
"Returns a list of <literal>Permission</literal> objects representing all of "
@@ -5295,13 +5301,13 @@
msgstr ""
#. Tag: literal
-#: Security.xml:3845
+#: Security.xml:3848
#, no-c-format
msgid "grantPermission(Permission permission)"
msgstr ""
#. Tag: para
-#: Security.xml:3849
+#: Security.xml:3852
#, no-c-format
msgid ""
"Persists (grants) the specified <literal>Permission</literal> to the backend "
@@ -5309,7 +5315,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3868
+#: Security.xml:3871
#, no-c-format
msgid ""
"Persists (grants) the specified list of <literal>Permission</literal>s to "
@@ -5317,7 +5323,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3887
+#: Security.xml:3890
#, no-c-format
msgid ""
"Removes (revokes) the specified <literal>Permission</literal> from the "
@@ -5325,7 +5331,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3906
+#: Security.xml:3909
#, no-c-format
msgid ""
"Removes (revokes) the specified list of <literal>Permission</literal>s from "
@@ -5333,7 +5339,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:3925
+#: Security.xml:3928
#, no-c-format
msgid ""
"Returns a list of the available actions for the specified target object. The "
@@ -5342,13 +5348,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:3940
+#: Security.xml:3943
#, no-c-format
msgid "Permission checks for PermissionManager operations"
msgstr ""
#. Tag: para
-#: Security.xml:3942
+#: Security.xml:3945
#, no-c-format
msgid ""
"Invoking the methods of <literal>PermissionManager</literal> requires that "
@@ -5358,37 +5364,37 @@
msgstr ""
#. Tag: title
-#: Security.xml:3949
+#: Security.xml:3952
#, no-c-format
msgid "Permission Management Security Permissions"
msgstr ""
#. Tag: literal
-#: Security.xml:3973
+#: Security.xml:3976
#, no-c-format
msgid "listPermissions()"
msgstr ""
#. Tag: para
-#: Security.xml:3977
+#: Security.xml:3980
#, no-c-format
msgid "The specified <literal>target</literal>"
msgstr ""
#. Tag: literal
-#: Security.xml:3983
+#: Security.xml:3986
#, no-c-format
msgid "seam.read-permissions"
msgstr ""
#. Tag: literal
-#: Security.xml:3991 Security.xml:4011
+#: Security.xml:3994 Security.xml:4014
#, no-c-format
msgid "grantPermission()"
msgstr ""
#. Tag: para
-#: Security.xml:3995
+#: Security.xml:3998
#, no-c-format
msgid ""
"The target of the specified <literal>Permission</literal>, or each of the "
@@ -5397,56 +5403,56 @@
msgstr ""
#. Tag: literal
-#: Security.xml:4003 Security.xml:4021 Security.xml:4039
+#: Security.xml:4006 Security.xml:4024 Security.xml:4042
#, no-c-format
msgid "seam.grant-permission"
msgstr ""
#. Tag: para
-#: Security.xml:4015 Security.xml:4051
+#: Security.xml:4018 Security.xml:4054
#, no-c-format
msgid "The target of the specified <literal>Permission</literal>."
msgstr ""
#. Tag: literal
-#: Security.xml:4029
+#: Security.xml:4032
#, no-c-format
msgid "grantPermissions()"
msgstr ""
#. Tag: para
-#: Security.xml:4033 Security.xml:4069
+#: Security.xml:4036 Security.xml:4072
#, no-c-format
msgid ""
"Each of the targets of the specified list of <literal>Permission</literal>s."
msgstr ""
#. Tag: literal
-#: Security.xml:4047
+#: Security.xml:4050
#, no-c-format
msgid "revokePermission()"
msgstr ""
#. Tag: literal
-#: Security.xml:4057 Security.xml:4075
+#: Security.xml:4060 Security.xml:4078
#, no-c-format
msgid "seam.revoke-permission"
msgstr ""
#. Tag: literal
-#: Security.xml:4065
+#: Security.xml:4068
#, no-c-format
msgid "revokePermissions()"
msgstr ""
#. Tag: title
-#: Security.xml:4088
+#: Security.xml:4091
#, no-c-format
msgid "SSL Security"
msgstr ""
#. Tag: para
-#: Security.xml:4090
+#: Security.xml:4093
#, no-c-format
msgid ""
"Seam includes basic support for serving sensitive pages via the HTTPS "
@@ -5457,13 +5463,13 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4097
+#: Security.xml:4100
#, no-c-format
msgid "<![CDATA[<page view-id=\"/login.xhtml\" scheme=\"https\"/>]]>"
msgstr ""
#. Tag: para
-#: Security.xml:4099
+#: Security.xml:4102
#, no-c-format
msgid ""
"This configuration is automatically extended to both <literal>s:link</"
@@ -5475,13 +5481,13 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4106
+#: Security.xml:4109
#, no-c-format
msgid "<![CDATA[<s:link view=\"/login.xhtml\" value=\"Login\"/>]]>"
msgstr ""
#. Tag: para
-#: Security.xml:4108
+#: Security.xml:4111
#, no-c-format
msgid ""
"Browsing directly to a view when using the <emphasis>incorrect</emphasis> "
@@ -5492,7 +5498,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4115
+#: Security.xml:4118
#, no-c-format
msgid ""
"It is also possible to configure a <emphasis>default scheme</emphasis> for "
@@ -5506,13 +5512,13 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4124
+#: Security.xml:4127
#, no-c-format
msgid "<![CDATA[<page view-id=\"*\" scheme=\"http\" />]]>"
msgstr ""
#. Tag: para
-#: Security.xml:4126
+#: Security.xml:4129
#, no-c-format
msgid ""
"Of course, if <emphasis>none</emphasis> of the pages in your application use "
@@ -5520,7 +5526,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4131
+#: Security.xml:4134
#, no-c-format
msgid ""
"You may configure Seam to automatically invalidate the current HTTP session "
@@ -5529,13 +5535,13 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4136
+#: Security.xml:4139
#, no-c-format
msgid "<![CDATA[<web:session invalidate-on-scheme-change=\"true\"/>]]>"
msgstr ""
#. Tag: para
-#: Security.xml:4138
+#: Security.xml:4141
#, no-c-format
msgid ""
"This option helps make your system less vulnerable to sniffing of the "
@@ -5544,13 +5550,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4144
+#: Security.xml:4147
#, no-c-format
msgid "Overriding the default ports"
msgstr ""
#. Tag: para
-#: Security.xml:4146
+#: Security.xml:4149
#, no-c-format
msgid ""
"If you wish to configure the HTTP and HTTPS ports manually, they may be "
@@ -5560,7 +5566,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4152
+#: Security.xml:4155
#, no-c-format
msgid ""
"<![CDATA[\n"
@@ -5576,13 +5582,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4158
+#: Security.xml:4161
#, no-c-format
msgid "CAPTCHA"
msgstr ""
#. Tag: para
-#: Security.xml:4160
+#: Security.xml:4163
#, no-c-format
msgid ""
"Though strictly not part of the security API, Seam provides a built-in "
@@ -5594,13 +5600,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4168
+#: Security.xml:4171
#, no-c-format
msgid "Configuring the CAPTCHA Servlet"
msgstr ""
#. Tag: para
-#: Security.xml:4169
+#: Security.xml:4172
#, no-c-format
msgid ""
"To get up and running, it is necessary to configure the Seam Resource "
@@ -5609,7 +5615,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4174
+#: Security.xml:4177
#, no-c-format
msgid ""
"<![CDATA[<servlet>\n"
@@ -5625,20 +5631,20 @@
msgstr ""
#. Tag: title
-#: Security.xml:4179
+#: Security.xml:4182
#, no-c-format
msgid "Adding a CAPTCHA to a form"
msgstr ""
#. Tag: para
-#: Security.xml:4181
+#: Security.xml:4184
#, no-c-format
msgid ""
"Adding a CAPTCHA challenge to a form is extremely easy. Here's an example:"
msgstr ""
#. Tag: programlisting
-#: Security.xml:4185
+#: Security.xml:4188
#, no-c-format
msgid ""
"<![CDATA[<h:graphicImage value=\"/seam/resource/captcha\"/>\n"
@@ -5650,7 +5656,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4187
+#: Security.xml:4190
#, no-c-format
msgid ""
"That's all there is to it. The <literal>graphicImage</literal> control "
@@ -5660,20 +5666,20 @@
msgstr ""
#. Tag: title
-#: Security.xml:4196
+#: Security.xml:4199
#, no-c-format
msgid "Customising the CAPTCHA algorithm"
msgstr ""
#. Tag: para
-#: Security.xml:4198
+#: Security.xml:4201
#, no-c-format
msgid ""
"You may customize the CAPTCHA algorithm by overriding the built-in component:"
msgstr ""
#. Tag: programlisting
-#: Security.xml:4202
+#: Security.xml:4205
#, no-c-format
msgid ""
"<![CDATA[@Name(\"org.jboss.seam.captcha.captcha\")\n"
@@ -5700,13 +5706,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4209 Security.xml:4217
+#: Security.xml:4212 Security.xml:4220
#, no-c-format
msgid "Security Events"
msgstr ""
#. Tag: para
-#: Security.xml:4211
+#: Security.xml:4214
#, no-c-format
msgid ""
"The following table describes a number of events (see <xref linkend=\"events"
@@ -5714,68 +5720,68 @@
msgstr ""
#. Tag: para
-#: Security.xml:4226
+#: Security.xml:4229
#, no-c-format
msgid "Event Key"
msgstr ""
#. Tag: literal
-#: Security.xml:4239
+#: Security.xml:4242
#, no-c-format
msgid "org.jboss.seam.security.loginSuccessful"
msgstr ""
#. Tag: para
-#: Security.xml:4243
+#: Security.xml:4246
#, no-c-format
msgid "Raised when a login attempt is successful."
msgstr ""
#. Tag: literal
-#: Security.xml:4251
+#: Security.xml:4254
#, no-c-format
msgid "org.jboss.seam.security.loginFailed"
msgstr ""
#. Tag: para
-#: Security.xml:4255
+#: Security.xml:4258
#, no-c-format
msgid "Raised when a login attempt fails."
msgstr ""
#. Tag: literal
-#: Security.xml:4263
+#: Security.xml:4266
#, no-c-format
msgid "org.jboss.seam.security.alreadyLoggedIn"
msgstr ""
#. Tag: para
-#: Security.xml:4267
+#: Security.xml:4270
#, no-c-format
msgid ""
"Raised when a user that is already authenticated attempts to log in again."
msgstr ""
#. Tag: literal
-#: Security.xml:4275
+#: Security.xml:4278
#, no-c-format
msgid "org.jboss.seam.security.notLoggedIn"
msgstr ""
#. Tag: para
-#: Security.xml:4279
+#: Security.xml:4282
#, no-c-format
msgid "Raised when a security check fails when the user is not logged in."
msgstr ""
#. Tag: literal
-#: Security.xml:4287
+#: Security.xml:4290
#, no-c-format
msgid "org.jboss.seam.security.notAuthorized"
msgstr ""
#. Tag: para
-#: Security.xml:4291
+#: Security.xml:4294
#, no-c-format
msgid ""
"Raised when a security check fails when the user is logged in however "
@@ -5783,73 +5789,73 @@
msgstr ""
#. Tag: literal
-#: Security.xml:4299
+#: Security.xml:4302
#, no-c-format
msgid "org.jboss.seam.security.preAuthenticate"
msgstr ""
#. Tag: para
-#: Security.xml:4303
+#: Security.xml:4306
#, no-c-format
msgid "Raised just prior to user authentication."
msgstr ""
#. Tag: literal
-#: Security.xml:4311
+#: Security.xml:4314
#, no-c-format
msgid "org.jboss.seam.security.postAuthenticate"
msgstr ""
#. Tag: para
-#: Security.xml:4315
+#: Security.xml:4318
#, no-c-format
msgid "Raised just after user authentication."
msgstr ""
#. Tag: literal
-#: Security.xml:4323
+#: Security.xml:4326
#, no-c-format
msgid "org.jboss.seam.security.loggedOut"
msgstr ""
#. Tag: para
-#: Security.xml:4327
+#: Security.xml:4330
#, no-c-format
msgid "Raised after the user has logged out."
msgstr ""
#. Tag: literal
-#: Security.xml:4335
+#: Security.xml:4338
#, no-c-format
msgid "org.jboss.seam.security.credentialsUpdated"
msgstr ""
#. Tag: para
-#: Security.xml:4339
+#: Security.xml:4342
#, no-c-format
msgid "Raised when the user's credentials have been changed."
msgstr ""
#. Tag: literal
-#: Security.xml:4347
+#: Security.xml:4350
#, no-c-format
msgid "org.jboss.seam.security.rememberMe"
msgstr ""
#. Tag: para
-#: Security.xml:4351
+#: Security.xml:4354
#, no-c-format
msgid "Raised when the Identity's rememberMe property is changed."
msgstr ""
#. Tag: title
-#: Security.xml:4364
+#: Security.xml:4367
#, no-c-format
msgid "Run As"
msgstr ""
#. Tag: para
-#: Security.xml:4366
+#: Security.xml:4369
#, no-c-format
msgid ""
"Sometimes it may be necessary to perform certain operations with elevated "
@@ -5861,7 +5867,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4374
+#: Security.xml:4377
#, no-c-format
msgid ""
"The following code example demonstrates how <literal>RunAsOperation</"
@@ -5872,7 +5878,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4381
+#: Security.xml:4384
#, no-c-format
msgid ""
"<![CDATA[ new RunAsOperation() { \n"
@@ -5884,7 +5890,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4383
+#: Security.xml:4386
#, no-c-format
msgid ""
"In a similar way, the <literal>getPrincipal()</literal> or "
@@ -5895,13 +5901,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4394
+#: Security.xml:4397
#, no-c-format
msgid "Extending the Identity component"
msgstr ""
#. Tag: para
-#: Security.xml:4396
+#: Security.xml:4399
#, no-c-format
msgid ""
"Sometimes it might be necessary to extend the Identity component if your "
@@ -5914,7 +5920,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4404
+#: Security.xml:4407
#, no-c-format
msgid ""
"<![CDATA[@Name(\"org.jboss.seam.security.identity\")\n"
@@ -5949,7 +5955,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4407
+#: Security.xml:4410
#, no-c-format
msgid ""
"Note that an <literal>Identity</literal> component must be marked "
@@ -5959,13 +5965,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4419
+#: Security.xml:4422
#, no-c-format
msgid "OpenID"
msgstr ""
#. Tag: para
-#: Security.xml:4421
+#: Security.xml:4424
#, no-c-format
msgid ""
"OpenID is a community standard for external web-based authentication. The "
@@ -5978,7 +5984,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4430
+#: Security.xml:4433
#, no-c-format
msgid ""
"When using OpenID, the user selects an OpenID provider, and the provider "
@@ -5995,7 +6001,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4439
+#: Security.xml:4442
#, no-c-format
msgid ""
"It's important to realize at this point that authentication does not imply "
@@ -6008,13 +6014,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4449
+#: Security.xml:4452
#, no-c-format
msgid "Configuring OpenID"
msgstr ""
#. Tag: para
-#: Security.xml:4450
+#: Security.xml:4453
#, no-c-format
msgid ""
"Seam uses the openid4java package and requires four additional JARs to make "
@@ -6024,7 +6030,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4456
+#: Security.xml:4459
#, no-c-format
msgid ""
"OpenID processing requires the use of the <literal>OpenIdPhaseListener</"
@@ -6034,7 +6040,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4462
+#: Security.xml:4465
#, no-c-format
msgid ""
"<lifecycle>\n"
@@ -6044,7 +6050,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4465
+#: Security.xml:4468
#, no-c-format
msgid ""
"With this configuration, OpenID support is available to your application. "
@@ -6054,13 +6060,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4473
+#: Security.xml:4476
#, no-c-format
msgid "Presenting an OpenIdDLogin form"
msgstr ""
#. Tag: para
-#: Security.xml:4475
+#: Security.xml:4478
#, no-c-format
msgid ""
"To initiate an OpenID login, you can present a simply form to the user "
@@ -6070,7 +6076,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4480
+#: Security.xml:4483
#, no-c-format
msgid ""
"<h:form>\n"
@@ -6081,7 +6087,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4482
+#: Security.xml:4485
#, no-c-format
msgid ""
"When the user submits the login form, he will be redirected to his OpenID "
@@ -6093,13 +6099,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4491
+#: Security.xml:4494
#, no-c-format
msgid "Logging in immediately"
msgstr ""
#. Tag: para
-#: Security.xml:4493
+#: Security.xml:4496
#, no-c-format
msgid ""
"The simplest strategy is to simply login the user immediately. The following "
@@ -6108,7 +6114,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4497
+#: Security.xml:4500
#, no-c-format
msgid ""
"<page view-id="/openid.xhtml">\n"
@@ -6128,7 +6134,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4499
+#: Security.xml:4502
#, no-c-format
msgid ""
"Thie <literal>loginImmediately()</literal> action checks to see if the "
@@ -6142,13 +6148,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4510
+#: Security.xml:4513
#, no-c-format
msgid "Deferring login"
msgstr ""
#. Tag: para
-#: Security.xml:4512
+#: Security.xml:4515
#, no-c-format
msgid ""
"You may not want the user to be immediately logged in to your application. "
@@ -6165,13 +6171,13 @@
msgstr ""
#. Tag: title
-#: Security.xml:4526
+#: Security.xml:4529
#, no-c-format
msgid "Logging out"
msgstr ""
#. Tag: para
-#: Security.xml:4528
+#: Security.xml:4531
#, no-c-format
msgid ""
"Logging out (forgetting an OpenID association) is done by calling <literal>#"
@@ -6182,7 +6188,7 @@
msgstr ""
#. Tag: programlisting
-#: Security.xml:4535
+#: Security.xml:4538
#, no-c-format
msgid ""
"<event type="org.jboss.seam.security.loggedOut">\n"
@@ -6191,7 +6197,7 @@
msgstr ""
#. Tag: para
-#: Security.xml:4537
+#: Security.xml:4540
#, no-c-format
msgid ""
"It's important that you do not leave this out or the user will not be able "
15 years, 5 months
Seam SVN: r11125 - branches/community/Seam_2_2/doc/Seam_Reference_Guide/it-IT.
by seam-commits@lists.jboss.org
Author: nico.ben
Date: 2009-06-11 16:41:36 -0400 (Thu, 11 Jun 2009)
New Revision: 11125
Modified:
branches/community/Seam_2_2/doc/Seam_Reference_Guide/it-IT/Dependencies.po
branches/community/Seam_2_2/doc/Seam_Reference_Guide/it-IT/Hsearch.po
branches/community/Seam_2_2/doc/Seam_Reference_Guide/it-IT/Security.po
Log:
Italian translation
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/it-IT/Dependencies.po
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/it-IT/Dependencies.po 2009-06-11 20:28:05 UTC (rev 11124)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/it-IT/Dependencies.po 2009-06-11 20:41:36 UTC (rev 11125)
@@ -5,8 +5,8 @@
msgstr ""
"Project-Id-Version: JBoss Seam - Italian Version\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-04-15 13:51+0000\n"
-"PO-Revision-Date: 2009-04-15 15:58+0100\n"
+"POT-Creation-Date: 2009-06-11 18:45+0000\n"
+"PO-Revision-Date: 2009-06-11 22:35+0100\n"
"Last-Translator: Nicola Benaglia <nico.benaz(a)gmail.com>\n"
"Language-Team: none <nico.benaz(a)gmail.com>\n"
"MIME-Version: 1.0\n"
@@ -991,8 +991,8 @@
#. Tag: para
#: Dependencies.xml:1182
#, no-c-format
-msgid "This sample POM will give you Seam, JPA (provided by Hibernate) and Hibernate Validator:"
-msgstr "Questo POM d'esempio fornirà Seam, JPA (tramite Hibernate) e Hibernate Validator:"
+msgid "This sample POM will give you Seam, JPA (provided by Hibernate), Hibernate Validator and Hibernate Search:"
+msgstr "Questo POM d'esempio fornirà Seam, JPA (tramite Hibernate), Hibernate Validator e Hibernate Search:"
#. Tag: programlisting
#: Dependencies.xml:1187
@@ -1021,25 +1021,31 @@
" <dependency>\n"
" <groupId>org.hibernate</groupId>\n"
" <artifactId>hibernate-validator</artifactId>\n"
-" <version>3.0.0.GA</version>\n"
+" <version>3.1.0.GA</version>\n"
" </dependency>\n"
"\n"
" <dependency>\n"
" <groupId>org.hibernate</groupId>\n"
" <artifactId>hibernate-annotations</artifactId>\n"
-" <version>3.3.0.ga</version>\n"
+" <version>3.4.0.GA</version>\n"
" </dependency>\n"
"\n"
" <dependency>\n"
" <groupId>org.hibernate</groupId>\n"
" <artifactId>hibernate-entitymanager</artifactId>\n"
-" <version>3.3.1.ga</version>\n"
+" <version>3.4.0.GA</version>\n"
" </dependency>\n"
+" \n"
+" <dependency>\n"
+" <groupId>org.hibernate</groupId>\n"
+" <artifactId>hibernate-search</artifactId>\n"
+" <version>3.1.1.GA</version>\n"
+" </dependency>\n"
"\n"
" <dependency>\n"
" <groupId>org.jboss.seam</groupId>\n"
" <artifactId>jboss-seam</artifactId>\n"
-" <version>2.0.0.GA</version>\n"
+" <version>2.2.0.GA</version>\n"
" </dependency>\n"
" \n"
" </dependencies>\n"
@@ -1069,25 +1075,31 @@
" <dependency>\n"
" <groupId>org.hibernate</groupId>\n"
" <artifactId>hibernate-validator</artifactId>\n"
-" <version>3.0.0.GA</version>\n"
+" <version>3.1.0.GA</version>\n"
" </dependency>\n"
"\n"
" <dependency>\n"
" <groupId>org.hibernate</groupId>\n"
" <artifactId>hibernate-annotations</artifactId>\n"
-" <version>3.3.0.ga</version>\n"
+" <version>3.4.0.GA</version>\n"
" </dependency>\n"
"\n"
" <dependency>\n"
" <groupId>org.hibernate</groupId>\n"
" <artifactId>hibernate-entitymanager</artifactId>\n"
-" <version>3.3.1.ga</version>\n"
+" <version>3.4.0.GA</version>\n"
" </dependency>\n"
+" \n"
+" <dependency>\n"
+" <groupId>org.hibernate</groupId>\n"
+" <artifactId>hibernate-search</artifactId>\n"
+" <version>3.1.1.GA</version>\n"
+" </dependency>\n"
"\n"
" <dependency>\n"
" <groupId>org.jboss.seam</groupId>\n"
" <artifactId>jboss-seam</artifactId>\n"
-" <version>2.0.0.GA</version>\n"
+" <version>2.2.0.GA</version>\n"
" </dependency>\n"
" \n"
" </dependencies>\n"
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/it-IT/Hsearch.po
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/it-IT/Hsearch.po 2009-06-11 20:28:05 UTC (rev 11124)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/it-IT/Hsearch.po 2009-06-11 20:41:36 UTC (rev 11125)
@@ -5,8 +5,8 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-04-15 13:51+0000\n"
-"PO-Revision-Date: 2009-04-15 16:03+0100\n"
+"POT-Creation-Date: 2009-06-11 18:45+0000\n"
+"PO-Revision-Date: 2009-06-11 22:40+0100\n"
"Last-Translator: Nicola Benaglia <nico.benaz(a)gmail.com>\n"
"Language-Team: none\n"
"MIME-Version: 1.0\n"
@@ -36,7 +36,7 @@
#. Tag: para
#: Hsearch.xml:21
#, no-c-format
-msgid "Hibernate Search has been designed to integrates nicely and as naturally as possible with JPA and Hibernate. As a natural extension, JBoss Seam provides an Hibernate Search integration."
+msgid "Hibernate Search has been designed to integrate nicely and as naturally as possible with JPA and Hibernate. As a natural extension, JBoss Seam provides an Hibernate Search integration."
msgstr "Hibernate Search è stato progettato per integrarsi nel modo più naturale possibile con JPA ed Hibernate. Essendo una naturale estensione, JBoss Seam fornisce l'integrazione con Hibernate Search."
#. Tag: para
@@ -121,7 +121,7 @@
" value=\"org.hibernate.search.event.FullTextIndexEventListener\"/>\n"
" <property name=\"hibernate.ejb.event.post-delete\" \n"
" value=\"org.hibernate.search.event.FullTextIndexEventListener\"/>\n"
-"\n"
+" \n"
" </properties>\n"
"</persistence-unit>]]>"
msgstr ""
@@ -132,7 +132,7 @@
" <!-- utilizza un file system basato su indice -->\n"
" <property name=\"hibernate.search.default.directory_provider\" \n"
" value=\"org.hibernate.search.store.FSDirectoryProvider\"/>\n"
-" <!-- directory dove gli indici verranno memorizzati -->\n"
+" <!-- directory in cui gli indici verranno memorizzati -->\n"
" <property name=\"hibernate.search.default.indexBase\" \n"
" value=\"/Users/prod/apps/dvdstore/dvdindexes\"/>\n"
"\n"
@@ -142,72 +142,72 @@
" value=\"org.hibernate.search.event.FullTextIndexEventListener\"/>\n"
" <property name=\"hibernate.ejb.event.post-delete\" \n"
" value=\"org.hibernate.search.event.FullTextIndexEventListener\"/>\n"
-"\n"
+" \n"
" </properties>\n"
"</persistence-unit>]]>"
#. Tag: para
#: Hsearch.xml:52
#, no-c-format
-msgid "This step is no longer necessary if Hibernate Annotation or EntityManager 3.3.x are used."
-msgstr "Questo passo non è più necessario se vengono utilizzati Hibernate Annotation o EntityManager 3.3.x."
+msgid "It is not longer necessary the register the event listeners if Hibernate Annotations or EntityManager 3.3.x are used. When using Hibernate Search 3.1.x more eventlisteners are needed, but these are registered automatically by Hibernate Annotations; refer to the Hibernate Search reference for configuring it without EntityManager and Annotations."
+msgstr "Non è più necessario registrare l'event listener se vengono usati Hibernate Annotations o EntityManager 3.3.x. Quando viene usato Hibernate Search 3.1.x sono necessari più event listener, ma questi vengono registrati automaticamente da Hibernate Annotations; si faccia riferimento al manuale Hibernate Search per configurarlo senza EntityManager e Annotations."
#. Tag: para
-#: Hsearch.xml:56
+#: Hsearch.xml:60
#, no-c-format
msgid "In addition to the configuration file, the following jars have to be deployed:"
msgstr "In aggiunta al file di configurazione, devono essere deployati i seguenti jar:"
#. Tag: para
-#: Hsearch.xml:61
+#: Hsearch.xml:65
#, no-c-format
msgid "hibernate-search.jar"
msgstr "hibernate-search.jar"
#. Tag: para
-#: Hsearch.xml:65
+#: Hsearch.xml:69
#, no-c-format
msgid "hibernate-commons-annotations.jar"
msgstr "hibernate-commons-annotations.jar"
#. Tag: para
-#: Hsearch.xml:69
+#: Hsearch.xml:73
#, no-c-format
msgid "lucene-core.jar"
msgstr "lucene-core.jar"
#. Tag: para
-#: Hsearch.xml:74
+#: Hsearch.xml:78
#, no-c-format
msgid "If you deploy those in a EAR, don't forget to update <filename>application.xml</filename>"
msgstr "Se vengono messi in un EAR, non si dimentichi di aggiornare <filename>application.xml</filename>"
#. Tag: title
-#: Hsearch.xml:80
+#: Hsearch.xml:84
#, no-c-format
msgid "Usage"
msgstr "Utilizzo"
#. Tag: para
-#: Hsearch.xml:82
+#: Hsearch.xml:86
#, no-c-format
msgid "Hibernate Search uses annotations to map entities to a Lucene index, check the <ulink url=\"http://www.hibernate.org/hib_docs/search/reference/en/html_single/\">reference documentation</ulink> for more informations."
msgstr "Hibernate Search impiega annotazioni per mappare le entità ad un indice di Lucene, per maggiori informazioni si guardi alla <ulink url=\"http://www.hibernate.org/hib_docs/search/reference/en/html_single/\">documentazione di riferimento</ulink>."
#. Tag: para
-#: Hsearch.xml:87
+#: Hsearch.xml:91
#, no-c-format
msgid "Hibernate Search is fully integrated with the API and semantic of JPA / Hibernate. Switching from a HQL or Criteria based query requires just a few lines of code. The main API the application interacts with is the <classname>FullTextSession</classname> API (subclass of Hibernate's <classname>Session</classname>)."
msgstr "Hibernate Search è pienamente integrato con la API e la semantica di JPA/Hibernate. Passare da una query basata su HQL o Criteria richiede solo poche linee di codice. La principale API con cui l'applicazione interagisce è l'API <classname>FullTextSession</classname> (sottoclasse della <classname>Session</classname> di Hibernate)."
#. Tag: para
-#: Hsearch.xml:93
+#: Hsearch.xml:97
#, no-c-format
msgid "When Hibernate Search is present, JBoss Seam injects a <classname>FullTextSession</classname>."
msgstr "Quando Hibernate Search è presente, JBoss Seam inietta una <classname>FullTextSession</classname>."
#. Tag: programlisting
-#: Hsearch.xml:96
+#: Hsearch.xml:100
#, no-c-format
msgid ""
"<![CDATA[@Stateful\n"
@@ -245,19 +245,19 @@
"}]]>"
#. Tag: para
-#: Hsearch.xml:99
+#: Hsearch.xml:103
#, no-c-format
msgid "<classname>FullTextSession</classname> extends <classname>org.hibernate.Session</classname> so that it can be used as a regular Hibernate Session"
msgstr "<classname>FullTextSession</classname> estende <classname>org.hibernate.Session</classname> così che può essere usata come una regolare Hibernate Session."
#. Tag: para
-#: Hsearch.xml:104
+#: Hsearch.xml:108
#, no-c-format
msgid "If the Java Persistence API is used, a smoother integration is proposed."
msgstr "Se viene usata la Java Persistence API, è proposta un'integrazione più lieve."
#. Tag: programlisting
-#: Hsearch.xml:107
+#: Hsearch.xml:111
#, no-c-format
msgid ""
"<![CDATA[@Stateful\n"
@@ -295,19 +295,19 @@
"}]]>"
#. Tag: para
-#: Hsearch.xml:109
+#: Hsearch.xml:113
#, no-c-format
msgid "When Hibernate Search is present, a <classname>FulltextEntityManager</classname> is injected. <classname>FullTextEntityManager</classname> extends <classname>EntityManager</classname> with search specific methods, the same way <classname>FullTextSession</classname> extends <classname>Session</classname>."
msgstr "Quando Hibernate Search è presente, viene iniettato un <classname>FulltextEntityManager</classname>. <classname>FullTextEntityManager</classname> estende <classname>EntityManager</classname> con metodi specifici di ricerca, allo stesso modo <classname>FullTextSession</classname> estende <classname>Session</classname>."
#. Tag: para
-#: Hsearch.xml:116
+#: Hsearch.xml:120
#, no-c-format
msgid "When an EJB 3.0 Session or Message Driven Bean injection is used (i.e. via the @PersistenceContext annotation), it is not possible to replace the <classname>EntityManager</classname> interface by the <classname>FullTextEntityManager</classname> interface in the declaration statement. However, the implementation injected will be a <classname>FullTextEntityManager</classname> implementation: downcasting is then possible."
msgstr "Quando viene impiegata l'iniezione di un session bean EJB3.0 o message driven (cioè tramite l'annotazione @PersistenceContext), non è possibile rimpiazzare l'interfaccia <classname>EntityManager</classname> con l'interfaccia <classname>FullTextEntityManager</classname> nella dichiarazione. Comunque l'implementazione iniettata sarà <classname>FullTextEntityManager</classname>: è quindi possibile il downcasting."
#. Tag: programlisting
-#: Hsearch.xml:124
+#: Hsearch.xml:128
#, no-c-format
msgid ""
"<![CDATA[@Stateful\n"
@@ -347,14 +347,21 @@
"}]]>"
#. Tag: para
-#: Hsearch.xml:129
+#: Hsearch.xml:133
#, no-c-format
-msgid "For people accustomed to Hibernate Search out of Seam, note that using <methodname>Search.createFullTextSession</methodname> is not necessary."
-msgstr "Per persone abituate a Hibernate Seam fuori da Seam, notare che l'uso di <methodname>Search.createFullTextSession</methodname> non è necessario."
+msgid "For people accustomed to Hibernate Search out of Seam, note that using <methodname>Search.getFullTextSession</methodname> is not necessary."
+msgstr "Per persone abituate a Hibernate Search fuori da Seam, notate che l'uso di <methodname>Search.getFullTextSession</methodname> non è necessario."
#. Tag: para
-#: Hsearch.xml:134
+#: Hsearch.xml:138
#, no-c-format
msgid "Check the DVDStore or the blog examples of the JBoss Seam distribution for a concrete use of Hibernate Search."
msgstr "Controlla gli esempi DVDStore o Blog della distribuzione di JBoss Seam per un uso pratico di Hibernate Search."
+#~ msgid ""
+#~ "This step is no longer necessary if Hibernate Annotation or EntityManager "
+#~ "3.3.x are used."
+#~ msgstr ""
+#~ "Questo passo non è più necessario se vengono utilizzati Hibernate "
+#~ "Annotation o EntityManager 3.3.x."
+
Modified: branches/community/Seam_2_2/doc/Seam_Reference_Guide/it-IT/Security.po
===================================================================
--- branches/community/Seam_2_2/doc/Seam_Reference_Guide/it-IT/Security.po 2009-06-11 20:28:05 UTC (rev 11124)
+++ branches/community/Seam_2_2/doc/Seam_Reference_Guide/it-IT/Security.po 2009-06-11 20:41:36 UTC (rev 11125)
@@ -5,8 +5,8 @@
msgstr ""
"Project-Id-Version: Security\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2009-06-11 07:43+0000\n"
-"PO-Revision-Date: 2009-06-11 09:50+0100\n"
+"POT-Creation-Date: 2009-06-11 18:45+0000\n"
+"PO-Revision-Date: 2009-06-11 22:41+0100\n"
"Last-Translator: Nicola Benaglia <nico.benaz(a)gmail.com>\n"
"Language-Team: it <stefano.travelli(a)gmail.com>\n"
"MIME-Version: 1.0\n"
@@ -1078,8 +1078,8 @@
#. Tag: para
#: Security.xml:630
#: Security.xml:764
-#: Security.xml:3382
-#: Security.xml:3545
+#: Security.xml:3385
+#: Security.xml:3548
#, no-c-format
msgid "Annotation"
msgstr "Annotazione"
@@ -1098,11 +1098,11 @@
#: Security.xml:1418
#: Security.xml:2147
#: Security.xml:2756
-#: Security.xml:3171
-#: Security.xml:3388
-#: Security.xml:3551
-#: Security.xml:3792
-#: Security.xml:4229
+#: Security.xml:3174
+#: Security.xml:3391
+#: Security.xml:3554
+#: Security.xml:3795
+#: Security.xml:4232
#, no-c-format
msgid "Description"
msgstr "Descrizione"
@@ -2146,9 +2146,9 @@
#: Security.xml:1412
#: Security.xml:1828
#: Security.xml:2753
-#: Security.xml:3168
-#: Security.xml:3789
-#: Security.xml:3958
+#: Security.xml:3171
+#: Security.xml:3792
+#: Security.xml:3961
#, no-c-format
msgid "Method"
msgstr "Metodo"
@@ -2181,14 +2181,14 @@
#: Security.xml:1762
#: Security.xml:1780
#: Security.xml:2766
-#: Security.xml:3239
-#: Security.xml:3258
-#: Security.xml:3277
-#: Security.xml:3295
-#: Security.xml:3840
-#: Security.xml:3859
-#: Security.xml:3878
-#: Security.xml:3897
+#: Security.xml:3242
+#: Security.xml:3261
+#: Security.xml:3280
+#: Security.xml:3298
+#: Security.xml:3843
+#: Security.xml:3862
+#: Security.xml:3881
+#: Security.xml:3900
#, no-c-format
msgid "boolean"
msgstr "boolean"
@@ -2449,14 +2449,14 @@
#. Tag: para
#: Security.xml:1831
-#: Security.xml:3961
+#: Security.xml:3964
#, no-c-format
msgid "Permission Target"
msgstr "Oggetto del permesso"
#. Tag: para
#: Security.xml:1834
-#: Security.xml:3964
+#: Security.xml:3967
#, no-c-format
msgid "Permission Action"
msgstr "Azione del permesso"
@@ -3589,8 +3589,8 @@
#. Tag: para
#: Security.xml:2750
-#: Security.xml:3165
-#: Security.xml:3786
+#: Security.xml:3168
+#: Security.xml:3789
#, no-c-format
msgid "Return type"
msgstr "Tipo restituito"
@@ -3706,48 +3706,54 @@
#. Tag: para
#: Security.xml:2917
#, no-c-format
+msgid "drools-api.jar"
+msgstr "drools-api.jar"
+
+#. Tag: para
+#: Security.xml:2920
+#, no-c-format
msgid "drools-compiler.jar"
msgstr "drools-compiler.jar"
#. Tag: para
-#: Security.xml:2920
+#: Security.xml:2923
#, no-c-format
msgid "drools-core.jar"
msgstr "drools-core.jar"
#. Tag: para
-#: Security.xml:2923
+#: Security.xml:2926
#, no-c-format
msgid "janino.jar"
msgstr "janino.jar"
#. Tag: para
-#: Security.xml:2926
+#: Security.xml:2929
#, no-c-format
msgid "antlr-runtime.jar"
msgstr "antlr-runtime.jar"
#. Tag: para
-#: Security.xml:2929
+#: Security.xml:2932
#, no-c-format
-msgid "mvel14.jar"
-msgstr "mvel14.jar"
+msgid "mvel2.jar"
+msgstr "mvel2.jar"
#. Tag: title
-#: Security.xml:2936
-#: Security.xml:3128
+#: Security.xml:2939
+#: Security.xml:3131
#, no-c-format
msgid "Configuration"
msgstr "Configurazione"
#. Tag: para
-#: Security.xml:2938
+#: Security.xml:2941
#, no-c-format
msgid "The configuration for <literal>RuleBasedPermissionResolver</literal> requires that a Drools rule base is first configured in <literal>components.xml</literal>. By default, it expects that the rule base is named <literal>securityRules</literal>, as per the following example:"
msgstr "La configurazione per <literal>RuleBasedPermissionResolver</literal> richiede che una base di regole venga prima configurata in <literal>components.xml</literal>. Per difetto si aspetta che questa base di regole sia chiamata <literal>securityRules</literal>, come nel seguente esempio:"
#. Tag: programlisting
-#: Security.xml:2944
+#: Security.xml:2947
#, no-c-format
msgid ""
"<![CDATA[<components xmlns=\"http://jboss.com/products/seam/components\"\n"
@@ -3789,13 +3795,13 @@
" </components>]]>"
#. Tag: para
-#: Security.xml:2946
+#: Security.xml:2949
#, no-c-format
msgid "The default rule base name can be overridden by specifying the <literal>security-rules</literal> property for <literal>RuleBasedPermissionResolver</literal>:"
msgstr "Il nome predefinito della base di regole può essere modificato specificando la proprietà <literal>security-rules</literal> per <literal>RuleBasedPermissionResolver</literal>:"
#. Tag: programlisting
-#: Security.xml:2951
+#: Security.xml:2954
#, no-c-format
msgid ""
"<![CDATA[\n"
@@ -3805,31 +3811,31 @@
" <security:rule-based-permission-resolver security-rules=\"#{prodSecurityRules}\"/>]]>"
#. Tag: para
-#: Security.xml:2953
+#: Security.xml:2956
#, no-c-format
msgid "Once the <literal>RuleBase</literal> component is configured, it's time to write the security rules."
msgstr "Una volta che il componente <literal>RuleBase</literal> è configurato, è il momento di scrivere le regole di sicurezza."
#. Tag: title
-#: Security.xml:2959
+#: Security.xml:2962
#, no-c-format
msgid "Writing Security Rules"
msgstr "Scrivere le regole di sicurezza"
#. Tag: para
-#: Security.xml:2961
+#: Security.xml:2964
#, no-c-format
msgid "The first step to writing security rules is to create a new rule file in the <literal>/META-INF</literal> directory of your application's jar file. Usually this file would be named something like <literal>security.drl</literal>, however you can name it whatever you like as long as it is configured correspondingly in <literal>components.xml</literal>."
msgstr "Il primo passo per scrivere delle regole di sicurezza è di creare un nuovo file di regole nella cartella <literal>/META-INF</literal> del file jar dell'applicazione. Di solito questo file dovrebbe essere chiamato qualcosa come <literal>security.drl</literal>, comunque lo si può chiamare nel modo che si preferisce purché sia configurato in maniera corrispondente in <literal>components.xml</literal>."
#. Tag: para
-#: Security.xml:2968
+#: Security.xml:2971
#, no-c-format
msgid "So what should the security rules file contain? At this stage it might be a good idea to at least skim through the Drools documentation, however to get started here's an extremely simple example:"
msgstr "Dunque, che cosa deve contenere il file delle regole di sicurezza? A questo punto potrebbe essere una buona idea almeno sbirciare nella documentazione Drools, comunque per partire ecco un esempio estremamente semplice:"
#. Tag: programlisting
-#: Security.xml:2973
+#: Security.xml:2976
#, no-c-format
msgid ""
"<![CDATA[package MyApplicationPermissions;\n"
@@ -3859,115 +3865,115 @@
" end]]>"
#. Tag: para
-#: Security.xml:2975
+#: Security.xml:2978
#, no-c-format
msgid "Let's break this down step by step. The first thing we see is the package declaration. A package in Drools is essentially a collection of rules. The package name can be anything you want - it doesn't relate to anything else outside the scope of the rule base."
msgstr "Dividiamolo passo per passo. La prima cosa che vediamo è la dichiarazione del package. Un package in Drools è essenzialmente una collezione di regole. Il nome del package può essere qualsiasi, non è in relazione con niente che sia al di fuori della visibilità della base di regole."
#. Tag: para
-#: Security.xml:2981
+#: Security.xml:2984
#, no-c-format
msgid "The next thing we can notice is a couple of import statements for the <literal>PermissionCheck</literal> and <literal>Role</literal> classes. These imports inform the rules engine that we'll be referencing these classes within our rules."
msgstr "La cosa successiva che possiano notare è un paio di dichiarazioni <literal>import</literal> per le classi <literal>PermissionCheck</literal> e <literal>Role</literal>. Questi <literal>import</literal> informano il motore di regole che all'interno delle nostre regole faremo riferimento a queste classi."
#. Tag: para
-#: Security.xml:2987
+#: Security.xml:2990
#, no-c-format
msgid "Finally we have the code for the rule. Each rule within a package should be given a unique name (usually describing the purpose of the rule). In this case our rule is called <literal>CanUserDeleteCustomers</literal> and will be used to check whether a user is allowed to delete a customer record."
msgstr "Infine abbiamo il codice della regola. Ogni regola all'interno di un package deve avere un nome univoco (di solito descrive lo scopo della regola). In questo caso la nostra regola si chiama <literal>CanUserDeleteCustomers</literal> e verrà usata per verificare se ad un utente è consentito di cancellare un record relativo ad un cliente."
#. Tag: para
-#: Security.xml:2993
+#: Security.xml:2996
#, no-c-format
msgid "Looking at the body of the rule definition we can notice two distinct sections. Rules have what is known as a left hand side (LHS) and a right hand side (RHS). The LHS consists of the conditional part of the rule, i.e. a list of conditions which must be satisfied for the rule to fire. The LHS is represented by the <literal>when</literal> section. The RHS is the consequence, or action section of the rule that will only be fired if all of the conditions in the LHS are met. The RHS is represented by the <literal>then</literal> section. The end of the rule is denoted by the <literal>end</literal> line."
msgstr "Guardando il corpo della definizione della regola si possono notare due distinte sezioni. Le regole hanno quello che è noto come lato sinistro (LHS, left hand side) e un lato destro (RHS, right hand side). Il lato sinistro consiste nella parte condizionale della regola, cioè l'elenco delle condizioni che devono essere soddisfatte per la regola si applichi. Il lato sinistro è rappresentato dalla sezione <literal>when</literal>. Il lato destro è la conseguenza, o la parte di azione della regola che si applica solo se tutte le condizioni del lato sinistro sono verificate. Il lato destro è rappresentato dalla sezione <literal>then</literal>. La fine della regola è stabilita dalla linea <literal>end</literal>."
#. Tag: para
-#: Security.xml:3002
+#: Security.xml:3005
#, no-c-format
msgid "If we look at the LHS of the rule, we see two conditions listed there. Let's examine the first condition:"
msgstr "Se guardiamo la parte sinistra della regola vediamo che ci sono due condizioni. Esaminiamo la prima condizione:"
#. Tag: programlisting
-#: Security.xml:3006
+#: Security.xml:3009
#, no-c-format
msgid "<![CDATA[c: PermissionCheck(target == \"customer\", action == \"delete\")]]>"
msgstr "<![CDATA[c: PermissionCheck(target == \"customer\", action == \"delete\")]]>"
#. Tag: para
-#: Security.xml:3008
+#: Security.xml:3011
#, no-c-format
msgid "In plain english, this condition is stating that there must exist a <literal>PermissionCheck</literal> object with a <literal>target</literal> property equal to \"customer\", and an <literal>action</literal> property equal to \"delete\" within the working memory."
msgstr "Letta in inglese questa condizione dice che all'interno della working memory deve esistere un oggetto <literal>PermissionCheck</literal> con una proprietà <literal>target</literal> uguale a \"customer\" e una proprietà <literal>action</literal> uguale a \"delete\"."
#. Tag: para
-#: Security.xml:3014
+#: Security.xml:3017
#, no-c-format
msgid "So what is the working memory? Also known as a \"stateful session\" in Drools terminology, the working memory is a session-scoped object that contains the contextual information that is required by the rules engine to make a decision about a permission check. Each time the <literal>hasPermission()</literal> method is called, a temporary <literal>PermissionCheck</literal> object, or <emphasis>Fact</emphasis>, is inserted into the working memory. This <literal>PermissionCheck</literal> corresponds exactly to the permission that is being checked, so for example if you call <literal>hasPermission(\"account\", \"create\")</literal> then a <literal>PermissionCheck</literal> object with a <literal>target</literal> equal to \"account\" and <literal>action</literal> equal to \"create\" will be inserted into the working memory for the duration of the permission check."
msgstr "Dunque cos'è la working memory? Nota anche come \"stateful session\" nella terminologia Drools, la working memory è un oggetto collegato alla sessione che contiene le informazioni contestuali che sono richieste dal motore di regole per prendere una decisione sul controllo di permesso. Ogni volta che il metodo <literal>hasPermission()</literal> viene chiamato, viene creato un oggetto, o <emphasis>Fatto</emphasis>, temporaneo <literal>PermissionCheck</literal>, e viene inserito nella working memory. Questo <literal>PermissionCheck</literal> corrisponde esattamente al permesso che si sta controllando, così, ad esempio, se viene chiamato <literal>hasPermission(\"account\", \"create\")</literal> allora verrà inserito nella working memory un oggetto <literal>PermissionCheck</literal> con <literal>target</literal> uguale a \"account\" e <literal>action</literal> uguale a \"create\", per la durata del controllo di permesso."
#. Tag: para
-#: Security.xml:3026
+#: Security.xml:3029
#, no-c-format
msgid "Besides the <literal>PermissionCheck</literal> facts, there is also a <literal>org.jboss.seam.security.Role</literal> fact for each of the roles that the authenticated user is a member of. These <literal>Role</literal> facts are synchronized with the user's authenticated roles at the beginning of every permission check. As a consequence, any <literal>Role</literal> object that is inserted into the working memory during the course of a permission check will be removed before the next permission check occurs, if the authenticated user is not actually a member of that role. Besides the <literal>PermissionCheck</literal> and <literal>Role</literal> facts, the working memory also contains the <literal>java.security.Principal</literal> object that was created as a result of the authentication process."
msgstr "Accanto al fatto <literal>PermissionCheck</literal> c'è anche un fatto <literal>org.jboss.seam.security.Role</literal> per ogni ruolo di cui l'utente autenticato è membro. Questi fatti <literal>Role</literal> sono sincronizzati con i ruoli dell'utente autenticato all'inizio di ogni controllo di permesso. Di conseguenza qualsiasi oggetto <literal>Role</literal> che venisse inserito nella working memory nel corso del controllo di permesso sarebbe rimosso prima che il controllo di permesso successivo avvenga, a meno che l'utente autenticato non sia effettivamente membro di quel ruolo. Insieme ai fatti <literal>PermissionCheck</literal> e <literal>Role</literal> la working memory contiene anche l'oggetto <literal>java.security.Principal</literal> che era stato creato come risultato del processo di autentifica."
#. Tag: para
-#: Security.xml:3037
+#: Security.xml:3040
#, no-c-format
msgid "It is also possible to insert additional long-lived facts into the working memory by calling <literal>RuleBasedPermissionResolver.instance().getSecurityContext().insert()</literal>, passing the object as a parameter. The exception to this is <literal>Role</literal> objects, which as already discussed are synchronized at the start of each permission check."
msgstr "E' anche possibile inserire ulteriori fatti nella working memory chiamando <literal>RuleBasedPermissionResolver.instance().getSecurityContext().insert()</literal>, passando l'oggetto come parametro. Fanno eccezione a questo gli oggetti <literal>Role</literal> che, come già detto, sono sincronizzati all'inizio di ciascun controllo di permesso."
#. Tag: para
-#: Security.xml:3044
+#: Security.xml:3047
#, no-c-format
msgid "Getting back to our simple example, we can also notice that the first line of our LHS is prefixed with <literal>c:</literal>. This is a variable binding, and is used to refer back to the object that is matched by the condition (in this case, the <literal>PermissionCheck</literal>). Moving on to the second line of our LHS, we see this:"
msgstr "Tornando al nostro esempio, possiamo anche notare che la prima linea della nostra parte sinistra ha il prefisso <literal>c:</literal>. Questa è una dichiarazione di variabile ed è usata per fare riferimento all'oggetto rilevato dalla condizione (in questo caso il <literal>PermissionCheck</literal>). Passando alla seconda linea della nostra parte sinistra vediamo questo:"
#. Tag: programlisting
-#: Security.xml:3051
+#: Security.xml:3054
#, no-c-format
msgid "<![CDATA[Role(name == \"admin\")]]>"
msgstr "<![CDATA[Role(name == \"admin\")]]>"
#. Tag: para
-#: Security.xml:3053
+#: Security.xml:3056
#, no-c-format
msgid "This condition simply states that there must be a <literal>Role</literal> object with a <literal>name</literal> of \"admin\" within the working memory. As already mentioned, user roles are inserted into the working memory at the beginning of each permission check. So, putting both conditions together, this rule is essentially saying \"I will fire if you are checking for the <literal>customer:delete</literal> permission and the user is a member of the <literal>admin</literal> role\"."
msgstr "Questa condizione dichiara semplicemente che ci deve essere un oggetto <literal>Role</literal> con un <literal>name</literal> uguale ad \"admin\" nella working memory. Come già menzionato, i ruoli dell'utente sono inseriti nella working memory all'inizio di ogni controllo di permesso. Così, mettendo insieme entrambe le condizioni, questa regola in pratica dice \"mi attiverò quando ci sarà un controllo per il permesso <literal>customer:delete</literal> e l'utente è un membro del ruolo <literal>admin</literal>\"."
#. Tag: para
-#: Security.xml:3061
+#: Security.xml:3064
#, no-c-format
msgid "So what is the consequence of the rule firing? Let's take a look at the RHS of the rule:"
msgstr "Quindi qual è la conseguenza dell'attivazione della regola? Diamo un'occhiata alla parte destra della regola:"
#. Tag: programlisting
-#: Security.xml:3065
+#: Security.xml:3068
#, no-c-format
msgid "<![CDATA[c.grant()]]>"
msgstr "<![CDATA[c.grant()]]>"
#. Tag: para
-#: Security.xml:3067
+#: Security.xml:3070
#, no-c-format
msgid "The RHS consists of Java code, and in this case is invoking the <literal>grant()</literal> method of the <literal>c</literal> object, which as already mentioned is a variable binding for the <literal>PermissionCheck</literal> object. Besides the <literal>name</literal> and <literal>action</literal> properties of the <literal>PermissionCheck</literal> object, there is also a <literal>granted</literal> property which is initially set to <literal>false</literal>. Calling <literal>grant()</literal> on a <literal>PermissionCheck</literal> sets the <literal>granted</literal> property to <literal>true</literal>, which means that the permission check was successful, allowing the user to carry out whatever action the permission check was intended for."
msgstr "La parte destra è costituita da codice Java e, in questo caso, esso invoca il metodo <literal>grant()</literal> dell'oggetto <literal>c</literal> il quale, come già detto, è una variabile che rappresenta l'oggetto <literal>PermissionCheck</literal>. Insieme alle proprietà <literal>name</literal> e <literal>action</literal>, nell'oggetto <literal>PermissionCheck</literal> c'è anche una proprietà <literal>granted</literal> che inizialmente è impostata a <literal>false</literal>. Chiamando <literal>grant()</literal> su un <literal>PermissionCheck</literal> la proprietà <literal>granted</literal> viene impostata a <literal>true</literal>, il che significa che il controllo di permesso è andato a buon fine, consentendo all'utente di portare avanti qualsiasi azione per cui il controlo di permesso era stato inteso."
#. Tag: title
-#: Security.xml:3081
+#: Security.xml:3084
#, no-c-format
msgid "Non-String permission targets"
msgstr "Permessi con obiettivi non stringa"
#. Tag: para
-#: Security.xml:3083
+#: Security.xml:3086
#, no-c-format
msgid "So far we have only seen permission checks for String-literal permission targets. It is of course also possible to write security rules for permission targets of more complex types. For example, let's say that you wish to write a security rule to allow your users to create blog comments. The following rule demonstrates how this may be expressed, by requiring the target of the permission check to be an instance of <literal>MemberBlog</literal>, and also requiring that the currently authenticated user is a member of the <literal>user</literal> role:"
msgstr "Finora abbiamo visto solo controlli di permesso per obiettivi di tipo stringa. E' naturalmente possibile scrivere regole di sicurezza anche per obiettivi del permesso di tipo più complesso. Ad esempio, supponiamo che si voglia scrivere una regola di sicurezza che consenta agli utenti di creare un commento in un blog. La seguente regola mostra come questo possa essere espresso, richiedendo che l'obiettivo del controllo di permesso sia un'istanza di <literal>MemberBlog</literal> e anche che l'utente correntemente autenticato sia un membro del ruolo <literal>user</literal>:"
#. Tag: programlisting
-#: Security.xml:3092
+#: Security.xml:3095
#, no-c-format
msgid ""
"<![CDATA[rule CanCreateBlogComment\n"
@@ -3995,19 +4001,19 @@
"]]>"
#. Tag: title
-#: Security.xml:3097
+#: Security.xml:3100
#, no-c-format
msgid "Wildcard permission checks"
msgstr "Controlli di permesso "
#. Tag: para
-#: Security.xml:3099
+#: Security.xml:3102
#, no-c-format
msgid "It is possible to implement a wildcard permission check (which allows all actions for a given permission target), by omitting the <literal>action</literal> constraint for the <literal>PermissionCheck</literal> in your rule, like this:"
msgstr "E' possibile realizzare dei controlli di permesso (che consentono l'accesso a tutte le funzioni per un determinato obiettivo) basati su wildcard omettendo il vincolo <literal>action</literal> per il <literal>PermissionCheck</literal> nella regola, in questo modo:"
#. Tag: programlisting
-#: Security.xml:3105
+#: Security.xml:3108
#, no-c-format
msgid ""
"<![CDATA[rule CanDoAnythingToCustomersIfYouAreAnAdmin\n"
@@ -4029,210 +4035,210 @@
" ]]>"
#. Tag: para
-#: Security.xml:3107
+#: Security.xml:3110
#, no-c-format
msgid "This rule allows users with the <literal>admin</literal> role to perform <emphasis>any</emphasis> action for any <literal>customer</literal> permission check."
msgstr "Questa regola consente agli utenti con il ruolo <literal>admin</literal> di eseguire <emphasis>qualsiasi</emphasis> azione per qualsiasi controllo di permesso su <literal>customer</literal>."
#. Tag: title
-#: Security.xml:3117
+#: Security.xml:3120
#, no-c-format
msgid "PersistentPermissionResolver"
msgstr "PersistentPermissionResolver"
#. Tag: para
-#: Security.xml:3119
+#: Security.xml:3122
#, no-c-format
msgid "Another built-in permission resolver provided by Seam, <literal>PersistentPermissionResolver</literal> allows permissions to be loaded from persistent storage, such as a relational database. This permission resolver provides ACL style instance-based security, allowing for specific object permissions to be assigned to individual users and roles. It also allows for persistent, arbitrarily-named permission targets (not necessarily object/class based) to be assigned in the same way."
msgstr "Un altro risolutore di permessi incluso in Seam, il <literal>PersistentPermissionResolver</literal> consente di caricare i permessi da un dispositivo di memorizzazione persistente, come una database relazionale. Questo risolutore di permessi fornisce una sicurezza orientata alle istanze in stile ACL (Access Control List), permettendo di assegnare specifici permessi sull'oggetto a utenti e ruoli. Allo stesso modo permette inoltre di assegnare in modo persistente permessi con un nome arbitrario (non necessariamente basato sull'oggetto o la classe). "
#. Tag: para
-#: Security.xml:3130
+#: Security.xml:3133
#, no-c-format
msgid "Before it can be used, <literal>PersistentPermissionResolver</literal> must be configured with a valid <literal>PermissionStore</literal> in <literal>components.xml</literal>. If not configured, it will attempt to use the default permission store, <literal>JpaIdentityStore</literal> (see section further down for details). To use a permission store other than the default, configure the <literal>permission-store</literal> property as follows:"
msgstr "Prima di essere usato il <literal>PersistentPermissionResolver</literal> deve essere configurato con un <literal>PermissionStore</literal> valido in <literal>components.xml</literal>. Se non è configurato, proverà ad usare il permission store di default, <literal>JpaIdentityStore</literal> (vedi il paragrafo successivo per i dettagli). Per usare un permission store diverso da quello di default, occorre configurare la proprietà <literal>permission-store</literal> in questo modo:"
#. Tag: programlisting
-#: Security.xml:3138
+#: Security.xml:3141
#, no-c-format
msgid "<![CDATA[ <security:persistent-permission-resolver permission-store=\"#{myCustomPermissionStore}\"/>]]>"
msgstr "<![CDATA[ <security:persistent-permission-resolver permission-store=\"#{myCustomPermissionStore}\"/>]]>"
#. Tag: title
-#: Security.xml:3143
+#: Security.xml:3146
#, no-c-format
msgid "Permission Stores"
msgstr "I Permission Store"
#. Tag: para
-#: Security.xml:3145
+#: Security.xml:3148
#, no-c-format
msgid "A permission store is required for <literal>PersistentPermissionResolver</literal> to connect to the backend storage where permissions are persisted. Seam provides one <literal>PermissionStore</literal> implementation out of the box, <literal>JpaPermissionStore</literal>, which is used to store permissions inside a relational database. It is possible to write your own permission store by implementing the <literal>PermissionStore</literal> interface, which defines the following methods:"
msgstr "Il <literal>PersistentPermissionManager</literal> richiede un permission store per connettersi al dispositivo di memorizzazione dove sono registrati i permessi. Seam fornisce una implementazione di <literal>PermissionStore</literal> già fatta, <literal>JpaPermissionStore</literal>, che viene usata per memorizzare i permessi in un database relazionale. E' possibile scrivere il proprio permission store implementando l'interfaccia <literal>PermissionStore</literal>, che definisce i seguenti metodi:"
#. Tag: title
-#: Security.xml:3155
+#: Security.xml:3158
#, no-c-format
msgid "PermissionStore interface"
msgstr "Interfaccia PermissionStore"
#. Tag: literal
-#: Security.xml:3181
-#: Security.xml:3200
-#: Security.xml:3219
-#: Security.xml:3802
-#: Security.xml:3821
+#: Security.xml:3184
+#: Security.xml:3203
+#: Security.xml:3222
+#: Security.xml:3805
+#: Security.xml:3824
#, no-c-format
msgid "List<Permission>"
msgstr "List<Permission>"
#. Tag: literal
-#: Security.xml:3186
-#: Security.xml:3826
+#: Security.xml:3189
+#: Security.xml:3829
#, no-c-format
msgid "listPermissions(Object target)"
msgstr "listPermissions(Object target)"
#. Tag: para
-#: Security.xml:3190
+#: Security.xml:3193
#, no-c-format
msgid "This method should return a <literal>List</literal> of <literal>Permission</literal> objects representing all the permissions granted for the specified target object."
msgstr "Questo metodo deve restituire una <literal>List</literal> di oggetti <literal>Permission</literal> che rappresenti tutti i permessi concessi per l'oggetto indicato come obiettivo."
#. Tag: literal
-#: Security.xml:3205
-#: Security.xml:3807
+#: Security.xml:3208
+#: Security.xml:3810
#, no-c-format
msgid "listPermissions(Object target, String action)"
msgstr "listPermissions(Object target, String action)"
#. Tag: para
-#: Security.xml:3209
+#: Security.xml:3212
#, no-c-format
msgid "This method should return a <literal>List</literal> of <literal>Permission</literal> objects representing all the permissions with the specified action, granted for the specified target object."
msgstr "Questo metodo deve restituire una <literal>List</literal> di oggetti <literal>Permission</literal> che rappresenti tutti i permessi sull'azione specificata, concessi per l'oggetto indicato come obiettivo."
#. Tag: literal
-#: Security.xml:3224
+#: Security.xml:3227
#, no-c-format
msgid "listPermissions(Set<Object> targets, String action)"
msgstr "listPermissions(Set<Object> targets, String action)"
#. Tag: para
-#: Security.xml:3228
+#: Security.xml:3231
#, no-c-format
msgid "This method should return a <literal>List</literal> of <literal>Permission</literal> objects representing all the permissions with the specified action, granted for the specified set of target objects."
msgstr "Questo metodo deve restituire una <literal>List</literal> di oggetti <literal>Permission</literal> che rappresenti tutti i permessi sull'azione specificata concessi per l'insieme di oggetti indicati come obiettivi."
#. Tag: literal
-#: Security.xml:3244
+#: Security.xml:3247
#, no-c-format
msgid "grantPermission(Permission)"
msgstr "grantPermission(Permission)"
#. Tag: para
-#: Security.xml:3248
+#: Security.xml:3251
#, no-c-format
msgid "This method should persist the specified <literal>Permission</literal> object to the backend storage, returning true if successful."
msgstr "Questo metodo deve rendere persistente l'oggetto <literal>Permission</literal> specificato nel dispositivo di memorizzazione, restituendo vero se l'operazione si conclude senza errori."
#. Tag: literal
-#: Security.xml:3263
-#: Security.xml:3864
+#: Security.xml:3266
+#: Security.xml:3867
#, no-c-format
msgid "grantPermissions(List<Permission> permissions)"
msgstr "grantPermissions(List<Permission> permissions)"
#. Tag: para
-#: Security.xml:3267
+#: Security.xml:3270
#, no-c-format
msgid "This method should persist all of the <literal>Permission</literal> objects contained in the specified <literal>List</literal>, returning true if successful."
msgstr "Questo metodo deve rendere persisistenti tutti gli oggetti <literal>Permission</literal> contenuti nella <literal>List</literal> specificata, restituendo vero se l'operazione si conclude senza errori."
#. Tag: literal
-#: Security.xml:3282
-#: Security.xml:3883
+#: Security.xml:3285
+#: Security.xml:3886
#, no-c-format
msgid "revokePermission(Permission permission)"
msgstr "revokePermission(Permission permission)"
#. Tag: para
-#: Security.xml:3286
+#: Security.xml:3289
#, no-c-format
msgid "This method should remove the specified <literal>Permission</literal> object from persistent storage."
msgstr "Questo metodo deve rimuove l'oggetto <literal>Permission</literal> specificato dal dispositivo di memorizzazione."
#. Tag: literal
-#: Security.xml:3300
-#: Security.xml:3902
+#: Security.xml:3303
+#: Security.xml:3905
#, no-c-format
msgid "revokePermissions(List<Permission> permissions)"
msgstr "revokePermissions(List<Permission> permissions)"
#. Tag: para
-#: Security.xml:3304
+#: Security.xml:3307
#, no-c-format
msgid "This method should remove all of the <literal>Permission</literal> objects in the specified list from persistent storage."
msgstr "Questo metodo deve rimuovere dal dispositivo di memorizzazione tutti gli oggetti <literal>Permission</literal> specificati nella lista."
#. Tag: literal
-#: Security.xml:3314
-#: Security.xml:3916
+#: Security.xml:3317
+#: Security.xml:3919
#, no-c-format
msgid "List<String>"
msgstr "List<String>"
#. Tag: literal
-#: Security.xml:3319
-#: Security.xml:3921
+#: Security.xml:3322
+#: Security.xml:3924
#, no-c-format
msgid "listAvailableActions(Object target)"
msgstr "listAvailableActions(Object target)"
#. Tag: para
-#: Security.xml:3323
+#: Security.xml:3326
#, no-c-format
msgid "This method should return a list of all the available actions (as Strings) for the class of the specified target object. It is used in conjunction with permission management to build the user interface for granting specific class permissions (see section further down)."
msgstr "Questo metodo deve restituire una lista di tutte le azioni disponibili (sotto forma di String) per la classe dell'oggetto specificato. Viene usato dalla gestione dei permessi per costruire l'interfaccia utente con cui si concedono i permessi sulle varie classi (vedi il paragrafo più avanti)."
#. Tag: title
-#: Security.xml:3337
+#: Security.xml:3340
#, no-c-format
msgid "JpaPermissionStore"
msgstr "JpaPermissionStore"
#. Tag: para
-#: Security.xml:3339
+#: Security.xml:3342
#, no-c-format
msgid "This is the default <literal>PermissionStore</literal> implementation (and the only one provided by Seam), which uses a relational database to store permissions. Before it can be used it must be configured with either one or two entity classes for storing user and role permissions. These entity classes must be annotated with a special set of security annotations to configure which properties of the entity correspond to various aspects of the permissions being stored."
msgstr "E' l'implementazione di default di <literal>PermissionStore</literal> (e l'unica fornita da Seam), che usa un database relazionale per memorizzare i permessi. Prima di poter essere usata deve essere configurata con una o due classi per la memorizzazione dei permessi su utenti e ruoli. Queste classi entità devono essere annotate con uno speciale insieme di annotazioni relative alla sicurezza per configurare quali proprietà dell'entità corrispondono alle diverse caratteristiche dei permessi che devono essere memorizzati."
#. Tag: para
-#: Security.xml:3347
+#: Security.xml:3350
#, no-c-format
msgid "If you wish to use the same entity (i.e. a single database table) to store both user and role permissions, then only the <literal>user-permission-class</literal> property is required to be configured. If you wish to use separate tables for storing user and role permissions, then in addition to the <literal>user-permission-class</literal> property you must also configure the <literal>role-permission-class</literal> property."
msgstr "Se si vuole usare la stessa entità (cioè una sola tabella sul database) per memorizzare sia i permessi degli utenti che quelli dei ruoli, allora è necessario configurare solo la proprietà <literal>user-permission-class</literal>. Se si vogliono usare due tabelle distinte per memorizzare i permessi degli utenti e quelli dei ruoli, allora in aggiunta alla proprietà <literal>user-permission-class</literal> si dovrà configurare anche la proprietà <literal>role-permission-class</literal>."
#. Tag: para
-#: Security.xml:3354
+#: Security.xml:3357
#, no-c-format
msgid "For example, to configure a single entity class to store both user and role permissions:"
msgstr "Ad esempio, per configurare una sola classe entità per memorizzare sia i permessi degli utenti che quelli dei ruoli:"
#. Tag: programlisting
-#: Security.xml:3356
+#: Security.xml:3359
#, no-c-format
msgid "<![CDATA[ <security:jpa-permission-store user-permission-class=\"com.acme.model.AccountPermission\"/>]]>"
msgstr "<![CDATA[ <security:jpa-permission-store user-permission-class=\"com.acme.model.AccountPermission\"/>]]>"
#. Tag: para
-#: Security.xml:3358
+#: Security.xml:3361
#, no-c-format
msgid "To configure separate entity classes for storing user and role permissions:"
msgstr "Per configurare classi entità separate per la memorizzazione dei permessi di utenti e ruoli:"
#. Tag: programlisting
-#: Security.xml:3360
+#: Security.xml:3363
#, no-c-format
msgid ""
"<![CDATA[ <security:jpa-permission-store user-permission-class=\"com.acme.model.UserPermission\"\n"
@@ -4242,120 +4248,120 @@
" role-permission-class=\"com.acme.model.RolePermission\"/>]]>"
#. Tag: title
-#: Security.xml:3363
+#: Security.xml:3366
#, no-c-format
msgid "Permission annotations"
msgstr "Annotazioni relative ai permessi"
#. Tag: para
-#: Security.xml:3365
+#: Security.xml:3368
#, no-c-format
msgid "As mentioned, the entity classes that contain the user and role permissions must be configured with a special set of annotations, contained within the <literal>org.jboss.seam.annotations.security.permission</literal> package. The following table lists each of these annotations along with a description of how they are used:"
msgstr "Come già detto, le classi entità che contengono i permessi degli utenti e dei ruoli devono essere configurate con uno speciale insieme di annotazioni contenute nel package <literal>org.jboss.seam.annotations.security.permission</literal>. La seguente tabella elenca queste annotazioni insieme ad una descrizione su come sono usate:"
#. Tag: title
-#: Security.xml:3372
+#: Security.xml:3375
#, no-c-format
msgid "Entity Permission annotations"
msgstr "Annotazioni per le entità dei permessi"
#. Tag: para
-#: Security.xml:3385
-#: Security.xml:3548
+#: Security.xml:3388
+#: Security.xml:3551
#, no-c-format
msgid "Target"
msgstr "Obiettivo"
#. Tag: literal
-#: Security.xml:3398
+#: Security.xml:3401
#, no-c-format
msgid "@PermissionTarget"
msgstr "@PermissionTarget"
#. Tag: literal
-#: Security.xml:3403
-#: Security.xml:3422
-#: Security.xml:3441
-#: Security.xml:3460
-#: Security.xml:3479
+#: Security.xml:3406
+#: Security.xml:3425
+#: Security.xml:3444
+#: Security.xml:3463
+#: Security.xml:3482
#, no-c-format
msgid "FIELD,METHOD"
msgstr "FIELD,METHOD"
#. Tag: para
-#: Security.xml:3407
+#: Security.xml:3410
#, no-c-format
msgid "This annotation identifies the property of the entity that will contain the permission target. The property should be of type <literal>java.lang.String</literal>."
msgstr "Questa annotazione identifica la proprietà dell'entità che contiene l'obiettivo del permesso. La proprietà deve essere di tipo <literal>java.lang.Sting</literal>."
#. Tag: literal
-#: Security.xml:3417
+#: Security.xml:3420
#, no-c-format
msgid "@PermissionAction"
msgstr "@PermissionAction"
#. Tag: para
-#: Security.xml:3426
+#: Security.xml:3429
#, no-c-format
msgid "This annotation identifies the property of the entity that will contain the permission action. The property should be of type <literal>java.lang.String</literal>."
msgstr "Questa annotazione identifica la proprietà dell'entità che contiene l'azione. La proprietà deve essere di tipo <literal>java.lang.String</literal>."
#. Tag: literal
-#: Security.xml:3436
+#: Security.xml:3439
#, no-c-format
msgid "@PermissionUser"
msgstr "@PermissionUser"
#. Tag: para
-#: Security.xml:3445
+#: Security.xml:3448
#, no-c-format
msgid "This annotation identifies the property of the entity that will contain the recipient user for the permission. It should be of type <literal>java.lang.String</literal> and contain the user's username."
msgstr "Questa annotazione identifica la proprietà dell'entità che contiene l'utente a cui viene concesso il permesso. Deve essere di tipo <literal>java.lang.String</literal> e contenere la username dell'utente."
#. Tag: literal
-#: Security.xml:3455
+#: Security.xml:3458
#, no-c-format
msgid "@PermissionRole"
msgstr "@PermissionRole"
#. Tag: para
-#: Security.xml:3464
+#: Security.xml:3467
#, no-c-format
msgid "This annotation identifies the property of the entity that will contain the recipient role for the permission. It should be of type <literal>java.lang.String</literal> and contain the role name."
msgstr "Questa annotazione identifica la proprietà dell'entità che contiene il ruolo a cui viene concesso il premesso. Deve essere di tipo <literal>java.lang.String</literal> e contenere i nome del ruolo."
#. Tag: literal
-#: Security.xml:3474
+#: Security.xml:3477
#, no-c-format
msgid "@PermissionDiscriminator"
msgstr "@PermissionDiscriminator"
#. Tag: para
-#: Security.xml:3483
+#: Security.xml:3486
#, no-c-format
msgid "This annotation should be used when the same entity/table is used to store both user and role permissions. It identifies the property of the entity that is used to discriminate between user and role permissions. By default, if the column value contains the string literal <literal>user</literal>, then the record will be treated as a user permission. If it contains the string literal <literal>role</literal>, then it will be treated as a role permission. It is also possible to override these defaults by specifying the <literal>userValue</literal> and <literal>roleValue</literal> properties within the annotation. For example, to use <literal>u</literal> and <literal>r</literal> instead of <literal>user</literal> and <literal>role</literal>, the annotation would be written like this:"
msgstr "Questa annotazione deve essere usata quando la stessa entità/tabella viene usata per memorizzare sia i permessi degli utenti che quelli dei ruoli. Essa identifica la proprietà dell'entità che è usata per discriminare tra i permessi degli utenti e quelli dei ruoli. Per default, se il valore della colonna contiene la stringa <literal>user</literal>, allora il record sarà trattato come un permesso utente. Se contiene la stringa <literal>role</literal>, allora sarà trattato come un permesso del ruolo. E' anche possibile sovrascrivere questi valori specificando le proprietà <literal>userValue</literal> e <literal>roleValue</literal> all'interno delle annotazioni. Ad esempio, per usere <literal>u</literal> e <literal>r</literal> invece di <literal>user</literal> e <literal>role</literal>, le annotazioni dovranno essere scritte in questo modo:"
#. Tag: programlisting
-#: Security.xml:3493
+#: Security.xml:3496
#, no-c-format
msgid "<![CDATA[ @PermissionDiscriminator(userValue = \"u\", roleValue = \"r\")]]>"
msgstr "<![CDATA[ @PermissionDiscriminator(userValue = \"u\", roleValue = \"r\")]]>"
#. Tag: title
-#: Security.xml:3504
+#: Security.xml:3507
#, no-c-format
msgid "Example Entity"
msgstr "Esempio di entità"
#. Tag: para
-#: Security.xml:3506
+#: Security.xml:3509
#, no-c-format
msgid "Here is an example of an entity class that is used to store both user and role permissions. The following class can be found inside the SeamSpace example:"
msgstr "Ecco un esempio di una classe entità che viene usata per memorizzare sia i permessi degli utenti che quelli dei ruoli. La seguente classe si trova nell'applicazione di esempio SeamSpace:"
#. Tag: programlisting
-#: Security.xml:3511
+#: Security.xml:3514
#, no-c-format
msgid ""
"<![CDATA[\n"
@@ -4471,68 +4477,68 @@
" ]]>"
#. Tag: para
-#: Security.xml:3513
+#: Security.xml:3516
#, no-c-format
msgid "As can be seen in the above example, the <literal>getDiscriminator()</literal> method has been annotated with the <literal>@PermissionDiscriminator</literal> annotation, to allow <literal>JpaPermissionStore</literal> to determine which records represent user permissions and which represent role permissions. In addition, it can also be seen that the <literal>getRecipient()</literal> method is annotated with both <literal>@PermissionUser</literal> and <literal>@PermissionRole</literal> annotations. This is perfectly valid, and simply means that the <literal>recipient</literal> property of the entity will either contain the name of the user or the name of the role, depending on the value of the <literal>discriminator</literal> property."
msgstr "Come si vede dall'esempio precedente, il metodo <literal>getDiscriminator()</literal> è stato annotato con l'annotazione <literal>@PermissionDiscriminator</literal> per consentire a <literal>JpaPermissionStore</literal> di determinare quali record rappresentano i permessi degli utenti e quali rappresentano i permessi dei ruoli. Inoltre si può vedere che il metodo <literal>getRecipient()</literal> è annotato sia con l'annotazione <literal>@PermissionUser</literal> che con <literal>@PermissionRole</literal>. Ciò è perfettamente valido e significa semplicemente che la proprietà <literal>recipient</literal> dell'entità conterrà sia il nome dell'utente che quello del ruolo, in funzione del valore della proprietà <literal>discriminator</literal>."
#. Tag: title
-#: Security.xml:3526
+#: Security.xml:3529
#, no-c-format
msgid "Class-specific Permission Configuration"
msgstr "Configurazioni dei permessi specifiche per le classi"
#. Tag: para
-#: Security.xml:3528
+#: Security.xml:3531
#, no-c-format
msgid "A further set of class-specific annotations can be used to configure a specific set of allowable permissions for a target class. These permissions can be found in the <literal>org.jboss.seam.annotation.security.permission</literal> package:"
msgstr "Un ulteriore insieme di annotazioni specifiche per le classi può essere usato per specificare i permessi consentiti per una determinata classe obiettivo. Questi permessi si possono trovare nel package <literal>org.jboss.seam.annotation.security.permission</literal>:"
#. Tag: title
-#: Security.xml:3535
+#: Security.xml:3538
#, no-c-format
msgid "Class Permission Annotations"
msgstr "Annotazioni per i permessi sulle classi"
#. Tag: literal
-#: Security.xml:3561
+#: Security.xml:3564
#, no-c-format
msgid "@Permissions"
msgstr "@Permissions"
#. Tag: literal
-#: Security.xml:3566
-#: Security.xml:3584
+#: Security.xml:3569
+#: Security.xml:3587
#, no-c-format
msgid "TYPE"
msgstr "TYPE"
#. Tag: para
-#: Security.xml:3570
+#: Security.xml:3573
#, no-c-format
msgid "A container annotation, this annotation may contain an array of <literal>@Permission</literal> annotations."
msgstr "E' una annotazione contenitore, che può contenere un elenco di annotazioni <literal>@Permission</literal>."
#. Tag: literal
-#: Security.xml:3579
+#: Security.xml:3582
#, no-c-format
msgid "@Permission"
msgstr "@Permission"
#. Tag: para
-#: Security.xml:3588
+#: Security.xml:3591
#, no-c-format
msgid "This annotation defines a single allowable permission action for the target class. Its <literal>action</literal> property must be specified, and an optional <literal>mask</literal> property may also be specified if permission actions are to be persisted as bitmasked values (see next section)."
msgstr "Questa annotazione definisce una singola azione regolata da un permesso per la classe obiettivo. La sua proprietà <literal>action</literal> deve essere specificata e una proprietà opzionale <literal>mask</literal> può essere specificata se le azioni regolate da un permesso devono essere memorizzate come valori di una maschera di bit (vedi il paragrafo seguente)."
#. Tag: para
-#: Security.xml:3600
+#: Security.xml:3603
#, no-c-format
msgid "Here's an example of the above annotations in action. The following class can also be found in the SeamSpace example:"
msgstr "Ecco un esempio di queste annotazioni al lavoro. La seguente classe si trova anch'essa nell'applicazione di esempio SeamSpace:"
#. Tag: programlisting
-#: Security.xml:3604
+#: Security.xml:3607
#, no-c-format
msgid ""
"<![CDATA[@Permissions({\n"
@@ -4550,31 +4556,31 @@
"public class MemberImage implements Serializable {]]>"
#. Tag: para
-#: Security.xml:3606
+#: Security.xml:3609
#, no-c-format
msgid "This example demonstrates how two allowable permission actions, <literal>view</literal> and <literal>comment</literal> can be declared for the entity class <literal>MemberImage</literal>."
msgstr "Questo esempio dimostra come due possibili azioni regolate da permesso, <literal>view</literal> e <literal>comment</literal> possono essere dichiarate per la classe entità <literal>MemberImage</literal>."
#. Tag: title
-#: Security.xml:3614
+#: Security.xml:3617
#, no-c-format
msgid "Permission masks"
msgstr "Maschere di bit per i permessi"
#. Tag: para
-#: Security.xml:3616
+#: Security.xml:3619
#, no-c-format
msgid "By default, multiple permissions for the same target object and recipient will be persisted as a single database record, with the <literal>action</literal> property/column containing a comma-separated list of the granted actions. To reduce the amount of physical storage required to persist a large number of permissions, it is possible to use a bitmasked integer value (instead of a comma-separated list) to store the list of permission actions."
msgstr "Per default più permessi per lo stesso obbiettivo e destinatario vengono memorizzati un singolo record sul database, con la proprietà/colonna <literal>action</literal> contenente un elenco delle azioni concesse separate da una virgola. Per ridurre la quantità di spazio fisico richiesto per memorizzare un numero elevato di permessi è possibile usare un valore intero come maschera di bit (al posto di un elenco di valori separati da virgole) per memorizzare l'elenco delle azioni consentite."
#. Tag: para
-#: Security.xml:3623
+#: Security.xml:3626
#, no-c-format
msgid "For example, if recipient \"Bob\" is granted both the <literal>view</literal> and <literal>comment</literal> permissions for a particular <literal>MemberImage</literal> (an entity bean) instance, then by default the <literal>action</literal> property of the permission entity will contain \"<literal>view,comment</literal>\", representing the two granted permission actions. Alternatively, if using bitmasked values for the permission actions, as defined like so:"
msgstr "Ad esempio, se al destinatario \"Pippo\" è concesso sia il permesso <literal>view</literal> che il permesso <literal>comment</literal> per una particolare istanza di <literal>MemberImage</literal> (un entity bean), allora per default la proprietà dell'entità permesso conterrà \"<literal>view,comment</literal>\", che rappresenta la concessione di due azioni. In alternativa, usando i valori di una maschera di bit per le azioni, si può definire in questo modo:"
#. Tag: programlisting
-#: Security.xml:3630
+#: Security.xml:3633
#, no-c-format
msgid ""
"<![CDATA[@Permissions({\n"
@@ -4592,37 +4598,37 @@
"public class MemberImage implements Serializable {]]>"
#. Tag: para
-#: Security.xml:3632
+#: Security.xml:3635
#, no-c-format
msgid "The <literal>action</literal> property will instead simply contain \"3\" (with both the 1 bit and 2 bit switched on). Obviously for a large number of allowable actions for any particular target class, the storage required for the permission records is greatly reduced by using bitmasked actions."
msgstr "La proprietà <literal>action</literal> conterrà semplicemente \"3\" (con sia il bit 1 che il bit 2 alzati). Ovviamente per un numero elevato di azioni da consentire per una particolare classe obiettivo, lo spazio richiesto per memorizzare i record dei permessi si riduce grandemente usando le azioni con la maschera di bit."
#. Tag: para
-#: Security.xml:3638
+#: Security.xml:3641
#, no-c-format
msgid "Obviously, it is very important that the <literal>mask</literal> values specified are powers of 2."
msgstr "E' molto importante che i valori assegnati a <literal>mask</literal> siano specificati come potenze di 2."
#. Tag: title
-#: Security.xml:3644
+#: Security.xml:3647
#, no-c-format
msgid "Identifier Policy"
msgstr "Risoluzione dell'identificatore"
#. Tag: para
-#: Security.xml:3646
+#: Security.xml:3649
#, no-c-format
msgid "When storing or looking up permissions, <literal>JpaPermissionStore</literal> must be able to uniquely identify specific object instances to effectively operate on its permissions. To achieve this, an <emphasis>identifier strategy</emphasis> may be assigned to each target class for the generation of unique identifier values. Each identifier strategy implementation knows how to generate unique identifiers for a particular type of class, and it is a simple matter to create new identifier strategies."
msgstr "Quando <literal>JpaPermissionStore</literal> memorizza o cerca un permesso deve essere in grado di identificare univocamente le istanze degli oggetti sui cui permessi deve operare. Per ottenere questo occorre assegnare una <emphasis>stragegia di risoluzione dell'identificatore</emphasis> per ciascuna classe obiettivo, in modo da generare i valori identificativi univoci. Ciascuna implementazione della strategia di risoluzione sa come genere gli identificativi univoci per un particolare tipo di classe ed è solo questione di creare nuove strategia di risoluzione."
#. Tag: para
-#: Security.xml:3654
+#: Security.xml:3657
#, no-c-format
msgid "The <literal>IdentifierStrategy</literal> interface is very simple, declaring only two methods:"
msgstr "L'interfaccia <literal>IdentifierStrategy</literal> è molto semplice e dichiara solo due metodi:"
#. Tag: programlisting
-#: Security.xml:3658
+#: Security.xml:3661
#, no-c-format
msgid ""
"<![CDATA[public interface IdentifierStrategy {\n"
@@ -4636,37 +4642,37 @@
"}]]>"
#. Tag: para
-#: Security.xml:3660
+#: Security.xml:3663
#, no-c-format
msgid "The first method, <literal>canIdentify()</literal> simply returns <literal>true</literal> if the identifier strategy is capable of generating a unique identifier for the specified target class. The second method, <literal>getIdentifier()</literal> returns the unique identifier value for the specified target object."
msgstr "Il primo metodo, <literal>canIdentify()</literal> restituisce semplicemente <literal>true</literal> se la strategia di risoluzione è in grado di generare un identificativo univoco per la classe obiettivo specificata. Il secondo metodo, <literal>getIdentifier()</literal> restituisce il valore dell'identificativo univoco per l'oggetto obiettivo specificato."
#. Tag: para
-#: Security.xml:3666
+#: Security.xml:3669
#, no-c-format
msgid "Seam provides two <literal>IdentifierStrategy</literal> implementations, <literal>ClassIdentifierStrategy</literal> and <literal>EntityIdentifierStrategy</literal> (see next sections for details)."
msgstr "Seam fornisce due implementazioni di <literal>IdentifierStrategy</literal>, <literal>ClassIdentifierStrategy</literal> e <literal>EntityIdentifierStrategy</literal> (vedi i prossimi paragrafi per i dettagli)."
#. Tag: para
-#: Security.xml:3671
+#: Security.xml:3674
#, no-c-format
msgid "To explicitly configure a specific identifier strategy to use for a particular class, it should be annotated with <literal>org.jboss.seam.annotations.security.permission.Identifier</literal>, and the value should be set to a concrete implementation of the <literal>IdentifierStrategy</literal> interface. An optional <literal>name</literal> property can also be specified, the effect of which is dependent upon the actual <literal>IdentifierStrategy</literal> implementation used."
msgstr "Per configurare esplicitamente la strategia di risoluzione da usare per una particolare classe, essa deve essere annotata con <literal>org.jboss.seam.annotations.security.permission.Identifier</literal>, e il valore deve essere impostato a una implementazione dell'interfaccia <literal>IdentifierStrategy</literal>. Una proprietà facoltativa <literal>name</literal> può essere specificata, e il suo effetto dipende dall'implementazione di <literal>IdentifierStrategy</literal> usata."
#. Tag: title
-#: Security.xml:3681
+#: Security.xml:3684
#, no-c-format
msgid "ClassIdentifierStrategy"
msgstr "ClassIdentifierStrategy"
#. Tag: para
-#: Security.xml:3683
+#: Security.xml:3686
#, no-c-format
msgid "This identifier strategy is used to generate unique identifiers for classes, and will use the value of the <literal>name</literal> (if specified) in the <literal>@Identifier</literal> annotation. If there is no <literal>name</literal> property provided, then it will attempt to use the component name of the class (if the class is a Seam component), or as a last resort it will create an identifier based on the name of the class (excluding the package name). For example, the identifier for the following class will be \"<literal>customer</literal>\":"
msgstr "Questa strategia di risoluzione degli identificatori è usata per generare gli identificatori univoci per le classi e userà il valore della proprietà <literal>name</literal> (se indicato) nell'annotazione <literal>@Identifier</literal>. Se la proprietà <literal>name</literal> non è indicata, allora tenterà di usare il nome del componente della classe (se la classe è un componente Seam), oppure, come ultima risorsa creerà un identificatore basato sul nome della classe (escludendo il nome del package). Ad esempio, l'identificatore per la seguente classe sarà \"<literal>customr</literal>\":"
#. Tag: programlisting
-#: Security.xml:3692
+#: Security.xml:3695
#, no-c-format
msgid ""
"<![CDATA[@Identifier(name = \"customer\")\n"
@@ -4676,13 +4682,13 @@
"public class Customer {]]>"
#. Tag: para
-#: Security.xml:3694
+#: Security.xml:3697
#, no-c-format
msgid "The identifier for the following class will be \"<literal>customerAction</literal>\":"
msgstr "L'identificatore per la seguente classe sarà \"<literal>customerAction</literal>\":"
#. Tag: programlisting
-#: Security.xml:3698
+#: Security.xml:3701
#, no-c-format
msgid ""
"<![CDATA[@Name(\"customerAction\")\n"
@@ -4692,31 +4698,31 @@
"public class CustomerAction { ]]>"
#. Tag: para
-#: Security.xml:3700
+#: Security.xml:3703
#, no-c-format
msgid "Finally, the identifier for the following class will be \"<literal>Customer</literal>\":"
msgstr "Infine, l'identificatore per la seguente classe sarà \"<literal>Customer</literal>\":"
#. Tag: programlisting
-#: Security.xml:3704
+#: Security.xml:3707
#, no-c-format
msgid "<![CDATA[public class Customer { ]]>"
msgstr "<![CDATA[public class Customer { ]]>"
#. Tag: title
-#: Security.xml:3709
+#: Security.xml:3712
#, no-c-format
msgid "EntityIdentifierStrategy"
msgstr "EntityIdentifierStrategy"
#. Tag: para
-#: Security.xml:3711
+#: Security.xml:3714
#, no-c-format
msgid "This identifier strategy is used to generate unique identifiers for entity beans. It does so by concatenating the entity name (or otherwise configured name) with a string representation of the primary key value of the entity. The rules for generating the name section of the identifier are similar to <literal>ClassIdentifierStrategy</literal>. The primary key value (i.e. the <emphasis>id</emphasis> of the entity) is obtained using the <literal>PersistenceProvider</literal> component, which is able to correctly determine the value regardless of which persistence implementation is used within the Seam application. For entities not annotated with <literal>@Entity</literal>, it is necessary to explicitly configure the identifier strategy on the entity class itself, for example:"
msgstr "Questa strategia di risoluzione è usata per generare valori di identificatori univoci per gli entity bean. Quello che fa è concatenare il nome dell'entità (o un nome configurato in altro modo) con una stringa che rappresenta la chiave primaria dell'entità. Le regole per generare la parte nome dell'identificatore sono simili a <literal>ClassIdentifierStrategy</literal>. La chiave primaria (cioè l'<emphasis>id</emphasis> dell'entità) viene ottenuto usando il componente <literal>PersistenceProvider</literal>, che è in grado di determinarne il valore a prescindere dall'implementazione della persistenza utilizzata dall'applicazione Seam. Per le entità non annotate con <literal>@Entity</literal> è necessario configurare esplicitamente la strategia di risoluzione dell'identificatore nella classe entità stessa, ad esempio:"
#. Tag: programlisting
-#: Security.xml:3722
+#: Security.xml:3725
#, no-c-format
msgid ""
"<![CDATA[@Identifier(value = EntityIdentifierStrategy.class)\n"
@@ -4726,13 +4732,13 @@
"public class Customer { ]]>"
#. Tag: para
-#: Security.xml:3724
+#: Security.xml:3727
#, no-c-format
msgid "For an example of the type of identifier values generated, assume we have the following entity class:"
msgstr "Per avere un esempio del tipo di valori di identificatore generati, supponiamo di avere la seguente classe entità:"
#. Tag: programlisting
-#: Security.xml:3728
+#: Security.xml:3731
#, no-c-format
msgid ""
"<![CDATA[@Entity\n"
@@ -4770,13 +4776,13 @@
"}]]>"
#. Tag: para
-#: Security.xml:3730
+#: Security.xml:3733
#, no-c-format
msgid "For a <literal>Customer</literal> instance with an <literal>id</literal> value of <literal>1</literal>, the value of the identifier would be \"<literal>Customer:1</literal>\". If the entity class is annotated with an explicit identifier name, like so:"
msgstr "Per una istanza di <literal>Customer</literal> con un valore di <literal>id</literal> pari a <literal>1</literal>, il valore dell'identificatore sarà \"<literal>Customer:1</literal>\". Se l'entità è annotata con un nome esplicito di identificatore, come questo:"
#. Tag: programlisting
-#: Security.xml:3736
+#: Security.xml:3739
#, no-c-format
msgid ""
"<![CDATA[@Entity\n"
@@ -4788,37 +4794,37 @@
"public class Customer { ]]>"
#. Tag: para
-#: Security.xml:3738
+#: Security.xml:3741
#, no-c-format
msgid "Then a <literal>Customer</literal> with an <literal>id</literal> value of <literal>123</literal> would have an identifier value of \"<literal>cust:123</literal>\"."
msgstr "Allora un <literal>Customer</literal> con un <literal>id</literal> pari a <literal>123</literal> avrà come identificatore \"<literal>cust:123</literal>\"."
#. Tag: title
-#: Security.xml:3751
+#: Security.xml:3754
#, no-c-format
msgid "Permission Management"
msgstr "Gestione dei permessi"
#. Tag: para
-#: Security.xml:3753
+#: Security.xml:3756
#, no-c-format
msgid "In much the same way that Seam Security provides an Identity Management API for the management of users and roles, it also provides a Permissions Management API for the management of persistent user permissions, via the <literal>PermissionManager</literal> component."
msgstr "In modo del tutto simile a come la sicurezza di Seam fornisce una API per la gestione delle identità per gestire utenti e ruoli, essa fornisce anche una API per la gestione dei permessi, tramite il componente <literal>PermissionManager</literal>."
#. Tag: title
-#: Security.xml:3760
+#: Security.xml:3763
#, no-c-format
msgid "PermissionManager"
msgstr "PermissionManager"
#. Tag: para
-#: Security.xml:3762
+#: Security.xml:3765
#, no-c-format
msgid "The <literal>PermissionManager</literal> component is an application-scoped Seam component that provides a number of methods for managing permissions. Before it can be used, it must be configured with a permission store (although by default it will attempt to use <literal>JpaPermissionStore</literal> if it is available). To explicitly configure a custom permission store, specify the <literal>permission-store</literal> property in components.xml:"
msgstr "Il componente <literal>PermissionManager</literal> è un componente Seam registrato a livello application che fornisce una serie di metodi per gestire i permessi. Prima di poter essere usato deve essere configurato con un permission store (benché per default tenterà di usare il <literal>JpaPermissionStore</literal> se disponibile). Per configurare esplicitamente un permission store personalizzato, occore specificare la proprietà <literal>permission-store</literal> in components.xml:"
#. Tag: programlisting
-#: Security.xml:3769
+#: Security.xml:3772
#, no-c-format
msgid ""
"<![CDATA[\n"
@@ -4830,242 +4836,242 @@
" ]]>"
#. Tag: para
-#: Security.xml:3771
+#: Security.xml:3774
#, no-c-format
msgid "The following table describes each of the available methods provided by <literal>PermissionManager</literal>:"
msgstr "La seguente tabella descrive ciascuno dei metodi disponibili forniti da <literal>PermissionManager</literal>:"
#. Tag: title
-#: Security.xml:3776
+#: Security.xml:3779
#, no-c-format
msgid "PermissionManager API methods"
msgstr "Metodi della API PermissionManager"
#. Tag: para
-#: Security.xml:3811
-#: Security.xml:3830
+#: Security.xml:3814
+#: Security.xml:3833
#, no-c-format
msgid "Returns a list of <literal>Permission</literal> objects representing all of the permissions that have been granted for the specified target and action."
msgstr "Restituisce un elenco di oggetti <literal>Permession</literal> che rappresenta tutti i permessi che sono stati concessi all'obiettivo e all'azione specificata."
#. Tag: literal
-#: Security.xml:3845
+#: Security.xml:3848
#, no-c-format
msgid "grantPermission(Permission permission)"
msgstr "grantPermission(Permission permission)"
#. Tag: para
-#: Security.xml:3849
+#: Security.xml:3852
#, no-c-format
msgid "Persists (grants) the specified <literal>Permission</literal> to the backend permission store. Returns true if the operation was successful."
msgstr "Memorizza (concede) il <literal>Permission</literal> specificato nel permission store sottostante. Restituisce true se l'operazione si è conclusa con esito positivo."
#. Tag: para
-#: Security.xml:3868
+#: Security.xml:3871
#, no-c-format
msgid "Persists (grants) the specified list of <literal>Permission</literal>s to the backend permission store. Returns true if the operation was successful."
msgstr "Memorizza (concede) l'elenco di <literal>Permission</literal> specificato nel permission store sottostante. Restiuisce true se l'operazione si è conclusa con esito positivo."
#. Tag: para
-#: Security.xml:3887
+#: Security.xml:3890
#, no-c-format
msgid "Removes (revokes) the specified <literal>Permission</literal> from the backend permission store. Returns true if the operation was successful."
msgstr "Rimuove (revoca) il <literal>Permission</literal> specificato dal permission store sottostante. Restituisce true se l'operazione si è conclusa con esito positivo."
#. Tag: para
-#: Security.xml:3906
+#: Security.xml:3909
#, no-c-format
msgid "Removes (revokes) the specified list of <literal>Permission</literal>s from the backend permission store. Returns true if the operation was successful."
msgstr "Rimuove (revoca) l'elenco di <literal>Permission</literal> specificato dal permission store sottostante. Restituisce true se l'operazione si è conclusa con esito positivo."
#. Tag: para
-#: Security.xml:3925
+#: Security.xml:3928
#, no-c-format
msgid "Returns a list of the available actions for the specified target object. The actions that this method returns are dependent on the <literal>@Permission</literal> annotations configured on the target object's class."
msgstr "Restituisce un elenco delle azioni disponibili per l'oggetto obiettivo specificato. Le azioni che questo metodo restituisce dipendono dall'annotazione <literal>@Permission</literal> configurata nella classe dell'oggetto obiettivo."
#. Tag: title
-#: Security.xml:3940
+#: Security.xml:3943
#, no-c-format
msgid "Permission checks for PermissionManager operations"
msgstr "Verifica dei permessi sulle operazioni di PermissionManager"
#. Tag: para
-#: Security.xml:3942
+#: Security.xml:3945
#, no-c-format
msgid "Invoking the methods of <literal>PermissionManager</literal> requires that the currently-authenticated user has the appropriate authorization to perform that management operation. The following table lists the required permissions that the current user must have."
msgstr "Per chiamare un metodo di <literal>PermissionManager</literal> è richiesto che l'utente correntemente autenticato abbia le autorizzazioni appropriate per eseguire quella operazione di gestione. La seguente tabella elenca i permessi richiesti che l'utente corrente deve avere."
#. Tag: title
-#: Security.xml:3949
+#: Security.xml:3952
#, no-c-format
msgid "Permission Management Security Permissions"
msgstr "Permessi per la gestione dei permessi"
#. Tag: literal
-#: Security.xml:3973
+#: Security.xml:3976
#, no-c-format
msgid "listPermissions()"
msgstr "listPermissions()"
#. Tag: para
-#: Security.xml:3977
+#: Security.xml:3980
#, no-c-format
msgid "The specified <literal>target</literal>"
msgstr "L'<literal>obiettivo</literal> specificato"
#. Tag: literal
-#: Security.xml:3983
+#: Security.xml:3986
#, no-c-format
msgid "seam.read-permissions"
msgstr "seam.read-permissions"
#. Tag: literal
-#: Security.xml:3991
-#: Security.xml:4011
+#: Security.xml:3994
+#: Security.xml:4014
#, no-c-format
msgid "grantPermission()"
msgstr "grantPermission()"
#. Tag: para
-#: Security.xml:3995
+#: Security.xml:3998
#, no-c-format
msgid "The target of the specified <literal>Permission</literal>, or each of the targets for the specified list of <literal>Permission</literal>s (depending on which method is called)."
msgstr "L'obiettivo del <literal>Permission</literal> specificato, oppure ciascuno degli obiettivi dell'elenco specificato di <literal>Permission</literal> (in funzione di quale metodo viene chiamato)."
#. Tag: literal
-#: Security.xml:4003
-#: Security.xml:4021
-#: Security.xml:4039
+#: Security.xml:4006
+#: Security.xml:4024
+#: Security.xml:4042
#, no-c-format
msgid "seam.grant-permission"
msgstr "seam.grant-permission"
#. Tag: para
-#: Security.xml:4015
-#: Security.xml:4051
+#: Security.xml:4018
+#: Security.xml:4054
#, no-c-format
msgid "The target of the specified <literal>Permission</literal>."
msgstr "L'obiettivo del <literal>Permission</literal> specificato."
#. Tag: literal
-#: Security.xml:4029
+#: Security.xml:4032
#, no-c-format
msgid "grantPermissions()"
msgstr "grantPermissions()"
#. Tag: para
-#: Security.xml:4033
-#: Security.xml:4069
+#: Security.xml:4036
+#: Security.xml:4072
#, no-c-format
msgid "Each of the targets of the specified list of <literal>Permission</literal>s."
msgstr "Ciascuno degli obiettivi dell'elenco di <literal>Permission</literal> specificato."
#. Tag: literal
-#: Security.xml:4047
+#: Security.xml:4050
#, no-c-format
msgid "revokePermission()"
msgstr "revokePermission()"
#. Tag: literal
-#: Security.xml:4057
-#: Security.xml:4075
+#: Security.xml:4060
+#: Security.xml:4078
#, no-c-format
msgid "seam.revoke-permission"
msgstr "seam.revoke-permission"
#. Tag: literal
-#: Security.xml:4065
+#: Security.xml:4068
#, no-c-format
msgid "revokePermissions()"
msgstr "revokePermissions()"
#. Tag: title
-#: Security.xml:4088
+#: Security.xml:4091
#, no-c-format
msgid "SSL Security"
msgstr "Sicurezza SSL"
#. Tag: para
-#: Security.xml:4090
+#: Security.xml:4093
#, no-c-format
msgid "Seam includes basic support for serving sensitive pages via the HTTPS protocol. This is easily configured by specifying a <literal>scheme</literal> for the page in <literal>pages.xml</literal>. The following example shows how the view <literal>/login.xhtml</literal> is configured to use HTTPS:"
msgstr "Seam include un supporto di base per servire le pagine sensibili tramite il protocollo HTTPS. Si configura facilmente specificando uno <literal>scheme</literal> per la pagina in <literal>pages.xml</literal>. Il seguente esempio mostra come la pagina <literal>/login.xhtml</literal> è configurata per usare HTTPS:"
#. Tag: programlisting
-#: Security.xml:4097
+#: Security.xml:4100
#, no-c-format
msgid "<![CDATA[<page view-id=\"/login.xhtml\" scheme=\"https\"/>]]>"
msgstr "<![CDATA[<page view-id=\"/login.xhtml\" scheme=\"https\"/>]]>"
#. Tag: para
-#: Security.xml:4099
+#: Security.xml:4102
#, no-c-format
msgid "This configuration is automatically extended to both <literal>s:link</literal> and <literal>s:button</literal> JSF controls, which (when specifying the <literal>view</literal>) will also render the link using the correct protocol. Based on the previous example, the following link will use the HTTPS protocol because <literal>/login.xhtml</literal> is configured to use it:"
msgstr "Questa configurazione viene automaticamente estesa ai controlli JSF <literal>s:link</literal> e <literal>s:button</literal>, i quali (quando viene specificata la <literal>view</literal>) faranno in modo che venga prodotto il link usando il protocollo corretto. In base al precedente esempio, il seguente link userà il protocollo HTTPS, perché <literal>/login.xhtml</literal> è configurata per usarlo:"
#. Tag: programlisting
-#: Security.xml:4106
+#: Security.xml:4109
#, no-c-format
msgid "<![CDATA[<s:link view=\"/login.xhtml\" value=\"Login\"/>]]>"
msgstr "<![CDATA[<s:link view=\"/login.xhtml\" value=\"Login\"/>]]>"
#. Tag: para
-#: Security.xml:4108
+#: Security.xml:4111
#, no-c-format
msgid "Browsing directly to a view when using the <emphasis>incorrect</emphasis> protocol will cause a redirect to the same view using the <emphasis>correct</emphasis> protocol. For example, browsing to a page that has <literal>scheme=\"https\"</literal> using HTTP will cause a redirect to the same page using HTTPS."
msgstr "Navigando direttamente sulla pagina mentre si usa il protocollo <emphasis>non corretto</emphasis> causerà una redirezione alla stessa pagina usando il protocollo <emphasis>corretto</emphasis>. Ad esempio, navigando su una pagina che ha <literal>scheme=\"https\"</literal> usando HTTP causerà una redirezione alla stessa pagina usando HTTPS."
#. Tag: para
-#: Security.xml:4115
+#: Security.xml:4118
#, no-c-format
msgid "It is also possible to configure a <emphasis>default scheme</emphasis> for all pages. This is useful if you wish to use HTTPS for a only few pages. If no default scheme is specified then the normal behavior is to continue use the current scheme. So once the user accessed a page that required HTTPS, then HTTPS would continue to be used after the user navigated away to other non-HTTPS pages. (While this is good for security, it is not so great for performance!). To define HTTP as the default <literal>scheme</literal>, add this line to <literal>pages.xml</literal>:"
msgstr "E' anche possibile configurare un <emphasis>default scheme</emphasis> per tutte le pagine. Questo è utile se si vuole usare HTTPS solo per alcune pagine. Se non è indicato un default scheme, allora il comportamento normale è di continuare ad usare lo schema correntemente usato. Perciò una volta che l'utente ha fatto l'accesso ad una pagina che richiede HTTPS, allora HTTPS continuerà ad essere usato dopo che l'utente si sposta su altre pagine non HTTPS. (Mentre questo è buono per la sicurezza, non lo è per le prestazioni!). Per definire HTTP come <literal>default scheme</literal>, aggiungere questa riga a <literal>pages.xml</literal>:"
#. Tag: programlisting
-#: Security.xml:4124
+#: Security.xml:4127
#, no-c-format
msgid "<![CDATA[<page view-id=\"*\" scheme=\"http\" />]]>"
msgstr "<![CDATA[<page view-id=\"*\" scheme=\"http\" />]]>"
#. Tag: para
-#: Security.xml:4126
+#: Security.xml:4129
#, no-c-format
msgid "Of course, if <emphasis>none</emphasis> of the pages in your application use HTTPS then it is not required to specify a default scheme."
msgstr "Chiaramente, se <emphasis>nessuna</emphasis> delle pagine dell'applicazione usa HTTPS allora non è richiesto di specificare alcun default scheme."
#. Tag: para
-#: Security.xml:4131
+#: Security.xml:4134
#, no-c-format
msgid "You may configure Seam to automatically invalidate the current HTTP session each time the scheme changes. Just add this line to <literal>components.xml</literal>:"
msgstr "E' possibile configurare Seam per invalidare automaticamente la sessione HTTP ogni volta che lo schema cambia. Basta aggiungere questa riga a <literal>components.xml</literal>:"
#. Tag: programlisting
-#: Security.xml:4136
+#: Security.xml:4139
#, no-c-format
msgid "<![CDATA[<web:session invalidate-on-scheme-change=\"true\"/>]]>"
msgstr "<![CDATA[<web:session invalidate-on-scheme-change=\"true\"/>]]>"
#. Tag: para
-#: Security.xml:4138
+#: Security.xml:4141
#, no-c-format
msgid "This option helps make your system less vulnerable to sniffing of the session id or leakage of sensitive data from pages using HTTPS to other pages using HTTP."
msgstr "Questa opzione aiuta nel rendere il sistema meno vulnerabile alle intromissioni che rilevano l'id di sessione o alla mancanza di protezione su dati sensibili dalle pagine che usano HTTPS ad altre che usano HTTP."
#. Tag: title
-#: Security.xml:4144
+#: Security.xml:4147
#, no-c-format
msgid "Overriding the default ports"
msgstr "Modificare le porte di default"
#. Tag: para
-#: Security.xml:4146
+#: Security.xml:4149
#, no-c-format
msgid "If you wish to configure the HTTP and HTTPS ports manually, they may be configured in <literal>pages.xml</literal> by specifying the <literal>http-port</literal> and <literal>https-port</literal> attributes on the <literal>pages</literal> element:"
msgstr "Se si vogliono configurare manualmente le porte HTTP e HTTPS, queste possono essere configurate in <literal>pages.xml</literal> specificando gli attributi <literal>http-port</literal> e <literal>https-port</literal> nell'elemento <literal>pages</literal>:"
#. Tag: programlisting
-#: Security.xml:4152
+#: Security.xml:4155
#, no-c-format
msgid ""
"<![CDATA[\n"
@@ -5089,31 +5095,31 @@
" ]]>"
#. Tag: title
-#: Security.xml:4158
+#: Security.xml:4161
#, no-c-format
msgid "CAPTCHA"
msgstr "CAPTCHA"
#. Tag: para
-#: Security.xml:4160
+#: Security.xml:4163
#, no-c-format
msgid "Though strictly not part of the security API, Seam provides a built-in CAPTCHA (<emphasis>C</emphasis>ompletely <emphasis>A</emphasis>utomated <emphasis>P</emphasis>ublic <emphasis>T</emphasis>uring test to tell <emphasis>C</emphasis>omputers and <emphasis>H</emphasis>umans <emphasis>A</emphasis>part) algorithm to prevent automated processes from interacting with your application."
msgstr "Sebbene non faccia strettamente parte delle API di sicurezza, Seam fornisce un algoritmo CAPTCHA (<emphasis>C</emphasis>ompletely <emphasis>A</emphasis>utomated <emphasis>P</emphasis>ublic <emphasis>T</emphasis>uring test to tell <emphasis>C</emphasis>omputer and <emphasis>H</emphasis>umans <emphasis>A</emphasis>part, test di Turing publico completamente automatico per distinguere gli umani dalle macchine) già fatto per prevenire l'interazione con l'applicazione da parte di procedure automatiche."
#. Tag: title
-#: Security.xml:4168
+#: Security.xml:4171
#, no-c-format
msgid "Configuring the CAPTCHA Servlet"
msgstr "Configurare la servlet CAPTCHA"
#. Tag: para
-#: Security.xml:4169
+#: Security.xml:4172
#, no-c-format
msgid "To get up and running, it is necessary to configure the Seam Resource Servlet, which will provide the Captcha challenge images to your pages. This requires the following entry in <literal>web.xml</literal>:"
msgstr "Per partire è necessario configurare la Seam Resource Servlet, che fornirà l'immagine CAPTCHA da risolvere nella pagina. Questo richiede la seguente voce in <literal>web.xml</literal>:"
#. Tag: programlisting
-#: Security.xml:4174
+#: Security.xml:4177
#, no-c-format
msgid ""
"<![CDATA[<servlet>\n"
@@ -5137,19 +5143,19 @@
"</servlet-mapping>]]>"
#. Tag: title
-#: Security.xml:4179
+#: Security.xml:4182
#, no-c-format
msgid "Adding a CAPTCHA to a form"
msgstr "Aggiungere un CAPTCHA ad una form"
#. Tag: para
-#: Security.xml:4181
+#: Security.xml:4184
#, no-c-format
msgid "Adding a CAPTCHA challenge to a form is extremely easy. Here's an example:"
msgstr "Aggiungere una verifica CAPTCHA ad una form è estremamente facile. Ecco un esempio:"
#. Tag: programlisting
-#: Security.xml:4185
+#: Security.xml:4188
#, no-c-format
msgid ""
"<![CDATA[<h:graphicImage value=\"/seam/resource/captcha\"/>\n"
@@ -5165,25 +5171,25 @@
"<h:message for=\"verifyCaptcha\"/>]]>"
#. Tag: para
-#: Security.xml:4187
+#: Security.xml:4190
#, no-c-format
msgid "That's all there is to it. The <literal>graphicImage</literal> control displays the CAPTCHA challenge, and the <literal>inputText</literal> receives the user's response. The response is automatically validated against the CAPTCHA when the form is submitted."
msgstr "Questo è tutto. Il controllo <literal>graphicImage</literal> mostra l'immagine CAPTCHA e <literal>inputText</literal> riceve la risposta dell'utente. La risposta viene automaticamente validata con il CAPTCHA quando la form viene inviata."
#. Tag: title
-#: Security.xml:4196
+#: Security.xml:4199
#, no-c-format
msgid "Customising the CAPTCHA algorithm"
msgstr "Personalizzare l'algoritmo CAPTCHA"
#. Tag: para
-#: Security.xml:4198
+#: Security.xml:4201
#, no-c-format
msgid "You may customize the CAPTCHA algorithm by overriding the built-in component:"
msgstr "E' possibile personalizzare l'algoritmo CAPTCHA sovrascrivendo il componente già fatto:"
#. Tag: programlisting
-#: Security.xml:4202
+#: Security.xml:4205
#, no-c-format
msgid ""
"<![CDATA[@Name(\"org.jboss.seam.captcha.captcha\")\n"
@@ -5227,164 +5233,164 @@
"}]]>"
#. Tag: title
-#: Security.xml:4209
-#: Security.xml:4217
+#: Security.xml:4212
+#: Security.xml:4220
#, no-c-format
msgid "Security Events"
msgstr "Eventi della sicurezza"
#. Tag: para
-#: Security.xml:4211
+#: Security.xml:4214
#, no-c-format
msgid "The following table describes a number of events (see <xref linkend=\"events\"/>) raised by Seam Security in response to certain security-related events."
msgstr "La seguente tabella descrive una serie di eventi (vedi <xref linkend=\"events\"/>) lanciati dalla sicurezza di Seam in corrispondenza di determinati eventi relativi alla sicurezza."
#. Tag: para
-#: Security.xml:4226
+#: Security.xml:4229
#, no-c-format
msgid "Event Key"
msgstr "Nome dell'evento"
#. Tag: literal
-#: Security.xml:4239
+#: Security.xml:4242
#, no-c-format
msgid "org.jboss.seam.security.loginSuccessful"
msgstr "org.jboss.seam.security.loginSuccessful"
#. Tag: para
-#: Security.xml:4243
+#: Security.xml:4246
#, no-c-format
msgid "Raised when a login attempt is successful."
msgstr "Lanciato quando un tentativo di login è stato completato con esito positivo."
#. Tag: literal
-#: Security.xml:4251
+#: Security.xml:4254
#, no-c-format
msgid "org.jboss.seam.security.loginFailed"
msgstr "org.jboss.seam.security.loginFailed"
#. Tag: para
-#: Security.xml:4255
+#: Security.xml:4258
#, no-c-format
msgid "Raised when a login attempt fails."
msgstr "Lanciato quando un tentativo di login è fallito."
#. Tag: literal
-#: Security.xml:4263
+#: Security.xml:4266
#, no-c-format
msgid "org.jboss.seam.security.alreadyLoggedIn"
msgstr "org.jboss.seam.security.alreadyLoggedIn"
#. Tag: para
-#: Security.xml:4267
+#: Security.xml:4270
#, no-c-format
msgid "Raised when a user that is already authenticated attempts to log in again."
msgstr "Lanciato quando un utente che ha già fatto il login, tenta di fare il login di nuovo."
#. Tag: literal
-#: Security.xml:4275
+#: Security.xml:4278
#, no-c-format
msgid "org.jboss.seam.security.notLoggedIn"
msgstr "org.jboss.seam.security.notLoggedIn"
#. Tag: para
-#: Security.xml:4279
+#: Security.xml:4282
#, no-c-format
msgid "Raised when a security check fails when the user is not logged in."
msgstr "Lanciato quando una verifica di sicurezza fallisce in quanto l'utente non ha fatto il login."
#. Tag: literal
-#: Security.xml:4287
+#: Security.xml:4290
#, no-c-format
msgid "org.jboss.seam.security.notAuthorized"
msgstr "org.jboss.seam.security.notAuthorized"
#. Tag: para
-#: Security.xml:4291
+#: Security.xml:4294
#, no-c-format
msgid "Raised when a security check fails when the user is logged in however doesn't have sufficient privileges."
msgstr "Lanciato quando una verifica di sicurezza fallisce in quanto l'utente ha fatto il login ma non ha i privilegi richiesti."
#. Tag: literal
-#: Security.xml:4299
+#: Security.xml:4302
#, no-c-format
msgid "org.jboss.seam.security.preAuthenticate"
msgstr "org.jboss.seam.security.preAuthenticate"
#. Tag: para
-#: Security.xml:4303
+#: Security.xml:4306
#, no-c-format
msgid "Raised just prior to user authentication."
msgstr "Lanciato subito prima l'autenticazione dell'utente."
#. Tag: literal
-#: Security.xml:4311
+#: Security.xml:4314
#, no-c-format
msgid "org.jboss.seam.security.postAuthenticate"
msgstr "org.jboss.seam.security.postAuthenticate"
#. Tag: para
-#: Security.xml:4315
+#: Security.xml:4318
#, no-c-format
msgid "Raised just after user authentication."
msgstr "Lanciato subito dopo l'autenticazione dell'utente."
#. Tag: literal
-#: Security.xml:4323
+#: Security.xml:4326
#, no-c-format
msgid "org.jboss.seam.security.loggedOut"
msgstr "org.jboss.seam.security.loggedOut"
#. Tag: para
-#: Security.xml:4327
+#: Security.xml:4330
#, no-c-format
msgid "Raised after the user has logged out."
msgstr "Lanciato dopo che l'utente ha fatto un logout."
#. Tag: literal
-#: Security.xml:4335
+#: Security.xml:4338
#, no-c-format
msgid "org.jboss.seam.security.credentialsUpdated"
msgstr "org.jboss.seam.security.credentialsUpdated"
#. Tag: para
-#: Security.xml:4339
+#: Security.xml:4342
#, no-c-format
msgid "Raised when the user's credentials have been changed."
msgstr "Lanciato quando le credenziali dell'utente vengono cambiate."
#. Tag: literal
-#: Security.xml:4347
+#: Security.xml:4350
#, no-c-format
msgid "org.jboss.seam.security.rememberMe"
msgstr "org.jboss.seam.security.rememberMe"
#. Tag: para
-#: Security.xml:4351
+#: Security.xml:4354
#, no-c-format
msgid "Raised when the Identity's rememberMe property is changed."
msgstr "Lanciato quando la proprietà RememberMe di Identity viene modificata."
#. Tag: title
-#: Security.xml:4364
+#: Security.xml:4367
#, no-c-format
msgid "Run As"
msgstr "Run As"
#. Tag: para
-#: Security.xml:4366
+#: Security.xml:4369
#, no-c-format
msgid "Sometimes it may be necessary to perform certain operations with elevated privileges, such as creating a new user account as an unauthenticated user. Seam Security supports such a mechanism via the <literal>RunAsOperation</literal> class. This class allows either the <literal>Principal</literal> or <literal>Subject</literal>, or the user's roles to be overridden for a single set of operations."
msgstr "A volte può essere necessario eseguire determinate operazioni con dei privilegi più elevati, come creare un nuovo utente da parte di un utente non autenticato. La sicurezza di Seam gestisce un tale meccanismo tramite la classe <literal>RunAsOperation</literal>. Questa classe consente sia al <literal>Principal</literal> o al <literal>Subject</literal>, che ai ruoli dell'utente di essere sovrascritti per un singolo insieme di operazioni."
#. Tag: para
-#: Security.xml:4374
+#: Security.xml:4377
#, no-c-format
msgid "The following code example demonstrates how <literal>RunAsOperation</literal> is used, by calling its <literal>addRole()</literal> method to provide a set of roles to masquerade as for the duration of the operation. The <literal>execute()</literal> method contains the code that will be executed with the elevated privileges."
msgstr "Il seguente codice di esempio mostra come viene usato <literal>RunAsOperation</literal>, chiamando il suo metodo <literal>addRole()</literal> per fornire un insieme di ruoli fittizi solo per la durata dell'operazione. Il metodo <literal>execute()</literal> contiene il codice che verrà eseguito con i privilegi aggiuntivi."
#. Tag: programlisting
-#: Security.xml:4381
+#: Security.xml:4384
#, no-c-format
msgid ""
"<![CDATA[ new RunAsOperation() { \n"
@@ -5402,25 +5408,25 @@
" .run();]]>"
#. Tag: para
-#: Security.xml:4383
+#: Security.xml:4386
#, no-c-format
msgid "In a similar way, the <literal>getPrincipal()</literal> or <literal>getSubject()</literal> methods can also be overriden to specify the <literal>Principal</literal> and <literal>Subject</literal> instances to use for the duration of the operation. Finally, the <literal>run()</literal> method is used to carry out the <literal>RunAsOperation</literal>."
msgstr "In modo analogo, i metodi <literal>getPrincipal()</literal> o <literal>getSubject()</literal> possono anch'essi essere sovrascritti per specificare le istanze di <literal>Principal</literal> e <literal>Subject</literal> da usare per la durata dell'operazione. Infine, il metodo <literal>run()</literal> è usato per eseguire la <literal>RunAsOperation</literal>."
#. Tag: title
-#: Security.xml:4394
+#: Security.xml:4397
#, no-c-format
msgid "Extending the Identity component"
msgstr "Estendere il componente Identity"
#. Tag: para
-#: Security.xml:4396
+#: Security.xml:4399
#, no-c-format
msgid "Sometimes it might be necessary to extend the Identity component if your application has special security requirements. The following example (contrived, as credentials would normally be handled by the <literal>Credentials</literal> component instead) shows an extended Identity component with an additional <literal>companyCode</literal> field. The install precendence of <literal>APPLICATION</literal> ensures that this extended Identity gets installed in preference to the built-in Identity."
msgstr "A volte può essere necessario estendere il componente Identity se l'applicazione ha particolari requisiti di sicurezza. Il seguente esempio (fatto di proposito, dato che le credenziali sarebbero normalmente gestite dal componente <literal>Credentials</literal>) mostra un componente Identity esteso con un campo <literal>companyCode</literal> aggiuntivo. La precendenza di installazione impostata a <literal>APPLICATION</literal> assicura che questo Identity esteso venga installato al posto dell'Identity originale."
#. Tag: programlisting
-#: Security.xml:4404
+#: Security.xml:4407
#, no-c-format
msgid ""
"<![CDATA[@Name(\"org.jboss.seam.security.identity\")\n"
@@ -5482,55 +5488,55 @@
"}]]>"
#. Tag: para
-#: Security.xml:4407
+#: Security.xml:4410
#, no-c-format
msgid "Note that an <literal>Identity</literal> component must be marked <literal>@Startup</literal>, so that it is available immediately after the <literal>SESSION</literal> context begins. Failing to do this may render certain Seam functionality inoperable in your application."
msgstr "Notare che un componente <literal>Identity</literal> deve essere marcato <literal>@Startup</literal>, in modo che sia disponibile immediatamente dopo l'inizio del contesto <literal>SESSION</literal>. La mancanza di questo dettaglio renderebbe non utilizzabili determinate funzionalità di Seam nell'applicazione."
#. Tag: title
-#: Security.xml:4419
+#: Security.xml:4422
#, no-c-format
msgid "OpenID"
msgstr "OpenID"
#. Tag: para
-#: Security.xml:4421
+#: Security.xml:4424
#, no-c-format
msgid "OpenID is a community standard for external web-based authentication. The basic idea is that any web application can supplement (or replace) its local handling of authentication by delegating responsibility to an external OpenID server of the user's chosing. This benefits the user, who no longer has to remember a name and password for every web application he uses, and the developer, who is relieved of some of the burden of maintaining a complex authentication system."
msgstr "OpenID è un standard comune per l'autenticazione esterna sul web. L'idea fondamentale è che qualsiasi applicazione web possa integrare (o sostituire) la sua gestione locale dell'autenticazione delegandone la responsabilità ad un server OpenID esterno scelto dall'utente. Questo va a beneficio dell'utente che non deve più ricordare un nome e una password per ogni applicazione web che usa, e dello sviluppatore, che viene sollevato di un po' di problemi nel manutenere un complesso sistema di autenticazione."
#. Tag: para
-#: Security.xml:4430
+#: Security.xml:4433
#, no-c-format
msgid "When using OpenID, the user selects an OpenID provider, and the provider assigns the user an OpenID. The id will take the form of a URL, for example <literal>http://maximoburrito.myopenid.com</literal> however, it's acceptable to leave off the <literal>http://</literal> part of the identifier when logging into a site. The web application (known as a relying party in OpenID-speak) determines which OpenID server to contact and redirects the user to the remote site for authentication. Upon successful authentication the user is given the (cryptographically secure) token proving his identity and is redirected back to the original web application.The local web application can then be sure the user accessing the application controls the OpenID he presented."
msgstr "Quando si usa OpenID, l'utente sceglie un fornitore OpenID, e il fornitore OpenID assegna all'utente un OpenID. Questo id prende la forma di un URL, ad esempio <literal>http://grandepizza.myopenid.com</literal>, comunque è accettabile trascurare la parte <literal>http://</literal> dell'identificativo quando si fa il login ad un sito. L'applicazione web (detta relying party in termini OpenID) determina quale server OpenID deve contattare e redirige l'utente a quel sito per l'autenticazione. Dopo essersi autenticato con esito positivo, all'utente viene fornito un codice (crittograficamente sicuro) che prova la sua identità e viene rediretto di nuovo all'applicazione web originale. L'applicazione web locale può essere quindi sicura che l'utente che sta accedendo è il proprietario dell'OpenID che aveva fornito."
#. Tag: para
-#: Security.xml:4439
+#: Security.xml:4442
#, no-c-format
msgid "It's important to realize at this point that authentication does not imply authorization. The web application still needs to make a determination of how to use that information. The web application could treat the user as instantly logged in and give full access to the system or it could try and map the presented OpenID to a local user account, prompting the user to register if he hasn't already. The choice of how to handle the OpenID is left as a design decision for the local application."
msgstr "E' importante rendersi conto, a questo punto, che l'autenticazione non implica l'autorizzazione. L'applicazione web ha ancora bisogno di fare delle determinazioni su come usare quell'informazione. L'applicazione web potrebbe trattare l'utente come immediatamente autenticato e dargli/le pieno accesso al sistema, oppure potrebbe tentare di associare l'OpenID fornito ad un utente locale, chiedendo all'utente di registrarsi se non l'ha già fatto. La scelta su come gestire l'OpenID è lasciata ad una decisione progettuale dell'applicazione locale."
#. Tag: title
-#: Security.xml:4449
+#: Security.xml:4452
#, no-c-format
msgid "Configuring OpenID"
msgstr "Configurare OpenID"
#. Tag: para
-#: Security.xml:4450
+#: Security.xml:4453
#, no-c-format
msgid "Seam uses the openid4java package and requires four additional JARs to make use of the Seam integration. These are: <literal>htmlparser.jar</literal>, <literal>openid4java.jar</literal>, <literal>openxri-client.jar</literal> and <literal>openxri-syntax.jar</literal>."
msgstr "Seam usa il pacchetto openid4java e richiede quattro JAR aggiuntivi per usare l'integrazione Seam. Essi sono: <literal>htmlparser.jar</literal>, <literal>openid4java.jar</literal>, <literal>openxri-client.jar</literal> e <literal>openxri-syntax.jar</literal>."
#. Tag: para
-#: Security.xml:4456
+#: Security.xml:4459
#, no-c-format
msgid "OpenID processing requires the use of the <literal>OpenIdPhaseListener</literal>, which should be added to your <literal>faces-config.xml</literal> file. The phase listener processes the callback from the OpenID provider, allowing re-entry into the local application."
msgstr "L'elaborazione di OpenID richiede l'uso di <literal>OpenIdPhaseListener</literal>, che deve essere aggiunto al file <literal>faces-config.xml</literal>. Il phase listener elabora le chiamate dal fornitore OpenID, consentendo di rientrare nell'applicazione locale."
#. Tag: programlisting
-#: Security.xml:4462
+#: Security.xml:4465
#, no-c-format
msgid ""
"<lifecycle>\n"
@@ -5542,25 +5548,25 @@
"</lifecycle>"
#. Tag: para
-#: Security.xml:4465
+#: Security.xml:4468
#, no-c-format
msgid "With this configuration, OpenID support is available to your application. The OpenID support component, <literal>org.jboss.seam.security.openid.openid</literal>, is installed automatically if the openid4java classes are on the classpath."
msgstr "Con questa configurazione il supporto OpenID è disponibile nell'applicazione. Il componente per il supporto OpenID, <literal>org.jboss.seam.security.openid.openid</literal>, viene installato automaticamente se le classi openid4java sono nel classpath."
#. Tag: title
-#: Security.xml:4473
+#: Security.xml:4476
#, no-c-format
msgid "Presenting an OpenIdDLogin form"
msgstr "Persentare una form di login OpenID"
#. Tag: para
-#: Security.xml:4475
+#: Security.xml:4478
#, no-c-format
msgid "To initiate an OpenID login, you can present a simply form to the user asking for the user's OpenID. The <literal>#{openid.id}</literal> value accepts the user's OpenID and the <literal>#{openid.login}</literal> action initiates an authentication request."
msgstr "Per iniziare un login con OpenID occorre presentare una semplice form che chieda all'utente il suo OpenID. Il valore <literal>#{openid.id}</literal> accetta l'OpenID dell'utente e l'azione <literal>#{openid.login]</literal> inizia la richiesta di autenticazione."
#. Tag: programlisting
-#: Security.xml:4480
+#: Security.xml:4483
#, no-c-format
msgid ""
"<h:form>\n"
@@ -5574,25 +5580,25 @@
"</h:form>"
#. Tag: para
-#: Security.xml:4482
+#: Security.xml:4485
#, no-c-format
msgid "When the user submits the login form, he will be redirected to his OpenID provider. The user will eventually return to your application through the Seam pseudo-view <literal>/openid.xhtml</literal>, which is provided by the <literal>OpenIdPhaseListener</literal>. Your application can handle the OpenID response by means of a <literal>pages.xml</literal> navigation from that view, just as if the user had never left your application."
msgstr "Quando l'utente invia la form di login, viene rediretto al suo fornitore OpenID. L'utente torna infine all'applicazione tramite la pseudo pagina Seam <literal>/openid.xhtml</literal>, che è fornita dal <literal>OpenIdPhaseListener</literal>. L'applicazione può gestire la risposta OpenID per mezzo della navigazione indicata in <literal>pages.xml</literal> per quella pagina, proprio come se l'utente non avesse mai lasciato l'applicazione."
#. Tag: title
-#: Security.xml:4491
+#: Security.xml:4494
#, no-c-format
msgid "Logging in immediately"
msgstr "Eseguire il login immediatamente"
#. Tag: para
-#: Security.xml:4493
+#: Security.xml:4496
#, no-c-format
msgid "The simplest strategy is to simply login the user immediately. The following navigation rule shows how to handle this using the <literal>#{openid.loginImmediately()}</literal> action."
msgstr "La strategia più semplice è di eseguire immediatamente il login dell'utente. La seguente regola di navigazione mostra come gestire questa modalità usando l'azione <literal>#{openid.loginImmediately()}</literal>."
#. Tag: programlisting
-#: Security.xml:4497
+#: Security.xml:4500
#, no-c-format
msgid ""
"<page view-id="/openid.xhtml">\n"
@@ -5626,37 +5632,37 @@
"</page>"
#. Tag: para
-#: Security.xml:4499
+#: Security.xml:4502
#, no-c-format
msgid "Thie <literal>loginImmediately()</literal> action checks to see if the OpenID is valid. If it is valid, it adds an OpenIDPrincipal to the identity component, marks the user as logged in (i.e. <literal>#{identity.loggedIn}</literal> will be true) and returns true. If the OpenID was not validated, the method returns false, and the user re-enters the application un-authenticated. If the user's OpenID is valid, it will be accessible using the expression <literal>#{openid.validatedId}</literal> and <literal>#{openid.valid}</literal> will be true."
msgstr "L'azione <literal>loginImmediately()</literal> controlla per vedere se l'OpenID è valido. Se è valido, aggiunge un OpenIDPrincipal al componente identity, marca l'utente come loggedin (cioè <literal>#{identity.loggedIn}</literal> sarà true) e restituisce true. Se l'OpenID non è stato validato, il metodo restituisce false, e l'utente rientra nell'applicazione non autenticato. se l'OpenID dell'utente è valido, esso sarà accessibile usando l'espressione <literal>#{openid.validatedId}</literal> e <literal>#{openid.valid}</literal> sarà true."
#. Tag: title
-#: Security.xml:4510
+#: Security.xml:4513
#, no-c-format
msgid "Deferring login"
msgstr "Rimandare il login"
#. Tag: para
-#: Security.xml:4512
+#: Security.xml:4515
#, no-c-format
msgid "You may not want the user to be immediately logged in to your application. In that case, your navigation should check the <literal>#{openid.valid}</literal> property and redirect the user to a local registration or processing page. Actions you might take would be asking for more information and creating a local user account or presenting a captcha to avoid programmatic registrations. When you are done processing, if you want to log the user in, you can call the <literal>loginImmediately</literal> method, either through EL as shown previously or by directly interaction with the <literal>org.jboss.seam.security.openid.OpenId</literal> component. Of course, nothing prevents you from writing custom code to interact with the Seam identity component on your own for even more customized behaviour."
msgstr "Si può desiderare di non autenticare immediatamente l'utente nell'applicazione. In questo caso la navigazione dovrò controllare la proprietà <literal>#{openid.valid}</literal> e redirigere l'utente ad una pagina per la registrazione o l'elaborazione dell'utente. Le azioni che si possono prendere sono di chiedere maggiori informazioni e creare un utente locale, oppure presentare un CAPTCHA per evitare registrazioni da programmi automatici. Quando questa elaborazione è terminata, se si vuole autenticare l'utente è possibile chiamare il metodo <literal>loginImmediately</literal>, sia tramite EL come mostrato in precedenza, sia interagendo direttamento con il componente <literal>org.jboss.seam.security.openid.OpenId</literal>. Ovviamente niente impedisce di scrivere da soli del codice personalizzato per interagire con il componente Seam Identity per avere un comportamento più personalizzato."
#. Tag: title
-#: Security.xml:4526
+#: Security.xml:4529
#, no-c-format
msgid "Logging out"
msgstr "Log out"
#. Tag: para
-#: Security.xml:4528
+#: Security.xml:4531
#, no-c-format
msgid "Logging out (forgetting an OpenID association) is done by calling <literal>#{openid.logout}</literal>. If you are not using Seam security, you can call this method directly. If you are using Seam security, you should continue to use <literal>#{identity.logout}</literal> and install an event handler to capture the logout event, calling the OpenID logout method."
msgstr "Il log out (dimenticando l'associazione OpenID) viene fatto chiamando <literal>#{openid.logout}</literal>. Se non si sta usando la sicurezza Seam è possibile chiamare questo metodo direttamente. Se si sta usando la sicurezza Seam occorre continuare ad usare <literal>#{identity.logout}</literal> e installare un gestore di eventi per catturare l'evento logout, chiamando il metodo logout di OpenID."
#. Tag: programlisting
-#: Security.xml:4535
+#: Security.xml:4538
#, no-c-format
msgid ""
"<event type="org.jboss.seam.security.loggedOut">\n"
@@ -5668,7 +5674,7 @@
"</event>"
#. Tag: para
-#: Security.xml:4537
+#: Security.xml:4540
#, no-c-format
msgid "It's important that you do not leave this out or the user will not be able to login again in the same session."
msgstr "E' importante non trascurare questo punto altrimenti l'utente non sarà più in grado di eseguire nuovamente il login nella stessa sessione."
15 years, 5 months
Seam SVN: r11124 - branches/community/Seam_2_2/seam-gen.
by seam-commits@lists.jboss.org
Author: jguglielmin
Date: 2009-06-11 16:28:05 -0400 (Thu, 11 Jun 2009)
New Revision: 11124
Modified:
branches/community/Seam_2_2/seam-gen/build.xml
Log:
JBSEAM-4198 update to ICEfaces-1.8.1
Modified: branches/community/Seam_2_2/seam-gen/build.xml
===================================================================
--- branches/community/Seam_2_2/seam-gen/build.xml 2009-06-11 19:31:18 UTC (rev 11123)
+++ branches/community/Seam_2_2/seam-gen/build.xml 2009-06-11 20:28:05 UTC (rev 11124)
@@ -819,13 +819,13 @@
<target name="copy-icefaces-maven" if="icefaces.property" unless="icefaces.lib.property">
<artifact:dependencies filesetId="icefaces.fileset" versionsId="icefaces.versions">
- <dependency groupId="org.icefaces" artifactId="icefaces" version="1.8.0">
+ <dependency groupId="org.icefaces" artifactId="icefaces" version="1.8.1">
<exclusion groupId="javax.el" artifactId="el-api"/>
</dependency>
- <dependency groupId="org.icefaces" artifactId="icefaces-comps" version="1.8.0">
+ <dependency groupId="org.icefaces" artifactId="icefaces-comps" version="1.8.1">
<exclusion groupId="javax.el" artifactId="el-api"/>
</dependency>
- <dependency groupId="org.icefaces" artifactId="icefaces-facelets" version="1.8.0">
+ <dependency groupId="org.icefaces" artifactId="icefaces-facelets" version="1.8.1">
<exclusion groupId="javax.el" artifactId="el-api"/>
</dependency>
<remoteRepository refId="repository.jboss.org"/>
15 years, 5 months
Seam SVN: r11123 - branches/community/Seam_2_2/examples/icefaces.
by seam-commits@lists.jboss.org
Author: jguglielmin
Date: 2009-06-11 15:31:18 -0400 (Thu, 11 Jun 2009)
New Revision: 11123
Modified:
branches/community/Seam_2_2/examples/icefaces/build.xml
Log:
JBSEAM-4198 update to ICEfaces-1.8.1
Modified: branches/community/Seam_2_2/examples/icefaces/build.xml
===================================================================
--- branches/community/Seam_2_2/examples/icefaces/build.xml 2009-06-11 15:51:35 UTC (rev 11122)
+++ branches/community/Seam_2_2/examples/icefaces/build.xml 2009-06-11 19:31:18 UTC (rev 11123)
@@ -27,13 +27,13 @@
<target name="copyextradependencies">
<artifact:dependencies filesetId="icefaces.fileset" versionsId="icefaces.versions">
- <dependency groupId="org.icefaces" artifactId="icefaces" version="1.8.0">
+ <dependency groupId="org.icefaces" artifactId="icefaces" version="1.8.1">
<exclusion groupId="javax.el" artifactId="el-api" />
</dependency>
- <dependency groupId="org.icefaces" artifactId="icefaces-comps" version="1.8.0">
+ <dependency groupId="org.icefaces" artifactId="icefaces-comps" version="1.8.1">
<exclusion groupId="javax.el" artifactId="el-api" />
</dependency>
- <dependency groupId="org.icefaces" artifactId="icefaces-facelets" version="1.8.0">
+ <dependency groupId="org.icefaces" artifactId="icefaces-facelets" version="1.8.1">
<exclusion groupId="javax.el" artifactId="el-api" />
</dependency>
<remoteRepository refId="repository.jboss.org" />
15 years, 5 months