Tagged Questions
The facade-pattern tag has no wiki summary.
7
votes
3answers
115 views
Passing temporaries as non-const references in C++
I have the following piece of code, as an example dec_proxy attempts to reverse the effects of the increment operator upon the type that is executed in a complex function call foo - which btw I cannot ...
7
votes
6answers
4k views
Explain Facade pattern with c++ example?
I have checked with the wikipedia article, and it seems like it is missing the c++ version of a code example. I am not able to fully appreciate the Facade pattern without this, can you please help ...
5
votes
3answers
1k views
Use of Facade Pattern
How can I know that I need a facade Pattern at a point in my application development?
How can I draw the line between Facade Pattern and Template Pattern?
For example: In [this] article, we see ...
4
votes
2answers
1k views
Why use Facade pattern for EJB session bean
I want to ask what is the reason to use Facade Pattern when access EJB Session Bean. In my Netbeans 6.9.1, if I do New > Sessions Bean for Entity Classes, and let say that I select User entity, then ...
3
votes
3answers
83 views
Trying to figure out if this code creates any benefit by using a Singleton
I'm working on a project where one of the co-developers (and previous developers) use a Singleton/Facade for just about every page of class that has a lot of method calls inside of it, but that don't ...
2
votes
4answers
178 views
What's a good name for a façade class?
A little background: We're building a library/framework for working with scientific models. We have an interface Model which defines the operations that a model must implement, which is pretty ...
2
votes
3answers
57 views
How do you call a method that only exists to make another method name nicer?
I would like to know the proper term for a method whose only reason of existence is to make a method call easier, make a method name sound/read better.
Like that:
public function translate($string)
...
2
votes
2answers
743 views
How to set NHibernate Linq fetch strategy through a façade layer
I’m using NHibernate for data access, but accessing it through a façade layer. This layer consists of interfaces for the repositories, plus an IUnitOfWork interface which corresponds to the ISession ...
2
votes
2answers
769 views
Auto-generate an application facade from appsettings
Here's the question first:
Is this possible? I'm taking my inspiration from Joe Wrobel's work (a redux of the forgotten Codeplex project). Here, you do your work on creating your profile for the ...
1
vote
1answer
47 views
Java Structural change with Facade pattern
I'm trying to restructure some specific GUI code in a Java project, let's call it Project A, by removing dependencies from the project and moving the code to an existing API. I have another project ...
1
vote
3answers
66 views
Number of calls from Facade in Facade Pattern
We are having a "discussion" about what should be placed in the facade layer and how many calls the facade layer should make to the underlying layers.
In our project we have an Orchestration layer ...
1
vote
4answers
142 views
Why use facade pattern in EJB?
I've read through this article trying to understand why you want a session bean in between the client and entity bean. Is it because by letting the client access entity bean directly you would let the ...
1
vote
2answers
179 views
Multiple Interfaces extending in Java
I need to implement Facade design pattern with multiple inheritance of interfaces in Java or to be correct Facade with Bridge design pattern . I know this is possible because I saw it in as a part of ...
1
vote
8answers
448 views
Hiding classes in a jar file
is it really impossible to hide some classes in a jar file?
I wanted not to allow direct instantiation of the classes to keep it more flexible. Only the factory (or a facade) should be visible of ...
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
2answers
165 views
Java client/server application with 3 patterns
I am a college student, and I have to complete following task by the end of the month...
I have to write a client/server application in java that implements 3 patterns: Hollywood principle, Facade ...
1
vote
2answers
353 views
Facade Design Patterns and Subclassing
I am using a facade design pattern for a C# program. The program basically
looks like this...
public class Api
{
#region Constants
private const int version = 1;
...
1
vote
3answers
734 views
Is DataAdapter use facade pattern or Adapter pattern
When i see Update(),Fill() method of DataAdapter object I always think Is DataAdapter use facade pattern ?
It looks like behind the scenes It will create Command object, Connection object and ...
0
votes
2answers
56 views
Facade and Repository pattern: they should be Singleton?
I've to design some Repositories to handles CRUD operations.
I will put all of these repos in one Facade.
Should this Facade be a Singleton?
An example:
FacadeLibrary [Singleton?]
-
BookRepository ...
0
votes
0answers
23 views
QT4: How to use legacy domain model written in standard c++
I have a legacy domain model composed by classes that contains pointers to children classes ( std::list of class pointers as collection of child objects) and so on.. There is no a persistence ...
0
votes
3answers
49 views
Facade Pattern, is this ok?
I have two servers that I will be connecting to from one client. For each server, I will be doing an ftp "put" and a "rm".
Should I build one facade, and have an interface like this:
void ...
0
votes
1answer
67 views
Facade Design Pattern - Implementation
I am referring the book Elements of Reusable Object Oriented Software by Eric Gamma on degign patterns. I however understood the concept of Facade pattern, but still not able to understand the ...
0
votes
1answer
52 views
Design issue with facade
I have the following question:
In package A (a separate dll) I have ClassA.
In Facade (another separate dll) I have a method public IEnumerable GetAll(){}.
In web application I call ...
0
votes
1answer
29 views
Facade goes inside in each package or must have a package only for facades?
Where the Facade classes must go? Supposing I have three packages, Facade A goes inside Package A, Facade B goes inside Package B and Facade C goes inside Package C or I need a separate package only ...
0
votes
1answer
41 views
Hierarchy of utility classes behind a facade?
What practises exist when it comes to organizing utility classes where some could be subset of others?
As an example, you could have a FileUtil class with methods related to Files and a subset of ...
0
votes
0answers
146 views
What should be EJB Service Facade arguments and return types?
I'm on my EJB 3 services design phase right now and wonder about Service Facade pattern usage.
Assume I have domain object called "Service". In DB it's configuration data is spreaded among few tables, ...
0
votes
3answers
795 views
What is the point of a Facade in Java EE?
I'm not really understanding the point of a facade.
public abstract class AbstractFacade<T> {
private Class<T> entityClass;
public AbstractFacade(Class<T> entityClass) {
...
0
votes
1answer
334 views
Interfaces and Facade Design Patterns
I have been using a facade design pattern to group together all the administrative
funcionality I need in my program.
in my class library Company.Infrastructure.Repositories.Administration I have:
...
0
votes
3answers
177 views
Null pointer in my Facade :(
I've written a task manager, and well it;'s a long story... all in Java by the way. So I wrote a Facade which you can see below there is a problem with the HashMap and I suspect that the values which ...
0
votes
1answer
66 views
Should I separate data from Facade Class?
I'm making a "back-end" engine of HomeCAD. I have a facade class that do many things. But should I separate data (like array of object) from that class?
Many thanks
0
votes
1answer
514 views
Problems retrieving appsettings added during application start
I appear to be having an odd issue where, in my global.asax in my Application_Start(), I have something that goes off to my database, gets all of my app settings from a name/value table, and then ...
0
votes
1answer
422 views
When using facade session beans, why should we still use business session beans as well?
When using the facade design pattern to structure an application's business EJB layer, why should we still use session beans for the actual business logic? Is there a specific reason for not just ...
0
votes
2answers
681 views
Creating a Facade over Membership Provider
I am using the Membership Provider in ASP.NET MVC and for most data access I use nHibernate and a repository pattern. Do you recommend using a Facade over the Membership Provider so I can create a ...
0
votes
3answers
248 views
Best practice to maintain site class(es)
I am building a web application which uses an externally built class to handle much of the work and rules for the site. Most pages will require access to this class to get the information it needs to ...
-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?
-2
votes
2answers
166 views
Decorator and Facade pattern recommend tutorial in C# [closed]
Can anyone recommend good tutorial on facade and decorator pattern usage, in C#?