Clean Java

There is always a bigger game

Posts Tagged ‘ATG

ATG Composite Repository Component Diagram

leave a comment »

ATG Commerce Purchase Flow Components

leave a comment »

ATG Commerce Purchase Components

ATG Commerce Purchase Components

Written by cleanjava

August 27, 2012 at 11:03 am

ATG Secure Repository Presentation.

with 2 comments

Check out latest blog on ATG at http://ourownjava.com/category/atg

Recently I have given presentation on ATG Secure Repository to folks who are preparing for ATG Implementation Specialist examination. I am not quiet sure about sharing a PPT in wordpress so I captured the screen shot of the slides and attached in this post.

How to reset ATG dyn admin password?

with 5 comments

After upgrading my local ATG installation to 10.1 I have found that the default admin/admin credential for dyn admin utility is not working due to some reason. You may use the given below SQL to rest the password admin user.

update ATG_CORE_DIST_ADMIN.DAS_ACCOUNT set password= ‘21232f297a57a5a743894a0e4a801fc3’ where account_name = ‘admin’

Above given SQL will reset the password to ‘admin’. 21232f297a57a5a743894a0e4a801fc3 is the MD5 one way hashed value of admin.

You can get the MD5 hashed value of any string using this link.

Written by cleanjava

July 27, 2012 at 12:15 pm

ATG Dynamo Application Framework Servlet Pipeline Design.

leave a comment »

ATG Servlet Pipeline

ATG Servlet Pipeline

Written by cleanjava

July 1, 2012 at 4:21 pm

ATG Repository Component Diagram

leave a comment »

ATG Repository Component Diagram

ATG Repository Component Diagram

Written by cleanjava

June 28, 2012 at 2:30 pm

ATG Repository Static Design

leave a comment »

ATG Repository Static Design

ATG Repository Static Design

ATG Discount Calculator Static Design.

leave a comment »

As I mentioned in one of my previous posts ATG offers four variable Discount Calculator implementations.

1. Item Discount Calculator

2. Order Discount Calculator

3. Shipping Discount Calculator

4. Tax Discount Calculator ( I am not sure if this calculator can be used in any country 🙂 )

All the above mentioned calculators are extension of Discount Calculator Service.  From the name itself you should be able to figure out the use of each calculators. Every calculators takes a Pricing Model as input. Pricing Model is a RepositoryItem of type item-discount. Calculator then apply the discount on the Pricing Info based on the given Pricing Model. On the course of study I have created a static design of discount calculators in ATG. I hope the class diagram would help you to grab the idea in single look.

ATG Discount Calculators

ATG Discount Calculators

ATG Droplet Static Design.

with 3 comments

Shipping Pricing Calculators in ATG.

with 2 comments

Today I will talk about one of the Pricing Calculators of ATG called “ShippingPricingCalculator”. Basically Shipping Pricing Calculator has got three different implementations.

1. Fixed Price Calculator.
2. Range Calculator.
3. Discount Calculator.

From name itself you can figure out the use of above mentioned Shipping Calculators.

FixedPriceShippingCalculator : A shipping calculator that sets the shipping amount to a fixed price.

There are three different implementations for Range Calculator.

1. Price Range Shipping Calculator.
2. Property Range Shipping Calculator.
3. Weight Range Shipping Calculator.

All the above mentioned range calculators uses given value of ranges property to calculate the shipping price. Range can be given in “low:high:price” format.

PriceRangeShippingCalculator : A shipping calculator that determines the shipping price based on the subtotal of all the items in the shipping group. The service is configured through the ranges property. (from API document)

PropertyRangeShippingCalculator : A shipping calculator that determines the shipping price based on the summing the values of a specific property of all the items in the shipping group. The service is configured through the ranges property. (from API document)

WeightRangeShippingCalculator : This calculator will calculate shipping costs based upon the total weight of an order. So, the total weight of an order will be calculated, then the range of weight values will be consulted to determine the cost. (from API document)

There are two different implementations for Shipping Discount Calculator.

ShippingDiscountCalculator and BulkShippingDiscountCalculator. I shall talk about the discount calculators in detail in another post.

On the course of studying Shipping Calculator I have drawn the class diagram of ATG Shipping Calculators. I will share that with you guys, hopefully it will help you to grab the design quickly.