Image | ![]() |
EAN-13 | 0031398206149 ![]() |
UPC-A | 031398206149 ![]() |
Product Name | Tyler Perry's A Madea Christmas |
Category | Electronics / Photography: A/V Media: Movie / TV |
Web Link | www.facebook.com |
Amazon.com | ![]() |
Model | 30103449 |
Price New | 5.92 US Dollars (curriencies) |
Price Used | 1.85 US Dollars (curriencies) |
Rating | PG-13 - Parents Strongly Cautioned |
IMDb | ![]() |
Trailer | Watch The Trailer |
Run Time | 100 minutes |
Cast | Chad Michael Murray, Eric Lively, Kathy Najimy, Tika Sumpter, Tyler Perry |
Director | Tyler Perry |
Genre | Comedies |
Run Time | 100 minutes |
Width | 5.75 inches (convert) |
Height | 1 inches (convert) |
Length | 8 inches (convert) |
Weight | 20 hundredths pounds (convert) |
Binding | DVD |
Release Year | 2013 |
Format | Ultraviolet, NTSC |
Published | 09/29/2015 |
Run Time | 100 minutes |
Features | Shrink-wrapped |
Long Description | Madea gets coaxed into helping a friend pay her daughter a surprise visit in the country for Christmas, but the biggest surprise is what they'll find when they arrive. As the small, rural town prepares for its annual Christmas Jubilee, new secrets are revealed and old relationships are tested while Madea dishes her own brand of Christmas Spirit to all. |
Similar Items | 0043396253568: Perfect Holiday 0031398277125: Tyler Perry's Boo 2! A Madea Halloween 0031398256885: Tyler Perry's Madea On The Run 0031398256823: Tyler Perry's Boo! A Madea Halloween 0031398210634: Madea's Tough Love 0031398193760: Tyler Perry's Madea's Neighbors From Hell 0031398193289: Madea's Family Reunion 0031398177494: Diary of a Mad Black Woman 0031398171805: Tp-madeas Class/family Reunion 0031398164432: Tyler Perry's Madea Gets A Job (Play) [DVD] 0031398159544: Tyler Perry's Madea's Witness Protection 0031398140948: Tyler Perry's Madea's Big Happy Family 0031398110163: Tyler Perry's Madea Goes to Jail 0024543989400: Big Momma's 3-film Collection |
Created | 04-15-2018 12:05:45am |
Modified | 05-18-2019 1:47:31am |
MD5 | 37563f3e7ef14ee0f859ce1195fe13f4 |
SHA256 | 0d6c2132e1ae00e9c49cd93266badb6d16bbce56998ea50fe5135e7dcc12a919 |
Search Google | by EAN or by Title |
Query Time | 0.0264390 |
Article of interest
This is a basic implementation of a service that provides retrieval access to the EANData.com UPC web site. Its was coded to verify basic proof-of-concept for development of another application and was not intended to provide be anything more than basic functionality in the retrieval of UPC data from the EANData.com web site.
There are several places where simple code was left in place rather than using more advanced Java features/methods to allow for easier understanding of junior developers. Not much time spent refactoring or cleaning up the code. It is provided as a starting point only.
It contains a Factory service that returns a service object configured using the UcpService.properties (see below) file found in the class path of the executed code. The UpcQueryService can respond with an implementation of the UpcResponse and supporting interfaces or with an InputStream allowing direct access to the response from the from the EANData.com web site.
JSR 353 is the Java API for JSON is currently under development (http://java.net/projects/json-processing-spec & http://java.net/projects/jsonp). The several Java JSON implementations seemed to be more than I was wanting/needing so I wrote a basic parser to provide JSON parsing capability needed. Its not perfect but is a good basic start.
Download the example source code
The UpcService.properties must be configured.
Url (Required)
provides the address used to query UPC data. The additional parameters are added to retrieve the requested information.
ApiKeyCode (Required)
Provided from EANData.com when your account is setup.
Mode (Required)
The manner in which the data will be retrieved from the EANData.com web site.
AutoRetrieveGraphics (Optional)
Boolean to indicate whether the graphics, when indicated by a Url, are to be automatically retrieved at the same time with the UPC data. Default is false. A factory method allows for the this property to be overridden at the time the UpcQueryService is created.