Tagged Questions
0
votes
1answer
34 views
How can you possibly use Data Gateway in conjunction with Data Mapper?
Well according to Martin Fowler, the table/row data gateway aint mutually exclusive against data mapper pattern. This is what he said:
These patterns arent entirely mutually exclusive... Even if ...
0
votes
3answers
199 views
Understanding the gateway pattern with a static constructor
I am following this link:
http://codebetter.com/jpboodhoo/2007/10/15/the-static-gateway-pattern/
to understand the Gateway pattern.
The author shares a sample of the "gateway" logger class and ...
0
votes
2answers
114 views
Design patterns : How edit multiple entities from within a gateway
We are now in a situation on a project that we need manipulate multiple user entities at once. By example we will disable 50 users at once. Normally we did that in a gateway
Gateway
Query the data ...
10
votes
8answers
3k views
5
votes
4answers
277 views
Is there a name for this pattern?
I am basically quite sure this pattern must exist and possess a name... for now I will call it "gate pattern"...
Here it is:
In my webpage's javascript, I have to trigger various asynchronous ...
3
votes
3answers
244 views
Object Oriented Design issue
Hey,
I have been designing a site locally in PHP 5, but have come across a few design issues I'd like advice now.
Currently there are three features of the site and each feature has a class . These ...
2
votes
2answers
219 views
Is it advisable to build a web service over other web services?
I've inherited this really weird codebase where they've built an external web service over a bunch of internal web services just to add authentication/authorization using WS-Security, WS-Encryption, ...