Searched defs:role (Results 1 - 14 of 14) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/print/
H A DServiceUIFactory.java31 * One role may be end-user browsing and setting of print options.
32 * Another role may be administering the print service.
90 * Denotes a UI which performs an informative "About" role.
95 * Denotes a UI which performs an administrative role.
100 * Denotes a UI which performs the normal end user role.
105 * Not a valid role but role id's greater than this may be used
107 * function performed by this role is required to make proper use
115 * @param role requested. Must be one of the standard roles or
116 * a private role supporte
124 getUI(int role, String ui) argument
138 getUIClassNamesForRole(int role) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/server/
H A DWebServiceContextDelegate.java85 boolean isUserInRole(@NotNull Packet request,String role); argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/server/
H A DAbstractWebServiceContext.java72 public boolean isUserInRole(String role) { argument
77 return packet.webServiceContextDelegate.isUserInRole(packet,role);
/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/ws/
H A DWebServiceContext.java87 * logical role. If the user has not been
90 * @param role A <code>String</code> specifying the name of the role
93 * the sender of the request belongs to a given role
99 public boolean isUserInRole(String role); argument
/openjdk7/jdk/src/share/classes/javax/management/relation/
H A DRelation.java53 * Retrieves role value for given role name.
54 * <P>Checks if the role exists and is readable according to the relation
57 * @param roleName name of role
59 * @return the ArrayList of ObjectName objects being the role value
61 * @exception IllegalArgumentException if null role name
63 * <P>- there is no role with given name
64 * <P>- the role is not readable.
77 * <P>Checks for each role if it exists and is readable according to the
86 * @exception IllegalArgumentException if null role nam
162 setRole(Role role) argument
[all...]
H A DRoleList.java154 * @param role the role to be added.
156 * @exception IllegalArgumentException if the role is null.
158 public void add(Role role) argument
161 if (role == null) {
165 super.add(role);
169 * Inserts the role specified as an element at the position specified.
175 * @param role The Role object to be inserted.
177 * @exception IllegalArgumentException if the role is null.
182 Role role)
181 add(int index, Role role) argument
206 set(int index, Role role) argument
[all...]
H A DRoleUnresolvedList.java154 * @param role - the unresolved role to be added.
156 * @exception IllegalArgumentException if the unresolved role is null.
158 public void add(RoleUnresolved role) argument
161 if (role == null) {
165 super.add(role);
169 * Inserts the unresolved role specified as an element at the position
176 * @param role - The RoleUnresolved object to be inserted.
178 * @exception IllegalArgumentException if the unresolved role is null.
183 RoleUnresolved role)
182 add(int index, RoleUnresolved role) argument
208 set(int index, RoleUnresolved role) argument
[all...]
H A DRelationServiceMBean.java92 * role infos (provided by the RoleInfo objects), and adds it in the
96 * @param roleInfoArray array of role infos
101 * <P>- the same name has been used for two different role infos
102 * <P>- no role info provided
103 * <P>- one null role info provided
135 * Retrieves list of role infos (RoleInfo objects) of a given relation
151 * Retrieves role info for given role of a given relation type.
154 * @param roleInfoName name of role
161 * @exception RoleInfoNotFoundException if the role i
386 checkRoleWriting(Role role, String relationTypeName, Boolean initFlag) argument
731 setRole(String relationId, Role role) argument
[all...]
H A DRelationSupport.java105 // Role map, mapping <role-name> -> <Role>
106 // Initialized by role list in the constructor, then updated:
262 * Retrieves role value for given role name.
263 * <P>Checks if the role exists and is readable according to the relation
266 * @param roleName name of role
268 * @return the ArrayList of ObjectName objects being the role value
270 * @exception IllegalArgumentException if null role name
272 * <P>- there is no role with given name
273 * <P>- the role i
466 setRole(Role role) argument
[all...]
H A DRelationService.java109 // <relation id> -> ArrayList of <role name>
266 * role infos (provided by the RoleInfo objects), and adds it in the
270 * @param roleInfoArray array of role infos
275 * <P>- the same name has been used for two different role infos
276 * <P>- no role info provided
277 * <P>- one null role info provided
315 * <P>- no role info provided
316 * <P>- one null role info provided
331 // Checks the role infos
334 String excMsg = "No role inf
985 checkRoleWriting(Role role, String relationTypeName, Boolean initFlag) argument
2137 setRole(String relationId, Role role) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/fault/
H A DSOAP12Fault.java82 "role",
99 private String role; field in class:SOAP12Fault
107 SOAP12Fault(CodeType code, ReasonType reason, String node, String role, DetailType detail) { argument
111 this.role = role;
115 SOAP12Fault(CodeType code, ReasonType reason, String node, String role, Element detailObject) { argument
119 this.role = role;
141 role = fault.getFaultRole();
170 return role;
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/ws/spi/http/
H A DHttpExchange.java320 * logical "role".
322 * @param role specifies the name of the role
324 * given role
326 public abstract boolean isUserInRole(String role); argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/transport/http/server/
H A DPortableConnectionImpl.java135 public boolean isUserInRole(Packet request, String role) { argument
136 return httpExchange.isUserInRole(role);
H A DServerConnectionImpl.java206 public boolean isUserInRole(Packet request, String role) { argument

Completed in 105 milliseconds