Image | ![]() |
EAN-13 | 0011301659453 ![]() |
UPC-A | 011301659453 ![]() |
Product Name | Deputy - The Complete Series - 76 episodes! 12 DVD Set! |
Language | English |
Category | Electronics / Photography: A/V Media: Movie / TV |
Short Description | DVD |
Amazon.com | ![]() |
Model | 14957461 |
Price New | 40.90 US Dollars (curriencies) |
Price Used | 34.07 US Dollars (curriencies) |
IMDb | Not on IMDb |
Run Time | 1,900 minutes |
Cast | Allen Case, Henry Fonda, Phil Tully, Read Morgan, Wallace Ford |
Run Time | 1900 minutes |
Width | 5.5 inches (convert) |
Height | 1.75 inches (convert) |
Length | 7.5 inches (convert) |
Weight | 130 hundredths pounds (convert) |
Binding | Dvd |
Format | Multiple Formats, Box set, Black & White, NTSC |
Published | 07/17/2012 |
Run Time | 1,900 minutes |
Features | Factory sealed DVD |
Long Description | The Deputy - The Complete Series - 76 episodes on 12 DVDs! So begins The Deputy, starring the great Henry Fonda (The Grapes of Wrath) in his first recurring role on television. Marshal Simon Fry is a lawman who will do whatever it takes to keep the peace in Silver City, Arizona, and Fry's sometimes reluctant deputy, Clay McCord (Allen Case), is a sharp shooting storekeeper who shuns violence whenever he can, but who is persuaded to step in to help the aging Silver City Marshal Herk Lamson (Wallace Ford) when Simon is out of town. Other recurring roles are played by veteran western actors Read Morgan, Phil Tully and Addison Richards. Among the guest stars joining them are some of the best actors of their time, including Lee Van Cleef (A Fistful of Dollars), Alan Hale, Jr. (Gilligan's Island), James Coburn (The Magnificent Seven), Stacy Keach, Sr., Jason Robards, Jr. and many more. The Deputy was produced by Norman Lear (All In The Family) and features a great jazz guitar score by Jack Marshall. Although sometimes out of town keeping the peace in the wild expanse of Arizona Territory, Fonda narrates every episode. |
Similar Items | 0888574143589: Dakotas, The The Complete Series 0826663170139: Westerner The Complete Series 0826663167382: Loner The Complete Series 0011301696557: 26 MEN - 20 Episodes Starring Tris Coffin 0011301693563: Texan The Complete Series 0011301688064: Tombstone Territory The Complete TV Series 0011301662569: Restless Gun The Complete Series 0011301634368: Cimarron City The Complete Series - 26 Episodes 0011301632777: Rebel The Complete Series 0011301614865: Tall Man - Complete TV Series - All 75 Episodes! |
Created | 04-17-2012 7:24:59pm |
Modified | 06-02-2019 9:25:29am |
MD5 | 8ded139558d899fee4a24f84d024bf5b |
SHA256 | 649c49b497eb6488fa0cbabc9232a3866758f2d262b213db3230eac24df5447f |
Search Google | by EAN or by Title |
Query Time | 0.0255060 |
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.