Image | ![]() |
EAN-13 | 0012569799486 ![]() |
UPC-A | 012569799486 ![]() |
Product Name | Logan's Run |
Language | English |
Category | Electronics / Photography: A/V Media: Movie / TV |
Amazon.com | ![]() |
Rating | PG - Parental Guidance Suggested |
IMDb | ![]() |
Trailer | Watch The Trailer |
Run Time | 119 minutes |
Cast | Michael York, Richard Jordan, Jenny Agutter, Roscoe Lee Browne |
Director | Michael Anderson |
Genre | ACTION,SCI-FI |
Release Year | 1976 |
Long Description | It's 2274 and on the surface, it all seems to be an idyllic society. Living in a city within an enclosed dome, there is little or no work for humans to perform and inhabitants are free to pursue all of the pleasures of life. There is one catch however: your life is limited and when you reach 30, it is terminated in a quasi-religious ceremony known as Carousel. Some, known as runners, do try to escape their fate when the time comes and it's the job of Sandmen to track them down and kill them. Logan is such a man and with several years before his own termination date, thinks nothing of the job he does. Soon after meeting a young woman, Jessica-6, he is ordered to become a runner himself and infiltrate a community outside the dome known as Sanctuary and to destroy it. Pursued by his friend Francis, also a Sandman, Logan and Jessica find their way to the outside. There they discover a beautiful, virtually uninhabited world. Logan realizes that he must return to the dome to tell them what he's found and be set free. |
Similar Items | 3322069945564: Blade Runner (FR IMPORT) Collector 2 DVD MULTILINGUAL EDITION 0888574446185: Brainstorm 0883316381410: Carey Treatment 0085391178422: Outland 0085391144847: Blade Runner (Five-Disc Ultimate Collector's Edition) 0043396410114: Zotz! 0027616082930: Invasion of the Body Snatchers (Collector's Edition) 0027616082923: Invasion of the Body Snatchers 0012569837799: Blade Runner - The Director's Cut (Remastered Limited Edition) 0012569647640: Soylent Green View 27 more similar items |
Created | 05-22-2010 |
Modified | 04-10-2019 12:55:28pm |
MD5 | 94e3ce792d2d41007830b27c3b8fcbbb |
SHA256 | 9ada0a3f39110c7e11decf9e811be94b3c82430228d52a6e2895209f7835948e |
Search Google | by EAN or by Title |
Query Time | 0.0297601 |
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.