Tagged Questions

In object-oriented programming, the single responsibility principle states that every object should have a single responsibility, and that responsibility should be entirely encapsulated by the class. All its services should be narrowly aligned with that responsibility

learn more… | top users | synonyms (2)

24
votes
13answers
1k views

How do you define a Single Responsibility?

I know about "class having a single reason to change". Now, what is that exactly? Are there some smells/signs that could tell that class does not have a single responsibility? Or could the real answer ...
17
votes
2answers
418 views

Learning Single Responsibility Principle with C#

I am trying to learn the Single Responsibility Principle (SRP) but it is being quite difficult as I am having a huge difficult to figure out when and what I should remove from one class and where I ...
17
votes
3answers
1k views

Aren't Information Expert / Tell Don't Ask at odds with Single Responsibility Principle?

It is probably just me, which is why I'm asking the question. Information Expert, Tell Don't Ask, and SRP are often mentioned together as best practices. But I think they are at odds. Here is what I'm ...
14
votes
9answers
961 views

Using the Single Responsibility Principle in the “real world” [closed]

I basically want to get an idea of the percentage of people who think it's reasonable to use the Single Responsibility Principle in real-world code and how many actually do. In Podcast #38 Joel talks ...
11
votes
5answers
342 views

How do you determine how coarse or fine-grained a 'responsibility' should be when using the single responsibility principle?

In the SRP, a 'responsibility' is usually described as 'a reason to change', so that each class (or object?) should have only one reason someone should have to go in there and change it. But if you ...
9
votes
4answers
247 views

Are current MVVM view model practices a violation of the Single Responsibility Principle?

With current practices (at least with WPF and Silverlight) we see views bound via command bindings in the view model or we at least see view events handled in view models. This appears to be a ...
9
votes
7answers
548 views

Uncle Bob style OOP in VB.NET: how to learn?

I’ve been professionally writing VB.NET software for seven years. However, I don’t have a strong computer science background – four courses while studying education at university in the 90s that gave ...
9
votes
6answers
540 views

Single Responsibility Principle: do all public methods in a class have to use all class dependencies?

Say I have a class that looks like the following: internal class SomeClass { IDependency _someDependency; ... internal string SomeFunctionality_MakesUseofIDependency() { ... ...
7
votes
6answers
248 views

Single Responsibility Principle in OOP

In my application design, I usually map objects to the important tables in the database. The objects then handle everything relating to that data (including linkage tables). So I for example have ...
6
votes
5answers
136 views

Single Responsibility and dependencies

If an object has a Single Responsibility, can the following be acceptable: public class Person { public string Name; public DateTime DateOfBirth; private IStorageService _storageService; ...
6
votes
4answers
104 views

Single Responsibility and Mixins

Given that Mixins generally introduce new behaviour into a class, this generally implies that a class would have more than one behaviour. If a class has a single responsibility this is defined as ...
6
votes
5answers
745 views

Difference between Single Responsibility Principle and Separation of Concerns

What is the difference between Single Responsibility Principle and Separation of Concerns?
6
votes
4answers
1k views

ASP.NET MVC: Authorization inside an Action - Suggested Patterns or this is a smell?

I have an ASP.NET MVC application using Authorization Attributes on Controllers and Actions. This has been working well but a new wrinkle has shown up. Object: Shipment Roles: Shipping, Accounting, ...
5
votes
2answers
188 views

ASP.NET MVC Show to end user that action was successful

Most of the ASP.NET MVC examples I have seen depict scenarios where a user is viewing an object (or collection of objects) and then moves from that page to one that displays a form that the user ...
5
votes
1answer
105 views

Separation of Concerns when adding new types

I have a system I've been working on this week where I'm having a hard time balancing separation of concerns with easy extensibility. I'm adding new types to the system, and it feels like shotgun ...
5
votes
12answers
886 views

How to go from bad to good OOP design?

I'm reading a lot about good and bad practices in OOP design. It's nice to know your design is bad, or good. But how do you get from bad to good design? I've split the interface (xaml) and codebehind ...
4
votes
1answer
57 views

How many methods can we reasonably put in an entity before it's considered bloated? [closed]

With all those readings about single responsibility principle, decomposition, etc., it's difficult to get an idea of what should be the alarm signal that an entity gets bloated. Is there some good ...
4
votes
2answers
298 views

Single Responsibility Principle - A hard to see example?

I've just read about the Single Responsibility Principle and at one point Robert C. Martin states that it is sometimes hard to see that a class has more than one responsibility. Can anyone provide an ...
4
votes
1answer
175 views

Help understanding the Single Responsibility Principle

I'm trying to understand what a responsibility actually is so I want to use an example of something I'm currently working on. I have a app that imports product information from one system to another ...
4
votes
3answers
282 views

Implementation question on Single Responsibility Principle

If I break my Objects down to 'Single Responsibilities', is there a fundamental thought whether like objects should live together or separately, for example if I have class Employee_DataProvider() : ...
3
votes
6answers
314 views

Clean up fat rails helpers

Today, trying to DRY up some code, I extracted some duplicate File.exists? code used by several helper methods into a private method def template_exists?(*template) and accidently monkey patched ...
3
votes
1answer
131 views

How to apply SRP to user interface classes?

My application uses a DI framework and follows "program to an interface" practice wherever necessary. I use constructor injection since I'd like to see the dependencies explicitly. But now the ...
3
votes
6answers
138 views

Keeping code at the same level when dealing with static methods

This might be a little subjective, but I'd like to get your input on my current situation. I have a class that will be used to serialize/deserialize an object. public class MyClass { public ...
3
votes
2answers
163 views

Should my validator have access to my entire model?

As the title states I'm wondering if it's a good idea for my validation class to have access to all properties from my model. Ideally, I would like to do that because some fields require 10+ other ...
3
votes
4answers
104 views

is there a need to refactor a large data access layer

i have a data access layer that abstracts the rest of the application away from the persistence technology. Right now the implementation is SQL server but that might change. Anyway, i find this main ...
3
votes
6answers
416 views

Is Form validation and Business validation too much?

I've got this question about form validation and business validation. I see a lot of frameworks that use some sort of form validation library. You submit some values and the library validates the ...
3
votes
3answers
149 views

Should logging reside within a class who's primary purpose is not logging?

This is more of a theoretical question. Should logging reside within a class who's primary purpose is not logging? Here is a simple interface for anything that will preform a calculation on a ...
3
votes
2answers
109 views

When an operation needs to pass more than just the result, do you tuple/throw/or getContextual?

I’m trying to refactor some “sending out an email” code by dividing the steps (validate, attach related content, format, send) into separate classes that can be more easily tested, logged, and ...
3
votes
3answers
888 views

Confused about Single Responsibility Principle in the following example

In the following video, the author takes an existing class and assigns the Single Responsibility Principle to it. He takes a Print Class that has the job of Accessing Data, Formatting, and Printing ...
3
votes
3answers
233 views

What does the single responsibility principle mean for validation

Does the single responsibility principle mean that your validation rules should be external to the entity? If so do you use one class per validation rule?
3
votes
1answer
722 views

When do you violate SRP (Single Reponsibility Principle)?

SRP(PDF version; HTML version) states that There should never be more than one reason for a class to change When you take a look at Outlook, Calendar Event window, it has "Save and Close" ...
3
votes
3answers
450 views

How to use the single responsibility principle in large wcf services?

We're using about 7 services at the moment. There quite large. Does anyone have any experience with the single responsibility principle and WCF services? Does this mean that you'll end up with lot's ...
2
votes
3answers
97 views

How Single Responsibility Principle relates to anemic/rich domain model?

Currently in doing some code review of stuff taken over from another team and have one doubt about applying SRP and its relation to anemic or rich domain model (as defined by Martin Fowler). Rich ...
2
votes
2answers
80 views

Which part of model should handle database inserts?

Title probably doesn't describe my problem too well, I'll be glad if somebody could edit it to something more appropriate. Anyways: I got a component that is supposed to return product price given ...
2
votes
1answer
80 views

How to avoid violating SRP when transforming data

How can I avoid violating the "single responsibility principle" when writing a class which should transform data from format A to format B? There are exactly two reasons for such a class to change, ...
2
votes
1answer
185 views

Secure Remote Password (SRP) in laymen terms

I am currently working on a project which involves authenticating users securely. I've been reading about SRP a lot, and still haven't managed to get my around the core concepts. I would be grateful ...
2
votes
3answers
165 views

Techniques/patterns to achive Single Responsibility Principle in an extendable class hierarchy

The Single Responsibility Principle says, for example, that an Invoice class should not contain the code to print itself. Printing should be separated out into a different class. But suppose you have ...
2
votes
1answer
72 views

SRP & “axis of change”?

I'm reading Bob Martin's principles of OOD, specifically the SRP text, and I understand the spirit of what it's saying pretty well, but I don't quite understand a particular phrasing, from page 2 of ...
2
votes
1answer
79 views

Psuedo-Backwards Builder Pattern?

In a legacy codebase I have a very large class with far too many fields/responsibilities. Imagine this is a Pizza object. It has highly granular fields like: hasPepperoni hasSausage hasBellPeppers ...
2
votes
2answers
181 views

Does the traditional use of the controller in MVC lead to a violation of the Single Responsibility Principle?

Wikipedia describes the Single Responsibility Principle this way: The Single Responsibility Principle states that every object should have a single responsibility, and that responsibility should ...
2
votes
2answers
131 views

Does having a method do more than one thing violate SRP?

For my purposes, I need to search for a specific node in an xml file and, if found, delete it. Should I pull search functionality out into its own method and delete functionality out into its own ...
2
votes
2answers
176 views

Designing database interaction while following Single Responsibility Principle

I'm trying to adhere to Single Responsibility Principle better, and I'm having issues grasping how to structure the general class design for communicating with a database. In a simplified version, I ...
2
votes
2answers
189 views

What is a good way to show the relationship between loosely coupled classes and interfaces?

I have introduced the SOLID principles to my team and they understand and are excited about using the principles. S - SRP - Single Responsibility Principle O - OCP - Open/Closed Principle L - LSP - ...
2
votes
4answers
231 views

Static factory on business object a violation of Single Responsibility Principle?

Am I violating the Single Responsibility Principle (SRP) if I put "data access" methods on the business object? My gut feeling is the API feels more user friendly if the Load method is present on the ...
2
votes
5answers
240 views

Who's responsibility is it, anyway? A design question

In the application I am writing I have a Policy class. There are 4 different types of Policy. Each Policy is weighted against the other Policies such that PolicyA > PolicyB > PolicyC > PolicyD. ...
1
vote
0answers
77 views

Using the MVP pattern and OO principles

I'm trying to apply the principles of object-oriented programming in a scenario that uses the MVP pattern. I got 4 solutions, and the last two I liked more. However most of the solutions break down ...
1
vote
1answer
30 views

Possible flawed design of a Spring app due to a violation of the single-responsability principle (SRP)

I am currently learning about the SOLID principles and especially the SRP. To put this principle into perspective, I recall having worked on a small application a while ago that had a single Spring ...
1
vote
5answers
82 views

OOD and responsibility

I'd like to think I've been in this field for quite some time, but sometimes the simple things make you question yourself... deciding what responsibility a class has, SRP, and that type of thing. So, ...
1
vote
3answers
152 views

how to install two application with one installation?

i am new to android application.I have created two sample applications as Oneproject,Twoproject.when i run the Oneproject then the Twoproject automatically should be install in the same device,For ...
1
vote
2answers
84 views

Limiting what a user can do based on roles

Scenario I'm building a system where each item gets reviewed by 2 different people. Whenever the first reviewer saves an item review it's then turn for the second checker to complete their individual ...

1 2