2
votes
1answer
136 views

Designing status management for a file processing module

The background One of the functionality of a product that I am currently working on is to process a set of compressed files ( containing XML files ) that will be made available at a fixed location ...
0
votes
1answer
83 views

Designing application flow

I am creating a web application in java where I need to mock the following flow. When user trigger a certain process (add product to cart), I need to pass through following steps Need to see in ...
1
vote
0answers
125 views

Fluent interface implementation and reflection. Case study

I hope I picked the right group for this question... I have this little framework I want to implement and I would like to have an opinion on it. In particular I am more concerned about the ...
0
votes
0answers
68 views

Patterns for refactoring

I have a existing legacy library which has multiple helper classes. For example Helper1, Helper2. They are not well organized. I want provide an easy to use interface like this: ...
0
votes
0answers
107 views

Java Design Question - Updates to Multiple Tables

My application is having several domains and have corresponding screens for doing all the CRUD operations. Now I have a requirement where objects from cross domain should be shown in single screen. ...