what is acl(access control list)?
Answer / srikanth jakka
With respect to a computer filesystem, an access control
list (ACL) is a list of permissions attached to an object.
The list specifies who or what is allowed to access the
object and what operations are allowed to be performed on
the object. In a typical ACL, each entry in the list
specifies a subject and an operation: for example, the
entry (Alice, delete) on the ACL for file WXY gives Alice
permission to delete file WXY.
| Is This Answer Correct ? | 11 Yes | 2 No |
who should use JNDI?
What is the use of hashcode in java ?
What causes Out of Memory exception?
How do you create UserTransaction Object? How do you rollback a transaction in a method?
where is JNDI being used in java platform?
How to call the m1() method of Base class in below snippet ? class Base { public void m1() { System.out.println("Base m1 "); } public void m2() { System.out.println("Base m1 "); } } ====================== class Derived extends Base { public void m1() { System.out.println("Derived m1"); } public void m3() { System.out.println("Derived m3"); } public static void main(String[] args) { Base ob=new Derived(); ob.m1(); //System.out.println("Hello World!"+ob.m1()); } }
how to delete cookie information?and when it will delete?
Which is the better framework for web applications, struts or spring, and why?
Is it Mandatory to map each pojo class variable with table column in Hibernate? Is there any alternative to skip some of those? Thanks in advance...
how to deploy the web application ?
What are the different types of collections views being provided by the map interface? : java collections
what protocols does JNDI provide an interface to?