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)

0
votes
0answers
6 views

Is Domain Entity violating Single Responsibility Principle? [migrated]

Single responsibility ( reason to change ) of an entity should be to uniquely identify itself, in other words, its responsibility is to be findable. Eric Evan's DDD book, pg. 93: most basic ...
1
vote
1answer
85 views

Cohesive way to validate a class in Scala using Scalaz 7

My goal is to validate User's fields within the object's applymethod before creating one effective User instance: case class User(String userName, String password) object User { def ...
-1
votes
1answer
71 views

Does ToString() method violates SRP? [closed]

As the title states, why any object should inherit the ToString() method (in C# or Java for example) and in some way care to convert it to String? Isn't this, in some cases, a violation of the Single ...
0
votes
0answers
33 views

Single responsibility principle - is it relevant only for classes? [closed]

According to wikipedia (http://en.wikipedia.org/wiki/Single_responsibility_principle), the SRP is relevant for classes - "In object-oriented programming, the single responsibility principle states ...
1
vote
2answers
79 views

Cancelable backgroundworker but don't violate SRP

Having a long running measurement inside a backgroundworker. The measurement should not know that it is running in another thread because of SRP(Single reponsibility principle). Let's consider this ...
2
votes
2answers
34 views

Alternatives to partial controller classes

I have moved onto a project that has a public partial class AdminController, there are 15 other classes that implement this partial class. I think this is done so the project can have lots of routes ...
3
votes
1answer
318 views

Symfony2 Form component - violating MVC and SRP?

The more I use Symfony2 and struggle with it's forms the more I come to the conclusion that they are a massive scary beast that shouldn't even really exist. I have come upon this article here and I ...
-2
votes
0answers
75 views

Talking about Single responsibility principle with example

Hy all :) I don't have some precisely question about this topic, i just want to confirm(or not) my understanding of Single responsibility principle and benefits of that principle through some example. ...
1
vote
1answer
6 views

Method-level SRP vs. interface bloat

I suggested a refactoring a coworker and he countered basically quoting the SRP. Here's the situation. We have a bunch of helper methods that to me are all a related purpose - html generation. There ...
0
votes
0answers
28 views

Single responsibility principle in ViewModel

I'm coding an editor for graphs (Graph Theory).Let's imagine vertex needs these properites : class Vertex{ int ID {get;} Color color {get; set;} Point point{get; set;} } But it's violating of ...
0
votes
0answers
40 views

Java Selector server packet loss

i have made a Tcp server in java some time ago... and it worked until recently... it recieves packets and reads them but after a specific packet it just stops without any exceptions! and it doesnt ...
1
vote
3answers
80 views

About DI and SRP

I'm writing the following class public class UserApplication { private IUserRepository UserRepository { get; set; } private IUserEmailerService UserEmailerService { get; set; } public ...
1
vote
0answers
81 views

Do setters and getters really break the SRP?

I've recently read an article that describes how they clearly may break the SRP. And now I'm totally confused, because I used to write single classes with both setters and getters within for the long ...
2
votes
3answers
59 views

Is the single responsibility principle directly related to class' dependencies?

If a class is dependent through interfaces on more than one other class is that a violation of SRP, or is it only a violation if both interfaces are expected to change, or is this the wrong line of ...
1
vote
1answer
54 views

Does PetClinic Example break Single Responsibility Principle

I as just curious plus also to better understand SRP, petclinic spring mvc example has one big Clinic inetraface which has methods for owner, pet and visit. SRP on the other hand says "that one ...
1
vote
2answers
89 views

Refactoring method according Single Responsibility Principle

I need to test contract obligations program. I don't see any straightforward way to test this method as written. It's violating the Single Responsibility Principle, and simply doing too many things. I ...
1
vote
2answers
143 views

SOLID GRASP controller pattern?

I have a question about applying the GRASP controller pattern while keeping it SOLID, more specifically, while keeping it with a single responsibility. Wikipedia's Controller Pattern definition says: ...
1
vote
0answers
53 views

Does combining login and password hashing into the same class violate SRP?

I have a LoginController class like: class LoginController { protected $db; public function __construct(PDO $db) { $this->db = $db; } public function login($username, ...
0
votes
0answers
100 views

Openssl tls srp

Id like to use srp in my current project. But im kinda at a loss as to how i would implement that with openssl. I got the client side running but i dont know how to write the server side. I also ...
1
vote
3answers
232 views

Is Car class violating Single Responsibility Principle?

Even thought I think I understand Single Responsibility Principle and high/low cohesion principle, the following questions are still causing me some confusion 1) Assume Planet and Bird properties are ...
1
vote
1answer
55 views

Business entity that accesses data store to validate itself: an SRP violation?

Consider the following business entity class. In order to validate itself, it needs to know something about the state of the database, perhaps to prevent a conflict of some kind. So, it has a ...
0
votes
0answers
44 views

Single Responsibilty Principal

I'm trying to break down my actual submit function and break it down into simpler smaller functions so each function performs one task to keep with with the Single Responsibility Principal. Trying to ...
2
votes
2answers
168 views

Does the Builder Design Pattern violate the Single Responsibility Principle?

Let me show you what builder design pattern implementation I see in every blog: interface IProductBuilder { void BuildPart1(Part1 value); void BuildPart2(Part2 value); void ...
3
votes
1answer
259 views

Single Responsibility Principle in MVC controllers. Critique required

In my MVC4 app, there are some actions that need to behave differently depending on whether you are logged in (FormsAuthentication in my case) or not. For example, I have an AccountController that ...
0
votes
0answers
30 views

Where does the Event Aggregation registration happens

Hej guys, I'm kind of wondering what path to take. I'm writing an application that uses Event Aggregation (EA) a lot. Right now I was implementing an interface in my classes that exposes ...
1
vote
1answer
80 views

SRP without violating encapsulation

I am having trouble reconciling the Single Responsibility Principle with encapsulation. It seems like splitting responsibilities amongst classes requires exposing a lot of data. As an example, ...
0
votes
1answer
54 views

On “Single Responsibility” and coding practice for object validation [duplicate]

Possible Duplicate: What does the single responsibility principle mean for validation Case A: Validate object -> Send to Method -> Method assumes valid object -> Method executes Case B: ...
3
votes
2answers
197 views

Understand Single Responsibility Principle of SOLID design

I'm currently trying to learn the SOLID design principles along with behavior driven development, but am having quite the hard time getting my head around the Single Responsibility Principle. I've ...
1
vote
3answers
533 views

RubyMotion async programming with BubbleWrap

I am confused with how to write decent code when using a lot of asynchronous code. In the following code snippet I log in to get the authentication cookie and use that cookie for the next request to ...
2
votes
1answer
78 views

Are utility classes allowed with the Single Responsibility Principle (SRP)

I just answered a question related to SRP which made me think: How does SRP stand on utility classes? By definition utility classes tend to do a lot of things. I can see how gatering related ...
3
votes
2answers
102 views

Difference between Concern and Responsibility ( ie difference between SRP and SoC )?

SRP - each class should have just one responsibility ( ie reason to change) Separation of Concerns is the process of breaking a computer program into distinct features that overlap in ...
0
votes
1answer
86 views

Does the class CommaDelimLog in the following code violates single responsibility principle?

The program parses log files - each log file may have different kind of field format (fixed width, comma delimited, etc). Also each log file are mixed of several different kind of logs - each kind ...
0
votes
1answer
43 views

is this a good approach to create a logging system

I want to create a log system not to log exceptions , but user activities and what they do upon data . for example when a user deletes a record , I want to log username , records id , date and ... . ...
0
votes
3answers
171 views

Refactoring: When to stop Refactoring?

I am so obsessively OC at dividing a class or instance method and move it in its own class, and many times a simple "hello world" method will be divided into many classes. like for example, class ...
0
votes
1answer
34 views

I know of three ways in which SRP helps reduce coupling. Are there even more?

I'd like to figure all the possible ways SRP helps us reduce coupling. Thus far I can think of three: 1) If class A has more than one responsibility, these responsibilities become coupled and as such ...
0
votes
0answers
165 views

Rails Model to use API instead of Database

I'm refactoring a rails app that currently uses a database and ActiveRecord so that instead of of the database, it uses a JSON API (Sinatra). What would be the best way to refactor the models? The ...
2
votes
2answers
57 views

Single-responsability principle

Let's say you have abstract class A doing some stuff. Then you have abstract class B doing other stuff. And lastly a few normal classes, let's say C ... Z. Both A and B provide functionality that ...
0
votes
3answers
82 views

Why is a table with too many columns a smell?

Recently I had this discussion with some other developers about how too many columns in a table , or too many attributes on a model is a code smell . Some argue that a Model with too many Attribute is ...
0
votes
1answer
92 views

code adherence to single responsibility principle & unit testing

I have lately been reading on the Single Responsibility Principle concept, and in theory I agree a lot with it. I am having difficulty coming to terms on which code can be exactly classified as ...
4
votes
1answer
431 views

Command Pattern in .NET MVC 3 (removing junk from the controller)

I am trying to implement this Command Pattern on my .NET MVC 3 application, specifically for saving edits to a Thing. I am undecided on how to proceed. Before I get to the actual question, here is the ...
2
votes
1answer
76 views

Functional Programming, SRP, testability and classes with static and instance mutable fields

I hope I can phrase this question correctly. I have a concern when dealing with state and test-ability in classes with static and instance mutable fields. Do the static fields essentially constitute ...
1
vote
1answer
191 views

Design pattern for webservice should i use

I have a requirement in my project where I will have to built a webservice. This webservice will do the following things: Accept XML format data Return XML format data The XML input data will have ...
0
votes
2answers
85 views

SRP makes classes hard to test

While refactoring some old legacy code, I've tried to apply as much as possible the Single Responsibility Principle, so I ended up with many classes that have just one purpose. That's fine, but the ...
1
vote
1answer
348 views

Rails SRP Modules, attr_accessible

I'm learning SOLID and trying to introduce SRP into my rails app. I have the following user model with basic authentication: class User < ActiveRecord::Base attr_accessible :password, ...
1
vote
0answers
89 views

Rails, SRP, and Unit Tests

Preamble Hey, this is my first time attempting to build an app with SRP in mind and really trying to use tests to drive the code for the site, rather than starting with my data architecture (AR) and ...
2
votes
1answer
148 views

Another discussion on when a specific DTO class is required

I am working on a large project which, in part, is to replace an existing server stack. With a large, very normalized database, it was clear that we would need to construct many composite objects. ...
1
vote
3answers
100 views

Class Responsibility, Does my 'Mobile Object' class actually care that it is moving?

I'd like some guidance on which class should hold certain information. If I have a 'Mobile Object' that moves around within a 'Space Object,' does the Mobile Object really care where it is within the ...
0
votes
1answer
164 views

How to define the EF connection string only once and re-use it in other projects?

I am building a web application that makes use of Entity Framework. I have moved the Entity Model and generated classes to a separate project, because it will be used by more than one consumer. But ...
1
vote
1answer
158 views

Tell, Don't Ask and Single Responsibility - doing new things with data in a class

I've got a case where "Tell, don't Ask" seems to conflict with the "Single responsibility" principle. I've looked at other discussions on the subject but not yet been able to work out the most ...
1
vote
1answer
162 views

Polymorphism vs. division of responsibilities: how to avoid 'switching on type'

In designing systems with hierarchical relationships, I often run into a problem that begs for polymorphic behavior, but there is more than one type of work that benefits from this polymorphic ...

1 2 3