Java EJB 3.0 UML Profile
Group items matching
in title, tags, annotations or urlMaven - External Resources on Maven - 0 views
12More
UML Profile Diagrams Examples - 0 views
-
Java 1.3, EJB 1.1 and most likely UML 1.4, so it could be only of some interest
- ...8 more annotations...
7More
7. Logging - Confluence - 0 views
-
If you need other logging implementation support, you may extend the org.granite.logging.Logger abstract class and register your custom logger with the org.granite.logger.impl system property:
-
<category name="org.granite.messaging.webapp.AMFMessageServlet"> <priority value="DEBUG" /> </category>
- ...2 more annotations...
30More
Mirror/deltaspike at master · DeltaSpike/Mirror · GitHub - 0 views
1More
Security subsystem configuration - JBoss AS 7.1 - Project Documentation Editor - 0 views
11More
Java Persistence/Querying - Wikibooks, open books for an open world - 0 views
-
When a native SQL query returns objects, the SQL must ensure it returns the correct data to build the resultClass using the correct column names as specified in the mappings. If the SQL is more complex and returns different column names, or returns data for multiple objects then a @SqlResultSetMapping must be used.
- ...7 more annotations...
-
@SqlResultSetMapping(name="employee-address", entities={ @EntityResult(entityClass=Employee.class), @EntityResult(entityClass=Address.class)} )
2More
Realm | Apache Shiro - 0 views
-
A Realm is a component that can access application-specific security data such as users, roles, and permissions. The Realm translates this application-specific data into a format that Shiro understands so Shiro can in turn provide a single easy-to-understand Subject programming API no matter how many data sources exist or how application-specific your data might be.
6More
The New RBAC: Resource-Based Access Control | Stormpath - 0 views
2More
Admin Guide - JBoss AS 7.1 - Project Documentation Editor - 0 views
3More
10. MXML & AS3 Web Compiler - Confluence - 0 views
-
GraniteDS comes with a powerful MXML/ActionScript3 compiler you may deploy in your servlet container. This servlet will compile your MXML code on the fly each time you have modified it and return a SWF
-
-
only exists under the 2.2.0GA files listing: http://sourceforge.net/projects/granite/files/granite/granite-2.2.0%20GA/
-
54More
Architecture | Apache Shiro - 0 views
- ...51 more annotations...
-
When you interact with a Subject, those interactions translate to subject-specific interactions with the SecurityManager
-
'umbrella’ object that coordinates its internal security components that together form an object graph
-
Shiro has the ability to natively manage user Sessions in any environment, even if there is no Web/Servlet or EJB container available
41More
Security Module Drafts - Apache DeltaSpike - Apache Software Foundation - 0 views
-
Impersonalization
-
authenticates “as a user” or access application imitating his identity - without knowing his password
- ...36 more annotations...
-
assign permissions to individual objects within the application’s business domain
-
Events LoggedInEvent LoginFailedEvent AlreadyLoggedInEvent PreLoggedOutEvent PostLoggedOutEvent PreAuthenticateEvent PostAuthenticateEvent
-
control which elements of the user interface are displayed to the user based on their assigned permissions
17More
shared by kuni katsuya on 14 Jun 12
- No Cached
JPA Reference Guide - JBoss AS 7.0 - Project Documentation Editor - 0 views
docs.jboss.org/...JPA+Reference+Guide
jbossas7 jpa reference documentation persistence-unit jpaprovider

-
Should be hibernate3-bundled if Hibernate 3 jars are in the application archive (adapterModule and adapterClass will automatically be set for hibernate3-bundled).
- ...14 more annotations...
-
“org.jboss.as.jpa” logging can be enabled to get the following information: INFO - when persistence.xml has been parsed, starting of persistence unit service (per deployed persistence.xml), stopping of persistence unit service DEBUG - informs about entity managers being injected, creating/reusing transaction scoped entity manager for active transaction TRACE - shows how long each entity manager operation took in milliseconds, application searches for a persistence unit, parsing of persistence.xml
-
To enable TRACE, open the as/standalone/configuration/standalone.xml (or as/domain/configuration/domain.xml) file. Search for <subsystem xmlns="urn:jboss:domain:logging:1.0"> and add the org.jboss.as.jpa category
-
Applications can share the same Hibernate3 (for Hibernate 3.5 or greater) persistence provider by manually creating an org.hibernate:3 module (in the AS/modules folder). Steps to create the Hibernate3 module:
17More
Testing | Apache Shiro - 0 views
- ...14 more annotations...
-
and that Subject instances are always bound to a thread to ensure we know who is executing logic at any time during the thread's execution