Skip to main content

All 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 ...
George Z.'s user avatar
  • 705
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 ...
Vektor88's user avatar
  • 345
3 votes
2 answers
235 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 ...
Mac's user avatar
  • 147
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 ...
Amir's user avatar
  • 139
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. ...
brk3's user avatar
  • 143