Tagged Questions
The domain-object tag has no wiki summary.
12
votes
1answer
430 views
Symfony2: How to find the users that have permissions for a certain domain object?
In our application based on Symfony2 we would like to create a list of which of the users in the system that has permissions for a given domain object. We are using ACL and our immediate instinct was ...
6
votes
3answers
705 views
How do one use ACL to filter a list of domain-objects according to a certain user's permissions (e.g. EDIT)?
When using the ACL implementation in Symfony2 in a web application, we have come across a use case where the suggested way of using the ACLs (checking a users permissions on a single domain object) ...
6
votes
2answers
121 views
Where to put domain logic which needs to fetch data from database
I know that domain logic should be placed into domain objects. But what if my domain logic needs data from the database ? (e.g. checking unique value, computed values.. etc ) I think injecting ...
4
votes
4answers
2k views
Constructing a Domain Object from multiple DTOs
Suppose you have the canonical Customer domain object. You have three different screens on which Customer is displayed: External Admin, Internal Admin, and Update Account.
Suppose further that each ...
3
votes
1answer
65 views
Modify and validate a grails domain object without saving it
How do I use the GORM .get to retrieve an object o, modify some fields, and call o.validate() to find errors without Hibernate saving the object to the DB. discard by itself does not prevent the ...
3
votes
2answers
173 views
Service contracts vs. domain objects
Say I have two interfaces to my application:
A web front-end
A back-end which provides data
Both of them talk to a web-service, and that web-service in turn, handles business logic and talks to a ...
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..
3
votes
2answers
79 views
Should child entity classes have their own repositories?
I have several classes inheriting from an Admin class: Manager, Translator, etc.
Admin is an aggregate, so should have its own Repository. However, some methods to find Managers or Translators might ...
3
votes
2answers
279 views
Grails Domain Classes in Sets
Is it a bad practice to use domain objects in Sets or as keys in Maps?
In the past I've done things like this a lot
Set<Book> someBooks = [] as Set
someBooks.addAll ...
3
votes
2answers
86 views
Usage patterns/use cases for DI or when to start using it
I'm not sure for which use cases one should to use DI in the application. I know that injecting services like PlaceService or CalculationService etc fits very well but should I also create my domain ...
3
votes
2answers
127 views
Is a “domain object” any class that represents business rules?
I came across the term "domain object" and found a couple of definitions on Google but I just want to verify that my understanding is correct.
Is this simply any class that represents business rules ...
3
votes
5answers
1k views
How do you use Intefaces with the Factory Pattern in Domain-Driven Design?
Does it make sense to use interfaces for your domain object factories by default, or should interfaces be reserved for the factory classes only when you need them?
public IUserFactory
{
User ...
2
votes
2answers
239 views
Domain Model or Domain Object ? - Definitions
Please correct me if I'm wrong.
We may say Domain Model to represent:
a) The M part of a MVC structure, having on the M part, a Domain Driven Design pattern applied.
b) A scheme of entities, their ...
2
votes
2answers
400 views
Service Layer validation vs. Domain Object validation; potential “abuse” of Domain Objects?
I've seen lots of book and article examples saying to put validation code in your Service Layer. Keep the Domain Objects "dumb" (aka, pure POCO's) and handle all validation that a Domain Object might ...
2
votes
1answer
190 views
Unit of Work pattern, getters, setters and contracts (PHP)
I'm not sure if the title is the best way to describe this question.
This book - http://apress.com/book/view/9781590599099 - illustrates an implementation of the Unit of Work pattern. It goes a ...
2
votes
1answer
1k views
How do I initialise a Date field in a Grails domain object to act as a timestamp?
I have a domain class which has two dates in it and I want one of them populated with the current time when a record is created for the object, like a create timestamp...
class Contact {
Date ...
1
vote
1answer
113 views
Implementing Business Objects for a WinForms MVP application
I'm building a new system from scratch and working on the design of the application. I'm looking at viable approaches for modelling my Domain objects.
Some specifics about the project - this will be ...
1
vote
2answers
90 views
Should I use my ORM generated objects as my domain object?
My ORM is generating objects reflecting the database table structure. This objects are extensible, so I'm able to add new properties and methods. This objects do not contains any persistence logic,so ...
1
vote
1answer
2k views
Is this a valid use of Grails transients?
I have a domain object on which I want to store a few things which only exist at runtime. I looked at the documentation and found the transients keyword, which, on the face of it was what I was ...
0
votes
0answers
21 views
Ruby database and middle tier design
This question pertains towards best practices and design. Here goes...
In my application, I have 3 main objects, AutoStore ( stores ), AutoLineItem ( items like wrenches, parts and bolts ) and ...
0
votes
0answers
44 views
IRepository and Domain Logic
IRepository
"Mediates between the domain and data mapping layers using a collection-like interface for accessing domain objects." Martin Fowler
But often logic spreads between Business Layer and ...
0
votes
1answer
95 views
Convention for naming domain objects in Hibernate via regular sql
In a project I am working on, we have the convention that Hibernate objects (those that are mapped in *.hbm.xml files) end with the suffix "Hib". For exmaple, we'll have "UserHib", and "OrderHib", ...
0
votes
2answers
137 views
Grails Validation Errors - Developer vs User
What is the best way to convert the developer-oriented validation error list you receive from calling validate() on a Grails domain object into user-oriented error messages?
Example:
Property [email] ...
0
votes
2answers
212 views
Domain Objects and Value Objects - are they equal?
By looking to the example of a Domain Object into Zend Quickstart tutorial, and other examples considering a DAO/VO patterns, they both seem to be very similar.
Can we deduce that to say "Value ...
0
votes
0answers
50 views
How to validate a domain object in ASP .NET?
I have an object that looks like this:
Public Class Task
Public Property IsActive As Boolean
Public Property AssignedPerson As String
End Class
On my aspx page, I load up the Task from the ...
0
votes
2answers
105 views
should controllers in a MVC application be 1 per domain object or one per group of related actions?
I have MVC app and when I create I start with one controller for my domain model Person. I have actions including AddPerson, DeletePerson, EditPerson, etc. Then I start adding more like AddPersonBoss ...
0
votes
1answer
305 views
Mapping domain objects to web service proxy objects in Java
I am trying to find a way for mapping domain objects to web service proxy objects, generated by various Java web service stacks.
Both the web service (.NET) and the Java code use implementations of a ...