Search the web
Sign In
New User? Sign Up
domaindrivendesign · Domain-Driven Design
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want your group to be featured on the Yahoo! Groups website? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.

Messages

  Messages Help
Advanced
Messages 3872 - 3901 of 7770   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
3872
This just came up in a discussion and I quickly realized that although I handle this in my own way nut I have heard very little in official position on the...
gregory young
gumboismadeo...
Offline Send Email
Jun 4, 2006
8:24 am
3873
Hi guys, Anyone have an opinion on how much information needs to exist in the UI to make decisions without a) putting *real* business logic in the UI layer and...
Bil Simser
sim0099
Offline Send Email
Jun 7, 2006
3:16 am
3874
Hey Bil, Arguably, a speadsheet is a special case of application since it's raison d'etre is to massage related rows of data visually.. On the other hand, I...
Jonathan Harley
agilista
Offline Send Email
Jun 7, 2006
4:59 am
3875
Jonathan, Good point and MVP would certainly be a pattern to follow here. I'm struggling though with something like a model that holds 10,000 objects vs. doing...
Bil Simser
sim0099
Offline Send Email
Jun 7, 2006
12:23 pm
3876
... Assuming that it wasn't a realtime type of system, I'd suggest that might be a great use of a domain side (or even UI side) cache. But you do bring up a...
David Lanouette
davidlanouette
Online Now Send Email
Jun 8, 2006
1:12 am
3877
Hi Bil, BS> Imagine a spreadsheet type app where users would enter something and there BS> would be a ripple effect that affects multiple rows of information...
Gregg Irwin
greggirwin143
Offline Send Email
Jun 8, 2006
8:47 pm
3878
Took the words out of my mouth Gary. I was thinkning Flyweight too. The bottom line for me is that the UI is simply a view of the object graph. Any...
Jonathan Harley
agilista
Offline Send Email
Jun 9, 2006
5:54 am
3879
Hello all! I've ordered the above mentioned book but it will take from 6 to 8 weeks to ship (I live in Brazil). In the meantime, I was wondering if Nilsson...
Carlos Henrique Estev...
chmendonca
Offline Send Email
Jun 10, 2006
12:55 am
3880
CALL FOR PARTICIPATION WIKISYM 2006: THE 2006 INTERNATIONAL SYMPOSIUM ON WIKIS August 21-23, 2006, Odense, Denmark CO-LOCATED WITH ACM HYPERTEXT 2006 See...
Dirk Riehle
dirkriehle
Offline Send Email
Jun 10, 2006
4:05 pm
3881
If the client is expected to check the data it is redundant to recheck it at object construction. Mind you that redundancy isn't always bad, and a purist might...
Rafael de F. Ferreira
rafaeldff
Offline Send Email
Jun 12, 2006
12:19 am
3882
How about if only giving fetching operation on Repository to Domain object?.. That's mean we need to make sure Add,Update and Remove are restrict to use from...
ryzamm
Online Now Send Email
Jun 12, 2006
4:03 am
3883
Follow DDD book, I understand that specification and repository is part of domain model but not involve in any business logic of the domain, then in this group...
ryzamm
Online Now Send Email
Jun 12, 2006
6:48 pm
3884
From: "ryzamm" <ryzamm.at.yahoo.com@...> To: "domaindrivendesign@yahoogroups.com" ...
yahoogroups@...
jhrothjr
Offline Send Email
Jun 12, 2006
10:17 pm
3885
Indeed, a domain constructor rechecking what the client tier has already checked is certainly redundant (which, as Rafael carefully points out, is an...
Dan Bergh Johnsson
dan_omegapoint
Offline Send Email
Jun 13, 2006
12:04 am
3886
Hi, In my opinion, the domain should always check data! The reason is simple: client depends on domain. This mean domain should protect itself from any client...
Tomas Karlsson
marcellus874
Offline Send Email
Jun 13, 2006
4:08 pm
3887
C A L L F O R P A P E R S ============================= The 6th OOPSLA Workshop on Domain-Specific Modeling October 22, 2006 Portland, Oregon, USA ...
Juha-Pekka Tolvanen
jpt_mcc
Offline Send Email
Jun 14, 2006
10:30 am
3888
Hi Carlos, ... The book doesn't have a CD, and I didn't notice any URL for the source code. But the book's website (which doesn't currently have any real ...
Wayne Vucenic
wvucenic
Offline Send Email
Jun 16, 2006
8:47 pm
3889
Which the patterns, to represent components that not make part of domain model? Example: In HTML form, we have a combobox element search with two options,...
Bruno Oliveira da Silva
s0nicbr
Offline Send Email
Jun 19, 2006
6:04 am
3890
Hi Bruno, I consider populating the combo box with a list of values the more interesting part of the problem (more so than retrieving the value from an HTML...
Bert Hooyman
berthooyman
Offline Send Email
Jun 19, 2006
6:34 am
3891
Than, a combobox with name "filterSearch" and two values: name, address, is a part of User class? Parting from principle, that a User, human from real word,...
Bruno Oliveira da Silva
s0nicbr
Offline Send Email
Jun 19, 2006
12:25 pm
3892
name and address are properties of the user - they are part of your domain model of user. Comboboxes definitely are not. They live in the presentation tier of...
Bert Hooyman
berthooyman
Offline Send Email
Jun 19, 2006
12:58 pm
3893
This begs more general questions (probably already addressed)for UI and application layer interaction. * Should the application layer accept and return...
Chris Gardner
chris_gardner76
Offline Send Email
Jun 21, 2006
10:52 am
3894
Folks, What do you think about Servlets dealing with Entities. It could occur in two ways: 1. Services returning searched data 2. Servlets creating Entities to...
Carlos Miranda
cevmiranda
Offline Send Email
Jun 26, 2006
3:35 pm
3895
I'm relatively new to "real" object-oriented design/development (i.e. patterns/refactoring etc.) although I've been working with OOP languages for quite some...
Gary
gdw_62
Offline Send Email
Jun 27, 2006
7:47 pm
3896
I have heard a lot of talk in this forum about keeping security out of the domain model. I have been trying to do that on my latest projects, but on a new...
Jesse Napier
jnapier171
Offline Send Email
Jun 28, 2006
5:45 am
3897
My quick take on this: Because the maintenance of user roles is an important part of the end-user functionality of the application, then they're definitely a...
Alasdair Gilmour
alasdair_gil...
Offline Send Email
Jun 28, 2006
10:35 am
3898
A problem I often seem to come across when trying to apply DDD principles is that of using the Aggregate pattern where the domain contains deeply nested ...
Alasdair Gilmour
alasdair_gil...
Offline Send Email
Jun 28, 2006
1:02 pm
3899
We have a very similar situation on the project that I am working on. I struggled with this for a while. The direction we decided to go was to create aggregate...
Tony Pitluga
drfatbooty
Offline Send Email
Jun 28, 2006
1:45 pm
3900
I had the same problem with a pet project I put together. Here's what the hierarchy look like: Category Forum Topic Post It's not as deep as your example but...
Bil Simser
sim0099
Offline Send Email
Jun 28, 2006
2:40 pm
3901
Thanks Tony I still struggle with splitting it up this way. Lets say I create a couple of aggregates from the original hierarchy (with the same pattern of ...
Alasdair Gilmour
alasdair_gil...
Offline Send Email
Jun 28, 2006
2:42 pm
Messages 3872 - 3901 of 7770   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2007 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help