All Questions
5 questions
3
votes
4
answers
763
views
Do I have LocalDTOs? If yes, what is a good approach to keep encapsulation of the domain model?
LocalDTO term refers to Fowler's article.
Say I have a domain entity Person:
public class Person {
private String id;
private String name;
private int age;
}
This entity has its own ...
1
vote
2
answers
5k
views
Parsing and validation of a csv file
I am trying to create a library where I need to validate and parse a file in a CSV-like format and then use this data to generate a Tree data structure.
At the moment I split the process into two ...
3
votes
2
answers
234
views
Loose coupling of daemon process and administration interface
I have a daemon process, written in Java, which I would like to be configurable at runtime via an HTTP-based API.
For a number of reasons, I'd rather keep the admin API separate from the daemon ...
3
votes
1
answer
357
views
Architecture recommendation for Android
Recently I developed an Android application which is very difficult to maintain. We are stuck in a complicated situation. We developed Android Apps which contained 500k LOC and another team developed ...
4
votes
1
answer
294
views
Architectural problem for Activity communication in an Android app
I maintain an open source Flickr app Glimmr for Android. There is currently an architectural issue around pagination that I've been trying to solve for quite a while, and would appreciate ideas.
...