Tagged Questions
The facade tag has no wiki summary.
8
votes
4answers
3k views
facade vs mediator
I’ve been researching the difference between these two patterns.
I understand that facade encapsulates access to a sub system, and mediator encapsulates the interactions between components.
I ...
7
votes
1answer
193 views
C++ Iterator Facade for sockets
I was wondering if there is a good implementation (library) of a C++ iterator facade around sockets. I've gone through the Boost Iterator library and ASIO, and can't seem to find anything. An open ...
4
votes
3answers
43 views
Are there any existing Java caching facades?
I'm getting ready to start working on performance in an application which will eventually be running distributed, but currently is in [greenfield] development.
I'd like to be able to introduce ...
4
votes
3answers
462 views
How to hide __methods__ in python?
I just wondered, how to hide special
__.*__
methods in python*? Especially I am using an interactive python interpreter with tab-completion, and I would like to display only the methods my ...
3
votes
3answers
214 views
Programming Design Patterns: Facade or Not?
Another guy on our team has provided me a library as a jar for his web framework. Let's call this framework "My Friend's Framework".
There's a particular class that I need from his framework. Half of ...
3
votes
2answers
51 views
“Points of view” in the object model
We have two domain types: Users and Locations.
We have a method on the LocationRepository: GetUserLocations().
The existing implementation:
var user = UserRepository.GetUser(userId);
var locations ...
2
votes
3answers
202 views
Public Fields in DTO and Domain object
I'm doing a code review for one project. It's architecture you can see on the following scheme:
At this moment DTO - are simple POJO's and Domains - contains Hibernate anotations. As I know one of ...
2
votes
1answer
89 views
How to split SFSB Facade?
I am having some problems devoloping an application based on EJB 3 technology.
I would like to use a Facade Pattern in the Session beans to decouple my client (a web application) from my Entity ...
2
votes
5answers
705 views
2
votes
1answer
102 views
How to subscribe to an event inside a facade class
I have two projects 1: windows forms project and 2: a business logic project that recursively walks the file system looking for specific files.
I want the windows project to subscribe to an event ...
2
votes
2answers
174 views
Should I use a façade over 3rd party assemblies?
We are compiling a list of common functions and methods into a utilities assembly. Part of this utilities assembly is to provide a façade over the Enterprise Library Logging Block. The utility ...
1
vote
1answer
56 views
Inside the package, I must use the Facade Pattern (or something similar)?
I'm using a Facade to access the methods and classes inside package, but and inside the package? I must access the methods of other class directly or by a facade or something similar?
Example: ...
1
vote
1answer
416 views
Facade pattern for asp.net mvc aplication
I have an MVC2 application with the following classes:
-OrderModel
-LineOrderModel
-OrderController
-LineOrderController
In the OrderController class I'm recollecting some values of a web form . ...
1
vote
0answers
242 views
Best practice Adding Entity Associations (@JoinColumn etc.) in an Entity Class generated by NetBeans
I have a Managed Bean which calls a Facade class to access an Entity Model class and in-turn the DB.
The Entity model class has been generated using the NetBeans option New->Entity Classes from ...
1
vote
1answer
112 views
Is it breaking Facade design pattern
In HomeCADEngine facade class I have a method "addRoom(room:Room)" and it will add this room to a ArrayList. But is it break facade pattern when we create a room outside facade class and then pass it ...
1
vote
3answers
1k views
differences between facade pattern and other patterns
I have a question about patterns.I have really problems with design patterns Can you tell me the difeerences between facade pattern with builder,factory and abstract factory pattern?
1
vote
3answers
505 views
Monitoring and logging strategy for a “facade webservice”?
I'm working on a "facade webservice" and I need to rethink part of it.
The context - my webservice (let's call it "FacadeWebservice") is an internal webservice developed to hide other webservices ...
1
vote
4answers
5k views
What are the advantages and disadvantages of the Session Façade Core J2EE Pattern?
What are the advantages and disadvantages of the Session Façade Core J2EE Pattern?
What are the assumptions behind it?
Are these assumptions valid in a particular environment?
0
votes
0answers
22 views
Good way to generate keys for cache/session that are for internal usage only?
I am writing a library that will use session and/or cache behind a facade interface. The library will store information there that should not be available for retrieval outside the library by using ...
0
votes
1answer
99 views
Modules + Fascade + Mediator combination in JavaScript
I've finished reading a great article on http://addyosmani.com/largescalejavascript/
This article explains how to combine modules, a facade, and a mediator together for a JavaScript application.
I ...
0
votes
1answer
65 views
A facade to hide authentication details from Java web service
I'm building an UI client that uses a service API that behind the scene uses Web services. One of the API services looks like this:
interface UserService {
List<User> findUsers(User ...
0
votes
1answer
96 views
stacktrace, callsite problem with logging facades
How do logging facades (if they do) solve the problem internally that they will add extra stacktrace frames to the log entry's context or obscure the callsite. It seems that in some facades (e.g. ...
0
votes
1answer
114 views
Facade design pattern, get attribute from facade
I have something like facade design pattern in my application. We can start this:
http://www.patternsforphp.org/doku.php?id=facade
From example:
Facade = Computer
Parts: CPU, memory...
And what is ...
0
votes
1answer
62 views
How to avoid casting between the DL - BL - UI layers ? (C#)
I designing an applications which basically has 3 different logic layers:
DB connector (implemented by ADO.NET).
BL the business logic (the only thing the UI knows).
DB repositories (connects ...
0
votes
2answers
285 views
Facade, service interfaces and transaction proxies with Spring
Situation
There is a high chance that users will not interact directly with the various Service objects (POJOs or Session Beans), since using the Facade pattern the different single services are ...
0
votes
3answers
139 views
Wrapper for Hadoop Applications
Does there exist a wrapper for Hadoop applications? I'm referring to a wrapper that would turn a Hadoop setup into a standalone application. I understand that this would defeat the purpose of Hadoop. ...
0
votes
1answer
97 views
Do ORM packages implement the Facade or Adapter pattern?
From my understanding the Adapter pattern is basically creating a wrapper on another class so that the class you are wrapping can be used by existing code. A facade is for changing an entire subsystem ...
0
votes
1answer
52 views
Calling services within services
I have a service layer in my application which contains services such as AccountService, UserService and DocumentService.
I use StructureMap for my dependency injection so the constructor of my ...
0
votes
1answer
400 views
IRepository, IService, Unity in an ASP.NET MVC Application, reference question
I'm new to Unity, but this question is more generic to IoC, and I’m pretty new to implementing IoC as a whole. I have VS2010 solution with this project structure (simplified slightly):
Business ...
0
votes
1answer
67 views
Create an object outside a facade class, does it break facade pattern?
In HomeCADEngine facade class I have a method "addRoom(room:Room)" and it will add this room to a ArrayList. But is it break facade pattern when we create a room outside facade class and then pass it ...
0
votes
1answer
105 views
How to use the Facade.Instance method without object construction?
I only recently completed a unit on software patterns and am now attempting to comprehend the PureMVC framework. One thing has got my stumped however, something which is simple to the gurus here.
I'm ...
-1
votes
1answer
176 views
What are the drawbacks of the Facade design pattern?
…and how can we overcome them using the aspect-oriented programming?