Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "Riena/BaseConcepts"

(New page: === Base concepts === ; Injecting Services and Extensions : Services and Extensions are the building blocks of Eclipse R...)
 
 
(5 intermediate revisions by one other user not shown)
Line 1: Line 1:
 +
{{#eclipseproject:rt.riena}}
 +
 
=== Base concepts ===
 
=== Base concepts ===
 
; [[Riena/Getting_Started_with_injecting_services_and_extensions | Injecting Services and Extensions ]]
 
; [[Riena/Getting_Started_with_injecting_services_and_extensions | Injecting Services and Extensions ]]
Line 30: Line 32:
 
: Tool to check if all Remote Services are available.
 
: Tool to check if all Remote Services are available.
  
=== User Interface (UI) concepts ===
+
; [[Riena_System_Properties | Riena System Properties]]
 +
: System Properties used in Riena.
 +
 
  
; [[Riena/Navigation | Navigation]] : How to configure and use Riena's navigation model.
+
[[Category:Riena]]
; [[Riena/Look_and_Feel| Look&Feel]] : Central location to configure the fonts, colors and other Riena specific settings.
+
[[Category:EclipseRT]]
; [[Riena/Snippets | Ridget code snippets]] : Small examples that teach you how to use Ridgets (=Riena Widgets)
+
; [[Riena/UI_filters| UI Filters]] : Hide parts of your application declaratively.
+
; [[Riena/Login_support| Login support]] : Providing an application with a login dialog/view.
+
; [[Riena/Custom_Ridgets| Use Custom Ridgets]] : Making and using custom ridgets for your application.
+
; [[Riena/Detached_Views| Riena Detached Views]] : How to easily open 'auxilary' views when a certain navigation node is selected.
+
; [[Riena/Key_Bindings| Riena Key Bindings]] : How to add your own key bindings to Riena using standard extension points, and lists the default key bindings.
+
; [[Riena/RAP_Support | Riena on RAP]] : How to run Riena on the Rich Ajax Platform (RAP).
+

Latest revision as of 04:32, 21 December 2011

{{#eclipseproject:rt.riena}}

Base concepts

Injecting Services and Extensions
Services and Extensions are the building blocks of Eclipse RCP applications. Riena's lightweight and programmatic approach of injecting services and extensions eases component development and testing. (Episode II: Getting Started with Wiring )
Remote Services - Getting Started
How standard OSGi Services can be published as webservice endpoints and how they can then be consumed by a client.
Security
Introduces the distributed/remote concept to JAAS and allows processing client login on the server. Also facilitates making the current Subject (a container for Principals) available on the client and on the server thread where remote service calls are processed.
Object Transactions
Object Transactions are a base technology to track changes in large object nets. They can be used to reduce bandwidth usage between client and server by transmitting only properties that have changed since the initial loading of the object net.
Stages
Developing, testing, running and maintaining client/server applications require more than a monolithic environment setup. Stages are Riena's approach to deal with that.
Client Monitoring
Delivering up-to-date information of the health and usage of a client application to the operators/developers.
Controller Tests
Testing the logic of a SubModuleController.
Riena Core
Learn about Riena's support for core functionality like writing files to disk (RienaLocations), using Log4j with Riena, useful utility classes etc.
Riena Toolbox
Tooling support to ease Riena application development.
Riena Sonar
Tool to check if all Remote Services are available.
Riena System Properties
System Properties used in Riena.

Back to the top