Swaranga Sarma
Swaranga Sarma

Reputation: 13403

Using Security manager to prevent public method access

I had once come across a post that said that we can use the SecurityManager to restrict certain classes from calling a public method of another class. How do we do that?

Upvotes: 1

Views: 2049

Answers (2)

Paŭlo Ebermann
Paŭlo Ebermann

Reputation: 74750

You could have at least linked to the answer, and then said more clearly, what you don't understand. So, I will link for you to my answer to a similar question from yesterday.

If something still is not clear, comment on this answer.

Upvotes: 2

Tom Hawtin - tackline
Tom Hawtin - tackline

Reputation: 147144

Perhaps they are thinking of hiding packages hierarchies from classes loaded by other class loaded through the package.access security property. See Guidelines 1-1a of the Secure Coding Guidelines for the Java Programming Language, Version 3.0. Other than that, if a class cannot see a ClassLoader (by any means!) then they will not be able to interact with classes of that class loader.

Upvotes: 0

Related Questions