Tagged Questions
6
votes
6answers
1k views
How much business logic should Value objects contain?
One mentor I respect suggests that a simple bean is a waste of time - that value objects 'MUST' contain some business logic to be useful.
Another says such code is difficult to maintain and that all ...
3
votes
3answers
157 views
Difference between Transfer objects and Domain objects
Could you please explain the difference between Transfer objects and Domain objects in simple terms ? And if u could give a Java example, that would be great..
2
votes
2answers
45 views
Is a Data Transfer Object same as Value Object?
Is a Data Transfer Object same as Value Object or they are different? If they are different then where should we use a DTO and where should we use a VO?
The programming language we are talking about ...
2
votes
1answer
188 views
Copy data from JTable as HTML
JTable's default TransferHandler exports data in tab-delimited format. I'm trying to create my own TransferHandler that will export the data as an HTML table, but currently nothing gets copied to the ...
2
votes
4answers
172 views
Difference between Value Object pattern and Data Transfer pattern
In which scenario can I use those design patterns in n-tier architecture?
2
votes
3answers
817 views
what is a good pattern for converting between hibernate entities and data transfer objects?
I have had similar questions and concerns as to how to convert between Hibernate entities and data transfer objects to be returned by a web service as are discussed in this question:
Is using data ...
2
votes
3answers
685 views
Why do transfer objects need to implement Serializable?
I realized today that I have blindly just followed this requirement for years without ever really asking why. Today, I ran across a NotSerializableException with a model object I created from scratch ...
1
vote
4answers
820 views
Java data transfer object naming convention?
Given this scenario where you have "transfer objects" (POJO's with just getters/setters) which are passed by a client library to your API, what is the best way to name the transfer objects?
package ...
0
votes
0answers
61 views
Value object vs Data transfer object code examples
I'm looking for examples of value object and data transfer objects patterns. What I'm really looking for is way to send entity object through rest json. Unfortunatelly DTO and VO on google are often ...
0
votes
4answers
84 views
Java: Transferable Objects & Serialization
I need to serialize a Transferable object to I can send it over an object data stream but during runtime I get the error java.io.NotSerializableException & I have no idea whats wrong. How do I fix ...
0
votes
2answers
501 views
DTO pattern vs Memento pattern
What are the differences between DTO pattern(by Fowler) and Memento pattern(by GoF) in motivation and implementation aspect? Can it be the same classes? If yes, how can I name them (xxxDTO or ...
0
votes
7answers
811 views
The meaning of API
Could anyone please tell me the meaning of API in following paragraph, that's actually about Transfer Object:
If it's likely that a business service
might be asked to send or receive all
or ...