Package org.osgi.framework
Class ServicePermission.Properties
- java.lang.Object
-
- java.util.Dictionary
-
- org.osgi.framework.ServicePermission.Properties
-
- Enclosing class:
- ServicePermission
private static class ServicePermission.Properties extends java.util.Dictionary
-
-
Field Summary
Fields Modifier and Type Field Description private java.util.Map
properties
private ServiceReference
service
-
Constructor Summary
Constructors Constructor Description Properties(java.util.Map properties, ServiceReference service)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.Enumeration
elements()
java.lang.Object
get(java.lang.Object k)
boolean
isEmpty()
java.util.Enumeration
keys()
java.lang.Object
put(java.lang.Object key, java.lang.Object value)
java.lang.Object
remove(java.lang.Object key)
int
size()
-
-
-
Field Detail
-
properties
private final java.util.Map properties
-
service
private final ServiceReference service
-
-
Constructor Detail
-
Properties
Properties(java.util.Map properties, ServiceReference service)
-
-
Method Detail
-
get
public java.lang.Object get(java.lang.Object k)
- Specified by:
get
in classjava.util.Dictionary
-
size
public int size()
- Specified by:
size
in classjava.util.Dictionary
-
isEmpty
public boolean isEmpty()
- Specified by:
isEmpty
in classjava.util.Dictionary
-
keys
public java.util.Enumeration keys()
- Specified by:
keys
in classjava.util.Dictionary
-
elements
public java.util.Enumeration elements()
- Specified by:
elements
in classjava.util.Dictionary
-
put
public java.lang.Object put(java.lang.Object key, java.lang.Object value)
- Specified by:
put
in classjava.util.Dictionary
-
remove
public java.lang.Object remove(java.lang.Object key)
- Specified by:
remove
in classjava.util.Dictionary
-
-