C-QM: A PRACTICAL QUALITY MODEL FOR EVALUATING COTS COMPONENTS

Size: px
Start display at page:

Download "C-QM: A PRACTICAL QUALITY MODEL FOR EVALUATING COTS COMPONENTS"

Transcription

1 C-QM: A PRACTICAL QUALITY MODEL FOR EVALUATING COTS COMPONENTS Soo Dong Kim, Ji Hwan Park Department of Computer Science Soongsil University 1-1 Sangdo-5-Dong, Dongjak-Ku, Seoul South Korea, want to evaluate COTS components thoroughly before they purchase, because these components are developed by third party producer and most consumers have notinvented-here syndrome [2]. Hence, evaluating the quality of COTS components becomes an important prerequisite to a successful component-based application development. ABSTRACT A commercial-off-the-shelf (COTS) component is an implementation of common functionality among family members, where an in-house component implements an organization-specific functionality. Typically, a COTS component has a producer and a set of potential consumers. Consumers evaluate COTS components thoroughly before they purchase, because these components are developed by third party producers and most consumers have not-invented-here syndrome. Hence, evaluating the quality of COTS components becomes an important prerequisite to a successful component-based application development. In this paper, we identify the characteristics of COTS components, and derive a practical quality model for components, C-QM, which consists of quality factors, criteria and metrics. The top design goal of C-QM is set to provide a practically applicable comprehensive quality model which can be effectively applied in assessing the various quality aspects of COTS components. In this paper, we identify the characteristics of COTS components, and derive a quality model for components from the characteristics. The proposed model, C-QM, consists of quality factors, criteria and metrics. The proposed framework can be practically used in assessing the various quality aspects of COTS components. 2. Foundation 2.1. Software Quality Model A software quality model is a specification of software quality attributes and their relationship. ISO 9126 is a representative quality model for generic software [3]. In that, the quality model has two layers; characteristics layer and sub-characteristic layer. A characteristics is further refined into multiple sub-characteristics, and each subcharacteristic has a set of associated metrics, where a metric has a formula used to compute the metric value. However, this quality model was proposed for assessing the quality of finished software products rather than reusable modules such as COTS components. Key Words: Component-Based Development, Quality Model 1. Motivation Component-Based Development (CBD) is gaining popularity in both academia and industry for its promise on large-scaled software reuse. A COTS component is a reusable software module that provides common services among family members of a business sector [1]. COTS components are differentiated from in-house components in the scopes of functionality provided. A COTS component is an implementation of common functionality among family members, where an in-house component implements an organization-specific functionality. Hence COTS components are targeted for inter-organizational reuse, where in-house components are mainly for intraorganizational reuse. Another representative quality model was proposed by McCall [4]. This model also has two layers but uses different names; factor for ISO s characteristic, and criteria for ISO s sub-characteristic. McCall s quality model has 11 factors and 25 criteria. For the same reason as ISO 9126, this quality model is not applicable to COTS components. Boehm s quality model [5] and Dromey s quality model [6] also provide quality frameworks for completed software applications. In C-QM framework, we use a 3-layer hierarchy for specifying quality model; factor, criteria, and metric. A COTS component has a producer and a set of potential consumers. By using the components, consumers hope to reduce overall software cost and shorten time-tomarket. In searching for the right components, consumers

2 2.2. External Metrics A metric is a unit for measuring a specific quality attribute of the target software. Internal metrics are used to measure quality attributes of intermediate software artifacts such as specification, design model, and source code. External metrics are used to measure quality attributes of finished software products. In component-based software development projects, consumers are provided with information on the external features of COTS components such as functional category, interface specification, deployment specification, constraints, and customization instruction. Information on intermediate artifacts is not provided for reasons. Hence, they can only use external metrics to evaluate the quality of components. For this reason, metrics proposed in C- QM are all external Component Reference Model A component reference model is a specification of component architecture, static organization of a component, composition model, standard services and interfaces. There are only a few component reference models available, and they have similarities and differences. In order to precisely define a quality model, a well-defined reference model of component must be chosen. From our technical survey of component reference models, we decide to use the CORBA Component Model (CCM) by OMG [7] as the basis for defining C-QM framework. CCM provides a comprehensive set of features of CBD components, and it can be considered as the superset of other representative reference models. Figure 1 shows static organization of CCM components. A CCM component is a meta-type that extends and specializes object meta-type. Each component has a reference and a set of interfaces. Equivalent Interface Facets Attributes A Component Implementations of Facet Figure 1. CORBA Component Model (CCM) Receptacles Event sinks Event source A port in a CCM component is a communication channel for component clients and different types of the port are defined. Facet is the provide interface of an object inside a component, and it provides services to clients directly at object level. Equivalent interface is a provide interface at the level of component as a whole, and often it combines several facet interfaces of the component. Equivalent interface is especially useful in constructing black-box components where member objects in a component are hidden and only a componentlevel API is provided. Receptacle is a require interface of the component, which is used to acquire external references or resources needed by the component. Hence, component consumers must provide necessary references or resources during component adaptation or customization process. Receptacle is one of unique features of CBD components, since functions and methods in conventional computing paradigms and programming languages only provide service, and they never require external fulfillment such as plug-in object [8]. Event source and event sink provide a mechanism for trapping and consuming events. 3. Characteristics of COTS Components In order to derive a quality model, we need to understand the unique characteristics and constraints of the target software. Hence, in this section, we identify main characteristics of COTS components that are based on CCM reference model. Providing Common Functionality: A COTS component should capture a common functionality among family members in order to increase inter-organizational reusability. This makes the component-based reuse distinguishable from object-oriented reuse. If a standard domain model exists, COTS components must conform to the standard. Recently, organizations such as OMG and Microsoft have been developing standard domain models in major business sectors such as finance, health care, and telecommunication. Providing Require Interface for Customization: Commonality and variability (C&V) analysis is a key activity in extracting components from a model [9]. For a common functionality among family members, a minor variability on logic, attributes or workflow may exist. For example, the loan approval function, approveloan (Customer, Amount, Period, RepaymentMethod, Mortgage), is common for the loan management system in finance domain. However, the logic to evaluate the loan application and approve a loan varies among financial organizations. Some organizations give a higher weight on customer credit rate while others give a higher weight on the value of mortgage. In this case, the loan management component should implement this variability and provide a mechanism to customize the logic. CBD is the first development paradigm that considers the variability seriously in software design. Larger Granularity Reusability through Component Interface: A Component typically consists of multiple objects and classes. Hence, a component is a largergrained unit than the object of OOP [10]. By providing a 992

3 component-level interface, i.e. Equivalent Interface, in addition to facet interfaces, component consumers need to know a smaller number of APIs, and it can lower the degree of coupling between COTS components and the application integrating the components. This becomes the reason why blackbox components are preferred [10]. Binary-level Composition and Replaceability: Commercial components produced by CBD approaches are in binary or byte-code form. COM/DCOM components are in binary form, and Enterprise JavaBeans (EJB) components are in byte-code form. Hence in CBD, the composition between components and the integration between components and the target application should be done at binary or byte-code level. The composition mechanism is typically defined by its component reference model, and that mechanism is implemented by component platforms. Components integrated in an application should be replaceable with newer version of components efficiently without modifying other parts of the application. Blackbox components have a higher level of replaceability. Component Reference Model Dependency: A component implementation environment, i.e. component platform, implements a specific component reference model. Components developed on an EJB platform are not interoperable with components developed on.net platform unless a specialized translator or gateway is used. Hence, component consumers should consider the component reference model of the target components, and how well they conform to the reference model. Functionality: The factor functionality measures how faithfully the software conforms to the stated and implied functional requirement [3]. In case of COTS components, the functional requirement is defined as the set of functions that are common to family members, called family requirement specification (FRS). In some cases, there may already be a pre-defined domain model, which defines the standard business logic in that domain. With these two observations in mind, the functionality of COTS components should be measured differently from conventional measurement of software functionality. Reusability: Since COTS components are targeted for inter-organizational reuse, they must be highly reusable to be valuable. Promise of reusability is convincing and it is the main driving force for the component market. The require interface of a component which realizes the variability from C&V analysis will yield a higher reusability since a broader range of companies may be able to reuse the component through the require interface and customization. The larger-grained nature of component will also yield a higher reusability than objectoriented reuse. Maintainability: The facts that components are largergrained and in binary form contribute the need for the maintainability factor. Software maintenance involves correction, enhancement, adding new functionality and preventive maintenance. Maintainability factor will measure how effectively the maintenance activities can be carried out on COTS components. Blackbox components in binary form will yield a higher level of maintainability than whitebox components in source-code form. 4. FRAMEWORK OF C-QM : Components are produced on a Based on the characteristics of COTS components, we component platform which in turn implements a now define its quality model which consists of factors, component reference model. Hence, a component is criteria, and metrics. C-QM has four factors as high level dependent on a component reference model and partially quality attributes, and each factor has a set of quality on the component platform. The factor will criteria, i.e. sub-factors. measure how well the components conform to the selected reference model. Components that do not conform to a 4.1. Factors of C-QM reference model will not easily be interoperable with others and so they are not highly reusable. Each characteristic of COTS components has a set of associated quality factors. Figure 2 shows how the characteristics of the components affect the selection of quality factors. For example, Reusability is an important factor of Q-CM related to the three characteristics of COTS components; common functionality, Interface for Customization, and Larger Granularity Reuse. Common Functionality Functionality Interface for Customization Reusability Larger Granularity Reusability Binary-level Composition Maintainability Reference Model Dependency Figure 2. Mapping Characteristics to Factors Given the description of four factors in C-QM, it is evident that names of the four factors may appear in conventional quality models but their definition and semantics are distinguishable from conventional quality factors. In the next section, we show how each factor can be indirectly measured by using its associated quality criteria Criteria of C-QM A criterion is a lower-level quality attribute of a quality factor. Each criterion measures a specific and detailed aspect of the given factor, and often more than one criterion are defined for a factor. Figure 3 shows the hierarchy of C-QM, and each criterion is defined in this section. 993

4 Functionality Commonality Suitability Completeness Reusability Commonality Modularity Customizability Comprehensiveness Maintainability Modularity Interface Abstractness Changeability Figure 3. Hierarchy of C-QM Standard Reference Model The functionality factor is measured by commonality, suitability and completeness criteria. The reusability factor is measured by measured by modularity, customizability, and comprehensiveness. The maintainability factor is measured by modularity, interface abstractness, and changeability. The conformance factor is measured by standard conformance and reference model conformance. Commonality for both functionality and reusability factors measures how well the functionality of components matches to the functionality of FRS and its standard domain model. If a COTS component provides a superior functionality but does not meet the commonness of the domain, its reusability among organizations will be limited. Suitability for functionality measures how many of the functions required in FRS and the domain model have been realized in the component. If a component implements only a small subset of functions required, it will partially fulfill the functional requirement. Completeness for functionality measures how completely each function in FRS and the domain model has been implemented by the component. This criterion is needed in addition to the suitability since a function may be realized in a component, satisfying the suitability, but a partial behavior of the function might have been implemented in that component. Modularity for both reusability and maintainability measures how each component is independent from others. A component with high modularity has a high cohesion and lower couplings with other components. Sine a component is larger-grained than an object, a single component should provide a relatively coarse-grained part of the whole domain functionality, and it should not require much interaction with others. Customizability for reusability measures how much of the variability on logic, attributes, and workflow has been implemented and how effectively the component can be customized by component consumers. If a component implements largely the fixed part and less the variable part, its wide range of applicability will be limited to a smaller number of family members. Comprehensiveness for reusability measures how easy the target component is for component consumers to understand its functionality, interface, and constraints. A specification and manuals of a component will be the primary source for comprehension, but other information such as demonstration program and examples of using them may be provided. Since the consumer of a COTS component is often not the producer, the comprehensiveness becomes essential for successful distribution of components. Interface Abstractness for maintenance measures how complete the component interface is and considers the delivery format of components. A component with only an equivalent interface will be easier to modify than a component with only object level interfaces, i.e. facets. This is because changes to objects and classes inside a blackbox component do not propagate beyond the component unless the equivalent interface itself is modified. In contrast, modifying a whitebox component may require changes of its client components since client components can directly access the object and classes inside the component. Also, a binary component yields higher maintainability since application programs cannot refer to the internal information of the component such as source code and data structures. Changeability for maintenance measures the quality of internal organization and engineering of a component. A component with well-defined program structure, disciplined use of data elements, and description of internal elements will have a higher changeability. Standard for the conformance factor measures how faithfully the component adopts any standards existing in the domain. The standard may be governmental regulation, de factor standard, standard policies in the domain. A component that lacks the conformance to relevant standards will not be appreciated by consumers. Reference Model for the conformance factor measures how strictly a component conforms to the pre-determined reference model. Current state-of-the-art CBD technologies do not yet support the interoperability among heterogeneous components developed on different reference models. 5. METRICS OF C-QM In this section, we provide a set of representative metrics for the criteria defined in section 4.2. Like all quality models, the set of proposed metrics here may be extended or tailored for each organization and project. Hence, the proposed set of attributes should serve as the foundation and a starting point for further tailoring and enhancement. 994

5 5.1. Metrics for Functionality Metric for Commonality: This metric measures the degree of functional commonness provided by components, as follows. X = A / B, where A is the number of family members that the functionality of a component is applicable to, and B is the total number of family members in the domain. the functionality of such a component can be applied to all family members in the domain. The higher the metric value, the wider range of applicability the component has. Metric for Suitability: The metric measures the scope of functionality provided by a component or a set of components. We define the metric for the case of single component as follows: X = A / B, where A is the number of functions implemented in a component, and B is the number of functions required to be implemented in the component, which can be obtained from FRS. such a component implements and provides all required services. This metric can also be applied to a set of components if the identification of the functional requirement per component is not feasible. Metric for Completeness: This metric measures how complete the functions implemented in a component are. X = A / B, where A is the number of functions that are completely implemented in a component where a completeness is applied to the individual function, and B is the number of functions implemented in the component. The range of X is 0..1, and the value 1 is the best. The completeness of a function has been defined elsewhere and it can be custom defined for organizations Metrics for Reusability Metric for Commonality: This metric is same as the metric for commonality defined for Functionality factor. It is shown that the commonality has a strong influence on the overall quality of component. Metric for Modularity: This metric measures the degree of independence of the component, which is the degree of functional cohesion. X = A / B, where A is the scope of functionality provided solely by the component itself without invoking functions of other components, and B is the total scope of the functionality provided by the component regardless of the need to invoke other components. such a component is self-contained. However, components with the value 1 will be atypical since most components will have some degree of interaction with other components in forms of invocation and delegation. Metric for Customizability: This metric measures the degree of variability implemented and effectiveness of customization mechanisms provided. We define a metric for variability as follows. X = A / B, where A is the number of variable features implemented a component, and B is the number of variable features modeled during C&V analysis and pertained to the component. A variable feature may vary on logic, data attribute, workflow, and persistence. such a component implements all variable features needed. A metric for measuring the effectiveness is on our list of future research topics. The state-of-the-art CBD technology does not yet include a set of widely accepted and practically effective customization techniques yet. Metric for Comprehensiveness: This metric measures the ease of understanding a component. X = A / B, where A is the number of descriptive items that are sufficiently described in the component specification, manual and any other relevant documents provided, and B is the number of descriptive items needed to be specified for the component. The descriptive item can be an interface specification, functionality description, constraints, customization description and deployment instruction. The value of X is 0..1, and the value 1 is the best, although practically components will have a value that is lower than 1 due to the informal nature of description Metrics for Maintainability Metric for Modularity: This metric is same as the metric for modularity defined for Reusability factor. Hence, it can be concluded that the modularity along with commonality has a strong influence on the overall quality of components. Metric for Interface Abstractness: This metric measures how abstract the component interface is. A component with component-level interface, i.e. equivalent interface, has a higher abstraction level than a component with only object-level interfaces, i.e. facets. X = A / B, where A is the number of function signatures in the equivalent interface of a component, and B is the sum of A and C, where C is the number of function signatures in the facet interfaces of the component. Hence, the range of X is 0..1, and the value 1 is the best since such a component provides an equivalent interface only while hiding object-level interfaces. Metric for Changeability: This metric measures the efficiency of modification. There can be several sub- 995

6 criteria for determining this efficiency, and we use variables for those possible sub-criteria. X = (A 1 + A 2 +. A n ) / n, where A i is a measure of a sub-criterion for determining the efficiency of modification, such as overall program structure, disciplined usage of data structures, and description of program elements. The value n and types of A i should be tailored based on the nature of CBD projects and organizations. The range of A i is 0..1, and so the range of X will be Metrics for Metric for Standard : This metric measures the degree of conformance to relevant standards. X = A / B, where A is the number of standard elements strictly followed in the implementation of a component, and B is the total number of standard elements specified in the relevant set of standards, where a standard element can be governmental regulation, de factor standard, standard policies in the domain, and others. Hence, the range of X is 0..1, and the value 1 is the best since such a component conforms to all relevant standard elements. Metric for Reference Model : This metric measures the degree of conformance to the adopted component reference model. X = A / B, where A is the number of syntactic and semantic elements strictly obeyed in the implementation of a component, and B is the number of syntactic and semantic elements specified in the component reference model, where an element can be names of interface and classes, rules, constraints, policies or requirements. such a component conforms to all syntactic and semantic elements of the component reference model. APPLICATION OF C-QM IN PRACTICE Using the proposed a set of factors and criteria, one can compute the overall quality of a component as follows. Let F i be the ith factor defined in C-QM, and therefore the range of i is Let C i,j be the jth criterion of the F i, and F i has 2 to 4 criteria as shown in figure 3. For example, C 2,3 will be the customizability criterion for the reusability factor. Then, the composite value, MF i for the factor F i, is defined as: MFi = n j= Cij 1 where n is the number of criteria in F i n Depending on the domain and purpose, often different weighs are assigned to the factors. Let W i be the relative weight on F i and let (W 1 + W 2 + W 3 + W 4 ) be equal to 1. Then, the overall quality of a component can be computed as follows, and the range of overall quality will be 0..1, which is same as a single percentage representation. Overall Quality = 4 i= 1 ( Wi MFi ) In order to apply the proposed C-QM effectively, a quality evaluation process, instruction and a set of templates should also be defined. 7. CONCLUDING REMARK A COTS component is an implementation of common functionality among family organizations, and consumers evaluate COTS components thoroughly before they decide to purchase. Hence, evaluating the quality of COTS components becomes an important prerequisite to a successful component-based application development. In this paper, we identified main characteristics of COTS components, and derive a practical quality model for evaluating components, C-QM. We defined four quality factors, criteria, and metrics that can be effectively used to derive the overall quality of components. C-QM has been applied to a large number of components produced by a nationwide project CIP [2], and is currently being evaluated for its adoption as a national standard. We believe that C-QM can serve as the basic framework for developing domain-specific, organization-specific or project-specific quality model. REFERENCES [1] Crnkovic, I. and Larsson, M., Building Reliable Component- Based Software Systems, Artech House, Inc., [2] Kim, Soo, Lessons Learned from a Nation-wide CBD Promotion Project, Communications of The ACM, 45(10), October [3] ISO/IEC, FCD Information Technology Software product quality Part 1:Quality model, [4] McCall, J. A., Software Quality Management, A Petrocelli Book, [5] Boehm, B. W., Brown, J. R., Lipow, H., MacLeod, G. J. and Merrit, M. J., Characteristics of Software Quality, Elsevier North Holland, [6] Dromey, R. G., A Model for Software Product Quality, IEEE Transactions on Software Engineering, 21(2), February [7] OMG, CORBA Components, Version 3.0, Object Management Group, Inc., June [8] Heineman, G. T. and Councill, W. T., Component Based Software Engineering, Addison-Wesley, [9] Atkinson, C., Bayer, J., Bunse, C., Kamsties, E., Laitenberger, O., Laqua, R., Muthig, D., Paech, B., Wust, J., and Zettel, J., Component-based Product Line Engineering with UML, Pearson Education Ltd, [10] D Souza, D. F. and Wills, A. C., Objects, Components, and Frameworks with UML, Addison Wesley Longman, Inc.,

Software Reuse and Component-Based Software Engineering

Software Reuse and Component-Based Software Engineering Software Reuse and Component-Based Software Engineering Minsoo Ryu Hanyang University msryu@hanyang.ac.kr Contents Software Reuse Components CBSE (Component-Based Software Engineering) Domain Engineering

More information

Minsoo Ryu. College of Information and Communications Hanyang University.

Minsoo Ryu. College of Information and Communications Hanyang University. Software Reuse and Component-Based Software Engineering Minsoo Ryu College of Information and Communications Hanyang University msryu@hanyang.ac.kr Software Reuse Contents Components CBSE (Component-Based

More information

Component-Based Software Engineering TIP

Component-Based Software Engineering TIP Component-Based Software Engineering TIP X LIU, School of Computing, Napier University This chapter will present a complete picture of how to develop software systems with components and system integration.

More information

Developing Software Applications Using Middleware Infrastructure: Role Based and Coordination Component Framework Approach

Developing Software Applications Using Middleware Infrastructure: Role Based and Coordination Component Framework Approach Developing Software Applications Using Middleware Infrastructure: Role Based and Coordination Component Framework Approach Ninat Wanapan and Somnuk Keretho Department of Computer Engineering, Kasetsart

More information

Practical Methods for Adapting Services Using Enterprise Service Bus *

Practical Methods for Adapting Services Using Enterprise Service Bus * Practical Methods for Adapting s Using Enterprise Bus * Hyun Jung La, Jeong Seop Bae, Soo Ho Chang, and Soo Dong Kim Department of Computer Science Soongsil University, Seoul, Korea 511 Sangdo-Dong, Dongjak-Ku,

More information

An Approach to Software Component Specification

An Approach to Software Component Specification Page 1 of 5 An Approach to Software Component Specification Jun Han Peninsula School of Computing and Information Technology Monash University, Melbourne, Australia Abstract. Current models for software

More information

Integration With the Business Modeler

Integration With the Business Modeler Decision Framework, J. Duggan Research Note 11 September 2003 Evaluating OOA&D Functionality Criteria Looking at nine criteria will help you evaluate the functionality of object-oriented analysis and design

More information

A Study on Website Quality Models

A Study on Website Quality Models International Journal of Scientific and Research Publications, Volume 4, Issue 12, December 2014 1 A Study on Website Quality Models R.Anusha Department of Information Systems Management, M.O.P Vaishnav

More information

POAD Book: Chapter 4: Design Patterns as Components Chapter 5: Visual Design Models

POAD Book: Chapter 4: Design Patterns as Components Chapter 5: Visual Design Models POAD Book: Chapter 4: Design Patterns as Components Chapter 5: Visual Design Models Instructor: Dr. Hany H. Ammar Dept. of Computer Science and Electrical Engineering, WVU Outline Chapter 4: Design Patterns

More information

AN INTEGRATED COMPONENT-BASED APPROACH TO ENTERPRISE SYSTEM SPECIFICATION AND DEVELOPMENT

AN INTEGRATED COMPONENT-BASED APPROACH TO ENTERPRISE SYSTEM SPECIFICATION AND DEVELOPMENT AN INTEGRATED COMPONENT-BASED APPROACH TO ENTERPRISE SYSTEM SPECIFICATION AND DEVELOPMENT Zoran Stojanovic, Ajantha Dahanayake Faculty of Information Technology and Systems, Delft University of Technology,

More information

Course 7. Reusability, interoperability. S. Motogna - Software Quality

Course 7. Reusability, interoperability. S. Motogna - Software Quality Course 7 Reusability, interoperability Reusability Reusability Definition: Extent to which a program can be used in other applications - related to the packaging and scope of the functions that programs

More information

Trusted Components. Reuse, Contracts and Patterns. Prof. Dr. Bertrand Meyer Dr. Karine Arnout

Trusted Components. Reuse, Contracts and Patterns. Prof. Dr. Bertrand Meyer Dr. Karine Arnout 1 Last update: 15 October 2004 Trusted Components Reuse, Contracts and Patterns Prof. Dr. Bertrand Meyer Dr. Karine Arnout 2 Lecture 1: Issues of software quality Agenda for today 3 Introduction Some statistics

More information

APM. Object Monitor. Object Lab. Richard Hayton & Scarlet Schwiderski

APM. Object Monitor. Object Lab. Richard Hayton & Scarlet Schwiderski APM POSEIDON HOUSE CASTLE PARK CAMBRIDGE CB3 0RD UNITED KINGDOM +44 1223 515010 Fax +44 1223 359779 Email: apm@ansa.co.uk URL: http://www.ansa.co.uk Object Lab Object Monitor Richard Hayton & Scarlet Schwiderski

More information

Component-based Architecture Buy, don t build Fred Broks

Component-based Architecture Buy, don t build Fred Broks Component-based Architecture Buy, don t build Fred Broks 1. Why use components?... 2 2. What are software components?... 3 3. Component-based Systems: A Reality!! [SEI reference]... 4 4. Major elements

More information

Component models. Page 1

Component models. Page 1 Component Models and Technology Component-based Software Engineering Ivica Crnkovic ivica.crnkovic@mdh.se Page 1 Overview Introduction ACME Architectural Description Language Java Bean Component Model

More information

Component-Based and Service-Oriented Software Engineering: Key Concepts and Principles

Component-Based and Service-Oriented Software Engineering: Key Concepts and Principles Component-Based and Service-Oriented Software Engineering: Key Concepts and Principles Hongyu Pei Breivold, Magnus Larsson ABB AB, Corporate Research, 721 78 Västerås, Sweden {hongyu.pei-breivold, magnus.larsson}@se.abb.com

More information

Seminar report Software reuse

Seminar report Software reuse A Seminar report On Software reuse Submitted in partial fulfillment of the requirement for the award of degree of Bachelor of Technology in Computer Science SUBMITTED TO: www.studymafia.com SUBMITTED BY:

More information

Dr. Tom Hicks. Computer Science Department Trinity University

Dr. Tom Hicks. Computer Science Department Trinity University Dr. Tom Hicks Computer Science Department Trinity University 1 1 About Design With Reuse 2 Software Reuse Why Do We Care About Reuse? Historically: In Most Engineering Disciplines, Systems are Designed

More information

09. Component-Level Design

09. Component-Level Design 09. Component-Level Design Division of Computer Science, College of Computing Hanyang University ERICA Campus 1 st Semester 2017 What is Component OMG UML Specification defines a component as OO view a

More information

Harmonization of usability measurements in ISO9126 software engineering standards

Harmonization of usability measurements in ISO9126 software engineering standards Harmonization of usability measurements in ISO9126 software engineering standards Laila Cheikhi, Alain Abran and Witold Suryn École de Technologie Supérieure, 1100 Notre-Dame Ouest, Montréal, Canada laila.cheikhi.1@ens.etsmtl.ca,

More information

HOW AND WHEN TO FLATTEN JAVA CLASSES?

HOW AND WHEN TO FLATTEN JAVA CLASSES? HOW AND WHEN TO FLATTEN JAVA CLASSES? Jehad Al Dallal Department of Information Science, P.O. Box 5969, Safat 13060, Kuwait ABSTRACT Improving modularity and reusability are two key objectives in object-oriented

More information

ISO/IEC INTERNATIONAL STANDARD

ISO/IEC INTERNATIONAL STANDARD INTERNATIONAL STANDARD This is a preview - click here to buy the full publication ISO/IEC 19500-3 First edition 2012-04-15 Information technology Object Management Group Common Object Request Broker Architecture

More information

Appendix A - Glossary(of OO software term s)

Appendix A - Glossary(of OO software term s) Appendix A - Glossary(of OO software term s) Abstract Class A class that does not supply an implementation for its entire interface, and so consequently, cannot be instantiated. ActiveX Microsoft s component

More information

Reflective Java and A Reflective Component-Based Transaction Architecture

Reflective Java and A Reflective Component-Based Transaction Architecture Reflective Java and A Reflective Component-Based Transaction Architecture Zhixue Wu APM Ltd., Poseidon House, Castle Park, Cambridge CB3 0RD UK +44 1223 568930 zhixue.wu@citrix.com ABSTRACT In this paper,

More information

A Metamodel for Specifying Quality Models in Model- Driven Engineering

A Metamodel for Specifying Quality Models in Model- Driven Engineering A Metamodel for Specifying Quality Models in Model- Driven Engineering Parastoo Mohagheghi, Vegard Dehlen SINTEF, P.O.Box 124 Blindern N-0314 Oslo, Norway {Parastoo.Mohagheghi, Vegard.Dehlen}@sintef.no

More information

A Hierarchical Model for Object- Oriented Design Quality Assessment

A Hierarchical Model for Object- Oriented Design Quality Assessment A Hierarchical Model for Object- Oriented Design Quality Assessment IEEE Transactions on Software Engineering (2002) Jagdish Bansiya and Carl G. Davis 2013-08-22 Yoo Jin Lim Contents Introduction Background

More information

A Model Driven Component Framework for Mobile Computing

A Model Driven Component Framework for Mobile Computing Model Driven Framework for Mobile Computing Egon Teiniker, Stefan Mitterdorfer, Leif Morgan Johnson, Christian Kreiner, Zsolt Kovács Institute for Technical Informatics Graz University of Technology, ustria

More information

STRUCTURING CRITERIA FOR THE DESIGN OF COMPONENT-BASED REAL-TIME SYSTEMS

STRUCTURING CRITERIA FOR THE DESIGN OF COMPONENT-BASED REAL-TIME SYSTEMS STRUCTURING CRITERIA FOR THE DESIGN OF COMPONENT-BASED REAL-TIME SYSTEMS Aleksandra Tešanović and Jörgen Hansson Department of Computer Science, Linköping University, Sweden {alete,jorha}@ida.liu.se ABSTRACT

More information

Component-Level Design. Slides copyright 1996, 2001, 2005, 2009 by Roger S. Pressman. For non-profit educational use only

Component-Level Design. Slides copyright 1996, 2001, 2005, 2009 by Roger S. Pressman. For non-profit educational use only Chapter 10 Component-Level Design Slide Set to accompany Software Engineering: A Practitioner s Approach, 7/e by Roger S. Pressman Slides copyright 1996, 2001, 2005, 2009 by Roger S. Pressman For non-profit

More information

Dimensions for the Separation of Concerns in Describing Software Development Processes

Dimensions for the Separation of Concerns in Describing Software Development Processes Dimensions for the Separation of Concerns in Describing Software Development Processes Pavel Hruby Navision Software Frydenlunds Allé 6 DK-2950 Vedbæk, Denmark ph@navision.com http://www.navision.com,

More information

Existing Model Metrics and Relations to Model Quality

Existing Model Metrics and Relations to Model Quality Existing Model Metrics and Relations to Model Quality Parastoo Mohagheghi, Vegard Dehlen WoSQ 09 ICT 1 Background In SINTEF ICT, we do research on Model-Driven Engineering and develop methods and tools:

More information

Empirical Evaluation and Critical Review of Complexity Metrics for Software Components

Empirical Evaluation and Critical Review of Complexity Metrics for Software Components Proceedings of the 6th WSEAS Int. Conf. on Software Engineering, Parallel and Distributed Systems, Corfu Island, Greece, February 16-19, 2007 24 Empirical Evaluation and Critical Review of Complexity Metrics

More information

Agent-Enabling Transformation of E-Commerce Portals with Web Services

Agent-Enabling Transformation of E-Commerce Portals with Web Services Agent-Enabling Transformation of E-Commerce Portals with Web Services Dr. David B. Ulmer CTO Sotheby s New York, NY 10021, USA Dr. Lixin Tao Professor Pace University Pleasantville, NY 10570, USA Abstract:

More information

Research Article ISSN:

Research Article ISSN: Research Article [Agrawal, 1(3): May, 2012] IJESRT INTERNATIONAL JOURNAL OF ENGINEERING SCIENCES & RESEARCH TECHNOLOGY Use Of Software Metrics To Measure And Improve The Quality Of The Software Design

More information

Component-Based Software Engineering TIP

Component-Based Software Engineering TIP Component-Based Software Engineering TIP X LIU, School of Computing, Napier University This chapter will present a complete picture of how to develop software systems with components and system integration.

More information

1Z Oracle IT Architecture SOA 2013 Essentials Exam Summary Syllabus Questions

1Z Oracle IT Architecture SOA 2013 Essentials Exam Summary Syllabus Questions 1Z0-475 Oracle IT Architecture SOA 2013 Essentials Exam Summary Syllabus Questions Table of Contents Introduction to 1Z0-475 Exam on Oracle IT Architecture SOA 2013 Essentials 2 Oracle 1Z0-475 Certification

More information

EXTRACTION OF REUSABLE COMPONENTS FROM LEGACY SYSTEMS

EXTRACTION OF REUSABLE COMPONENTS FROM LEGACY SYSTEMS EXTRACTION OF REUSABLE COMPONENTS FROM LEGACY SYSTEMS Moon-Soo Lee, Yeon-June Choi, Min-Jeong Kim, Oh-Chun, Kwon Telematics S/W Platform Team, Telematics Research Division Electronics and Telecommunications

More information

2. The Proposed Process Model of CBD Main phases of CBD process model are shown, in figure Introduction

2. The Proposed Process Model of CBD Main phases of CBD process model are shown, in figure Introduction Survey-Based Analysis of the Proposed Component-Based Development Process M. Rizwan Jameel Qureshi Dept. of Computer Science, COMSATS Institute of Information Technology, Lahore anriz@hotmail.com Ph #

More information

DATA Act Information Model Schema (DAIMS) Architecture. U.S. Department of the Treasury

DATA Act Information Model Schema (DAIMS) Architecture. U.S. Department of the Treasury DATA Act Information Model Schema (DAIMS) Architecture U.S. Department of the Treasury September 22, 2017 Table of Contents 1. Introduction... 1 2. Conceptual Information Model... 2 3. Metadata... 4 4.

More information

Towards a modular, object-relational schema design

Towards a modular, object-relational schema design Towards a modular, object-relational schema design Wolfgang Mahnke University of Kaiserslautern P.O.Box 3049, 67653 Kaiserslautern, Germany mahnke@informatik.uni-kl.de Abstract. A modular or even component-based

More information

Introduction. Chapter 1. What Is Visual Modeling? The Triangle for Success. The Role of Notation. History of the UML. The Role of Process

Introduction. Chapter 1. What Is Visual Modeling? The Triangle for Success. The Role of Notation. History of the UML. The Role of Process Quatrani_Ch.01.fm Page 1 Friday, October 27, 2000 9:02 AM Chapter 1 Introduction What Is Visual Modeling? The Triangle for Success The Role of Notation History of the UML The Role of Process What Is Iterative

More information

Reusability and Adaptability of Interactive Resources in Web-Based Educational Systems. 01/06/2003

Reusability and Adaptability of Interactive Resources in Web-Based Educational Systems. 01/06/2003 Reusability and Adaptability of Interactive Resources in Web-Based Educational Systems 01/06/2003 ctchen@ctchen.idv.tw Reference A. El Saddik et al., Reusability and Adaptability of Interactive Resources

More information

Evaluation of Commercial Web Engineering Processes

Evaluation of Commercial Web Engineering Processes Evaluation of Commercial Web Engineering Processes Andrew McDonald and Ray Welland Department of Computing Science, University of Glasgow, Glasgow, Scotland. G12 8QQ. {andrew, ray}@dcs.gla.ac.uk, http://www.dcs.gla.ac.uk/

More information

Part II Black-Box Composition Systems 10. Business Components in a Component-Based Development Process

Part II Black-Box Composition Systems 10. Business Components in a Component-Based Development Process Part II Black-Box Composition Systems 10. Business Components in a Component-Based Development Process 1. Business component model of the Cheesman/ Daniels process 2. Identifying business components Prof.

More information

TEL2813/IS2820 Security Management

TEL2813/IS2820 Security Management TEL2813/IS2820 Security Management Security Management Models And Practices Lecture 6 Jan 27, 2005 Introduction To create or maintain a secure environment 1. Design working security plan 2. Implement management

More information

Semantic SOA - Realization of the Adaptive Services Grid

Semantic SOA - Realization of the Adaptive Services Grid Semantic SOA - Realization of the Adaptive Services Grid results of the final year bachelor project Outline review of midterm results engineering methodology service development build-up of ASG software

More information

Part II Black-Box Composition Systems 20. Finding UML Business Components in a Component-Based Development Process

Part II Black-Box Composition Systems 20. Finding UML Business Components in a Component-Based Development Process Fakultät Informatik - Institut Software- und Multimediatechnik - Softwaretechnologie Prof. Aßmann - CBSE Part II Black-Box Composition Systems 20. Finding UML Business Components in a Component-Based Development

More information

Component-based Development Process and Component Lifecycle

Component-based Development Process and Component Lifecycle Journal of Computing and Information Technology - CIT 13, 2005, 4, 321-327 321 Component-based Development Process and Component Lifecycle Ivica Crnkovic 1, Stig Larsson 2 and Michel Chaudron 3 1 Mälardalen

More information

Composition Environments for Deployable Software Components

Composition Environments for Deployable Software Components Composition Environments for Deployable Software Components Chris Lüer and André van der Hoek Department of Information and Computer Science University of California, Irvine Irvine, CA 92697-3425, USA

More information

Component-Based Applications: A Dynamic Reconfiguration Approach with Fault Tolerance Support

Component-Based Applications: A Dynamic Reconfiguration Approach with Fault Tolerance Support Electronic Notes in Theoretical Computer Science 65 No. 4 (2002) URL: http://www.elsevier.nl/locate/entcs/volume65.html 9 pages Component-Based Applications: A Dynamic Reconfiguration Approach with Fault

More information

Towards a Unified Component & Deployment Model for Distributed Real Time Systems

Towards a Unified Component & Deployment Model for Distributed Real Time Systems Your systems. Working as one. Towards a Unified Component & Deployment Model for Distributed Real Time Systems Gerardo Pardo Castellote, Ph.D. CTO, Real Time Innovations Co Chair OMG DDS SIG Sumant Tambe,

More information

Standards Readiness Criteria. Tier 2

Standards Readiness Criteria. Tier 2 Document Number: HITSP 06 N 85 Date: June 1, 2006 Standards Readiness Criteria Tier 2 Version 1.0 May 12, 2006 HITSP Standards Harmonization Committee V 1.0 (5/12/2006) 1 Introduction...3 Background Information...3

More information

RM-ODP: The ISO Reference Model for Open Distributed Processing

RM-ODP: The ISO Reference Model for Open Distributed Processing RM-ODP: The ISO Reference Model for Open Distributed Processing Antonio Vallecillo ETSI Informática. Universidad de Málaga av@lcc.uma.es 1. Introduction As software technology becomes a core part of business

More information

QUALITY METRICS IMPLEMENTATION IN COMPONENT BASED SOFTWARE ENGINEERING USING AI BACK PROPAGATION ALGORITHM SOFTWARE COMPONENT

QUALITY METRICS IMPLEMENTATION IN COMPONENT BASED SOFTWARE ENGINEERING USING AI BACK PROPAGATION ALGORITHM SOFTWARE COMPONENT I.J.E.M.S., VOL.3(2) 2012: 109-114 ISSN 2229-600X QUALITY METRICS IMPLEMENTATION IN COMPONENT BASED SOFTWARE ENGINEERING USING AI BACK PROPAGATION ALGORITHM SOFTWARE COMPONENT Sidhu Pravneet SPCET, Mohali,

More information

METADATA INTERCHANGE IN SERVICE BASED ARCHITECTURE

METADATA INTERCHANGE IN SERVICE BASED ARCHITECTURE UDC:681.324 Review paper METADATA INTERCHANGE IN SERVICE BASED ARCHITECTURE Alma Butkovi Tomac Nagravision Kudelski group, Cheseaux / Lausanne alma.butkovictomac@nagra.com Dražen Tomac Cambridge Technology

More information

Alignment of Business and IT - ArchiMate. Dr. Barbara Re

Alignment of Business and IT - ArchiMate. Dr. Barbara Re Alignment of Business and IT - ArchiMate Dr. Barbara Re What is ArchiMate? ArchiMate is a modelling technique ("language") for describing enterprise architectures. It presents a clear set of concepts within

More information

Towards integration of the Data Distribution Service with the CORBA Component Model

Towards integration of the Data Distribution Service with the CORBA Component Model Towards integration of the Data Distribution Service with the CORBA Component Model William R. Otte, Friedhelm Wolf, Douglas C. Schmidt (Vanderbilt University) Christian Esposito (University of Napoli,

More information

CS SOFTWARE ENGINEERING QUESTION BANK SIXTEEN MARKS

CS SOFTWARE ENGINEERING QUESTION BANK SIXTEEN MARKS DEPARTMENT OF COMPUTER SCIENCE AND ENGINEERING CS 6403 - SOFTWARE ENGINEERING QUESTION BANK SIXTEEN MARKS 1. Explain iterative waterfall and spiral model for software life cycle and various activities

More information

Measuring Web Service Interfaces

Measuring Web Service Interfaces Measuring Web Service Interfaces Harry M. Sneed ANECON GmbH, Vienna Harry.Sneed@t-online.de Abstract The following short paper describes a tool supported method for measuring web service interfaces. The

More information

IBM Rational Software Architect

IBM Rational Software Architect Unifying all aspects of software design and development IBM Rational Software Architect A complete design & development toolset Incorporates all the capabilities in IBM Rational Application Developer for

More information

Software Language Engineering of Architectural Viewpoints

Software Language Engineering of Architectural Viewpoints Software Language Engineering of Architectural Viewpoints Elif Demirli and Bedir Tekinerdogan Department of Computer Engineering, Bilkent University, Ankara 06800, Turkey {demirli,bedir}@cs.bilkent.edu.tr

More information

An Approach for Quality Control Management in Object Oriented Projects Development

An Approach for Quality Control Management in Object Oriented Projects Development J. Basic. Appl. Sci. Res., 3(1s)539-544, 2013 2013, TextRoad Publication ISSN 2090-4304 Journal of Basic and Applied Scientific Research www.textroad.com An Approach for Quality Control Management in Object

More information

Introduction to Software Reuse

Introduction to Software Reuse DCC / ICEx / UFMG Introduction to Software Reuse Eduardo Figueiredo http://www.dcc.ufmg.br/~figueiredo Software Reuse The use of existing software or software knowledge to build new software In the last

More information

Software Engineering

Software Engineering Software ngineering Software Architecture for nterprise Information Systems Guido Menkhaus and milia Coste Software Research Lab, University of Salzburg References References Floyd Marinescu, JB Design

More information

Object Oriented Measurement

Object Oriented Measurement Object Oriented Measurement Diego Chaparro González dchaparro@acm.org Student number: 59881P 17th January 2003 Abstract This document examines the state of art in software products measurement, with focus

More information

Component-based software engineering. Ian Sommerville 2004 Software Engineering, 7th edition. Chapter 19 Slide 1

Component-based software engineering. Ian Sommerville 2004 Software Engineering, 7th edition. Chapter 19 Slide 1 Component-based software engineering Ian Sommerville 2004 Software Engineering, 7th edition. Chapter 19 Slide 1 Objectives To explain that CBSE is concerned with developing standardised components and

More information

An Approach to Manage and Search for Software Components *

An Approach to Manage and Search for Software Components * An Approach to Manage and Search for Software Components * 1 College of Information Engineering, Shenzhen University, Shenzhen, 518060, P.R.China Hao Chen 1, Zhong Ming 1, Shi Ying 2 2 State Key Lab. of

More information

Chapter 18. Software Reuse

Chapter 18. Software Reuse Chapter 18 Software Reuse Ian Sommerville Lutz Prechelt Ian Sommerville 2004, Software Engineering, 7th edition, prechelt@inf.fu-berlin.de 1 Objectives To explain the benefits of software reuse and some

More information

Semantics-Based Integration of Embedded Systems Models

Semantics-Based Integration of Embedded Systems Models Semantics-Based Integration of Embedded Systems Models Project András Balogh, OptixWare Research & Development Ltd. n 100021 Outline Embedded systems overview Overview of the GENESYS-INDEXYS approach Current

More information

Programmazione. Prof. Marco Bertini

Programmazione. Prof. Marco Bertini Programmazione Prof. Marco Bertini marco.bertini@unifi.it http://www.micc.unifi.it/bertini/ Introduction Why OO Development? Improved structure of software easier to: Understand Maintain Enhance Reusable

More information

Lecture 2: Software Engineering (a review)

Lecture 2: Software Engineering (a review) Lecture 2: Software Engineering (a review) Kenneth M. Anderson Object-Oriented Analysis and Design CSCI 6448 - Spring Semester, 2003 Credit where Credit is Due Some material presented in this lecture is

More information

elements) and on the structure and representation of the information (i.e. the message format).

elements) and on the structure and representation of the information (i.e. the message format). Introduction to MDMI The global financial industry exchanges huge amounts of electronic information. Differences in understanding and interpretation of exchanged electronic information form an important

More information

Software Engineering

Software Engineering Software Engineering chap 4. Software Reuse 1 SuJin Choi, PhD. Sogang University Email: sujinchoi@sogang.ac.kr Slides modified, based on original slides by Ian Sommerville (Software Engineering 10 th Edition)

More information

Model-Based Techniques in the Development of Net-Centric Applications. Timothy A. Anderson Basil C. Krikeles. June 20, 2007

Model-Based Techniques in the Development of Net-Centric Applications. Timothy A. Anderson Basil C. Krikeles. June 20, 2007 Model-Based Techniques in the Development of Net-Centric Applications June 20, 2007 Timothy A. Anderson Basil C. Krikeles BAE-Systems Advanced Information Technologies 6 New England Executive Park Burlington,

More information

Spemmet - A Tool for Modeling Software Processes with SPEM

Spemmet - A Tool for Modeling Software Processes with SPEM Spemmet - A Tool for Modeling Software Processes with SPEM Tuomas Mäkilä tuomas.makila@it.utu.fi Antero Järvi antero.jarvi@it.utu.fi Abstract: The software development process has many unique attributes

More information

DOMAIN ENGINEERING OF COMPONENTS

DOMAIN ENGINEERING OF COMPONENTS 4-02-55 INFORMATION MANAGEMENT: STRATEGY, SYSTEMS, AND TECHNOLOGIES DOMAIN ENGINEERING OF COMPONENTS Carma McClure INSIDE Definition of Components; Component-Based Development; Reuse Processes; Domain

More information

Component Based Software Engineering

Component Based Software Engineering Component-Based Software Engineering Building reliable component-based systems Overview www.idt.mdh.se/cbse-bookbook Page 1, April 8, 2009 The Book Organization Book Introduction Part 1 Chapter 1 Chapter

More information

CMPIC s CM Training & Certification Courses

CMPIC s CM Training & Certification Courses CMPIC s CM Training & Courses CMPIC www.cmpic.com CMPIC Courses Why Choose CMPIC? Why choose CMPIC for your CM Training? CMPIC provides high quality, cost-effective, and the most up-to-date Configuration

More information

Pattern for Structuring UML-Compatible Software Project Repositories

Pattern for Structuring UML-Compatible Software Project Repositories Pattern for Structuring UML-Compatible Software Project Repositories Pavel Hruby Navision Software a/s Frydenlunds Allé 6 2950 Vedbaek, Denmark E-mail: ph@navision.com Web site: www.navision.com/services/methodology/default.asp

More information

Computation Independent Model (CIM): Platform Independent Model (PIM): Platform Specific Model (PSM): Implementation Specific Model (ISM):

Computation Independent Model (CIM): Platform Independent Model (PIM): Platform Specific Model (PSM): Implementation Specific Model (ISM): viii Preface The software industry has evolved to tackle new approaches aligned with the Internet, object-orientation, distributed components and new platforms. However, the majority of the large information

More information

SOFTWARE ENGINEERING. To discuss several different ways to implement software reuse. To describe the development of software product lines.

SOFTWARE ENGINEERING. To discuss several different ways to implement software reuse. To describe the development of software product lines. SOFTWARE ENGINEERING DESIGN WITH COMPONENTS Design with reuse designs and develops a system from reusable software. Reusing software allows achieving better products at low cost and time. LEARNING OBJECTIVES

More information

Next-Generation Architecture for Virtual Prototyping

Next-Generation Architecture for Virtual Prototyping Next-Generation Architecture for Virtual Prototyping Dr. Bipin Chadha John Welsh Principal Member Manager Lockheed Martin ATL Lockheed Martin ATL (609) 338-3865 (609) 338-3865 bchadha@atl.lmco.com jwelsh@atl.lmco.com

More information

UGANDA NATIONAL BUREAU OF STANDARDS LIST OF DRAFT UGANDA STANDARDS ON PUBLIC REVIEW

UGANDA NATIONAL BUREAU OF STANDARDS LIST OF DRAFT UGANDA STANDARDS ON PUBLIC REVIEW UGANDA NATIONAL BUREAU OF STANDARDS LIST OF DRAFT UGANDA STANDARDS ON PUBLIC REVIEW S/No. STANDARDS CODE TITLE(DESCRIPTION) SCOPE 1. DUS ISO/IEC 29151:2017 technology -- Security techniques -- Code of

More information

SRM ARTS AND SCIENCE COLLEGE SRM NAGAR, KATTANKULATHUR

SRM ARTS AND SCIENCE COLLEGE SRM NAGAR, KATTANKULATHUR SRM ARTS AND SCIENCE COLLEGE SRM NAGAR, KATTANKULATHUR 603203 DEPARTMENT OF COMPUTER SCIENCE & APPLICATIONS LESSON PLAN (2017-2018) Course / Branch : BCA Total Hours : 45 Subject Name : OBJECT ORIENTED

More information

Exploring the Concept of Temporal Interoperability as a Framework for Digital Preservation*

Exploring the Concept of Temporal Interoperability as a Framework for Digital Preservation* Exploring the Concept of Temporal Interoperability as a Framework for Digital Preservation* Margaret Hedstrom, University of Michigan, Ann Arbor, MI USA Abstract: This paper explores a new way of thinking

More information

Mapping UML Component Specifications to JEE Implementations

Mapping UML Component Specifications to JEE Implementations Journal of Computer Science 3 (10): 780-785, 2007 ISSN 1549-3636 2007 Science Publications Mapping UML Component Specifications to JEE Implementations Jyhjong Lin Department of Information Management,

More information

Fundamentals to Creating Architectures using ISO/IEC/IEEE Standards

Fundamentals to Creating Architectures using ISO/IEC/IEEE Standards Fundamentals to Creating Architectures using ISO/IEC/IEEE Standards What to Architect? How to Architect? IEEE Goals and Objectives Chartered by IEEE Software Engineering Standards Committee to: Define

More information

Position Paper W3C Workshop on RDF Next Steps: OMG Ontology PSIG

Position Paper W3C Workshop on RDF Next Steps: OMG Ontology PSIG Position Paper W3C Workshop on RDF Next Steps: OMG Ontology PSIG Elisa Kendall 1, Roy Bell 2, Roger Burkhart 3, Manfred Koethe 4, Hugues Vincent 5, and Evan Wallace 6 Object Management Group (OMG) Ontology

More information

Semi-Formal, not Semi-Realistic: A New Approach to Describing Software Components

Semi-Formal, not Semi-Realistic: A New Approach to Describing Software Components Semi-Formal, not Semi-Realistic: A New Approach to Describing Software Components E James Montgomery, Rune Meling, Daniela Mehandjiska School of Information Technology Bond University Queensland, Australia

More information

ISO/IEC/ IEEE INTERNATIONAL STANDARD. Systems and software engineering Architecture description

ISO/IEC/ IEEE INTERNATIONAL STANDARD. Systems and software engineering Architecture description INTERNATIONAL STANDARD ISO/IEC/ IEEE 42010 First edition 2011-12-01 Systems and software engineering Architecture description Ingénierie des systèmes et des logiciels Description de l'architecture Reference

More information

Implementing a Web Service p. 110 Implementing a Web Service Client p. 114 Summary p. 117 Introduction to Entity Beans p. 119 Persistence Concepts p.

Implementing a Web Service p. 110 Implementing a Web Service Client p. 114 Summary p. 117 Introduction to Entity Beans p. 119 Persistence Concepts p. Acknowledgments p. xvi Introduction p. xvii Overview p. 1 Overview p. 3 The Motivation for Enterprise JavaBeans p. 4 Component Architectures p. 7 Divide and Conquer to the Extreme with Reusable Services

More information

Standards: Implementation, Certification and Testing Work group Friday, May 8, :00 Pm-1:30 Pm ET.

Standards: Implementation, Certification and Testing Work group Friday, May 8, :00 Pm-1:30 Pm ET. Standards: Implementation, Certification and Testing Work group Friday, May 8, 2015. 12:00 Pm-1:30 Pm ET. Agenda Complete Work group Comments- Group 1 Review Group 2 Comments. 2015 Edition Certification

More information

Object-Oriented Design

Object-Oriented Design Object-Oriented Design Lecturer: Raman Ramsin Lecture 10: Analysis Packages 1 Analysis Workflow: Packages The analysis workflow consists of the following activities: Architectural analysis Analyze a use

More information

Object Security. Model Driven Security. Ulrich Lang, Rudolf Schreiner. Protection of Resources in Complex Distributed Systems

Object Security. Model Driven Security. Ulrich Lang, Rudolf Schreiner. Protection of Resources in Complex Distributed Systems Object Security TM The Security Policy Company Protection of Resources in Complex Distributed Systems Ulrich Lang, Rudolf Schreiner ObjectSecurity Ltd. University of Cambridge Agenda COACH Project Model

More information

Presenter: Dong hyun Park

Presenter: Dong hyun Park Presenter: 200412325 Dong hyun Park Design as a life cycle activity bonds the requirements to construction Process of breaking down the system into components, defining interfaces and defining components

More information

Overview p. 1 Server-side Component Architectures p. 3 The Need for a Server-Side Component Architecture p. 4 Server-Side Component Architecture

Overview p. 1 Server-side Component Architectures p. 3 The Need for a Server-Side Component Architecture p. 4 Server-Side Component Architecture Preface p. xix About the Author p. xxii Introduction p. xxiii Overview p. 1 Server-side Component Architectures p. 3 The Need for a Server-Side Component Architecture p. 4 Server-Side Component Architecture

More information

Master of Science Thesis. Modeling deployment and allocation in the Progress IDE

Master of Science Thesis. Modeling deployment and allocation in the Progress IDE Master of Science Thesis (D-level) Akademin för innovation, design och teknik David Šenkeřík Modeling deployment and allocation in the Progress IDE Mälardalen Research and Technology Centre Thesis supervisors:

More information

lnteroperability of Standards to Support Application Integration

lnteroperability of Standards to Support Application Integration lnteroperability of Standards to Support Application Integration Em delahostria Rockwell Automation, USA, em.delahostria@ra.rockwell.com Abstract: One of the key challenges in the design, implementation,

More information

SECURITY THREATS IN SOFTWARE DEVELOPMENT LIFE CYCLE

SECURITY THREATS IN SOFTWARE DEVELOPMENT LIFE CYCLE Online Journal, www.ijcea.com SECURITY THREATS IN SOFTWARE DEVELOPMENT LIFE CYCLE Vimal Gupta 1 and Sanjeev Singh 2 1,2 Sanjay Institute of Engineering and Technology, Delhi, India ABSTRACT This proposed

More information

The «SQALE» Models for assessing the Quality of Software Source Code

The «SQALE» Models for assessing the Quality of Software Source Code The «SQALE» Models for assessing the Quality of Software Source Code Quality Model and Analysis Model The need to assess and know the quality of the software one has required or payed for is not new. When

More information