The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
67 views

Writing a Data Facade class library vs. Including it in the Data Access layer

I am writing a simple data- displaying app that has a UI presentation layer, a data access layer, and a commons layer which includes the data sets. Since this application will be relatively light ...
0
votes
0answers
29 views

Plugging in design patterns

I am trying to get my head around a couple, well most of the design patterns. I have set up a 'space simulator' which involves a menu for adding/removing/interacting with space items such as asteroids ...
0
votes
1answer
53 views

Facade/Service architecture

Before I ask my question I must describe how our applications are built. We run several web applications that uses ejb´s in the service layer. I try to describe the communication with a short ...
-5
votes
2answers
277 views

Facade pattern vs Delegate pattern; In Java? [closed]

I have been referred to the facade design pattern in web a lot. Literally it is clear to imagine what a facade bean is. When it comes to implementation though, I am unable to make any difference from ...
1
vote
0answers
38 views

Does Façade leverage the Open-Closed Principle?

The Wikipedia page (as of today 2013-02-27) for the Open-Closed Principle says that it's realized via inheritance. The name Open/Closed Principle has been used in two ways. Both ways use ...
2
votes
1answer
82 views

Lots of functions that take the same parameter?

Im sorry for if the question is bit unclear. please feel free to clearup/generelize this question. I don't know english well enough to do it myself I need to use a web service all the methods of the ...
2
votes
1answer
189 views

facade pattern pros and cons [closed]

hi im reading the book " applied java patterns" about facade pattern and im trying to find out what is good and bad about it, it says... "The benefit of the Facade pattern is that it provides a ...
3
votes
1answer
255 views

How to implement the facade pattern in C# AND physically hide the subsystem

When implementing the facade pattern in Java, I can easily hide the subsystem of the facade by using the package-private modifier. As a result, there is only a small interface accessible from outside ...
0
votes
1answer
281 views

JSF2.0 State_Saving_Method client issues

Im using Mojarra 2.1.3, Netbeans 7.0.1, primefaces 3.2. I am currently in a quandary whether to use STATE_SAVING_METHOD client or server. Currently Im setting the saving method to client. And this ...
0
votes
2answers
185 views

Is using partial classes instead of Facade pattern an anti-pattern itself?

A few years ago, I was told to implement the business logic code in separated .cs files, although this files wrapped the same partial class. So one could call a method from business layer like this: ...
2
votes
2answers
942 views

Backbone Facade/Mediator Pattern Challenge

I'm toying around with the aura(http://github.com/addyosmani/backbone-aura) example implementing Facade and Mediator patterns in Backbone.js. I hope someone is familiar with the concept.. I'm trying ...
1
vote
2answers
206 views

Implementing a Subsystem Communication Design Pattern

I am looking for an appropriate design pattern for the following: I have the following system structure: MainApplication SubSystem1 SubSystem2 SubSystem3 Where the MainApplication ...
2
votes
1answer
178 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 ...
3
votes
3answers
115 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 ...
0
votes
2answers
518 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 ...
12
votes
3answers
298 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 ...
0
votes
3answers
148 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
398 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 ...
-2
votes
2answers
1k views

Decorator and Facade pattern recommend tutorial in C# [closed]

Can anyone recommend good tutorial on facade and decorator pattern usage, in C#?
1
vote
3answers
176 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 ...
6
votes
4answers
1k 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 ...
0
votes
1answer
109 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
63 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 ...
2
votes
4answers
768 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 ...
0
votes
1answer
99 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 ...
8
votes
2answers
7k 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 ...
1
vote
2answers
2k views

Multiple Interfaces extending in Java

I need to implement a 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 ...
2
votes
3answers
59 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
1answer
431 views

What are the drawbacks of the Facade design pattern? [closed]

…and how can we overcome them using the aspect-oriented programming?
3
votes
3answers
5k 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) { ...
3
votes
8answers
2k 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
353 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 ...
0
votes
1answer
893 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
317 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 ...
1
vote
2answers
255 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 ...
2
votes
2answers
1k 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 ...
0
votes
2answers
123 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
1
vote
1answer
827 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; ...
5
votes
3answers
2k 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 ...
2
votes
2answers
1k 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 ...
0
votes
1answer
946 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
589 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 ...
1
vote
2answers
801 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 ...
2
votes
3answers
944 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
3answers
345 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 ...
11
votes
6answers
6k 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 ...