Unified Modelling Language (UML)

Size: px
Start display at page:

Download "Unified Modelling Language (UML)"

Transcription

1 Unified Modelling Language (UML) Contents 1. Introduction to Unified Modelling Language - UML 2. Use Case Diagrams 3. Class Diagrams 4. Behavioural Diagrams 5. Implementation Diagrams 1 Literature 1. Developing Software with UML, Bernd Oestereich, Addison Wesley, Practical Object-Oriented Design with UML, Mark Priestley, McGraw-Hill, Second Edition, Using UML, Software Engineering with Objects and Components, Rob Pooley, Perdita Stevens, Addison Wesley, UML Distilled, 2nd Edition, Martin Fowler, Kendall Scott, Addison Wesley, UML in Practice, Pascal Roques, Wiley, Science and IT, University of Nottingham 1

2 Introduction to Unified Modelling Language - UML UML - language and notation for specification, construction, visualisation and documentation of models of software systems. Developed by Grady Booch, Ivar Jacobson, James Rumbaugh Types of diagrams: use case diagrams class diagrams behavioural diagrams implementation diagrams 3 UML modelling language Methods: modelling language + process notation that methods use to express design steps in doing a design UML is not: programming language a CASE tool method Associate with UML is Unified Software Development Process 4 Science and IT, University of Nottingham 2

3 Grady Booch (Rational Software) Object-Oriented Analysis and Design with Applications, Second Edition, Addison Wesley, James Rumbaugh (General Electric) Rumbaugh, J., Blaha, M., Premerlani, W., Eddy F., Lorenzen, W., Object-Oriented Modeling and Design, Prentice hall, Ivar Jacobson (Ericsson) Jacobson, I., Ericsson, M., Jacobson, A., The Object Advantage: Business Process Reengineering with object Technology, Addison-Wesley, Object Management Group an industry standards body requested standard object modelling language (1996). 5 Use Case Diagrams Contents 1. Use Case 2. Actors 3. Use Case Diagrams 6 Science and IT, University of Nottingham 3

4 Use case Definition Describes a task that a user can perform using the system. Description describes requirements for the system task described by a use case is composed of activities use case can have different variations called scenarios should not be used for functional decomposition! 7 Example. Automatic teller machine (ATM) ATM offers the following services: 1. Distribution of money to every holder of a smartcard via a card reader and a cash dispenser. 2. Report of account balance, cash and cheques deposit facilities for bank customers who hold a smartcard from their bank. In addition: 3. All transactions are made sure. 4. The dispenser has to be refilled from time to time. 8 Science and IT, University of Nottingham 4

5 Withdraw money using a Visa card Summary: This use case allows a Visa card holder, who is not a customer of the bank to withdraw money if his/her daily limit allows it. 1. The Visa CardHolder inserts his/her smart card in the ATM s card reader. 2. The ATM verifies that the card that has been inserted is a smartcard. 3. TheATM asks the Visa CardHolder to enter his/her pin number. 4. The Visa CardHolder enters his/her pin number. 5. The ATM compares the pin number with the one that is encoded on the chip of the smartcard. 6. The ATM requests an authorisation from the Visa authorisation system 7. The Visa authorisation system confirms its agreement and indicates the daily withdrawal limit. 8. The ATM asks the Visa CardHolder to enter the desired withdrawal amount. 9. The Visa CardHolder enters the desired withdrawal amount. 10. The ATM checks the amount against the daily withdrawal limit The ATM asks the Visa CardHolder if he/she would like a receipt. 12. The Visa CardHolder requests a receipt. 13. The ATM returns the card to the Visa CardHolder. 14. The Visa CardHolder takes his/her card. 15. The ATM issues the banknotes and a receipt. 16. The Visa CardHolder takes the banknotes and the receipt. Variations: Temporarily incorrect pin number At step 5, the Visa CardHolder fails to enter a correct pin number 6. The ATM informs the CardHolder that the pin is incorrect for the first or second time. 7. The ATM records the failure on the smartcard. The scenario goes back to step 3. Variations: The amount requested is greater than the daily withdrawal limit 10 Science and IT, University of Nottingham 5

6 Variations: The Visa CardHolder does not want a receipt Error: Invalid card Error: Conclusively incorrect pin number Error: Unauthorised withdrawal Error: The card is not taken back by the holder Error: The banknotes are not taken back by the holder 11 Notation UcNo. Name of use case: Withdraw money using a Visa card Actors: Visa CardHolder, Visa AS Preconditions: the ATM cash box is well stocked there is no card in the reader Postconditions the amount of money in the ATM changes Invariants Non-functional requirements response time: within a maximum time limit of 2 seconds confidentiality: the procedure of comparing the pin number that has been entered on the keyboard of the ATM with that of the smartcard must have a maximum failure rate of 10-6 Process description Exceptions, error situations Variations 12 Rules Science and IT, University of Nottingham 6

7 (Notation continued) Services Contact partners, sessions Notes/open questions Documents, references, dialog samples Diagrams: sequence and collaboration, class, activity and state 13 Actors Definition Actor is an external entity which is involved in the interaction with the system described in a use case. Description actors = roles actors can be also dialogs, and external systems Notation Customer <<actor>> Customer <<actor>> Customer dialog 14 Science and IT, University of Nottingham 7

8 generalisation and specialisation of actors Example Office clerk Home insurance clerk Car insurance clerk Field service clerk 15 Use Case Diagram Definition Shows the relationships between a set of use cases and the actors involved in these use cases. Description tool for requirement determination use case describes those activities which are to be supported by the software under development Notation Actor1 Diagram name Use case1 Use case 2 Actor2 Use case 3 Actor3 16 Science and IT, University of Nottingham 8

9 ATM offers the following services: 1. Distribution of money to every holder of a smartcard via a card reader and a cash dispenser. 2. Report of account balance, cash and cheques deposit facilities for bank customers who hold a smartcard from their bank. 3. All transactions are made sure. 4. The dispenser has to be refilled from time to time 17 Initial use case diagram for the ATM Withdraw money CardHolder Refill dispenser BankCustomer Consult balance Retrieve swallowed cards Maintenance operator Deposit cash Retrieve cheques Deposit cheques 18 Science and IT, University of Nottingham 9

10 Improved diagram CardHolder Withdraw money Refill dispenser BankCustomer Consult balance Retrieve swallowed cards Maintenance operator Deposit cash Retrieve cheques Deposit cheques 19 More actors <<Actor>> Visa AS VisaCardHolder Withdraw money Consult balance <<Actor>> Bank IS BankCustomer Deposit cash Deposit cheques Problem: if the actor is Visa card holder the Visa AS must be called on, Whereas the Bank IS will be contacted for a bank customer! Not presented on the diagram! 20 Science and IT, University of Nottingham 10

11 Another improvement <<Actor>> VisaAS VisaCardHolder Withdraw money using a Visa card <<Actor>> Bank IS BankCustomer Withdraw money using a bank card 21 Relationships between use cases include: base use case includes the functionality of included use case extend: a use case is optionally extended by functionality of another use case generalisation: sub use case inherits behaviour and semantics from super use cases Included use case Base use case Base use case Extending use case <<extend>> (extension point) Super use case Sub use case 22 Science and IT, University of Nottingham 11

12 Example of an include relationship Deposit cheques Deposit cash Consult balance Authenticate Withdraw money using a bank card Withdraw money using a Visa card Problem: users have to re-authenticate themselves for each kind of transaction. 23 Example of an extend relationship Consult balance <<extend>> (verify amount) extension points verify amount Withdraw money using a bank card 7. The BankIS confirms its agreement and indicates the daily withdrawal limit. 8. The ATM asks the BankCustomer to enter the desired withdrawal amount. Extension point: Verify amount 9. The BankCustomer enters the desired withdrawal amount. 10. The ATM checks the amount against the daily withdrawal limit. 24 Science and IT, University of Nottingham 12

13 Example of a generalisation relationship <<Actor>> Bank IS BankCustomer Deposit money Deposit cheques Deposit cash Authenticate 25 Final use case diagram <<Actor>> Visa IS Visa CardHolder Withdraw money using a Visa card BankCustomer Withdraw money using a bank card <<extend>> (Verify amount) <<Actor>> Bank IS Consult balance Authenticate Deposit money Deposit cash Deposit cheques 26 Science and IT, University of Nottingham 13

14 Final use case diagram (continued) Refill dispenser Maintenance operator Retrieve swallowed cards Retrieve cheques 27 How to identify use cases? Define the list of actors then try to work out the use cases for each actor Identify external events to which system/user reacts. 28 Science and IT, University of Nottingham 14

15 Summary Use-case modelling is a technique used to describe the functional requirements of a system. Use case diagrams consist of actors and use cases. 29 Science and IT, University of Nottingham 15

TD2: Use Cases and State Machines

TD2: Use Cases and State Machines EPU Info Stream07 January 2008 TD2: Use Cases and State Machines 1 ATM Specifications ATM = Automatic Teller Machine ATM offers the following services: 1. Distribution of money to every holder of a smartcard

More information

Virtual Private Network DesignFest Problem

Virtual Private Network DesignFest Problem Virtual Private Network DesignFest Problem Yun Feng Kurt Weiss Mohamed Fayad, PhD yfeng@unlnotes02.unl.edu krweiss@unlnotes.unl.edu and fayad@cse.unl.edu Table of Contents Abstract... Error! Bookmark not

More information

Understanding the customer s requirements for a software system. Requirements Analysis

Understanding the customer s requirements for a software system. Requirements Analysis Understanding the customer s requirements for a software system Requirements Analysis 1 Announcements Homework 1 Correction in Resume button functionality. Download updated Homework 1 handout from web

More information

Information System Design IT60105

Information System Design IT60105 3 September, 200 n IT6005, Autumn 200 n IT6005 Lecture 2 Class Modeling 3 September, 200 n IT6005, Autumn 200 Lecture #2 Domain class model Finding classes Keeping the right classes Finding associations

More information

ACCOUNT MAINTENANCE AND CARD USAGE RULES of AS DNB banka

ACCOUNT MAINTENANCE AND CARD USAGE RULES of AS DNB banka ACCOUNT MAINTENANCE AND CARD USAGE RULES of AS DNB banka APPROVED Edition of 15.12.2014, by the decision of the Management Board of AS DNB banka dated 15.12. 2014, Effective from 23.02.2015 1. TERMS USED

More information

ATM/Debit. Terms and Conditions

ATM/Debit. Terms and Conditions ATM/Debit Terms and Conditions Terms and Conditions ATM Card and Visa Debit Card 1.0 Definitions of Terms used in this Document 2.0 Using your Card 3.0 Protecting your Card and PIN 4.0 Using your card

More information

Bank of Ireland is regulated by the Central Bank of Ireland. Contactless R.6 (01/18)

Bank of Ireland is regulated by the Central Bank of Ireland. Contactless R.6 (01/18) www.bankofireland.com Bank of Ireland is regulated by the Central Bank of Ireland. Contactless 37-1102R.6 (01/18) ATM/Debit Terms and Conditions Terms and Conditions ATM Card and Visa Debit Card INDEX

More information

regulating the credit transfers and money remittance;

regulating the credit transfers and money remittance; ACCOUNT MAINTENANCE AND CARD USAGE RULES of AS DNB banka APPROVED Edition of 09.06.2014, by the decision of the Management Board of AS DNB banka dated 09.06. 2014, Effective from 20.08.2014 1. TERMS USED

More information

Visa Credit Card Conditions of Use

Visa Credit Card Conditions of Use Visa Credit Card Conditions of Use Effective date: 1 December 2017 This booklet should be read in conjunction with the Terms and Conditions contained in the Financial Service Guide (FSG) for the Bank products

More information

Open24 Online Banking Terms and Conditions

Open24 Online Banking Terms and Conditions Open24 Online Banking Terms and Conditions Please note that the following Terms and Conditions should be read in conjunction with our General Terms and Conditions and are effective 13 th January 2015.

More information

Credit Card Conditions of use. Terms and Conditions

Credit Card Conditions of use. Terms and Conditions Credit Card Conditions of use Terms and Conditions Effective: 20 March 2014 This document does not contain all the terms of this agreement or all of the information we are required by law to give you before

More information

General Conditions for issuance and use of Visa Credit Cards with chip of Komercijalna Banka AD Skopje for individuals 1

General Conditions for issuance and use of Visa Credit Cards with chip of Komercijalna Banka AD Skopje for individuals 1 General Conditions for issuance and use of Visa Credit Cards with chip of Komercijalna Banka AD Skopje for individuals 1 Basic and General Rules for issuance and use of Visa Credit Cards with chip of Komercijalna

More information

CUSTOMER GUIDELINES FOR MAESTRO SERVICE, CONTACTLESS FUNCTION AND QUICK SERVICE March 2017, valid from 1 July 2017

CUSTOMER GUIDELINES FOR MAESTRO SERVICE, CONTACTLESS FUNCTION AND QUICK SERVICE March 2017, valid from 1 July 2017 The following Customer Guidelines shall regulate the legal relationship between the holder of an account (the "Account Holder") for which bank cards have been issued and the authorised holder of such a

More information

Model and Solver Integration For Interoperability Between Options and Their Evaluation Algorithms In Financial Decision Support Systems

Model and Solver Integration For Interoperability Between Options and Their Evaluation Algorithms In Financial Decision Support Systems Model and Solver Integration For Interoperability Between s and Their Evaluation Algorithms In Financial Decision Support Systems Keun-Woo Lee and Soon-Young Huh Graduate School of Management Korea Advanced

More information

The Software Engineering Discipline. Computer Aided Software Engineering (CASE) tools. Chapter 7: Software Engineering

The Software Engineering Discipline. Computer Aided Software Engineering (CASE) tools. Chapter 7: Software Engineering Chapter 7: Software Engineering Computer Science: An Overview Tenth Edition by J. Glenn Brookshear Chapter 7: Software Engineering 7.1 The Software Engineering Discipline 7.2 The Software Life Cycle 7.3

More information

Credit Card Conditions of Use. Credit Guide.

Credit Card Conditions of Use. Credit Guide. Credit Card Conditions of Use. Credit Guide. Effective Date: 20 May 2014 This document does not contain all the terms of this agreement or all of the information we are required by law to give you before

More information

Managing Chargebacks. April 2016

Managing Chargebacks. April 2016 Managing Chargebacks April 2016 Contents Introduction... 3 What is a Chargeback?... 3 Chargeback Process Overview... 3 Chargebacks Common Misunderstandings... 4 What is a Retrieval Request?... 4 Can all

More information

Checking 101 Checking Out Checking Accounts

Checking 101 Checking Out Checking Accounts Checking 101 Checking Out Checking Accounts Checking 101 Checking Account Basics A check is a written order that represents cash Credit Union checking accounts are also called SHARE DRAFT accounts A share

More information

Corporate, Purchasing and Dynamic Card Funding Visa Cards Terms and Conditions

Corporate, Purchasing and Dynamic Card Funding Visa Cards Terms and Conditions Corporate, Purchasing and Dynamic Card Funding Visa Cards Terms and Conditions 23 March 2018 2 Contents Page 1 Scope 2 2 Cards And Their Use 3 3 Bill Payments (For Corporate Cards And Purchasing Cards

More information

BANK OF CHINA (MALAYSIA) BERHAD GREAT WALL INTERNATIONAL DEBIT CARD TERMS AND CONDITIONS GOVERNING THE USE OF BOCM DEBIT CARD

BANK OF CHINA (MALAYSIA) BERHAD GREAT WALL INTERNATIONAL DEBIT CARD TERMS AND CONDITIONS GOVERNING THE USE OF BOCM DEBIT CARD BANK OF CHINA (MALAYSIA) BERHAD GREAT WALL INTERNATIONAL DEBIT CARD TERMS AND CONDITIONS GOVERNING THE USE OF BOCM DEBIT CARD This Terms and Conditions govern the operation and your use of the BOCM Great

More information

TERMS & CONDITIONS FOR THE ISSUANCE AND USE OF A ČSOB CREDIT CARD

TERMS & CONDITIONS FOR THE ISSUANCE AND USE OF A ČSOB CREDIT CARD TERMS & CONDITIONS FOR THE ISSUANCE AND USE OF A ČSOB CREDIT CARD Československá obchodná banka, a. s. (hereinafter simply the Bank ) in accordance with Act no. 492/2009 Coll. on payment services and on

More information

Credit Facility. Conditions of Use and Credit Guide. Effective 11 May 2017

Credit Facility. Conditions of Use and Credit Guide. Effective 11 May 2017 Credit Facility Conditions of Use and Credit Guide Effective 11 May 2017 1 Contents CONDITIONS OF USE 3 Definitions 3 INTERPRETATION 6 THE CARD ACCOUNT 7 1. The Card Contract 7 2. Opening a Card Account

More information

Experience business banking with more control.

Experience business banking with more control. Experience business banking with more control. Business Visa Debit Card User Guide. Welcome to an easier way of doing business, with the HSBC Business Visa Debit Card. Now you re in control of your business

More information

General Information for Cardholder s on PIN & PAY

General Information for Cardholder s on PIN & PAY General Information for Cardholder s on PIN & PAY As part of our on-going initiative to enhance security, we are pleased to introduce the 6-digit PIN (Personal Identification Number) for validation, replacing

More information

Reloadable Card. Cardholder Frequently Asked Questions. June 2014 R.FQ.S E

Reloadable Card. Cardholder Frequently Asked Questions. June 2014 R.FQ.S E Reloadable Card Cardholder Frequently Asked Questions Reloadable Card (1) Where can I use my card? Your card may be used anywhere debit cards are accepted. The brand marks on your card indicate where the

More information

Banker s Code of Conduct

Banker s Code of Conduct Banker s Code of Conduct Introduction This is a voluntary Code followed by banks in their relations with their customers in Botswana. It sets standards of good banking practice that are followed as a minimum

More information

The Raiffeisen bank is not obligated to provide the transaction card with any functions other than those agreed upon with the account holder.

The Raiffeisen bank is not obligated to provide the transaction card with any functions other than those agreed upon with the account holder. Annex to the General Terms and Conditions Special Terms and Conditions for Transaction Cards Version 2013 1. Scope of Application I. General Provisions These Special Terms and Conditions supplement the

More information

Macquarie Credit Cards

Macquarie Credit Cards Macquarie Credit Cards Conditions Of Use EFFECTIVE 15 JANUARY 2016 Important note: This booklet does not contain all the pre-contractual information we are required by law to give you before the agreement

More information

Business Vantage Visa Credit Card. Conditions of Use. Effective Date: 4 November 2016

Business Vantage Visa Credit Card. Conditions of Use. Effective Date: 4 November 2016 Business Vantage Visa Credit Card Conditions of Use 1 Effective Date: 4 November 2016 Business Vantage Visa Conditions of Use Bank of Melbourne This document does not contain all the terms of this agreement

More information

Online Banking Internet Agreement

Online Banking Internet Agreement Online Banking Internet Agreement 1. THE SERVICE In consideration of the Online Banking services (Services) to be provided by Stockmens Bank (Bank) as described from time to time in information distributed

More information

Credit Card Conditions of Use and Credit Guide

Credit Card Conditions of Use and Credit Guide Credit Card Conditions of Use and Credit Guide Effective Date: 28 October 2016 Your Credit Contract includes this Conditions of Use brochure, the letter which advises both your credit limit and other prescribed

More information

Hume Bank Limited ABN AFSL & Australian Credit Licence No Conditions of Use. Hume Value, Clear and Business credit cards

Hume Bank Limited ABN AFSL & Australian Credit Licence No Conditions of Use. Hume Value, Clear and Business credit cards Hume Bank Limited ABN 85 051 868 556 AFSL & Australian Credit Licence No. 244248 31 1st September November January 2019 2018 Conditions of Use Hume Value, Clear and Business credit cards These Conditions

More information

DEBIT BANKCARD LIST OF CONDITIONS FOR PRIVATE CLIENTS

DEBIT BANKCARD LIST OF CONDITIONS FOR PRIVATE CLIENTS Effective from: 13 th of December 2018 (1801) Disclosured on the 05 th of January 2018 * Standard and VISA Classic K1 Gold and VISA Gold K1 cards are issued with chip and contactless feature.* Application

More information

GE N E RA L C A RD T E RM S A N D C O N D IT IO N S F O R PRIV A T E C US T O M E R S

GE N E RA L C A RD T E RM S A N D C O N D IT IO N S F O R PRIV A T E C US T O M E R S GE N E RA L C A RD T E RM S A N D C O N D IT IO N S F O R PRIV A T E C US T O M E R S 1. Scope of application These general card terms and conditions are applied to cards granted by (hereinafter the Bank

More information

Visa Debit Card User Guide

Visa Debit Card User Guide Visa Debit Card User Guide Visa Debit Card User Guide Introducing the card This user guide explains how our Visa debit card service works in conjunction with your account. You are welcome to contact your

More information

AMPLIFY CREDIT CARD. Business Conditions of Use.

AMPLIFY CREDIT CARD. Business Conditions of Use. AMPLIFY BUSINESS CREDIT CARD Business Conditions of Use. Effective Date: 30 May 2018 Your Credit Contract includes this Conditions of Use brochure, the letter which advises both your credit limit and other

More information

DEBIT BANKCARD LIST OF CONDITIONS FOR PRIVATE CLIENTS

DEBIT BANKCARD LIST OF CONDITIONS FOR PRIVATE CLIENTS Effective from: 29 th of June 2018 (1803) Disclosured on the 28 th of June 2018 * VISA Classic K1 VISA Gold K1 cards are issued with chip and contactless feature.* Application condition Minimum opening

More information

TERMS AND CONDITIONS FOR THE ISSUANCE AND USE OF A CORPORATE CARD

TERMS AND CONDITIONS FOR THE ISSUANCE AND USE OF A CORPORATE CARD TERMS AND CONDITIONS FOR THE ISSUANCE AND USE OF A CORPORATE CARD Československá obchodná banka, a. s. (hereinafter simply the Bank ) in accordance with Act No. 492/2009 Coll. on payment services and on

More information

Business ATM/Debit Terms and conditions

Business ATM/Debit Terms and conditions Business ATM/Debit Terms and conditions Terms and Conditions Business ATM Card and Visa Business Debit Card 1.0 Definitions 1.1 Account means the business current account in respect of which the Card

More information

Citizens Advice financial capability

Citizens Advice financial capability BAC2 Table of bank account features Features Current Account Basic Bank Account Jam Jar Account Post Office Account Accepts universal credit payments Allows automated payments (Direct Debits and Standing

More information

CONDITIONS OF USE FOR VISA CREDIT CARD

CONDITIONS OF USE FOR VISA CREDIT CARD CONDITIONS OF USE FOR VISA CREDIT CARD 1300 306 716 bankofus.com.au Bank of us is a trading name of B&E Ltd ABN 32 087 652 088 AFSL & Australian Credit Licence 236870 1 January 2019 Table of Contents Interest

More information

GENERAL BANKING PRODUCT AND SERVICE TERMS. Table of Contents of the General Banking Product and Service Terms of the Trade and Development Bank

GENERAL BANKING PRODUCT AND SERVICE TERMS. Table of Contents of the General Banking Product and Service Terms of the Trade and Development Bank GENERAL BANKING PRODUCT AND SERVICE TERMS 1. General terms 2. Current account 3. Debit card 4. TDB Online services 5. Most Money services 6. Standing order services 7. E-billing services 8. Message banking

More information

Common Business Functions for Correctional Management Systems

Common Business Functions for Correctional Management Systems Common Business Functions for Correctional Management Systems Volume 2 Business Scenarios Part N Trust Accounting Authored by the IJIS Institute and the Corrections Technology Association 25 April 2016

More information

Welcome. Card Cardholder

Welcome. Card Cardholder Welcome Card Cardholder D Year-round privilege discount at Hong Kong - Enjoy 10% off year-round discount on participating brands at Landmark and Pacific Place, Hong Kong. - Free delivery upon spending

More information

BANK OF CHINA MACAU BRANCH. BOC Multi-currency Visa Credit Card. User Guide

BANK OF CHINA MACAU BRANCH. BOC Multi-currency Visa Credit Card. User Guide BANK OF CHINA MACAU BRANCH BOC Multi-currency Visa Credit Card User Guide Contents Page 1. Activate the card, set the Inquiry Password and the Cash Advance and Transaction Password.. 1 2. Security features..........

More information

Managing Chargebacks

Managing Chargebacks 0800 085 3867 www.cardpayaa.com Managing Chargebacks Contents Introduction... 3 What is a Chargeback?... 3 Chargeback Process Overview... 3 Chargebacks Common Misunderstandings... 4 What is a Retrieval

More information

Using a terminal to process card transactions

Using a terminal to process card transactions Using a terminal to process card transactions General rules Read this section if you have an electronic terminal and the cardholder and card are present at the time of the transaction. If you use paper

More information

BNZ Business First Visa Card

BNZ Business First Visa Card BNZ Business First Visa Card Welcome book and Terms and Conditions Putting your Business First BNZ Business First Visa card is the smart way to manage your day to day business expenses. It s a handy source

More information

ANZ Bank New Zealand Limited ANZ17881

ANZ Bank New Zealand Limited ANZ17881 ANZ Credit Card Conditions of Use Effective 26 March 2018 This document sets out your ANZ Credit Card s terms and conditions In this document we ve explained the terms and conditions applying to your ANZ

More information

Submit your class diagram, your use case diagram, and your CRUD matrix to your instructor.

Submit your class diagram, your use case diagram, and your CRUD matrix to your instructor. Chapter 6 Use Case Modeling and Detailed Requirements Thinking Critically 1. The following description identifies the business need for a simple university library system. Based on the description, develop

More information

Conditions of Use for Westpac Debit Mastercard and Westpac Airpoints Debit Mastercard.

Conditions of Use for Westpac Debit Mastercard and Westpac Airpoints Debit Mastercard. Conditions of Use for Westpac Debit Mastercard and Westpac Airpoints Debit Mastercard. As at 20 October 2016. 0000 VALID THRU MONTH/YEAR Debit card Conditions of Use These Conditions of Use apply to the

More information

Guidelines for the issue of Smart / Debit Cards by banks

Guidelines for the issue of Smart / Debit Cards by banks Guidelines for the issue of Smart / Debit Cards by banks FSC.BC. 123 /24.01.019/99-2000 November 12,1999 All Scheduled Commercial Banks (excluding RRBs) Dear Sir, Guidelines for the issue of Smart / Debit

More information

COMP-533 Object-Oriented Software Development. Midterm. (30% of final grade) October 19, 2010

COMP-533 Object-Oriented Software Development. Midterm. (30% of final grade) October 19, 2010 COMP-533 Object-Oriented Software Development Midterm (30% of final grade) October 19, 2010 Name: Problem 1: Domain Model, OCL invariants and functions (40%) An insurance company wants to automate its

More information

ANZ COMMERCIAL CARD TERMS AND CONDITIONS

ANZ COMMERCIAL CARD TERMS AND CONDITIONS ANZ COMMERCIAL CARD TERMS AND CONDITIONS 20.07.2016 ANZ CORPORATE CARD ANZ VISA PURCHASING CARD ANZ BUSINESS ONE Containing Terms and Conditions for: Facility Terms and Conditions Electronic Banking Conditions

More information

Altitude Business credit cards.

Altitude Business credit cards. Altitude Business credit cards. Conditions of Use. Effective as at 4 April 2018. Your Credit Card Contract includes this Conditions of Use brochure, the letter which advises your credit limit and the precontractual

More information

A to Z Jargon buster. Call +44 (0) to discuss your upgrade options

A to Z Jargon buster. Call +44 (0) to discuss your upgrade options A to Z Jargon buster Call +44 (0) 844 209 4370 to discuss your upgrade options www.pxp-solutions.com sales@pxp-solutions.com twitter: @pxpsolutions Are you trying to navigate your way around what can seem

More information

PREPAID CARD GLOSSARY

PREPAID CARD GLOSSARY PREPAID CARD GLOSSARY ACH Remitter: The bank that receives the electronic funds transfer via Automated Clearing House (ACH) to load funds to a prepaid card. A known remitter is one that is logged in the

More information

TERMS AND CONDITIONS FOR THE ISSUANCE AND USE OF A DEBIT CARD

TERMS AND CONDITIONS FOR THE ISSUANCE AND USE OF A DEBIT CARD TERMS AND CONDITIONS FOR THE ISSUANCE AND USE OF A DEBIT CARD Československá obchodná banka, a. s. (the Bank ) in accordance with Act No. 492/2009 Coll. on Payment Services and on amendments of and supplements

More information

Business Debit Terms and conditions

Business Debit Terms and conditions Business Debit Terms and conditions Terms and Conditions Business ATM Card and Visa Business Debit Card 1.0 Definitions 1.1 Account means the business current account in respect of which the Card is issued.

More information

Bankwest. Account Access

Bankwest. Account Access Bankwest Account Access Conditions of Use 9 April 2018 Product Disclosure Statement If you are opening a Bankwest-branded Investment and Transaction Account with us, or are applying for Bankwest Online

More information

Ameriabank CJSC Payment Cards Terms and Conditions

Ameriabank CJSC Payment Cards Terms and Conditions Definitions Ameriabank CJSC Payment Cards Terms and Conditions Bank or we means Ameriabank CJSC. General Terms and Conditions of the Bank means the Bank's General Terms and Conditions of Provision of Banking

More information

get cash withdrawals from savings account(s) with an ATM card get cash withdrawals from savings account(s) with a debit card

get cash withdrawals from savings account(s) with an ATM card get cash withdrawals from savings account(s) with a debit card ELECTRONIC FUND TRANSFERS YOUR RIGHTS AND RESPONSIBILITIES Indicated below are types of Electronic Fund Transfers we are capable of handling, some of which may not apply to your account. Please read this

More information

Corporate MasterCard. Conditions of Use.

Corporate MasterCard. Conditions of Use. Corporate MasterCard Conditions of Use. Effective Date: 4 November 2016 Corporate MasterCard Card account Conditions of Use St.George Bank This document does not contain all the terms of the agreement

More information

Effective Date: 1 March Corporate MasterCard. Conditions of Use

Effective Date: 1 March Corporate MasterCard. Conditions of Use Effective Date: 1 March 2010 Corporate MasterCard Conditions of Use Corporate MasterCard Card account Conditions of Use St.George Bank This document does not contain all the terms of the agreement applicable

More information

Debit Card Conditions of Use

Debit Card Conditions of Use Debit Card Conditions of Use BOQ Specialist July 2016 BOQ Specialist Debit Card Conditions of Use Products and services are provided by BOQ Specialist a division of Bank of Queensland Limited ABN 32 009

More information

BUSINESS CREDIT CARD

BUSINESS CREDIT CARD BUSINESS CREDIT CARD Terms and Conditions March 2018 Lloyds Bank Business Credit Card Terms and Conditions your copy Credit Card Agreement regulated by the Consumer Credit Act 1974 These are the conditions

More information

Gem Visa Conditions of Use

Gem Visa Conditions of Use Gem Visa Conditions of Use Disclosure Statement Financial Advisers Act 2008 The information provided in this statement is important and may assist you in selecting a financial services provider, or if

More information

Transaction Based Business Process Modeling

Transaction Based Business Process Modeling Proceedings of the Federated Conference on Computer Science and Information Systems pp. 1397 1402 DOI: 10.15439/2015F149 ACSIS, Vol. 5 Transaction Based Business Process Modeling Abstract A term of transaction

More information

HSBC PREMIER WORLD MASTERCARD CREDIT CARD CARDHOLDER AGREEMENT

HSBC PREMIER WORLD MASTERCARD CREDIT CARD CARDHOLDER AGREEMENT HSBC PREMIER WORLD MASTERCARD CREDIT CARD CARDHOLDER AGREEMENT IMPORTANT! Before the Customer s use of HSBC Premier World MasterCard Credit Card, please read carefully the Cardholder Agreement ( the Agreement

More information

CREDIT CARDS CONDITIONS OF USE

CREDIT CARDS CONDITIONS OF USE CREDIT CARDS CONDITIONS OF USE EFFECTIVE 18 SEPTEMBER 2017 Important note This booklet does not contain all the pre-contractual information we are required by law to give you before the agreement is made.

More information

Mastercard BusinessCard/ PurchasingCard. Conditions of Use

Mastercard BusinessCard/ PurchasingCard. Conditions of Use Mastercard BusinessCard/ PurchasingCard Conditions of Use These are your Mastercard BusinessCard/ PurchasingCard account holder and cardholder Conditions of Use. Please read these Conditions of Use and

More information

Visa Debit Conditions of Use

Visa Debit Conditions of Use Visa Debit Conditions of Use BEFORE YOU USE YOUR VISA CARD Please read these Conditions of Use. They apply to: all transactions initiated by you through an Electronic Banking Terminal (which in these Conditions

More information

Electronic Payment Card Program Frequently Asked Questions

Electronic Payment Card Program Frequently Asked Questions 1. What is the new Visa Electronic Payment Card? The Visa Electronic Payment Card (EPC) is a safe and secure method for payment of weekly Unemployment Insurance benefits. It can be used to get cash from

More information

Combined Conditions of Use and Credit Guide. Effective as at 30 June 2017.

Combined Conditions of Use and Credit Guide. Effective as at 30 June 2017. Combined Conditions of Use and Credit Guide. Effective as at 30 June 2017. Introduction. Your Credit Card Contract includes this Conditions of Use brochure, the letter which advises both your credit limit

More information

1.1 Financial products

1.1 Financial products CHAPTER 1. INTRODUCTION 7 1.1 Financial products One can invest in a lot of financial products: The basic investment products like savings accounts. Products with a higher risk like stocks. In this section

More information

HSBC PREMIER CREDIT CARD CARDHOLDER AGREEMENT

HSBC PREMIER CREDIT CARD CARDHOLDER AGREEMENT HSBC PREMIER CREDIT CARD CARDHOLDER AGREEMENT IMPORTANT! Before the Customer s use of HSBC Premier Credit, please read carefully the Cardholder Agreement ( the Agreement ) printed below. By using the Card

More information

GATHERING & ANALYZING REQUIREMENTS

GATHERING & ANALYZING REQUIREMENTS CarMath Case Study: CarMatch is a franchising company that is being set up to promote car sharing. In many cities, traffic congestion poses a threat to the quality of life as well as causing considerable

More information

THE ROLE BANKS PLAY IN THE ECONOMY

THE ROLE BANKS PLAY IN THE ECONOMY BANKING & INVESTING BANKS THEIR ROLE Banks play an extremely important role in a country s economy. There is different types of banks in South Africa i.e: Commercial Banks The Development Bank of SA Land

More information

HOW TO USE A FINANCIAL INSTITUTION. BUILDING A better FUTURE

HOW TO USE A FINANCIAL INSTITUTION. BUILDING A better FUTURE HOW TO USE A FINANCIAL INSTITUTION BUILDING A better FUTURE HOW TO USE A FINANCIAL INSTITUTION LATINO COMMUNITY CREDIT UNION & LATINO COMMUNITY DEVELOPMENT CENTER Copyright 2011 Latino Community Credit

More information

emoneysafe debit Mastercard Terms and Conditions of Use

emoneysafe debit Mastercard Terms and Conditions of Use debit Mastercard Terms and Conditions of Use 1. The card 1.1 These terms and conditions apply to any holder of this card ( the card ). By using your card, you are demonstrating your agreement to these

More information

Combined Conditions of Use and Credit Guide. Effective as at 30 June 2017.

Combined Conditions of Use and Credit Guide. Effective as at 30 June 2017. Combined Conditions of Use and Credit Guide. Effective as at 30 June 2017. Important changes to Altitude card accounts. The Reserve Bank of Australia introduced new industry wide regulations on 1 July

More information

By signing this form I consent to the Bank of Ireland Group and its contracted agents storing, using and processing my personal details:-

By signing this form I consent to the Bank of Ireland Group and its contracted agents storing, using and processing my personal details:- Consent to Use Personal Data By signing this form I consent to the Bank of Ireland Group and its contracted agents storing, using and processing my personal details:- (a) (b) (c) (d) (e) (f) (g) (h) (i)

More information

Credit Card Agreement regulated by the Consumer Credit Act 1974

Credit Card Agreement regulated by the Consumer Credit Act 1974 Credit Card Agreement regulated by the Consumer Credit Act 1974 This is a copy of your agreement for you to keep. This document makes up the entire agreement for your account with us. It replaces any previous

More information

Singapore Airlines Westpac Platinum Credit Cards Conditions of Use

Singapore Airlines Westpac Platinum Credit Cards Conditions of Use Singapore Airlines Westpac Platinum Credit Cards Conditions of Use 28 October 2016 Conditions of Use Your Credit Card Contract includes this Conditions of Use booklet, the letter which advises both your

More information

Pay Card - Recipient Frequently Asked Questions

Pay Card - Recipient Frequently Asked Questions Q: How soon will my card arrive? A: You should receive your card in 7-10 business days. A complete Pay Card Disclosure and Terms and Conditions will accompany the card. If you do not receive your card,

More information

Regulations. on issue and usage of payment cards

Regulations. on issue and usage of payment cards Approved The Central Bank of the Republic of Azerbaijan Decision 16/3 10 July 2012 Governor Elman Rustamov Regulations on issue and usage of payment cards 1. General Provisions These Regulations have been

More information

TERMS & CONDITIONS FOR THE ISSUANCE AND USE OF A DEBIT CARD

TERMS & CONDITIONS FOR THE ISSUANCE AND USE OF A DEBIT CARD TERMS & CONDITIONS FOR THE ISSUANCE AND USE OF A DEBIT CARD Československá obchodná banka, a. s. (hereinafter simply the Bank ) in accordance with Act No. 492/2009 Coll. on payment services and on the

More information

Negozju Card Conditions of Use

Negozju Card Conditions of Use Negozju Card Conditions of Use The use of the HSBC Bank Malta p.l.c. VISA Negozju Card and Quikcash Negozju Card & PINs are governed at all times by (i) the General Terms and Conditions Accounts (in case

More information

BANK OF CHINA MACAU BRANCH. BOC Multi-currency Visa Credit Card. User Guide

BANK OF CHINA MACAU BRANCH. BOC Multi-currency Visa Credit Card. User Guide BANK OF CHINA MACAU BRANCH BOC Multi-currency Visa Credit Card User Guide Contents Page 1. Activate the card, set the Inquiry Password and the Cash Advance and Transaction Password.. 1 2. Security features..........

More information

Business Corporate Mastercard

Business Corporate Mastercard Business Corporate Mastercard Terms and Conditions 01 March 2017 Contents 1. Definitions 1 2. Code of Banking Practice 6 3. About your contract 6 4. Opening the Facility 8 5. Activation and acceptance

More information

Debit Card User Guide

Debit Card User Guide Debit Card User Guide HSBC Premier Debit Cards Access your funds and pay for your purchases wherever you are. Dear Customer, Welcome to the new era of HSBC Premier Debit Chip Cards. Your key to more convenient

More information

BULLETIN ON PAYMENT SERVICE

BULLETIN ON PAYMENT SERVICE 1 st. May 2018 This bulletin contains general advance information on payment services which the Bank must provide to a consumer customer before entering into a master agreement (hereinafter the "Bulletin

More information

ENCOMPASS CREDIT UNION VISA DEBIT CARD CONDITIONS OF USE

ENCOMPASS CREDIT UNION VISA DEBIT CARD CONDITIONS OF USE ENCOMPASS CREDIT UNION VISA DEBIT CARD CONDITIONS OF USE These Conditions of Use take effect on and from 1st March 2012 except as otherwise advised in writing and replace all VISA Debit Card Conditions

More information

SPUERKEESS

SPUERKEESS Terms and conditions for the use of payment cards linked to ZEBRA and axxess UNIF accounts and other retail products of Banque et Caisse d'epargne de l'etat, Luxembourg TABLE OF CONTENTS I. TERMS AND CONDITIONS

More information

Internet Banking Terms and Conditions

Internet Banking Terms and Conditions Internet Banking Terms and Conditions This document must be read in conjunction with IMB s Product Disclosure Statement (PDS) a copy of which can be obtained from www.imb.com.au, from any IMB branch or

More information

Gulf Bank Credit Cards (Visa/MasterCard) Terms and Conditions of issuance and usage

Gulf Bank Credit Cards (Visa/MasterCard) Terms and Conditions of issuance and usage Gulf Bank Credit Cards (Visa/MasterCard) Terms and Conditions of issuance and usage Gulf Bank Credit Cards (Visa/MasterCard) Terms and Conditions of issuance and usage The terms and conditions mentioned

More information

Unemployment Insurance U.S. Bank ReliaCard. Frequently Asked Questions. What is the ReliaCard and How Does It Work?

Unemployment Insurance U.S. Bank ReliaCard. Frequently Asked Questions. What is the ReliaCard and How Does It Work? Unemployment Insurance U.S. Bank ReliaCard What is the ReliaCard and How Does It Work? What is the ReliaCard? The ReliaCard is a reloadable, prepaid card issued by U.S. Bank. The ReliaCard is an electronic

More information

Second Level Student Account. Terms and conditions. Bank of Ireland is regulated by the Central Bank of Ireland.

Second Level Student Account. Terms and conditions.  Bank of Ireland is regulated by the Central Bank of Ireland. Second Level Student Account Terms and conditions www.bankofireland.com Bank of Ireland is regulated by the Central Bank of Ireland. BOI/4-734RU.15(03/17) March 2017 Second Level Student Account application

More information

Conditions of Use and Credit Guide

Conditions of Use and Credit Guide Conditions of Use and Credit Guide Important details about your Gem Visa October 2017 The way to pay with 0% interest 6 reasons you ll be saying it s a gem Booklet no. Enjoy 6 months interest free on any

More information

Business Charge Card Terms and Conditions

Business Charge Card Terms and Conditions Business Charge Card Terms and Conditions November 2017 CONTENTS 1. Use of Your Business Charge Card 3 2. Making and Stopping Payments 4 3. Payments and Statements 4 4. Refunds 6 5. Charges 6 6. Lost and

More information