Image | ![]() |
EAN-13 | 0014633194203 ![]() |
UPC-A | 014633194203 ![]() |
Product Name | Dragon Age: Origins Awakening - Playstation 3 |
Category | Electronics / Photography: Computer/Console Game |
Amazon.com | ![]() |
Model | 19420 |
Price New | 15.46 US Dollars (curriencies) |
Price Used | 2.52 US Dollars (curriencies) |
Genre | role_playing_games |
Width | 5.47 inches (convert) |
Height | 0.59 inches (convert) |
Length | 6.73 inches (convert) |
Weight | 25 hundredths pounds (convert) |
Binding | Video Game |
Published | 02/28/2010 |
Features | Experience additional spells, abilities, specializations, and items to further personalize and customize your hero and party - Import your character from Dragon Age: Origins or start anew as a Grey Warden from Oralais. Embark on an epic story that is completely defined and reactive to your play style - Shape your entire experience based on the choices you make and how your handle complex situations. Encounter five all-new party members and an old favorite from Dragon Age: Origins. BioWare's deepest universe to date just got bigger with an all new area of the world to explore, Amaranthine - Unlock the secrets of the Darkspawn and their true motivations - Rebuild the Grey Warden order. Battle against a new range of horrific and terrifying creatures - Put your skills to the test against an evolved, intelligent breed of Darkspawn and other menacing creatures including the Inferno Golem, Spectral Dragon and others. |
Similar Items | 0093155129689: Fallout 3 Game Of The Year Edition 0093155126107: The Elder Scrolls IV: Oblivion - Game of the Year Edition - Playstation 3 0047875882379: Spyro Reignited Trilogy - PlayStation 4 0014633729351: Dragon Age Inquisition - Playstation 3 0014633198065: Mass Effect Trilogy 0014633195248: Dragon Age Origins: Ultimate Edition - Playstation 3 0014633195040: Mass Effect 2 0014633195002: Dragon Age 2 |
Created | 07-07-2010 |
Modified | 04-28-2020 2:55:36pm |
MD5 | 2c84e4c0c5770b3cf8e7af822e8c2f8b |
SHA256 | 4ab67346bc5f8ade7dcf7681f5889c1f917ec72d1efd5c4a2a78514762f73140 |
Search Google | by EAN or by Title |
Query Time | 0.0218689 |
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.