Picasso: A Service Oriented Architecture for Model-based Automation


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements UNIX and Linux RSS News Picasso: A Service Oriented Architecture for Model-based Automation
# 1  
Old 02-07-2008
Picasso: A Service Oriented Architecture for Model-based Automation

HPL-2007-50 (R.1) Picasso: A Service Oriented Architecture for Model-based Automation - Singhal, Sharad; Pruyne, James; Machiraju, Vijay
Keyword(s): SOA; model-based automation; service models
Abstract: The increasing costs and complexity of maintaining IT environments has resulted in a focus on both Services Oriented Architectures (SOA) as well as model-based automation. By creating IT functions as modular building-blocks and automating common interaction patterns between them, IT can be made more ...
Full Report

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

1 More Discussions You Might Find Interesting

1. News, Links, Events and Announcements

ARM Based Community oriented to Job

Hi everybody, I write this small news in order to inform you an ARM network has been created around job opportunities and Vocational TRaining for student. This open group is coming together design, hardware software domains on ARM RISC Architecture. With more than 1,500 users from great... (0 Replies)
Discussion started by: ARMBasedGroup
0 Replies
Login or Register to Ask a Question
Config::Model::Itself::BackendDetector(3pm)		User Contributed Perl Documentation	       Config::Model::Itself::BackendDetector(3pm)

NAME
Config::Model::Itself::BackendDetector - Detect available read/write backends SYNOPSIS
# this class should be referenced in a configuration model and # created only by Config::Model::Node my $model = Config::Model->new() ; $model ->create_config_class ( name => "Test", 'element' => [ 'backend' => { type => 'leaf', class => 'Config::Model::Itself::BackendDetector' , value_type => 'enum', # specify backends built in Config::Model choice => [qw/cds_file perl_file ini_file augeas custom/], help => { cds_file => "file ...", ini_file => "Ini file ...", perl_file => "file perl", custom => "Custom format", augeas => "Experimental backend", } } ], ); my $root = $model->instance(root_class_name => 'Test') -> config_root ; my $backend = $root->fetch_element('backend') ; my @choices = $backend->get_choice ; DESCRIPTION
This class is derived from Config::Model::Value. It is designed to be used in a 'enum' value where the choice (the available backends) are the backend built in Config::Model and all the plugin backends. The plugin backends are all the "Config::Model::Backend::*" classes. This module will detect available plugin backend and query their pod documentation to provide a contextual help for config-model graphical editor. AUTHOR
Dominique Dumont, (ddumont at cpan dot org) SEE ALSO
Config::Model, Config::Model::Node, Config::Model::Value perl v5.14.2 2012-06-22 Config::Model::Itself::BackendDetector(3pm)