Skip to content
This repository has been archived by the owner on Dec 5, 2020. It is now read-only.

Commit

Permalink
Update package-info.java
Browse files Browse the repository at this point in the history
  • Loading branch information
amihaiemil committed Feb 18, 2017
1 parent d25374f commit cbb43a5
Showing 1 changed file with 10 additions and 1 deletion.
Expand Up @@ -25,6 +25,15 @@
*/
/**
* This package should hold AwsHttpRequest decorators only!
*
* You’ll notice the decorators perform the decoration within the constructors.
* It should take place inside perform(), right before this.base.perform() but
* I was forced to do it like that, because of the signing decorator.
*
* The way it’s done now, the decorators can be added on top of the base implementation
* in any order. If the decoration is not done in the ctor, then the signing decorator
* has to be the last one in the chain, otherwise the final signature is not correct.
*
* @author Mihai Andronache (amihaiemil@gmail.com)
*/
package com.amihaiemil.charles.aws.requests;
package com.amihaiemil.charles.aws.requests;

0 comments on commit cbb43a5

Please sign in to comment.