1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21 package org.apache.pluto.om.common;
22
23 import java.util.Set;
24
25 /***
26 * <P>
27 * The <CODE>SecurityRoleRefSet</CODE> interface ...
28 * </P>
29 * <P>
30 * This interface defines the model as known from the MVC pattern.
31 * Its purpose is to provide read access to the data stored in the model.
32 */
33
34 public interface SecurityRoleRefSet extends Set, org.apache.pluto.om.Model
35 {
36
37
38 /***
39 * Returns the security role reference of the given name
40 *
41 * @return the security role ref object for the given name
42 */
43 public SecurityRoleRef get(String name);
44
45 }