Communication between Multiple Presenters in MVP
I’m designing an application using the MVP pattern, but a few of the edge cases for the system rely on communication between multiple presenters.
Where does authorization fit in a layered architecture?
Typically, I place authorization decisions in my server side controllers. These have been RESTful endpoints recently, but I think the same stands for MVC type architectures. For the sake of argument assume that it’s role based authorisation. A protected method will be annotated or make checks and return 403s if necessary.
Where does authorization fit in a layered architecture?
Typically, I place authorization decisions in my server side controllers. These have been RESTful endpoints recently, but I think the same stands for MVC type architectures. For the sake of argument assume that it’s role based authorisation. A protected method will be annotated or make checks and return 403s if necessary.
Is the application architecture of Facebook Flux a new idea?
Facebook announced that it’s using the architecture they call Flux to develop their projects.
Controller / Service – Should a service save changes to the database
I have an action on my controller called DeleteLine
. This removes a line from the users basket.
Controller / Service – Should a service save changes to the database
I have an action on my controller called DeleteLine
. This removes a line from the users basket.
Controller / Service – Should a service save changes to the database
I have an action on my controller called DeleteLine
. This removes a line from the users basket.
Architecture for a mobile (Android) chat application
I want to develop a chat application that reminds a bit whatsapp, I am doing it as a learning project. I am currently doing it on Android just because I am doing an Android course.
Architecture for a mobile (Android) chat application
I want to develop a chat application that reminds a bit whatsapp, I am doing it as a learning project. I am currently doing it on Android just because I am doing an Android course.
Mocking the context of application
We have a context of the application which is a static class named Holder containing several static properties initialized by objects that are used throughout the application.