The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
4answers
50 views

class property inaccesible due to protection level

here are my class declarations public class PlacesAPIResponse { public string formatted_address { get; set; } public Geometry geometry { get; set; } public Location location { get; set; } ...
0
votes
1answer
43 views

Accessing levels

c->repo->findById(rid) ; What I want to do is to use the findById() function in a module by accessing it through c but the variable I'm trying to use is protected.Is there any way to specify ...
2
votes
2answers
48 views

How to make VS assume everything is public by default

I use VS2012 and ReSharper 7 to write C# code. My projects are rarely so large or complicated as to require thinking about granular access levels. It's usually easier for me to just make everything ...
0
votes
1answer
102 views

How to define and use a site level “User Privilege Level” variable with Javascript / PHP / MySQL

I usually tend towards specific technical questions however this is a fairly open one, but still within the confines of Q&A rather than discussion. It regards best implementation of a user level ...
0
votes
2answers
46 views

Designing access level aware views in Django

When creating a page on a site that should display different information based upon who is looking at it, what is the most elegant design? A few possibilities I came up with: Pass all data to the ...
0
votes
2answers
289 views

How to allow unregistered users to publish articles in Joomla 2.5?

The site has a "Guest" user group (parent of "Public") and a "Guest" access level. It also has a category "Guest Category", and for that I have allowed the "Guest" to create content. This means that ...
0
votes
1answer
60 views

how to add access level to tank_auth

i m using ci 2 and i saw in previous post here that u recommend tank_auth as best library for user auth. i downloaded it but couldnt figure out how to setup access level in tank_auth. should i ...
0
votes
1answer
258 views

Rails 3 Dynamic User Roles/Access Levels

I'm developing an application that will be used by teachers to manage student assignments and submissions. However, different schools have different standards for assignment submissions, grades, what ...
7
votes
2answers
400 views

How to hide a protected procedure of an object?

In one base class, there's a protected procedure. When inheriting that class, I want to hide that procedure from being used from the outside. I tried overriding it from within the private and even ...
0
votes
2answers
2k 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 ...
1
vote
4answers
208 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
125 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 ...
3
votes
2answers
2k 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 ...
2
votes
2answers
277 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(); }; ...
5
votes
6answers
1k 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 ...
8
votes
5answers
334 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 ...
4
votes
2answers
442 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
3answers
988 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. ...
5
votes
8answers
1k 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 ...
7
votes
6answers
2k 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
218 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);
6
votes
3answers
180 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. ...
12
votes
8answers
4k 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 ...
3
votes
5answers
3k 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 ...