Tagged Questions
The access-levels tag has no wiki summary.
10
votes
8answers
2k views
Common CMS roles and access levels
I am currently writing a CMS and remember someone (it might have been on here) criticise the existing CMS for not having a robust enough user permissions system. I've got a method planned out but it ...
7
votes
5answers
293 views
What do you choose, protected or internal?
If I have a class with a method I want protected and internal. I want that only derived classes in the assembly would be able to call it.
Since protected internal means protected or internal, you ...
5
votes
6answers
387 views
Are protected members/fields really that bad?
Now if you read the naming conventions in the MSDN for C# you will notice that it states that properties are always preferred over public and protected fields. I have even been told by some people ...
5
votes
3answers
160 views
Is there a language with object-based access levels?
A common misconception about access level in Java, C#, C++ and PHP is that it applies to objects rather than classes. That is, that (say) an object of class X can't see another X's private members. ...
4
votes
2answers
347 views
Rails authlogic : How to make Levels?
i followed this tutorial fo setting Autlogic up properly. So, my site needs a form of level, like "Admin", "Moderator", "User", "Guest". So Admins can do everything, where Moderators may not can make ...
4
votes
8answers
940 views
C# protected field to private, add property--why?
In Visual Studio 2008 Team System, I just ran Code Analysis (from the Analyze menu) on one of my C# projects. One of the warnings produced was the following:
Microsoft.Design : Because field ...
3
votes
2answers
497 views
C# compile error: “X is inaccessible due to its protection level”
when c# gives this compile error?
'Favorite.Favorites.FavoriteCollection' is inaccessible due to its protection level
private void Form1_Load(object sender, EventArgs e)
{
Favorites ...
3
votes
3answers
566 views
access exception when invoking method of an anonymous class using java reflection
Hello
I'm trying to use an event dispatcher to allow a model to notify subscribed listeners when it changes. the event dispatcher receives a handler class and a method name to call during dispatch. ...
2
votes
2answers
176 views
Error with C++ partial specialization of template
I am using PC-Lint (great tool for static code analysis - see http://www.gimpel.com/)
For the following chunk of code:
class ASD {
protected:
template<int N>
void foo();
};
...
2
votes
5answers
569 views
How to restrict access to nested class member to enclosing class?
Is it possible to specify that members of a nested class can be accessed by the enclosing class, but not other classes ?
Here's an illustration of the problem (of course my actual code is a bit more ...
2
votes
2answers
172 views
What access level should loggers be set to?
I'm using SLF4J with Log4J underneath. What access levels should I be setting my loggers to?
static final Logger logger = LoggerFactory.getLogger(ClassName.class);
2
votes
5answers
2k views
Java Protected Access Not Working
In java, there's three levels of access:
Public - Open to the world
Private - Open only to the class
Protected - Open only to the class and its subclasses (inheritance).
So why does the java ...
1
vote
4answers
118 views
Access levels in C#
Quick simple questions,
Is there any way to declare the access level of more then one variable or method in C# as in C++?
Aswell, is it the same in C# as in C++ where the members of a struct are, if ...
0
votes
2answers
105 views
How can I add user/access levels to my current login script?
I'm currently learning PHP and MySQL and I have been working from a basic (albeit old) login script tutorial - I've come across various depreciated functions and such and I'm trying to improve on this ...
0
votes
2answers
56 views
Dealing with allowed commands per access level?
I have a set of commands like:
.kick
.unban
.ban
.unvouch
.vouch
.add
.del
.say
Those commands are used in a chat room where I have several users with different access, for example:
Admin is ...