How do restrict access to a class property to within the same namespace? Consider the following class. The Content class cannot Publish itself, instead the ContentService class will do a few things before changing the state to published.

public class Content : Entity, IContent
    {
        public string Introduction { get; set; }

        public string Body { get; set; }

        public IList<Comment> Comments { get; set; }

        public IList<Image> Images { get; private set; }

        public State Status { get; } 
    }

public class ContentService
    {
        public IContent Publish(IContent article)
        {
            //Perform some biz rules before publishing   
            article.Status = State.Published;
            return article;
        }
    }

How can i make it so only the ContentService class can change the state of the article?

Are there any deisng patterns to help me deal with this?

link|improve this question
I am not sure I am getting this: are you asking for a way to protect the implementation from yourself using it badly? I must be missing something... – jldupont Oct 23 '09 at 14:53
feedback

3 Answers

up vote 0 down vote accepted

You can use the "internal" access modifier so that only classes within the same Assembly can modify the Content class's State member (but everyone even in other assemblies can GET the value).

public State Status { get; internal set; } 

So now ContentService can set the state because it is in the same Assembly, but outside callers can only get the state (they're not allowed to set it).

link|improve this answer
feedback

Java has the notion of "package visible" or "package private". This is in fact the default for anything where you don't specify a visibility (private or public). For some reason, almost no one ever uses this.

link|improve this answer
feedback

Declare ContentService as a friend?

Alternatively, Java has an access modifier that amounts to "package-private".

link|improve this answer
feedback

Your Answer

 
or
required, but never shown