Ir al contenido principal

TOGAF9

Kinds of Architectures


Business Architecture / Business Process Architecture

   Define the business strategy, governance, organization and key business processes

Data Architecture

   Describe the structure of an organization logical and physical data assets and data resources


Application Architecture

   Describe a blueprint for the individual application systems to be deploy, interactions and  their relationships to the core business processes of the organization

Technology Architecture

   Describe the logical software and hardware capabilities that are required to support the deployment of business data and application services. This includes middle-ware infrastructure, networks, communications, processing standards 


Architecture Governance

  • Increase transparency of accountability, and informed delegation of authority
  • Controlled risk management
  • Protection of the existing asset base through maximizing  re-use of existing architectural components
  • Proactive control, monitoring and management mechanisms 
  • Process, concept and component re-use across all organizational business units
  • Increased visibility supporting internal processes and external parties' requirements.

Togaf 9 Components

  • Togaf ADM (Architecture Development Method) describe a method for developing an entreprise architeture and forms the core of TOGAF
  • ADM Cycle



ADM Guidelines and Techniques

Is a set of resources, guidelines, templates, checklist and detailed materials that support the Togaf ADM




Architecture Content Framework

Provides a detailed model of architectural work products, including deliverables, artifacts within deliverables and architectural building blocks that artifacts represent

  1. Provide a comprehensive checklist of architecture outputs
  2. Attempting to integrate architectural work products across an enterprise
  3. Provides a detailed open standard for how architectures should be described.

The Enterprise Continuum

Is a view of the Architecture Repository that provides methods for classifying architecture and solution artifacts, both internal and external to the Architecture Repository as they evolve from generic Foundation Architectures to Organization-Specific Architectures 

Refence Models:

  1. TOGAF Foundation Architecture
  2. Integrated Information Infraestructure Reference Model (III-RM)

Togaf Reference Model (TRM)

Is an abstract framework for understand significant relationships among the entities of an environment and for the develpment of consistent standards or specifications supporting that environment.

A reference model  is based on a small number of unifying concepts and may be used as a basis for education and explaining standards to non-specialist.

TRM Components
  1. A taxonomy, which defines terminology and provides a coherent description of the components and conceptual structure of an information system
  2. An associated TRM graphic, which provides a visual representation of the taxonomy, as an aid to understanding.

The Architecture Capability Framework

Set of reference materials for how to establish such an architecture function, this part contains a number of guidelines to support key activities,in its current form.

The Architecture Capability Framework is not intended to be a comprehensive template for operating an enterprise Architecture Capability

Include capabilities as:

  • Financial Management
  • Performance Management
  • Service Management
  • Risk Management
  • Resource Management
  • Configuration Management
  • Communication and Stakeholder Management
  • Quality Management
  • Supplier Management
  • Environment Management






Comentarios

Entradas populares de este blog

C# Using tabs

To use tabs in C# use the TabContainer element from AjaxControlToolkit Include AjaxControlToolkit  Include in the Web.config file, inside the tag <system.web> the following code  <pages>       <controls>         <add tagPrefix="ajaxCTK" namespace="AjaxControlToolkit" assembly="AjaxControlToolkit"/>       </controls>     </pages>   Include TabContainer element First  include TabContainer element that is the section where all the tabs will be displayed. <ajaxCTK:TabContainer ID="TabContainerUpdate" runat="server"                 Height="800"                 CssClass="ajax__tab_style"> </ajaxCTK:TabContainer> Second per each tab include the following code corresponding to each ...

Rails - Basic Steps III

pValidations Validations are a type of ActiveRecord Validations are defined in our models Implement Validations Go to   root_app/app/models Open files  *.rb for each model Mandatory field validates_presence_of   :field Ex:   validates_presence_of    :title Classes The basic syntax is class MyClass        @global_variable                def my_method              @method_variable        end end Create an instance myInstance = MyClass.new Invoke a mehod mc.my_method class() method returns the type of the object In Ruby, last character of method define the behavior If ends with a question -> return a boolean value If ends with an exclamation -> change the state of the object Getter / Setter method def global_variable       return @global_variable end ...

Python create package

Create a root folder Create a sub-folder "example_pkg" that contains the funtionallity packaging_tutorial/ example_pkg/ __init__.py In the root folder create the following structure  packaging_tutorial/ example_pkg/ __init__.py tests/ setup.py LICENSE README.md in the setup.py contains the configuration of the packages your package is found by find_packages() import setuptools with open ( "README.md" , "r" ) as fh : long_description = fh . read () setuptools . setup ( name = "example-pkg-YOUR-USERNAME-HERE" , # Replace with your own username version = "0.0.1" , author = "Example Author" , author_email = "author@example.com" , description = "A small example package" , long_description = long_description , long_description_content_type = "text/markdown" , url = "https://github.com/pypa/sam...