Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

programming language : Java A TelecomAddress represents a number that can contact a telephone, mobile phone, fax, pager, or other telephonic device. The International Telecommunication

programming language : Java image text in transcribed
image text in transcribed
image text in transcribed
image text in transcribed
image text in transcribed
image text in transcribed
A TelecomAddress represents a number that can contact a telephone, mobile phone, fax, pager, or other telephonic device. The International Telecommunication Union (www.itu.int) provides standards for TelecomAddresses. Each TelecomAddress is made up of the parts shown below as an example: I +1 (0)208 1234567 ext. 789 mobile The "+1" is the International Direct Dialing (IDD) for a country. Almost each country in the world has its own country calling code, it is a single-or up to three-digit number which you have to dial to make a call to that country. Note this country code is not the same as the ISO 3166 country code (see below). For example, "+1" represents all countries in North America, "+2" represents all countries in Africa, etc. The "O)" is the National Direct Dialing prefix (NDD). The "208" is the area code. The "1234567" is the number. The "789" is the extension. The "mobile" is the physicalType. In summary, a TelecomAddress has a countryCode (the number you must use to direct dial a particular country), a nationalDirectDialingPrefix the prefix to make a call within a country between different cities or areas), an areaCode (the code for an area or city), a number (the telephone number), an extension accessible via the number, and a physicalType (the type of device, such as phonc, fax, mobile, pager, and so on). The area code and the extension are of integer type; the number is a long integer type. The rest of the parts are String types. A Geographic Address represents a geographic location at which a Party may be contacted. It is a postal address for the Party. Each Geographic Address has an addressLine (String type), a city (String type), a regionOr State (String type), a ziporPostCode (String type), and a Locale (Class type). => A Locale is inspired by the ISO 3166 standard (see the note on ISO 3166 below) and has an alphabetic two-letter country code (String type), a numeric country code (int type), and official English language country name (String type). For example: Canada Locale is: "CA" 124 "Canada" USA Locale is: "US" 840 "The United States of America" Iran Locale is: "IR" 364 "The Islamic Republic of Iran" India Locale is: "IN" 356 "The Republic of India" Etc Note on ISO 3166: The International Organization for Standardization (ISO) has created and maintains the ISO 3166 standard. This standard uses codes for the representation of names of countries and their subdivisions. The ISO 3166 standard contains three elements (simplified for this assignment): Element is the two-letter country code (String type). Element 2 is the three-digit country code (int type). Element 3 is the English language country name (String type). (Ref. https://en.wikipedia.org/wiki List of ISO 3166_country_codes) A PostOfficeBox Address (also known as P.O. box), is special type of a geographic address, that is uniquely addressable to a lockable box that is located on the premises (box lobby) of a post office station. In some regions, there is no door to door delivery of mail. The lockabic box is accessible after hours by customers with a code to the box lobby's door keypad. Each PostOfficeBoxAddress has an addressLine (String type), a city (String type), a regionOrState (String type), a zipOrPostCode (String type), a Locale (as described above), and a boxLobby DoorCode (int type). A GeneralDelivery Address is a service where the post office holds the mail until the recipient calls for it. It is a common destination for mail for people who are visiting a particular location and have no need, or no way, of having mail delivered directly to their place of residence at that time. Each GeneralDelivery Address has an addressLine (String type), a city (String type), a regionOr State (String type), a zip Or PostCode (String type), and a TelecomAddress to call the service. Part I: 1. Draw a UML representation for the hierarchy of the above-mentioned classes. Your representation must also be accurate in terms of UML representation of the different entities and the relation between them. You must use a software to draw your UML diagrams (no hand- writing/drawing is allowed). 2. Write the implementation of the above-mentioned classes using inheritance/composition and according to the specifications and requirements given below: You must have 3 different Java packages for the classes. The first package will include the Address class. The second package will include the WebPageAddress, Email Address and the TelecomAddress classes. The third package will include the GeographicAddress, PostOffice BoxAddress, and GeneralDelivery Address classes. For each of the classes, you must have at least three constructors, a default constructor, a parameterized constructor (which will accept enough parameters to initialize ALL the attributes of the created object from this class) and a copy constructor. For instance, the parameterized constructor of the TelecomAddress class must accept 6 parameters to initialize the international direct dialing, the national direct dialing, the area code, the number, the extension, and the physical type: An object creation using the default constructor must trigger the default constructor of its ancestor elasses, while creation using parameterized constructors must trigger the parameterized constructors of the ancestors. For each of the classes, you must include at least the following methods: accessors, mutators, toString() and equals() methods (notice that you are always overriding the last two methods) The toString() method must return a clear description and information of the object (For example: "This email address dave, velopla cleancode, app is valid from 2018-01-31 to 2021-12. 31 and therefore still able to . The equals() method must first verify if the passed object to compare to) is null and if it is of a different type than the calling object. The method would clearly return false if any of these conditions is true; otherwise the comparison of the attributes is conducted to see if the two objects are actually equal. Two objects are equal if all the values of all their attributes are equal. . For all classes you must use the appropriate access rights, which allow most ease of use/access without compromising security. Do not use most restrictive rights unless they make sense! When accessing attributes from a base class, you must take full advantage of the permitted rights. For instance, if you can directly access an attribute by name from a base class, then you must do so instead of calling a public method from that base class to access the attribute. 3. Write a driver program that contains the main() method) that would utilize all of your classes. The driver class can be in a separate package or in any of the already existing packages. Besides the main() method, create a method called traceObsoleteAddresses(). This method takes four parameters, an array of Addresses, and three integer values representing a date (YYYY, MM, DD). The method must search in the array of Addresses and display all addresses that are/were obsolete in comparison the passed date. For example, if the passed date is 2021, 02, 15 and an Address has date limits of 1998-05-21 and 2010-10-03, then this Address is obsolete. Again, you should notice that Addresses can have future dates (yet to become effective). For instance, if the passed date is 2021, 02, 15 and an Address has date limits of 2021-10-18 and 2023-4-20, then this Address is also obsolete in relation to the passed date. 4. In the main() method you must: Create various objects from the 6 classes, and display all their information (you must take advantage of the toString() method). Some of them must be obsolete addresses, limiting their usage only between validFrom and validTo dates. Test the equality of some of the created objects using the equals() method. Create an array of 15 to 20 these address objects (HINT. Do you need to add something else to the classes described above? If so, go ahead with that!) and fill that array with various objects from these classes (each class must have at least one entry in that array). . . Call the traceObsoleteAddresses() method with the array created above, along with any date of. The method should trace and display all information of all obsolete Addresses along with their location (index) in the array. Part II In that part, you need to modify/expand the implementation from Part I as follows: 1. In the driver program, you need to add another static method (add it above the main() method), called copyAddresses. The method will take as input an array of these objects (the array can be of any size) and returns a copy of that array. That is to say, the method needs to create an array of the same length as the passed array, copies all Lbjects from the passed array to a new array, then returns the new array. Your copy of the objects will automatically depend on the copy constructors of the different listed classes. You must consider the following restrictions: Do NOT attempt to explicitly find the exact type of the objects being copied, do NOT attempt to find the object type inside the copy constructors and Do NOT use clone(). 2. In the driver program, create an array of 15 to 20 objects (must have at least one from each of the classes), then call the copyAddress Objects() method to create a copy of that array. 3. Display the contents of both arrays, then add some comments indicating whether or not the copying is correct. If not: you need to explain why it has not been successful or as you might have expected

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Machine Learning And Knowledge Discovery In Databases European Conference Ecml Pkdd 2014 Nancy France September 15 19 2014 Proceedings Part 2 Lnai 8725

Authors: Toon Calders ,Floriana Esposito ,Eyke Hullermeier ,Rosa Meo

2014th Edition

3662448505, 978-3662448502

More Books

Students also viewed these Databases questions

Question

3. Identify challenges to good listening and their remedies

Answered: 1 week ago

Question

4. Identify ethical factors in the listening process

Answered: 1 week ago