|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Uses of String in info.dmtree |
---|
Methods in info.dmtree that return String | |
---|---|
String[] |
DmtSession.getChildNodeNames(String nodeUri)
Get the list of children names of a node. |
String |
DmtData.getDate()
Gets the value of a node with date format. |
String |
MetaNode.getDescription()
Get the explanation string associated with this node. |
String[] |
MetaNode.getExtensionPropertyKeys()
Returns the list of extension property keys, if the provider of this MetaNode provides proprietary extensions to node meta
data. |
String |
DmtData.getFormatName()
Returns the format of this DmtData as String . |
String |
DmtException.getMessage()
Get the message associated with this exception. |
String[] |
MetaNode.getMimeTypes()
Get the list of MIME types this node can hold. |
String[] |
DmtEvent.getNewNodes()
This method can be used to query the new nodes, when the type of the event is DmtEvent.COPIED or DmtEvent.RENAMED . |
String[] |
DmtEvent.getNodes()
This method can be used to query the subject nodes of this event. |
String |
DmtSession.getNodeTitle(String nodeUri)
Get the title of a node. |
String |
DmtSession.getNodeType(String nodeUri)
Get the type of a node. |
String |
DmtSession.getPrincipal()
Gives the name of the principal on whose behalf the session was created. |
String[] |
Acl.getPrincipals()
Get the list of principals who have any kind of permissions on this node. |
String[] |
MetaNode.getRawFormatNames()
Get the format names for any raw formats supported by the node. |
String |
DmtData.getRawString()
Gets the value of a node in raw String
(DmtData.FORMAT_RAW_STRING ) format. |
String |
DmtSession.getRootUri()
Get the root URI associated with this session. |
String |
DmtData.getString()
Gets the value of a node with string ( chr ) format. |
String |
DmtData.getTime()
Gets the value of a node with time format. |
String |
DmtException.getURI()
Get the node on which the failed DMT operation was issued. |
String[] |
MetaNode.getValidNames()
Return an array of Strings if valid names are defined for the node, or null if no valid name list is defined or if this piece of
meta info is not supported. |
String |
DmtData.getXml()
Gets the value of a node with xml format. |
static String |
Uri.mangle(String nodeName)
Returns a node name that is valid for the tree operation methods, based on the given node name. |
static String[] |
Uri.toPath(String uri)
Split the specified URI along the path separator '/' charaters and return an array of URI segments. |
String |
Acl.toString()
Give the canonic string representation of this ACL. |
String |
DmtData.toString()
Gets the string representation of the DmtData . |
static String |
Uri.toUri(String[] path)
Construct a URI from the specified URI segments. |
Methods in info.dmtree with parameters of type String | |
---|---|
void |
DmtAdmin.addEventListener(int type,
String uri,
DmtEventListener listener)
Registers an event listener on behalf of a local application. |
void |
DmtAdmin.addEventListener(String principal,
int type,
String uri,
DmtEventListener listener)
Registers an event listener on behalf of a remote principal. |
Acl |
Acl.addPermission(String principal,
int permissions)
Create a new Acl instance from this Acl with
the given permission added for the given principal. |
void |
DmtSession.copy(String nodeUri,
String newNodeUri,
boolean recursive)
Create a copy of a node or a whole subtree. |
void |
DmtSession.createInteriorNode(String nodeUri)
Create an interior node. |
void |
DmtSession.createInteriorNode(String nodeUri,
String type)
Create an interior node with a given type. |
void |
DmtSession.createLeafNode(String nodeUri)
Create a leaf node with default value and MIME type. |
void |
DmtSession.createLeafNode(String nodeUri,
DmtData value)
Create a leaf node with a given value and the default MIME type. |
void |
DmtSession.createLeafNode(String nodeUri,
DmtData value,
String mimeType)
Create a leaf node with a given value and MIME type. |
void |
DmtSession.deleteNode(String nodeUri)
Delete the given node. |
Acl |
Acl.deletePermission(String principal,
int permissions)
Create a new Acl instance from this Acl with
the given permission revoked from the given principal. |
void |
DmtSession.execute(String nodeUri,
String data)
Executes a node. |
void |
DmtSession.execute(String nodeUri,
String correlator,
String data)
Executes a node, also specifying a correlation ID for use in response notifications. |
String[] |
DmtSession.getChildNodeNames(String nodeUri)
Get the list of children names of a node. |
Acl |
DmtSession.getEffectiveNodeAcl(String nodeUri)
Gives the Access Control List in effect for a given node. |
Object |
MetaNode.getExtensionProperty(String key)
Returns the value for the specified extension property key. |
MetaNode |
DmtSession.getMetaNode(String nodeUri)
Get the meta data which describes a given node. |
Acl |
DmtSession.getNodeAcl(String nodeUri)
Get the Access Control List associated with a given node. |
int |
DmtSession.getNodeSize(String nodeUri)
Get the size of the data in a leaf node. |
Date |
DmtSession.getNodeTimestamp(String nodeUri)
Get the timestamp when the node was created or last modified. |
String |
DmtSession.getNodeTitle(String nodeUri)
Get the title of a node. |
String |
DmtSession.getNodeType(String nodeUri)
Get the type of a node. |
DmtData |
DmtSession.getNodeValue(String nodeUri)
Get the data contained in a leaf or interior node. |
int |
DmtSession.getNodeVersion(String nodeUri)
Get the version of a node. |
int |
Acl.getPermissions(String principal)
Get the permissions associated to a given principal. |
DmtSession |
DmtAdmin.getSession(String subtreeUri)
Opens a DmtSession for local usage on a given subtree of
the DMT with non transactional write lock. |
DmtSession |
DmtAdmin.getSession(String subtreeUri,
int lockMode)
Opens a DmtSession for local usage on a specific DMT
subtree with a given lock mode. |
DmtSession |
DmtAdmin.getSession(String principal,
String subtreeUri,
int lockMode)
Opens a DmtSession on a specific DMT subtree using a
specific lock mode on behalf of a remote principal. |
static boolean |
Uri.isAbsoluteUri(String uri)
Checks whether the specified URI is an absolute URI. |
boolean |
DmtSession.isLeafNode(String nodeUri)
Tells whether a node is a leaf or an interior node of the DMT. |
boolean |
DmtSession.isNodeUri(String nodeUri)
Check whether the specified URI corresponds to a valid node in the DMT. |
boolean |
Acl.isPermitted(String principal,
int permissions)
Check whether the given permissions are granted to a certain principal. |
boolean |
MetaNode.isValidName(String name)
Checks whether the given name is a valid name for this node. |
static boolean |
Uri.isValidUri(String uri)
Checks whether the specified URI is valid. |
static String |
Uri.mangle(String nodeName)
Returns a node name that is valid for the tree operation methods, based on the given node name. |
void |
DmtSession.renameNode(String nodeUri,
String newName)
Rename a node. |
void |
DmtSession.setDefaultNodeValue(String nodeUri)
Set the value of a leaf or interior node to its default. |
void |
DmtSession.setNodeAcl(String nodeUri,
Acl acl)
Set the Access Control List associated with a given node. |
void |
DmtSession.setNodeTitle(String nodeUri,
String title)
Set the title property of a node. |
void |
DmtSession.setNodeType(String nodeUri,
String type)
Set the type of a node. |
void |
DmtSession.setNodeValue(String nodeUri,
DmtData data)
Set the value of a leaf or interior node. |
Acl |
Acl.setPermission(String principal,
int permissions)
Create a new Acl instance from this Acl where
all permissions for the given principal are overwritten with the given
permissions. |
static String[] |
Uri.toPath(String uri)
Split the specified URI along the path separator '/' charaters and return an array of URI segments. |
static String |
Uri.toUri(String[] path)
Construct a URI from the specified URI segments. |
Constructors in info.dmtree with parameters of type String | |
---|---|
Acl(String acl)
Create an instance of the ACL from its canonic string representation. |
|
Acl(String[] principals,
int[] permissions)
Creates an instance with a specified list of principals and the permissions they hold. |
|
DmtData(String str)
Create a DmtData instance of chr format
with the given string value. |
|
DmtData(String formatName,
byte[] data)
Create a DmtData instance in DmtData.FORMAT_RAW_BINARY
format. |
|
DmtData(String value,
int format)
Create a DmtData instance of the specified format and set
its value based on the given string. |
|
DmtData(String formatName,
String data)
Create a DmtData instance in DmtData.FORMAT_RAW_STRING
format. |
|
DmtException(String[] path,
int code,
String message)
Create an instance of the exception, specifying the target node as an array of path segments. |
|
DmtException(String[] path,
int code,
String message)
Create an instance of the exception, specifying the target node as an array of path segments. |
|
DmtException(String[] path,
int code,
String message,
Throwable cause)
Create an instance of the exception, specifying the target node as an array of path segments, and specifying the cause exception. |
|
DmtException(String[] path,
int code,
String message,
Throwable cause)
Create an instance of the exception, specifying the target node as an array of path segments, and specifying the cause exception. |
|
DmtException(String[] path,
int code,
String message,
Vector causes,
boolean fatal)
Create an instance of the exception, specifying the target node as an array of path segments, the list of cause exceptions, and whether the exception is a fatal one. |
|
DmtException(String[] path,
int code,
String message,
Vector causes,
boolean fatal)
Create an instance of the exception, specifying the target node as an array of path segments, the list of cause exceptions, and whether the exception is a fatal one. |
|
DmtException(String uri,
int code,
String message)
Create an instance of the exception. |
|
DmtException(String uri,
int code,
String message,
Throwable cause)
Create an instance of the exception, specifying the cause exception. |
|
DmtException(String uri,
int code,
String message,
Vector causes,
boolean fatal)
Create an instance of the exception, specifying the list of cause exceptions and whether the exception is a fatal one. |
|
DmtIllegalStateException(String message)
Create an instance of the exception with the specified message. |
|
DmtIllegalStateException(String message,
Throwable cause)
Create an instance of the exception with the specified message and cause exception. |
Uses of String in info.dmtree.notification |
---|
Methods in info.dmtree.notification that return String | |
---|---|
String |
AlertItem.getMark()
Get the mark parameter associated with the alert item. |
String |
AlertItem.getSource()
Get the node which is the source of the alert. |
String |
AlertItem.getType()
Get the type associated with the alert item. |
String |
AlertItem.toString()
Returns the string representation of this alert item. |
Methods in info.dmtree.notification with parameters of type String | |
---|---|
void |
NotificationService.sendNotification(String principal,
int code,
String correlator,
AlertItem[] items)
Sends a notification to a named principal. |
Constructors in info.dmtree.notification with parameters of type String | |
---|---|
AlertItem(String[] source,
String type,
String mark,
DmtData data)
Create an instance of the alert item, specifying the source node URI as an array of path segments. |
|
AlertItem(String[] source,
String type,
String mark,
DmtData data)
Create an instance of the alert item, specifying the source node URI as an array of path segments. |
|
AlertItem(String source,
String type,
String mark,
DmtData data)
Create an instance of the alert item. |
Uses of String in info.dmtree.notification.spi |
---|
Methods in info.dmtree.notification.spi with parameters of type String | |
---|---|
void |
RemoteAlertSender.sendAlert(String principal,
int code,
String correlator,
AlertItem[] items)
Sends an alert to a server identified by its principal name. |
Uses of String in info.dmtree.security |
---|
Fields in info.dmtree.security declared as String | |
---|---|
static String |
DmtPermission.ADD
Holders of DmtPermission with the Add action present can create new nodes in the DMT, that is they are authorized to execute the createInteriorNode() and createLeafNode() methods of the DmtSession. |
static String |
DmtPermission.DELETE
Holders of DmtPermission with the Delete action present can delete nodes from the DMT, that is they are authorized to execute the deleteNode() method of the DmtSession. |
static String |
DmtPermission.EXEC
Holders of DmtPermission with the Exec action present can execute nodes in the DMT, that is they are authorized to call the execute() method of the DmtSession. |
static String |
DmtPermission.GET
Holders of DmtPermission with the Get action present can query DMT node value or properties, that is they are authorized to execute the isLeafNode(), getNodeAcl(), getEffectiveNodeAcl(), getMetaNode(), getNodeValue(), getChildNodeNames(), getNodeTitle(), getNodeVersion(), getNodeTimeStamp(), getNodeSize() and getNodeType() methods of the DmtSession. |
static String |
DmtPermission.REPLACE
Holders of DmtPermission with the Replace action present can update DMT node value or properties, that is they are authorized to execute the setNodeAcl(), setNodeTitle(), setNodeValue(), setNodeType() and renameNode() methods of the DmtSession. |
Methods in info.dmtree.security that return String | |
---|---|
String |
AlertPermission.getActions()
Returns the action list (always * in the current version). |
String |
DmtPrincipalPermission.getActions()
Returns the action list (always * in the current version). |
String |
DmtPermission.getActions()
Returns the String representation of the action list. |
Constructors in info.dmtree.security with parameters of type String | |
---|---|
AlertPermission(String target)
Creates a new AlertPermission object with its name set to
the target string. |
|
AlertPermission(String target,
String actions)
Creates a new AlertPermission object using the 'canonical'
two argument constructor. |
|
DmtPermission(String dmtUri,
String actions)
Creates a new DmtPermission object for the specified DMT URI with the specified actions. |
|
DmtPrincipalPermission(String target)
Creates a new DmtPrincipalPermission object with its name
set to the target string. |
|
DmtPrincipalPermission(String target,
String actions)
Creates a new DmtPrincipalPermission object using the
'canonical' two argument constructor. |
Uses of String in info.dmtree.spi |
---|
Methods in info.dmtree.spi that return String | |
---|---|
String[] |
ReadableDataSession.getChildNodeNames(String[] nodePath)
Get the list of children names of a node. |
String |
ReadableDataSession.getNodeTitle(String[] nodePath)
Get the title of a node. |
String |
ReadableDataSession.getNodeType(String[] nodePath)
Get the type of a node. |
Methods in info.dmtree.spi with parameters of type String | |
---|---|
void |
ReadWriteDataSession.copy(String[] nodePath,
String[] newNodePath,
boolean recursive)
Create a copy of a node or a whole subtree. |
void |
ReadWriteDataSession.copy(String[] nodePath,
String[] newNodePath,
boolean recursive)
Create a copy of a node or a whole subtree. |
void |
ReadWriteDataSession.createInteriorNode(String[] nodePath,
String type)
Create an interior node with a given type. |
void |
ReadWriteDataSession.createInteriorNode(String[] nodePath,
String type)
Create an interior node with a given type. |
void |
ReadWriteDataSession.createLeafNode(String[] nodePath,
DmtData value,
String mimeType)
Create a leaf node with a given value and MIME type. |
void |
ReadWriteDataSession.createLeafNode(String[] nodePath,
DmtData value,
String mimeType)
Create a leaf node with a given value and MIME type. |
void |
ReadWriteDataSession.deleteNode(String[] nodePath)
Delete the given node. |
void |
ExecPlugin.execute(DmtSession session,
String[] nodePath,
String correlator,
String data)
Execute the given node with the given data. |
void |
ExecPlugin.execute(DmtSession session,
String[] nodePath,
String correlator,
String data)
Execute the given node with the given data. |
String[] |
ReadableDataSession.getChildNodeNames(String[] nodePath)
Get the list of children names of a node. |
MetaNode |
ReadableDataSession.getMetaNode(String[] nodePath)
Get the meta data which describes a given node. |
int |
ReadableDataSession.getNodeSize(String[] nodePath)
Get the size of the data in a leaf node. |
Date |
ReadableDataSession.getNodeTimestamp(String[] nodePath)
Get the timestamp when the node was last modified. |
String |
ReadableDataSession.getNodeTitle(String[] nodePath)
Get the title of a node. |
String |
ReadableDataSession.getNodeType(String[] nodePath)
Get the type of a node. |
DmtData |
ReadableDataSession.getNodeValue(String[] nodePath)
Get the data contained in a leaf or interior node. |
int |
ReadableDataSession.getNodeVersion(String[] nodePath)
Get the version of a node. |
boolean |
ReadableDataSession.isLeafNode(String[] nodePath)
Tells whether a node is a leaf or an interior node of the DMT. |
boolean |
ReadableDataSession.isNodeUri(String[] nodePath)
Check whether the specified path corresponds to a valid node in the DMT. |
void |
ReadableDataSession.nodeChanged(String[] nodePath)
Notifies the plugin that the given node has changed outside the scope of the plugin, therefore the Version and Timestamp properties must be updated (if supported). |
TransactionalDataSession |
DataPlugin.openAtomicSession(String[] sessionRoot,
DmtSession session)
This method is called to signal the start of an atomic read-write session when the first reference is made within a DmtSession to a
node which is handled by this plugin. |
ReadableDataSession |
DataPlugin.openReadOnlySession(String[] sessionRoot,
DmtSession session)
This method is called to signal the start of a read-only session when the first reference is made within a DmtSession to a node
which is handled by this plugin. |
ReadWriteDataSession |
DataPlugin.openReadWriteSession(String[] sessionRoot,
DmtSession session)
This method is called to signal the start of a non-atomic read-write session when the first reference is made within a DmtSession
to a node which is handled by this plugin. |
void |
ReadWriteDataSession.renameNode(String[] nodePath,
String newName)
Rename a node. |
void |
ReadWriteDataSession.renameNode(String[] nodePath,
String newName)
Rename a node. |
void |
ReadWriteDataSession.setNodeTitle(String[] nodePath,
String title)
Set the title property of a node. |
void |
ReadWriteDataSession.setNodeTitle(String[] nodePath,
String title)
Set the title property of a node. |
void |
ReadWriteDataSession.setNodeType(String[] nodePath,
String type)
Set the type of a node. |
void |
ReadWriteDataSession.setNodeType(String[] nodePath,
String type)
Set the type of a node. |
void |
ReadWriteDataSession.setNodeValue(String[] nodePath,
DmtData data)
Set the value of a leaf or interior node. |
Uses of String in java.io |
---|
Fields in java.io declared as String | |
---|---|
String |
InvalidClassException.classname
|
static String |
File.pathSeparator
|
static String |
File.separator
|
String |
StreamTokenizer.sval
|
Methods in java.io that return String | |
---|---|
String |
File.getAbsolutePath()
|
String |
FilePermission.getActions()
|
String |
File.getCanonicalPath()
|
String |
OutputStreamWriter.getEncoding()
|
String |
InputStreamReader.getEncoding()
|
String |
WriteAbortedException.getMessage()
|
String |
InvalidClassException.getMessage()
|
String |
ObjectStreamField.getName()
|
String |
ObjectStreamClass.getName()
|
String |
File.getName()
|
String |
File.getParent()
|
String |
File.getPath()
|
String |
ObjectStreamField.getTypeString()
|
String[] |
File.list()
|
String[] |
File.list(FilenameFilter var0)
|
String |
RandomAccessFile.readLine()
|
String |
ObjectInputStream.readLine()
|
String |
LineNumberReader.readLine()
|
String |
DataInputStream.readLine()
|
String |
DataInput.readLine()
|
String |
BufferedReader.readLine()
|
String |
RandomAccessFile.readUTF()
|
String |
ObjectInputStream.readUTF()
|
String |
DataInputStream.readUTF()
|
String |
DataInput.readUTF()
|
static String |
DataInputStream.readUTF(DataInput var0)
|
String |
StringWriter.toString()
|
String |
StreamTokenizer.toString()
|
String |
ObjectStreamField.toString()
|
String |
ObjectStreamClass.toString()
|
String |
File.toString()
|
String |
CharArrayWriter.toString()
|
String |
ByteArrayOutputStream.toString()
|
String |
ByteArrayOutputStream.toString(String var0)
|
Methods in java.io with parameters of type String | |
---|---|
boolean |
FilenameFilter.accept(File var0,
String var1)
|
static File |
File.createTempFile(String var0,
String var1)
|
static File |
File.createTempFile(String var0,
String var1,
File var2)
|
abstract boolean |
ObjectInputStream.GetField.defaulted(String var0)
|
abstract boolean |
ObjectInputStream.GetField.get(String var0,
boolean var1)
|
abstract byte |
ObjectInputStream.GetField.get(String var0,
byte var1)
|
abstract char |
ObjectInputStream.GetField.get(String var0,
char var1)
|
abstract double |
ObjectInputStream.GetField.get(String var0,
double var1)
|
abstract float |
ObjectInputStream.GetField.get(String var0,
float var1)
|
abstract int |
ObjectInputStream.GetField.get(String var0,
int var1)
|
abstract long |
ObjectInputStream.GetField.get(String var0,
long var1)
|
abstract Object |
ObjectInputStream.GetField.get(String var0,
Object var1)
|
abstract short |
ObjectInputStream.GetField.get(String var0,
short var1)
|
ObjectStreamField |
ObjectStreamClass.getField(String var0)
|
void |
PrintWriter.print(String var0)
|
void |
PrintStream.print(String var0)
|
void |
PrintWriter.println(String var0)
|
void |
PrintStream.println(String var0)
|
abstract void |
ObjectOutputStream.PutField.put(String var0,
boolean var1)
|
abstract void |
ObjectOutputStream.PutField.put(String var0,
byte var1)
|
abstract void |
ObjectOutputStream.PutField.put(String var0,
char var1)
|
abstract void |
ObjectOutputStream.PutField.put(String var0,
double var1)
|
abstract void |
ObjectOutputStream.PutField.put(String var0,
float var1)
|
abstract void |
ObjectOutputStream.PutField.put(String var0,
int var1)
|
abstract void |
ObjectOutputStream.PutField.put(String var0,
long var1)
|
abstract void |
ObjectOutputStream.PutField.put(String var0,
Object var1)
|
abstract void |
ObjectOutputStream.PutField.put(String var0,
short var1)
|
protected Class |
ObjectInputStream.resolveProxyClass(String[] var0)
|
String |
ByteArrayOutputStream.toString(String var0)
|
void |
Writer.write(String var0)
|
void |
StringWriter.write(String var0)
|
void |
PrintWriter.write(String var0)
|
void |
Writer.write(String var0,
int var1,
int var2)
|
void |
StringWriter.write(String var0,
int var1,
int var2)
|
void |
PrintWriter.write(String var0,
int var1,
int var2)
|
void |
OutputStreamWriter.write(String var0,
int var1,
int var2)
|
void |
FilterWriter.write(String var0,
int var1,
int var2)
|
void |
CharArrayWriter.write(String var0,
int var1,
int var2)
|
void |
BufferedWriter.write(String var0,
int var1,
int var2)
|
void |
RandomAccessFile.writeBytes(String var0)
|
void |
ObjectOutputStream.writeBytes(String var0)
|
void |
DataOutputStream.writeBytes(String var0)
|
void |
DataOutput.writeBytes(String var0)
|
void |
RandomAccessFile.writeChars(String var0)
|
void |
ObjectOutputStream.writeChars(String var0)
|
void |
DataOutputStream.writeChars(String var0)
|
void |
DataOutput.writeChars(String var0)
|
void |
RandomAccessFile.writeUTF(String var0)
|
void |
ObjectOutputStream.writeUTF(String var0)
|
void |
DataOutputStream.writeUTF(String var0)
|
void |
DataOutput.writeUTF(String var0)
|
Uses of String in java.lang |
---|
Methods in java.lang that return String | |
---|---|
String |
String.concat(String var0)
|
static String |
String.copyValueOf(char[] var0)
|
static String |
String.copyValueOf(char[] var0,
int var1,
int var2)
|
protected String |
ClassLoader.findLibrary(String var0)
|
String |
Package.getImplementationTitle()
|
String |
Package.getImplementationVendor()
|
String |
Package.getImplementationVersion()
|
String |
Throwable.getLocalizedMessage()
|
String |
Throwable.getMessage()
|
String |
ThreadGroup.getName()
|
String |
Thread.getName()
|
String |
Package.getName()
|
String |
Class.getName()
|
static String |
System.getProperty(String var0)
|
static String |
System.getProperty(String var0,
String var1)
|
String |
Package.getSpecificationTitle()
|
String |
Package.getSpecificationVendor()
|
String |
Package.getSpecificationVersion()
|
String |
String.intern()
|
static String |
System.mapLibraryName(String var0)
|
String |
String.replace(char var0,
char var1)
|
static String |
System.setProperty(String var0,
String var1)
|
String |
StringBuffer.substring(int var0)
|
String |
String.substring(int var0)
|
String |
StringBuffer.substring(int var0,
int var1)
|
String |
String.substring(int var0,
int var1)
|
static String |
Integer.toBinaryString(int var0)
|
static String |
Long.toBinaryString(long var0)
|
static String |
Integer.toHexString(int var0)
|
static String |
Long.toHexString(long var0)
|
String |
String.toLowerCase()
|
String |
String.toLowerCase(Locale var0)
|
static String |
Integer.toOctalString(int var0)
|
static String |
Long.toOctalString(long var0)
|
String |
Throwable.toString()
|
String |
ThreadGroup.toString()
|
String |
Thread.toString()
|
String |
StringBuffer.toString()
|
String |
String.toString()
|
String |
Short.toString()
|
String |
Package.toString()
|
String |
Object.toString()
|
String |
Long.toString()
|
String |
Integer.toString()
|
String |
Float.toString()
|
String |
Double.toString()
|
String |
Class.toString()
|
String |
Character.toString()
|
String |
Character.Subset.toString()
|
String |
Byte.toString()
|
String |
Boolean.toString()
|
static String |
Byte.toString(byte var0)
|
static String |
Double.toString(double var0)
|
static String |
Float.toString(float var0)
|
static String |
Integer.toString(int var0)
|
static String |
Integer.toString(int var0,
int var1)
|
static String |
Long.toString(long var0)
|
static String |
Long.toString(long var0,
int var1)
|
static String |
Short.toString(short var0)
|
String |
String.toUpperCase()
|
String |
String.toUpperCase(Locale var0)
|
String |
String.trim()
|
static String |
String.valueOf(boolean var0)
|
static String |
String.valueOf(char var0)
|
static String |
String.valueOf(char[] var0)
|
static String |
String.valueOf(char[] var0,
int var1,
int var2)
|
static String |
String.valueOf(double var0)
|
static String |
String.valueOf(float var0)
|
static String |
String.valueOf(int var0)
|
static String |
String.valueOf(long var0)
|
static String |
String.valueOf(Object var0)
|
Methods in java.lang with parameters of type String | |
---|---|
StringBuffer |
StringBuffer.append(String var0)
|
void |
SecurityManager.checkAccept(String var0,
int var1)
|
void |
SecurityManager.checkConnect(String var0,
int var1)
|
void |
SecurityManager.checkConnect(String var0,
int var1,
Object var2)
|
void |
SecurityManager.checkDelete(String var0)
|
void |
SecurityManager.checkExec(String var0)
|
void |
SecurityManager.checkLink(String var0)
|
void |
SecurityManager.checkPackageAccess(String var0)
|
void |
SecurityManager.checkPackageDefinition(String var0)
|
void |
SecurityManager.checkPropertyAccess(String var0)
|
void |
SecurityManager.checkRead(String var0)
|
void |
SecurityManager.checkRead(String var0,
Object var1)
|
void |
SecurityManager.checkSecurityAccess(String var0)
|
void |
SecurityManager.checkWrite(String var0)
|
int |
String.compareTo(String var0)
|
int |
String.compareToIgnoreCase(String var0)
|
static boolean |
Compiler.compileClasses(String var0)
|
String |
String.concat(String var0)
|
static Short |
Short.decode(String var0)
|
static Long |
Long.decode(String var0)
|
static Integer |
Integer.decode(String var0)
|
static Byte |
Byte.decode(String var0)
|
protected Class |
ClassLoader.defineClass(String var0,
byte[] var1,
int var2,
int var3)
|
protected Class |
ClassLoader.defineClass(String var0,
byte[] var1,
int var2,
int var3,
ProtectionDomain var4)
|
protected Package |
ClassLoader.definePackage(String var0,
String var1,
String var2,
String var3,
String var4,
String var5,
String var6,
URL var7)
|
boolean |
String.endsWith(String var0)
|
boolean |
String.equalsIgnoreCase(String var0)
|
Process |
Runtime.exec(String var0)
|
Process |
Runtime.exec(String[] var0)
|
Process |
Runtime.exec(String[] var0,
String[] var1)
|
Process |
Runtime.exec(String[] var0,
String[] var1)
|
Process |
Runtime.exec(String[] var0,
String[] var1,
File var2)
|
Process |
Runtime.exec(String[] var0,
String[] var1,
File var2)
|
Process |
Runtime.exec(String var0,
String[] var1)
|
Process |
Runtime.exec(String var0,
String[] var1)
|
Process |
Runtime.exec(String var0,
String[] var1,
File var2)
|
Process |
Runtime.exec(String var0,
String[] var1,
File var2)
|
protected Class |
ClassLoader.findClass(String var0)
|
protected String |
ClassLoader.findLibrary(String var0)
|
protected Class |
ClassLoader.findLoadedClass(String var0)
|
protected URL |
ClassLoader.findResource(String var0)
|
protected Enumeration |
ClassLoader.findResources(String var0)
|
protected Class |
ClassLoader.findSystemClass(String var0)
|
static Class |
Class.forName(String var0)
|
static Class |
Class.forName(String var0,
boolean var1,
ClassLoader var2)
|
static boolean |
Boolean.getBoolean(String var0)
|
byte[] |
String.getBytes(String var0)
|
Field |
Class.getDeclaredField(String var0)
|
Method |
Class.getDeclaredMethod(String var0,
Class[] var1)
|
Field |
Class.getField(String var0)
|
static Integer |
Integer.getInteger(String var0)
|
static Integer |
Integer.getInteger(String var0,
int var1)
|
static Integer |
Integer.getInteger(String var0,
Integer var1)
|
static Long |
Long.getLong(String var0)
|
static Long |
Long.getLong(String var0,
long var1)
|
static Long |
Long.getLong(String var0,
Long var1)
|
Method |
Class.getMethod(String var0,
Class[] var1)
|
static Package |
Package.getPackage(String var0)
|
protected Package |
ClassLoader.getPackage(String var0)
|
static String |
System.getProperty(String var0)
|
static String |
System.getProperty(String var0,
String var1)
|
URL |
ClassLoader.getResource(String var0)
|
URL |
Class.getResource(String var0)
|
InputStream |
ClassLoader.getResourceAsStream(String var0)
|
InputStream |
Class.getResourceAsStream(String var0)
|
Enumeration |
ClassLoader.getResources(String var0)
|
static URL |
ClassLoader.getSystemResource(String var0)
|
static InputStream |
ClassLoader.getSystemResourceAsStream(String var0)
|
static Enumeration |
ClassLoader.getSystemResources(String var0)
|
int |
String.indexOf(String var0)
|
int |
String.indexOf(String var0,
int var1)
|
StringBuffer |
StringBuffer.insert(int var0,
String var1)
|
boolean |
Package.isCompatibleWith(String var0)
|
int |
String.lastIndexOf(String var0)
|
int |
String.lastIndexOf(String var0,
int var1)
|
static void |
System.load(String var0)
|
void |
Runtime.load(String var0)
|
Class |
ClassLoader.loadClass(String var0)
|
protected Class |
ClassLoader.loadClass(String var0,
boolean var1)
|
static void |
System.loadLibrary(String var0)
|
void |
Runtime.loadLibrary(String var0)
|
static String |
System.mapLibraryName(String var0)
|
static byte |
Byte.parseByte(String var0)
|
static byte |
Byte.parseByte(String var0,
int var1)
|
static double |
Double.parseDouble(String var0)
|
static float |
Float.parseFloat(String var0)
|
static int |
Integer.parseInt(String var0)
|
static int |
Integer.parseInt(String var0,
int var1)
|
static long |
Long.parseLong(String var0)
|
static long |
Long.parseLong(String var0,
int var1)
|
static short |
Short.parseShort(String var0)
|
static short |
Short.parseShort(String var0,
int var1)
|
boolean |
String.regionMatches(boolean var0,
int var1,
String var2,
int var3,
int var4)
|
boolean |
String.regionMatches(int var0,
String var1,
int var2,
int var3)
|
StringBuffer |
StringBuffer.replace(int var0,
int var1,
String var2)
|
void |
Thread.setName(String var0)
|
static String |
System.setProperty(String var0,
String var1)
|
boolean |
String.startsWith(String var0)
|
boolean |
String.startsWith(String var0,
int var1)
|
static Short |
Short.valueOf(String var0)
|
static Long |
Long.valueOf(String var0)
|
static Integer |
Integer.valueOf(String var0)
|
static Float |
Float.valueOf(String var0)
|
static Double |
Double.valueOf(String var0)
|
static Byte |
Byte.valueOf(String var0)
|
static Boolean |
Boolean.valueOf(String var0)
|
static Short |
Short.valueOf(String var0,
int var1)
|
static Long |
Long.valueOf(String var0,
int var1)
|
static Integer |
Integer.valueOf(String var0,
int var1)
|
static Byte |
Byte.valueOf(String var0,
int var1)
|
Uses of String in java.lang.reflect |
---|
Methods in java.lang.reflect that return String | |
---|---|
String |
Method.getName()
|
String |
Member.getName()
|
String |
Field.getName()
|
String |
Constructor.getName()
|
String |
Method.toString()
|
String |
Field.toString()
|
String |
Constructor.toString()
|
static String |
Modifier.toString(int var0)
|
Constructors in java.lang.reflect with parameters of type String | |
---|---|
InvocationTargetException(Throwable var0,
String var1)
|
|
ReflectPermission(String var0)
|
|
ReflectPermission(String var0,
String var1)
|
|
UndeclaredThrowableException(Throwable var0,
String var1)
|
Uses of String in java.math |
---|
Methods in java.math that return String | |
---|---|
String |
BigInteger.toString()
|
String |
BigInteger.toString(int var0)
|
Constructors in java.math with parameters of type String | |
---|---|
BigInteger(String var0)
|
|
BigInteger(String var0,
int var1)
|
Uses of String in java.net |
---|
Fields in java.net declared as String | |
---|---|
protected String |
HttpURLConnection.method
|
protected String |
HttpURLConnection.responseMessage
|
Methods in java.net with parameters of type String | |
---|---|
protected abstract void |
SocketImpl.connect(String var0,
int var1)
|
ContentHandler |
ContentHandlerFactory.createContentHandler(String var0)
|
URLStreamHandler |
URLStreamHandlerFactory.createURLStreamHandler(String var0)
|
static String |
URLDecoder.decode(String var0)
|
protected Package |
URLClassLoader.definePackage(String var0,
Manifest var1,
URL var2)
|
static String |
URLEncoder.encode(String var0)
|
protected Class |
URLClassLoader.findClass(String var0)
|
URL |
URLClassLoader.findResource(String var0)
|
Enumeration |
URLClassLoader.findResources(String var0)
|
static InetAddress[] |
InetAddress.getAllByName(String var0)
|
static InetAddress |
InetAddress.getByName(String var0)
|
String |
FileNameMap.getContentTypeFor(String var0)
|
String |
URLConnection.getHeaderField(String var0)
|
long |
URLConnection.getHeaderFieldDate(String var0,
long var1)
|
long |
HttpURLConnection.getHeaderFieldDate(String var0,
long var1)
|
int |
URLConnection.getHeaderFieldInt(String var0,
int var1)
|
String |
URLConnection.getRequestProperty(String var0)
|
protected static String |
URLConnection.guessContentTypeFromName(String var0)
|
protected void |
URLStreamHandler.parseURL(URL var0,
String var1,
int var2,
int var3)
|
static PasswordAuthentication |
Authenticator.requestPasswordAuthentication(InetAddress var0,
int var1,
String var2,
String var3,
String var4)
|
protected void |
URL.set(String var0,
String var1,
int var2,
String var3,
String var4)
|
protected void |
URL.set(String var0,
String var1,
int var2,
String var3,
String var4,
String var5,
String var6,
String var7)
|
void |
HttpURLConnection.setRequestMethod(String var0)
|
void |
URLConnection.setRequestProperty(String var0,
String var1)
|
protected void |
URLStreamHandler.setURL(URL var0,
String var1,
String var2,
int var3,
String var4,
String var5,
String var6,
String var7,
String var8)
|
Constructors in java.net with parameters of type String | |
---|---|
BindException(String var0)
|
|
ConnectException(String var0)
|
|
MalformedURLException(String var0)
|
|
NetPermission(String var0)
|
|
NetPermission(String var0,
String var1)
|
|
NoRouteToHostException(String var0)
|
|
PasswordAuthentication(String var0,
char[] var1)
|
|
ProtocolException(String var0)
|
|
Socket(String var0,
int var1)
|
|
Socket(String var0,
int var1,
InetAddress var2,
int var3)
|
|
SocketException(String var0)
|
|
SocketPermission(String var0,
String var1)
|
|
UnknownHostException(String var0)
|
|
UnknownServiceException(String var0)
|
|
URL(String var0)
|
|
URL(String var0,
String var1,
int var2,
String var3)
|
|
URL(String var0,
String var1,
int var2,
String var3,
URLStreamHandler var4)
|
|
URL(String var0,
String var1,
String var2)
|
|
URL(URL var0,
String var1)
|
|
URL(URL var0,
String var1,
URLStreamHandler var2)
|
Uses of String in java.security |
---|
Methods in java.security that return String | |
---|---|
abstract String |
KeyStoreSpi.engineGetCertificateAlias(Certificate var0)
|
protected abstract String |
AlgorithmParametersSpi.engineToString()
|
String |
UnresolvedPermission.getActions()
|
abstract String |
Permission.getActions()
|
String |
BasicPermission.getActions()
|
String |
AllPermission.getActions()
|
String |
SignedObject.getAlgorithm()
|
String |
Signature.getAlgorithm()
|
String |
MessageDigest.getAlgorithm()
|
String |
KeyPairGenerator.getAlgorithm()
|
String |
KeyFactory.getAlgorithm()
|
String |
Key.getAlgorithm()
|
String |
AlgorithmParameters.getAlgorithm()
|
String |
AlgorithmParameterGenerator.getAlgorithm()
|
String |
KeyStore.getCertificateAlias(Certificate var0)
|
static String |
KeyStore.getDefaultType()
|
String |
Key.getFormat()
|
String |
Certificate.getFormat()
|
String |
Provider.getInfo()
|
String |
Identity.getInfo()
|
String |
Provider.getName()
|
String |
Principal.getName()
|
String |
Permission.getName()
|
String |
Identity.getName()
|
static String |
Security.getProperty(String var0)
|
String |
KeyStore.getType()
|
String |
UnresolvedPermission.toString()
|
String |
Signer.toString()
|
String |
Signature.toString()
|
String |
Provider.toString()
|
String |
ProtectionDomain.toString()
|
String |
PrivilegedActionException.toString()
|
String |
Principal.toString()
|
String |
PermissionCollection.toString()
|
String |
Permission.toString()
|
String |
MessageDigest.toString()
|
String |
IdentityScope.toString()
|
String |
Identity.toString()
|
String |
DigestOutputStream.toString()
|
String |
DigestInputStream.toString()
|
String |
CodeSource.toString()
|
String |
AlgorithmParameters.toString()
|
String |
Identity.toString(boolean var0)
|
String |
Certificate.toString(boolean var0)
|
Methods in java.security with parameters of type String | |
---|---|
boolean |
KeyStore.containsAlias(String var0)
|
protected Class |
SecureClassLoader.defineClass(String var0,
byte[] var1,
int var2,
int var3,
CodeSource var4)
|
void |
KeyStore.deleteEntry(String var0)
|
abstract boolean |
KeyStoreSpi.engineContainsAlias(String var0)
|
abstract void |
KeyStoreSpi.engineDeleteEntry(String var0)
|
abstract Certificate |
KeyStoreSpi.engineGetCertificate(String var0)
|
abstract Certificate[] |
KeyStoreSpi.engineGetCertificateChain(String var0)
|
abstract Date |
KeyStoreSpi.engineGetCreationDate(String var0)
|
protected abstract byte[] |
AlgorithmParametersSpi.engineGetEncoded(String var0)
|
abstract Key |
KeyStoreSpi.engineGetKey(String var0,
char[] var1)
|
protected abstract void |
AlgorithmParametersSpi.engineInit(byte[] var0,
String var1)
|
abstract boolean |
KeyStoreSpi.engineIsCertificateEntry(String var0)
|
abstract boolean |
KeyStoreSpi.engineIsKeyEntry(String var0)
|
abstract void |
KeyStoreSpi.engineSetCertificateEntry(String var0,
Certificate var1)
|
abstract void |
KeyStoreSpi.engineSetKeyEntry(String var0,
byte[] var1,
Certificate[] var2)
|
abstract void |
KeyStoreSpi.engineSetKeyEntry(String var0,
Key var1,
char[] var2,
Certificate[] var3)
|
Certificate |
KeyStore.getCertificate(String var0)
|
Certificate[] |
KeyStore.getCertificateChain(String var0)
|
Date |
KeyStore.getCreationDate(String var0)
|
byte[] |
AlgorithmParameters.getEncoded(String var0)
|
abstract Identity |
IdentityScope.getIdentity(String var0)
|
static Signature |
Signature.getInstance(String var0)
|
static SecureRandom |
SecureRandom.getInstance(String var0)
|
static MessageDigest |
MessageDigest.getInstance(String var0)
|
static KeyStore |
KeyStore.getInstance(String var0)
|
static KeyPairGenerator |
KeyPairGenerator.getInstance(String var0)
|
static KeyFactory |
KeyFactory.getInstance(String var0)
|
static AlgorithmParameters |
AlgorithmParameters.getInstance(String var0)
|
static AlgorithmParameterGenerator |
AlgorithmParameterGenerator.getInstance(String var0)
|
static Signature |
Signature.getInstance(String var0,
String var1)
|
static SecureRandom |
SecureRandom.getInstance(String var0,
String var1)
|
static MessageDigest |
MessageDigest.getInstance(String var0,
String var1)
|
static KeyStore |
KeyStore.getInstance(String var0,
String var1)
|
static KeyPairGenerator |
KeyPairGenerator.getInstance(String var0,
String var1)
|
static KeyFactory |
KeyFactory.getInstance(String var0,
String var1)
|
static AlgorithmParameters |
AlgorithmParameters.getInstance(String var0,
String var1)
|
static AlgorithmParameterGenerator |
AlgorithmParameterGenerator.getInstance(String var0,
String var1)
|
Key |
KeyStore.getKey(String var0,
char[] var1)
|
static String |
Security.getProperty(String var0)
|
static Provider |
Security.getProvider(String var0)
|
static Provider[] |
Security.getProviders(String var0)
|
void |
AlgorithmParameters.init(byte[] var0,
String var1)
|
boolean |
KeyStore.isCertificateEntry(String var0)
|
boolean |
KeyStore.isKeyEntry(String var0)
|
static void |
Security.removeProvider(String var0)
|
void |
KeyStore.setCertificateEntry(String var0,
Certificate var1)
|
void |
Identity.setInfo(String var0)
|
void |
KeyStore.setKeyEntry(String var0,
byte[] var1,
Certificate[] var2)
|
void |
KeyStore.setKeyEntry(String var0,
Key var1,
char[] var2,
Certificate[] var3)
|
static void |
Security.setProperty(String var0,
String var1)
|
Uses of String in java.security.acl |
---|
Methods in java.security.acl that return String | |
---|---|
String |
Acl.getName()
|
String |
Permission.toString()
|
String |
AclEntry.toString()
|
String |
Acl.toString()
|
Methods in java.security.acl with parameters of type String | |
---|---|
void |
Acl.setName(Principal var0,
String var1)
|
Uses of String in java.security.cert |
---|
Methods in java.security.cert that return String | |
---|---|
abstract String |
X509Certificate.getSigAlgName()
|
abstract String |
X509CRL.getSigAlgName()
|
abstract String |
X509Certificate.getSigAlgOID()
|
abstract String |
X509CRL.getSigAlgOID()
|
String |
CertificateFactory.getType()
|
String |
Certificate.getType()
|
String |
CRL.getType()
|
abstract String |
X509CRLEntry.toString()
|
abstract String |
Certificate.toString()
|
abstract String |
CRL.toString()
|
Methods in java.security.cert with parameters of type String | |
---|---|
byte[] |
X509Extension.getExtensionValue(String var0)
|
abstract byte[] |
X509Certificate.getExtensionValue(String var0)
|
abstract byte[] |
X509CRLEntry.getExtensionValue(String var0)
|
abstract byte[] |
X509CRL.getExtensionValue(String var0)
|
static CertificateFactory |
CertificateFactory.getInstance(String var0)
|
static CertificateFactory |
CertificateFactory.getInstance(String var0,
String var1)
|
abstract void |
X509CRL.verify(PublicKey var0,
String var1)
|
abstract void |
Certificate.verify(PublicKey var0,
String var1)
|
Constructors in java.security.cert with parameters of type String | |
---|---|
Certificate.CertificateRep(String var0,
byte[] var1)
|
|
Certificate(String var0)
|
|
CertificateEncodingException(String var0)
|
|
CertificateException(String var0)
|
|
CertificateExpiredException(String var0)
|
|
CertificateFactory(CertificateFactorySpi var0,
Provider var1,
String var2)
|
|
CertificateNotYetValidException(String var0)
|
|
CertificateParsingException(String var0)
|
|
CRL(String var0)
|
|
CRLException(String var0)
|
Uses of String in java.security.spec |
---|
Methods in java.security.spec that return String | |
---|---|
String |
X509EncodedKeySpec.getFormat()
|
String |
PKCS8EncodedKeySpec.getFormat()
|
abstract String |
EncodedKeySpec.getFormat()
|
Constructors in java.security.spec with parameters of type String | |
---|---|
InvalidKeySpecException(String var0)
|
|
InvalidParameterSpecException(String var0)
|
Uses of String in java.text |
---|
Methods in java.text that return String | |
---|---|
String |
DateFormat.format(Date var0)
|
String |
NumberFormat.format(double var0)
|
String |
NumberFormat.format(long var0)
|
String |
Format.format(Object var0)
|
static String |
MessageFormat.format(String var0,
Object[] var1)
|
String[] |
DateFormatSymbols.getAmPmStrings()
|
String |
DecimalFormatSymbols.getCurrencySymbol()
|
String[] |
DateFormatSymbols.getEras()
|
String |
DecimalFormatSymbols.getInfinity()
|
String |
DecimalFormatSymbols.getInternationalCurrencySymbol()
|
String |
DateFormatSymbols.getLocalPatternChars()
|
String[] |
DateFormatSymbols.getMonths()
|
protected String |
AttributedCharacterIterator.Attribute.getName()
|
String |
DecimalFormatSymbols.getNaN()
|
String |
DecimalFormat.getNegativePrefix()
|
String |
DecimalFormat.getNegativeSuffix()
|
String |
DecimalFormat.getPositivePrefix()
|
String |
DecimalFormat.getPositiveSuffix()
|
String |
RuleBasedCollator.getRules()
|
String[] |
DateFormatSymbols.getShortMonths()
|
String[] |
DateFormatSymbols.getShortWeekdays()
|
String |
CollationKey.getSourceString()
|
String[] |
DateFormatSymbols.getWeekdays()
|
String[][] |
DateFormatSymbols.getZoneStrings()
|
String |
SimpleDateFormat.toLocalizedPattern()
|
String |
DecimalFormat.toLocalizedPattern()
|
String |
SimpleDateFormat.toPattern()
|
String |
MessageFormat.toPattern()
|
String |
DecimalFormat.toPattern()
|
String |
ChoiceFormat.toPattern()
|
String |
ParsePosition.toString()
|
String |
FieldPosition.toString()
|
String |
AttributedCharacterIterator.Attribute.toString()
|
String |
Annotation.toString()
|
Methods in java.text with parameters of type String | |
---|---|
void |
SimpleDateFormat.applyLocalizedPattern(String var0)
|
void |
DecimalFormat.applyLocalizedPattern(String var0)
|
void |
SimpleDateFormat.applyPattern(String var0)
|
void |
MessageFormat.applyPattern(String var0)
|
void |
DecimalFormat.applyPattern(String var0)
|
void |
ChoiceFormat.applyPattern(String var0)
|
int |
RuleBasedCollator.compare(String var0,
String var1)
|
abstract int |
Collator.compare(String var0,
String var1)
|
boolean |
Collator.equals(String var0,
String var1)
|
static String |
MessageFormat.format(String var0,
Object[] var1)
|
CollationElementIterator |
RuleBasedCollator.getCollationElementIterator(String var0)
|
CollationKey |
RuleBasedCollator.getCollationKey(String var0)
|
abstract CollationKey |
Collator.getCollationKey(String var0)
|
Number |
NumberFormat.parse(String var0)
|
Object[] |
MessageFormat.parse(String var0)
|
Date |
DateFormat.parse(String var0)
|
Date |
SimpleDateFormat.parse(String var0,
ParsePosition var1)
|
abstract Number |
NumberFormat.parse(String var0,
ParsePosition var1)
|
Object[] |
MessageFormat.parse(String var0,
ParsePosition var1)
|
Number |
DecimalFormat.parse(String var0,
ParsePosition var1)
|
abstract Date |
DateFormat.parse(String var0,
ParsePosition var1)
|
Number |
ChoiceFormat.parse(String var0,
ParsePosition var1)
|
Object |
Format.parseObject(String var0)
|
Object |
NumberFormat.parseObject(String var0,
ParsePosition var1)
|
Object |
MessageFormat.parseObject(String var0,
ParsePosition var1)
|
abstract Object |
Format.parseObject(String var0,
ParsePosition var1)
|
Object |
DateFormat.parseObject(String var0,
ParsePosition var1)
|
void |
DateFormatSymbols.setAmPmStrings(String[] var0)
|
void |
ChoiceFormat.setChoices(double[] var0,
String[] var1)
|
void |
DecimalFormatSymbols.setCurrencySymbol(String var0)
|
void |
DateFormatSymbols.setEras(String[] var0)
|
void |
DecimalFormatSymbols.setInfinity(String var0)
|
void |
DecimalFormatSymbols.setInternationalCurrencySymbol(String var0)
|
void |
DateFormatSymbols.setLocalPatternChars(String var0)
|
void |
DateFormatSymbols.setMonths(String[] var0)
|
void |
DecimalFormatSymbols.setNaN(String var0)
|
void |
DecimalFormat.setNegativePrefix(String var0)
|
void |
DecimalFormat.setNegativeSuffix(String var0)
|
void |
DecimalFormat.setPositivePrefix(String var0)
|
void |
DecimalFormat.setPositiveSuffix(String var0)
|
void |
DateFormatSymbols.setShortMonths(String[] var0)
|
void |
DateFormatSymbols.setShortWeekdays(String[] var0)
|
void |
StringCharacterIterator.setText(String var0)
|
void |
CollationElementIterator.setText(String var0)
|
void |
BreakIterator.setText(String var0)
|
void |
DateFormatSymbols.setWeekdays(String[] var0)
|
void |
DateFormatSymbols.setZoneStrings(String[][] var0)
|
Constructors in java.text with parameters of type String | |
---|---|
AttributedCharacterIterator.Attribute(String var0)
|
|
AttributedString(String var0)
|
|
AttributedString(String var0,
Map var1)
|
|
ChoiceFormat(double[] var0,
String[] var1)
|
|
ChoiceFormat(String var0)
|
|
DecimalFormat(String var0)
|
|
DecimalFormat(String var0,
DecimalFormatSymbols var1)
|
|
MessageFormat(String var0)
|
|
ParseException(String var0,
int var1)
|
|
RuleBasedCollator(String var0)
|
|
SimpleDateFormat(String var0)
|
|
SimpleDateFormat(String var0,
DateFormatSymbols var1)
|
|
SimpleDateFormat(String var0,
Locale var1)
|
|
StringCharacterIterator(String var0)
|
|
StringCharacterIterator(String var0,
int var1)
|
|
StringCharacterIterator(String var0,
int var1,
int var2,
int var3)
|
Uses of String in java.util |
---|
Methods in java.util with parameters of type String | |
---|---|
static ResourceBundle |
ResourceBundle.getBundle(String var0)
|
static ResourceBundle |
ResourceBundle.getBundle(String var0,
Locale var1)
|
static ResourceBundle |
ResourceBundle.getBundle(String var0,
Locale var1,
ClassLoader var2)
|
Object |
ResourceBundle.getObject(String var0)
|
String |
Properties.getProperty(String var0)
|
String |
Properties.getProperty(String var0,
String var1)
|
String |
ResourceBundle.getString(String var0)
|
String[] |
ResourceBundle.getStringArray(String var0)
|
static TimeZone |
TimeZone.getTimeZone(String var0)
|
protected abstract Object |
ResourceBundle.handleGetObject(String var0)
|
Object |
PropertyResourceBundle.handleGetObject(String var0)
|
Object |
ListResourceBundle.handleGetObject(String var0)
|
String |
StringTokenizer.nextToken(String var0)
|
void |
Properties.save(OutputStream var0,
String var1)
|
void |
TimeZone.setID(String var0)
|
Object |
Properties.setProperty(String var0,
String var1)
|
void |
Properties.store(OutputStream var0,
String var1)
|
Constructors in java.util with parameters of type String | |
---|---|
ConcurrentModificationException(String var0)
|
|
Locale(String var0,
String var1)
|
|
Locale(String var0,
String var1,
String var2)
|
|
MissingResourceException(String var0,
String var1,
String var2)
|
|
NoSuchElementException(String var0)
|
|
PropertyPermission(String var0,
String var1)
|
|
SimpleTimeZone(int var0,
String var1)
|
|
SimpleTimeZone(int var0,
String var1,
int var2,
int var3,
int var4,
int var5,
int var6,
int var7,
int var8,
int var9)
|
|
SimpleTimeZone(int var0,
String var1,
int var2,
int var3,
int var4,
int var5,
int var6,
int var7,
int var8,
int var9,
int var10)
|
|
StringTokenizer(String var0)
|
|
StringTokenizer(String var0,
String var1)
|
|
StringTokenizer(String var0,
String var1,
boolean var2)
|
|
TooManyListenersException(String var0)
|
Uses of String in java.util.jar |
---|
Fields in java.util.jar declared as String | |
---|---|
static String |
JarFile.MANIFEST_NAME
|
Methods in java.util.jar that return String | |
---|---|
String |
Attributes.getValue(Attributes.Name var0)
|
String |
Attributes.getValue(String var0)
|
String |
Attributes.putValue(String var0,
String var1)
|
String |
Attributes.Name.toString()
|
Methods in java.util.jar with parameters of type String | |
---|---|
protected ZipEntry |
JarInputStream.createZipEntry(String var0)
|
Attributes |
Manifest.getAttributes(String var0)
|
ZipEntry |
JarFile.getEntry(String var0)
|
JarEntry |
JarFile.getJarEntry(String var0)
|
String |
Attributes.getValue(String var0)
|
String |
Attributes.putValue(String var0,
String var1)
|
Constructors in java.util.jar with parameters of type String | |
---|---|
Attributes.Name(String var0)
|
|
JarEntry(String var0)
|
|
JarException(String var0)
|
|
JarFile(String var0)
|
|
JarFile(String var0,
boolean var1)
|
Uses of String in java.util.zip |
---|
Methods in java.util.zip that return String | |
---|---|
String |
ZipEntry.getComment()
|
String |
ZipFile.getName()
|
String |
ZipEntry.getName()
|
String |
ZipEntry.toString()
|
Methods in java.util.zip with parameters of type String | |
---|---|
protected ZipEntry |
ZipInputStream.createZipEntry(String var0)
|
ZipEntry |
ZipFile.getEntry(String var0)
|
void |
ZipOutputStream.setComment(String var0)
|
void |
ZipEntry.setComment(String var0)
|
Constructors in java.util.zip with parameters of type String | |
---|---|
DataFormatException(String var0)
|
|
ZipEntry(String var0)
|
|
ZipException(String var0)
|
|
ZipFile(String var0)
|
Uses of String in javax.microedition.io |
---|
Fields in javax.microedition.io declared as String | |
---|---|
static String |
HttpConnection.GET
|
static String |
HttpConnection.HEAD
|
static String |
HttpConnection.POST
|
Methods in javax.microedition.io that return String | |
---|---|
String |
Datagram.getAddress()
|
String |
ContentConnection.getEncoding()
|
String |
HttpConnection.getFile()
|
String |
HttpConnection.getHeaderField(int var0)
|
String |
HttpConnection.getHeaderField(String var0)
|
String |
HttpConnection.getHeaderFieldKey(int var0)
|
String |
HttpConnection.getHost()
|
String |
HttpConnection.getProtocol()
|
String |
HttpConnection.getQuery()
|
String |
HttpConnection.getRef()
|
String |
HttpConnection.getRequestMethod()
|
String |
HttpConnection.getRequestProperty(String var0)
|
String |
HttpConnection.getResponseMessage()
|
String |
ContentConnection.getType()
|
String |
HttpConnection.getURL()
|
Methods in javax.microedition.io with parameters of type String | |
---|---|
String |
HttpConnection.getHeaderField(String var0)
|
long |
HttpConnection.getHeaderFieldDate(String var0,
long var1)
|
int |
HttpConnection.getHeaderFieldInt(String var0,
int var1)
|
String |
HttpConnection.getRequestProperty(String var0)
|
Datagram |
DatagramConnection.newDatagram(byte[] var0,
int var1,
String var2)
|
Datagram |
DatagramConnection.newDatagram(int var0,
String var1)
|
static Connection |
Connector.open(String var0)
|
static Connection |
Connector.open(String var0,
int var1)
|
static Connection |
Connector.open(String var0,
int var1,
boolean var2)
|
static DataInputStream |
Connector.openDataInputStream(String var0)
|
static DataOutputStream |
Connector.openDataOutputStream(String var0)
|
static InputStream |
Connector.openInputStream(String var0)
|
static OutputStream |
Connector.openOutputStream(String var0)
|
void |
Datagram.setAddress(String var0)
|
void |
HttpConnection.setRequestMethod(String var0)
|
void |
HttpConnection.setRequestProperty(String var0,
String var1)
|
Constructors in javax.microedition.io with parameters of type String | |
---|---|
ConnectionNotFoundException(String var0)
|
Uses of String in javax.servlet |
---|
Methods in javax.servlet that return String | |
---|---|
String |
ServletResponse.getCharacterEncoding()
Returns the name of the charset used for the MIME body sent in this response. |
String |
ServletRequest.getCharacterEncoding()
Returns the name of the character encoding used in the body of this request. |
String |
ServletRequest.getContentType()
Returns the MIME type of the body of the request, or null if the type is not known. |
String |
GenericServlet.getInitParameter(String name)
Returns a String containing the value of the named
initialization parameter, or null if the parameter does
not exist. |
String |
ServletConfig.getInitParameter(String name)
Returns a String containing the value of the
named initialization parameter, or null if
the parameter does not exist. |
String |
ServletContext.getMimeType(String file)
Returns the MIME type of the specified file, or null if
the MIME type is not known. |
String |
ServletRequest.getParameter(String name)
Returns the value of a request parameter as a String ,
or null if the parameter does not exist. |
String[] |
ServletRequest.getParameterValues(String name)
Returns an array of String objects containing
all of the values the given request parameter has, or
null if the parameter does not exist. |
String |
ServletRequest.getProtocol()
Returns the name and version of the protocol the request uses in the form protocol/majorVersion.minorVersion, for example, HTTP/1.1. |
String |
ServletRequest.getRealPath(String path)
Deprecated. As of Version 2.1 of the Java Servlet API, use ServletContext.getRealPath(java.lang.String) instead. |
String |
ServletContext.getRealPath(String path)
Returns a String containing the real path
for a given virtual path. |
String |
ServletRequest.getRemoteAddr()
Returns the Internet Protocol (IP) address of the client that sent the request. |
String |
ServletRequest.getRemoteHost()
Returns the fully qualified name of the client that sent the request. |
String |
ServletRequest.getScheme()
Returns the name of the scheme used to make this request, for example, http , https , or ftp . |
String |
ServletContext.getServerInfo()
Returns the name and version of the servlet container on which the servlet is running. |
String |
ServletRequest.getServerName()
Returns the host name of the server that received the request. |
String |
GenericServlet.getServletInfo()
Returns information about the servlet, such as author, version, and copyright. |
String |
Servlet.getServletInfo()
Returns information about the servlet, such as author, version, and copyright. |
Methods in javax.servlet with parameters of type String | |
---|---|
Object |
ServletRequest.getAttribute(String name)
Returns the value of the named attribute as an Object ,
or null if no attribute of the given name exists. |
Object |
ServletContext.getAttribute(String name)
Returns the servlet container attribute with the given name, or null if there is no attribute by that name. |
ServletContext |
ServletContext.getContext(String uripath)
Returns a ServletContext object that
corresponds to a specified URL on the server. |
String |
GenericServlet.getInitParameter(String name)
Returns a String containing the value of the named
initialization parameter, or null if the parameter does
not exist. |
String |
ServletConfig.getInitParameter(String name)
Returns a String containing the value of the
named initialization parameter, or null if
the parameter does not exist. |
String |
ServletContext.getMimeType(String file)
Returns the MIME type of the specified file, or null if
the MIME type is not known. |
String |
ServletRequest.getParameter(String name)
Returns the value of a request parameter as a String ,
or null if the parameter does not exist. |
String[] |
ServletRequest.getParameterValues(String name)
Returns an array of String objects containing
all of the values the given request parameter has, or
null if the parameter does not exist. |
String |
ServletRequest.getRealPath(String path)
Deprecated. As of Version 2.1 of the Java Servlet API, use ServletContext.getRealPath(java.lang.String) instead. |
String |
ServletContext.getRealPath(String path)
Returns a String containing the real path
for a given virtual path. |
RequestDispatcher |
ServletContext.getRequestDispatcher(String path)
Returns a RequestDispatcher object that acts
as a wrapper for the resource located at the given path. |
URL |
ServletContext.getResource(String path)
Returns a URL to the resource that is mapped to a specified path. |
InputStream |
ServletContext.getResourceAsStream(String path)
Returns the resource located at the named path as an InputStream object. |
Servlet |
ServletContext.getServlet(String name)
Deprecated. As of Java Servlet API 2.1, with no direct replacement. This method was originally defined to retrieve a servlet
from a In lieu of this method, servlets can share information using the
|
void |
ServletContext.log(Exception exception,
String msg)
Deprecated. As of Java Servlet API 2.1, use ServletContext.log(String message, Throwable throwable)
instead.
This method was originally defined to write an exception's stack trace and an explanatory error message to the servlet log file. |
void |
GenericServlet.log(String msg)
Writes the specified message to a servlet log file, prepended by the servlet's name. |
void |
ServletContext.log(String msg)
Writes the specified message to a servlet log file, usually an event log. |
void |
GenericServlet.log(String message,
Throwable t)
Writes an explanatory message and a stack trace for a given Throwable exception
to the servlet log file, prepended by the servlet's name. |
void |
ServletContext.log(String message,
Throwable throwable)
Writes an explanatory message and a stack trace for a given Throwable exception
to the servlet log file. |
void |
ServletOutputStream.print(String s)
Writes a String to the client,
without a carriage return-line feed (CRLF)
character at the end. |
void |
ServletOutputStream.println(String s)
Writes a String to the client,
followed by a carriage return-line feed (CRLF). |
void |
ServletContext.removeAttribute(String name)
Removes the attribute with the given name from the servlet context. |
void |
ServletRequest.setAttribute(String name,
Object o)
Stores an attribute in this request. |
void |
ServletContext.setAttribute(String name,
Object object)
Binds an object to a given attribute name in this servlet context. |
void |
ServletResponse.setContentType(String type)
Sets the content type of the response being sent to the client. |
Constructors in javax.servlet with parameters of type String | |
---|---|
ServletException(String message)
Constructs a new servlet exception with the specified message. |
|
ServletException(String message,
Throwable rootCause)
Constructs a new servlet exception when the servlet needs to throw an exception and include a message about the "root cause" exception that interfered with its normal operation, including a description message. |
|
UnavailableException(int seconds,
Servlet servlet,
String msg)
|
|
UnavailableException(Servlet servlet,
String msg)
|
Uses of String in javax.servlet.http |
---|
Methods in javax.servlet.http that return String | |
---|---|
String |
HttpServletResponse.encodeRedirectUrl(String url)
Deprecated. As of version 2.1, use encodeRedirectURL(String url) instead |
String |
HttpServletResponse.encodeRedirectURL(String url)
Encodes the specified URL for use in the sendRedirect method or, if encoding is not needed,
returns the URL unchanged. |
String |
HttpServletResponse.encodeUrl(String url)
Deprecated. As of version 2.1, use encodeURL(String url) instead |
String |
HttpServletResponse.encodeURL(String url)
Encodes the specified URL by including the session ID in it, or, if encoding is not needed, returns the URL unchanged. |
String |
HttpServletRequest.getAuthType()
Returns the name of the authentication scheme used to protect the servlet, for example, "BASIC" or "SSL". |
String |
Cookie.getComment()
Returns the comment describing the purpose of this cookie, or null if the cookie has no comment. |
String |
Cookie.getDomain()
Returns the domain name set for this cookie. |
String |
HttpServletRequest.getHeader(String name)
Returns the value of the specified request header as a String . |
String |
HttpSession.getId()
Returns a string containing the unique identifier assigned to this session. |
String |
HttpServletRequest.getMethod()
Returns the name of the HTTP method with which this request was made, for example, GET, POST, or PUT. |
String |
HttpSessionBindingEvent.getName()
Returns the name with which the object is bound to or unbound from the session. |
String |
Cookie.getName()
Returns the name of the cookie. |
String |
Cookie.getPath()
Returns the path on the server to which the browser returns this cookie. |
String |
HttpServletRequest.getPathInfo()
Returns any extra path information associated with the URL the client sent when it made this request. |
String |
HttpServletRequest.getPathTranslated()
Returns any extra path information after the servlet name but before the query string, and translates it to a real path. |
String |
HttpServletRequest.getQueryString()
Returns the query string that is contained in the request URL after the path. |
String |
HttpServletRequest.getRemoteUser()
Returns the login of the user making this request, if the user has been authenticated, or null if the user
has not been authenticated. |
String |
HttpServletRequest.getRequestedSessionId()
Returns the session ID specified by the client. |
String |
HttpServletRequest.getRequestURI()
Returns the part of this request's URL from the protocol name up to the query string in the first line of the HTTP request. |
String |
HttpServletRequest.getServletPath()
Returns the part of this request's URL that calls the servlet. |
String |
Cookie.getValue()
Returns the value of the cookie. |
String[] |
HttpSession.getValueNames()
|
Methods in javax.servlet.http with parameters of type String | |
---|---|
boolean |
HttpServletResponse.containsHeader(String name)
Returns a boolean indicating whether the named response header has already been set. |
String |
HttpServletResponse.encodeRedirectUrl(String url)
Deprecated. As of version 2.1, use encodeRedirectURL(String url) instead |
String |
HttpServletResponse.encodeRedirectURL(String url)
Encodes the specified URL for use in the sendRedirect method or, if encoding is not needed,
returns the URL unchanged. |
String |
HttpServletResponse.encodeUrl(String url)
Deprecated. As of version 2.1, use encodeURL(String url) instead |
String |
HttpServletResponse.encodeURL(String url)
Encodes the specified URL by including the session ID in it, or, if encoding is not needed, returns the URL unchanged. |
long |
HttpServletRequest.getDateHeader(String name)
Returns the value of the specified request header as a long value that represents a
Date object. |
String |
HttpServletRequest.getHeader(String name)
Returns the value of the specified request header as a String . |
int |
HttpServletRequest.getIntHeader(String name)
Returns the value of the specified request header as an int . |
HttpSession |
HttpSessionContext.getSession(String sessionId)
Deprecated. As of Java Servlet API 2.1 with no replacement. This method must return null and will be removed in a future version of this API. |
Object |
HttpSession.getValue(String name)
|
static Hashtable |
HttpUtils.parseQueryString(String s)
Parses a query string passed from the client to the server and builds a HashTable object
with key-value pairs. |
void |
HttpSession.putValue(String name,
Object value)
|
void |
HttpSession.removeValue(String name)
|
void |
HttpServletResponse.sendError(int sc,
String msg)
Sends an error response to the client using the specified status clearing the buffer. |
void |
HttpServletResponse.sendRedirect(String location)
Sends a temporary redirect response to the client using the specified redirect location URL. |
void |
Cookie.setComment(String purpose)
Specifies a comment that describes a cookie's purpose. |
void |
HttpServletResponse.setDateHeader(String name,
long date)
Sets a response header with the given name and date-value. |
void |
Cookie.setDomain(String pattern)
Specifies the domain within which this cookie should be presented. |
void |
HttpServletResponse.setHeader(String name,
String value)
Sets a response header with the given name and value. |
void |
HttpServletResponse.setIntHeader(String name,
int value)
Sets a response header with the given name and integer value. |
void |
Cookie.setPath(String uri)
Specifies a path for the cookie to which the client should return the cookie. |
void |
HttpServletResponse.setStatus(int sc,
String sm)
Deprecated. As of version 2.1, due to ambiguous meaning of the message parameter. To set a status code use setStatus(int) , to send an error with a description
use sendError(int, String) .
Sets the status code and message for this response. |
void |
Cookie.setValue(String newValue)
Assigns a new value to a cookie after the cookie is created. |
Constructors in javax.servlet.http with parameters of type String | |
---|---|
Cookie(String name,
String value)
Constructs a cookie with a specified name and value. |
|
HttpSessionBindingEvent(HttpSession session,
String name)
Constructs an event that notifies an object that it has been bound to or unbound from a session. |
Uses of String in org.apache.felix.cm |
---|
Methods in org.apache.felix.cm with parameters of type String | |
---|---|
void |
PersistenceManager.delete(String pid)
Removes the Dictionary for the given pid . |
boolean |
PersistenceManager.exists(String pid)
Returns true if a persisted Dictionary exists
for the given pid . |
Dictionary |
PersistenceManager.load(String pid)
Returns the Dictionary for the given pid . |
void |
PersistenceManager.store(String pid,
Dictionary properties)
Stores the Dictionary under the given pid . |
Uses of String in org.apache.felix.cm.file |
---|
Fields in org.apache.felix.cm.file declared as String | |
---|---|
protected static String |
ConfigurationHandler.CRLF
|
static String |
FilePersistenceManager.DEFAULT_CONFIG_DIR
The default configuration data directory if no location is configured (value is "config"). |
protected static String |
ConfigurationHandler.ENCODING
|
Methods in org.apache.felix.cm.file with parameters of type String | |
---|---|
void |
FilePersistenceManager.delete(String pid)
Deletes the file for the given identifier. |
boolean |
FilePersistenceManager.exists(String pid)
Returns true if a (configuration) file exists for the given
identifier. |
Dictionary |
FilePersistenceManager.load(String pid)
Reads the (configuration) for the given identifier into a Dictionary object. |
void |
FilePersistenceManager.store(String pid,
Dictionary props)
Stores the contents of the Dictionary in a file denoted
by the given identifier. |
Constructors in org.apache.felix.cm.file with parameters of type String | |
---|---|
FilePersistenceManager(BundleContext bundleContext,
String location)
Creates an instance of this persistence manager using the given location as the directory to store and retrieve the configuration files. |
|
FilePersistenceManager(String location)
Creates an instance of this persistence manager using the given location as the directory to store and retrieve the configuration files. |
Uses of String in org.apache.felix.cm.impl |
---|
Fields in org.apache.felix.cm.impl declared as String | |
---|---|
static String |
ConfigurationManager.CM_CONFIG_DIR
The name of the bundle context property defining the location for the configuration files (value is "felix.cm.dir"). |
static String |
ConfigurationManager.CM_LOG_LEVEL
The name of the bundle context property defining the maximum log level (value is "felix.cm.loglevel"). |
Methods in org.apache.felix.cm.impl that return String | |
---|---|
String |
ConfigurationAdapter.getBundleLocation()
|
String |
ConfigurationAdapter.getFactoryPid()
|
String |
ConfigurationAdapter.getPid()
|
String |
ConfigurationAdapter.toString()
|
Methods in org.apache.felix.cm.impl with parameters of type String | |
---|---|
Configuration |
ConfigurationAdminImpl.createFactoryConfiguration(String factoryPid)
|
Configuration |
ConfigurationAdminImpl.createFactoryConfiguration(String factoryPid,
String location)
|
Configuration |
ConfigurationAdminImpl.getConfiguration(String pid)
|
Configuration |
ConfigurationAdminImpl.getConfiguration(String pid,
String location)
|
Configuration[] |
ConfigurationAdminImpl.listConfigurations(String filter)
|
void |
ConfigurationAdapter.setBundleLocation(String bundleLocation)
|
Constructors in org.apache.felix.cm.impl with parameters of type String | |
---|---|
RankingComparator(boolean naturalOrder,
String rankProperty)
|
|
UpdateThread(ConfigurationManager configurationManager,
ThreadGroup tg,
String name)
|
Uses of String in org.apache.felix.dependencymanager |
---|
Methods in org.apache.felix.dependencymanager with parameters of type String | |
---|---|
abstract ServiceDependency |
ServiceDependency.setAutoConfig(String instanceName)
Sets auto configuration for this service. |
abstract ConfigurationDependency |
ConfigurationDependency.setCallback(String callback)
Sets a callback which will be invoked when the configuration is available. |
ServiceDependency |
ServiceDependency.setCallbacks(Object instance,
String added,
String removed)
Sets the callbacks for this service. |
abstract ServiceDependency |
ServiceDependency.setCallbacks(Object instance,
String added,
String changed,
String removed)
Sets the callbacks for this service. |
ServiceDependency |
ServiceDependency.setCallbacks(String added,
String removed)
Sets the callbacks for this service. |
ServiceDependency |
ServiceDependency.setCallbacks(String added,
String changed,
String removed)
Sets the callbacks for this service. |
Service |
Service.setCallbacks(String init,
String start,
String stop,
String destroy)
Sets the names of the methods used as callbacks. |
Service |
Service.setComposition(Object instance,
String getMethod)
Sets the instance and method to invoke to get back all instances that are part of a composition and need dependencies injected. |
Service |
Service.setComposition(String getMethod)
Sets the method to invoke on the service implementation to get back all instances that are part of a composition and need dependencies injected. |
Service |
Service.setFactory(Object factory,
String createMethod)
Sets the factory to use to create the implementation. |
Service |
Service.setFactory(String createMethod)
Sets the factory to use to create the implementation. |
Service |
Service.setInterface(String[] serviceNames,
Dictionary properties)
Sets the public interfaces under which this service should be registered in the OSGi service registry. |
Service |
Service.setInterface(String serviceName,
Dictionary properties)
Sets the public interface under which this service should be registered in the OSGi service registry. |
abstract ConfigurationDependency |
ConfigurationDependency.setPid(String pid)
Sets the service.pid of the configuration you
are depending on. |
abstract ServiceDependency |
ServiceDependency.setService(Class serviceName,
String serviceFilter)
Sets the name of the service that should be tracked. |
Uses of String in org.apache.felix.dependencymanager.impl |
---|
Methods in org.apache.felix.dependencymanager.impl with parameters of type String | |
---|---|
ServiceDependency |
ServiceDependencyImpl.setAutoConfig(String instanceName)
|
ConfigurationDependency |
ConfigurationDependencyImpl.setCallback(String callback)
|
ServiceDependency |
ServiceDependencyImpl.setCallbacks(Object instance,
String added,
String changed,
String removed)
|
Service |
ServiceImpl.setCallbacks(String init,
String start,
String stop,
String destroy)
|
Service |
ServiceImpl.setComposition(Object instance,
String getMethod)
|
Service |
ServiceImpl.setComposition(String getMethod)
|
Service |
ServiceImpl.setFactory(Object factory,
String createMethod)
|
Service |
ServiceImpl.setFactory(String createMethod)
|
Service |
ServiceImpl.setInterface(String[] serviceNames,
Dictionary properties)
|
Service |
ServiceImpl.setInterface(String serviceName,
Dictionary properties)
|
ConfigurationDependency |
ConfigurationDependencyImpl.setPid(String pid)
Sets the service.pid of the configuration you
are depending on. |
ServiceDependency |
ServiceDependencyImpl.setService(Class serviceName,
String serviceFilter)
|
Uses of String in org.apache.felix.deployment.rp.autoconf |
---|
Methods in org.apache.felix.deployment.rp.autoconf that return String | |
---|---|
String |
AutoConfResource.getBundleLocation()
|
String[] |
AttributeDefinitionImpl.getDefaultValue()
|
String |
ObjectClassDefinitionImpl.getDescription()
|
String |
AttributeDefinitionImpl.getDescription()
|
String |
AutoConfResource.getFactoryPid()
Returns empty string if this configuration is not a factory configuration, otherwise the factory PID is returned. |
String |
AutoConfResource.getGeneratedPid()
|
String |
ObjectClassDefinitionImpl.getID()
|
String |
AttributeDefinitionImpl.getID()
|
String |
AutoConfResource.getName()
|
String |
ObjectClassDefinitionImpl.getName()
|
String |
AttributeDefinitionImpl.getName()
|
String[] |
AttributeDefinitionImpl.getOptionLabels()
|
String[] |
AttributeDefinitionImpl.getOptionValues()
|
String |
AutoConfResource.getPid()
|
String |
AttributeDefinitionImpl.validate(String value)
|
Methods in org.apache.felix.deployment.rp.autoconf with parameters of type String | |
---|---|
void |
PersistencyManager.delete(String name)
Deletes a resource. |
void |
AutoConfResourceProcessor.dropped(String name)
|
List |
PersistencyManager.load(String name)
Loads a stored resource. |
void |
AutoConfResourceProcessor.process(String name,
InputStream stream)
|
void |
AutoConfResource.setGeneratedPid(String alias)
|
void |
PersistencyManager.store(String name,
List configs)
Stores a resource. |
String |
AttributeDefinitionImpl.validate(String value)
|
Constructors in org.apache.felix.deployment.rp.autoconf with parameters of type String | |
---|---|
AutoConfResource(String name,
String pid,
String factoryPid,
String bundleLocation,
boolean merge,
Dictionary properties)
|
Uses of String in org.apache.felix.deploymentadmin |
---|
Fields in org.apache.felix.deploymentadmin declared as String | |
---|---|
static String |
Constants.BUNDLE_LOCATION_PREFIX
|
static String |
Constants.DEPLOYMENTPACKAGE_CUSTOMIZER
|
static String |
Constants.DEPLOYMENTPACKAGE_FIXPACK
|
static String |
Constants.DEPLOYMENTPACKAGE_MISSING
|
static String |
Constants.DEPLOYMENTPACKAGE_SYMBOLICMAME
|
static String |
Constants.DEPLOYMENTPACKAGE_VERSION
|
static String |
Constants.EVENTPROPERTY_DEPLOYMENTPACKAGE_NAME
|
static String |
Constants.EVENTPROPERTY_SUCCESSFUL
|
static String |
Constants.EVENTTOPIC_COMPLETE
|
static String |
Constants.EVENTTOPIC_INSTALL
|
static String |
Constants.EVENTTOPIC_UNINSTALL
|
static String |
DeploymentAdminImpl.PACKAGE_DIR
|
static String |
DeploymentAdminImpl.PACKAGECONTENTS_DIR
|
static String |
DeploymentAdminImpl.PACKAGEINDEX_FILE
|
static String |
Constants.RESOURCE_PROCESSOR
|
static String |
DeploymentAdminImpl.TEMP_DIR
|
static String |
DeploymentAdminImpl.TEMP_POSTFIX
|
static String |
DeploymentAdminImpl.TEMP_PREFIX
|
Methods in org.apache.felix.deploymentadmin that return String | |
---|---|
String |
AbstractDeploymentPackage.getHeader(String header)
|
String |
DeploymentPackageManifest.getHeader(String header)
Determines the value of a header in the main section of the manifest. |
String |
AbstractInfo.getHeader(String header)
Return the value of a header for this resource |
String |
AbstractDeploymentPackage.getName()
|
String |
AbstractInfo.getPath()
|
String |
AbstractDeploymentPackage.getResourceHeader(String resource,
String header)
|
String |
ResourceInfoImpl.getResourceProcessor()
Determines the resource processor for this processed resource. |
String[] |
AbstractDeploymentPackage.getResources()
|
String |
DeploymentPackageManifest.getSymbolicName()
Determines the symbolic name of the deployment package. |
String |
BundleInfoImpl.getSymbolicName()
|
String |
VersionRange.toString()
|
String |
NonCloseableStream.toString()
|
Methods in org.apache.felix.deploymentadmin with parameters of type String | |
---|---|
protected AbstractInfo |
AbstractDeploymentPackage.getAbstractInfoByPath(String path)
Determines the info about either a bundle or processed resource based on it's path/resource-id. |
Bundle |
AbstractDeploymentPackage.getBundle(String symbolicName)
|
BundleInfoImpl |
AbstractDeploymentPackage.getBundleInfoByName(String symbolicName)
Determines the info about a bundle resource based on the bundle symbolic name. |
BundleInfoImpl |
AbstractDeploymentPackage.getBundleInfoByPath(String path)
Determines the info about a bundle based on it's path/resource-id. |
abstract InputStream |
AbstractDeploymentPackage.getBundleStream(String symbolicName)
Determines the data stream of a bundle resource based on the bundle symbolic name |
DeploymentPackage |
DeploymentAdminImpl.getDeploymentPackage(String symbName)
|
String |
AbstractDeploymentPackage.getHeader(String header)
|
String |
DeploymentPackageManifest.getHeader(String header)
Determines the value of a header in the main section of the manifest. |
String |
AbstractInfo.getHeader(String header)
Return the value of a header for this resource |
String |
AbstractDeploymentPackage.getResourceHeader(String resource,
String header)
|
ResourceInfoImpl |
AbstractDeploymentPackage.getResourceInfoByPath(String path)
Determines the info about a processed resource based on it's path/resource-id. |
ServiceReference |
AbstractDeploymentPackage.getResourceProcessor(String resource)
|
static VersionRange |
VersionRange.parse(String range)
Parses a version range from the specified string. |
protected boolean |
AbstractInfo.parseBooleanHeader(Attributes attributes,
String header)
Parses a header that is allowed to have only boolean values. |
Constructors in org.apache.felix.deploymentadmin with parameters of type String | |
---|---|
AbstractInfo(String path,
Attributes attributes)
Create an instance |
|
BundleInfoImpl(String path,
Attributes attributes)
Creates an instance of this class. |
|
ResourceInfoImpl(String path,
Attributes attributes)
Create an instance of this class. |
Uses of String in org.apache.felix.dm |
---|
Fields in org.apache.felix.dm declared as String | |
---|---|
static String |
DependencyManager.ASPECT
|
static String |
ResourceHandler.FILTER
Name of the property that's used to describe the filter condition for a resource. |
static String |
ResourceHandler.HOST
The host part of the URL. |
static String |
ResourceHandler.PATH
The path part of the URL. |
static String |
ResourceHandler.PORT
The port part of the URL. |
static String |
ResourceHandler.PROTOCOL
The protocol part of the URL. |
static String[] |
ComponentDependencyDeclaration.STATE_NAMES
Names for the states of this dependency. |
static String[] |
ComponentDeclaration.STATE_NAMES
Names for the states of this component. |
static String |
ResourceHandler.URL
Exact URL that this handler is looking for. |
Methods in org.apache.felix.dm that return String | |
---|---|
String |
Component.getAutoConfigInstance(Class clazz)
Returns the instance variable name of auto configuration of the specified class. |
String |
Dependency.getAutoConfigName()
Returns the name of the member in the class of the component instance to inject into. |
String |
ComponentDependencyDeclaration.getName()
Returns the name of this dependency. |
String |
ComponentDeclaration.getName()
Returns the name of this component. |
String |
ComponentDependencyDeclaration.getType()
Returns the name of the type of this dependency. |
static String |
ServiceUtil.toString(ServiceReference ref)
Converts a service reference to a string, listing both the bundle it was registered from and all properties. |
Methods in org.apache.felix.dm with parameters of type String | |
---|---|
PropertyMetaData |
PropertyMetaData.addOption(String optionLabel,
String optionValue)
Return a list of valid options for this property (the labels may be localized). |
Component |
DependencyManager.createAdapterService(Class serviceInterface,
String serviceFilter)
Creates a new adapter. |
Component |
DependencyActivatorBase.createAdapterService(Class serviceInterface,
String serviceFilter)
Creates a new adapter service. |
Component |
DependencyManager.createAspectService(Class serviceInterface,
String serviceFilter,
int ranking,
String attributeName)
Creates a new aspect. |
Component |
DependencyActivatorBase.createAspectService(Class serviceInterface,
String serviceFilter,
int ranking,
String attributeName)
Creates a new aspect service. |
Component |
DependencyManager.createBundleAdapterService(int bundleStateMask,
String bundleFilter,
boolean propagate)
Creates a new bundle adapter. |
Component |
DependencyActivatorBase.createBundleAdapterService(int bundleStateMask,
String bundleFilter,
boolean propagate)
Creates a new bundle adapter service. |
Component |
DependencyManager.createFactoryConfigurationAdapterService(String factoryPid,
String update,
boolean propagate)
Creates a new Managed Service Factory Configuration Adapter. |
Component |
DependencyActivatorBase.createFactoryConfigurationAdapterService(String factoryPid,
String update,
boolean propagate)
Creates a new factory configuration adapter service. |
Component |
DependencyManager.createFactoryConfigurationAdapterService(String factoryPid,
String update,
boolean propagate,
String heading,
String desc,
String localization,
PropertyMetaData[] propertiesMetaData)
Creates a new Managed Service Factory Configuration Adapter with meta type support. |
Component |
DependencyActivatorBase.createFactoryConfigurationAdapterService(String factoryPid,
String update,
boolean propagate,
String heading,
String desc,
String localization,
PropertyMetaData[] propertiesMetaData)
Creates a new factory configuration adapter service. |
Component |
DependencyActivatorBase.createResourceAdapter(String resourceFilter,
boolean propagate,
Object callbackInstance,
String callbackChanged)
Creates a new resource adapter service. |
Component |
DependencyActivatorBase.createResourceAdapter(String resourceFilter,
Object propagateCallbackInstance,
String propagateCallbackMethod,
Object callbackInstance,
String callbackChanged)
Creates a new resource adapter service. |
Component |
DependencyManager.createResourceAdapterService(String resourceFilter,
boolean propagate,
Object callbackInstance,
String callbackChanged)
Creates a new resource adapter. |
Component |
DependencyManager.createResourceAdapterService(String resourceFilter,
Object propagateCallbackInstance,
String propagateCallbackMethod,
Object callbackInstance,
String callbackChanged)
|
void |
DependencyService.invokeCallbackMethod(Object[] instances,
String methodName,
Class[][] signatures,
Object[][] parameters)
Can be called by the dependency whenever it wants to invoke callback methods. |
void |
Component.invokeCallbackMethod(Object[] instances,
String methodName,
Class[][] signatures,
Object[][] parameters)
|
static Object |
InvocationUtil.invokeCallbackMethod(Object instance,
String methodName,
Class[][] signatures,
Object[][] parameters)
|
static Object |
InvocationUtil.invokeMethod(Object object,
Class clazz,
String name,
Class[][] signatures,
Object[][] parameters,
boolean isSuper)
|
Component |
Component.setAutoConfig(Class clazz,
String instanceName)
Configures auto configuration of injected classes in the component instance. |
ServiceDependency |
ServiceDependency.setAutoConfig(String instanceName)
Sets auto configuration for this service. |
ResourceDependency |
ResourceDependency.setAutoConfig(String instanceName)
Sets auto configuration for this service. |
ConfigurationDependency |
ConfigurationDependency.setCallback(String callback)
|
ServiceDependency |
ServiceDependency.setCallbacks(Object instance,
String added,
String removed)
Sets the callbacks for this service. |
BundleDependency |
BundleDependency.setCallbacks(Object instance,
String added,
String removed)
Sets the callbacks for this dependency. |
ResourceDependency |
ResourceDependency.setCallbacks(Object instance,
String added,
String removed)
Sets the callbacks for this service. |
ServiceDependency |
ServiceDependency.setCallbacks(Object instance,
String added,
String changed,
String removed)
Sets the callbacks for this service. |
BundleDependency |
BundleDependency.setCallbacks(Object instance,
String added,
String changed,
String removed)
Sets the callbacks for this dependency. |
ResourceDependency |
ResourceDependency.setCallbacks(Object instance,
String added,
String changed,
String removed)
Sets the callbacks for this service. |
Component |
Component.setCallbacks(Object instance,
String init,
String start,
String stop,
String destroy)
Sets the names of the methods used as callbacks. |
ServiceDependency |
ServiceDependency.setCallbacks(String added,
String removed)
Sets the callbacks for this service. |
BundleDependency |
BundleDependency.setCallbacks(String added,
String removed)
Sets the callbacks for this dependency. |
ResourceDependency |
ResourceDependency.setCallbacks(String added,
String removed)
Sets the callbacks for this service. |
ServiceDependency |
ServiceDependency.setCallbacks(String added,
String changed,
String removed)
Sets the callbacks for this service. |
BundleDependency |
BundleDependency.setCallbacks(String added,
String changed,
String removed)
Sets the callbacks for this dependency. |
ResourceDependency |
ResourceDependency.setCallbacks(String added,
String changed,
String removed)
Sets the callbacks for this service. |
Component |
Component.setCallbacks(String init,
String start,
String stop,
String destroy)
Sets the names of the methods used as callbacks. |
Component |
Component.setComposition(Object instance,
String getMethod)
Sets the instance and method to invoke to get back all instances that are part of a composition and need dependencies injected. |
Component |
Component.setComposition(String getMethod)
Sets the method to invoke on the service implementation to get back all instances that are part of a composition and need dependencies injected. |
PropertyMetaData |
PropertyMetaData.setDefaults(String[] defaults)
Returns a default for this property. |
PropertyMetaData |
PropertyMetaData.setDescription(String description)
Returns the property description. |
ConfigurationDependency |
ConfigurationDependency.setDescription(String description)
A human readable description of the PID this configuration is associated with. |
Component |
Component.setFactory(Object factory,
String createMethod)
Sets the factory to use to create the implementation. |
Component |
Component.setFactory(String createMethod)
Sets the factory to use to create the implementation. |
BundleDependency |
BundleDependency.setFilter(String filter)
Sets the filter condition to depend on. |
ResourceDependency |
ResourceDependency.setFilter(String resourceFilter)
|
PropertyMetaData |
PropertyMetaData.setHeading(String heading)
The label used to display the property. |
ConfigurationDependency |
ConfigurationDependency.setHeading(String heading)
The label used to display the tab name (or section) where the properties are displayed. |
PropertyMetaData |
PropertyMetaData.setId(String id)
The key of a ConfigurationAdmin property. |
Component |
Component.setInterface(String[] serviceNames,
Dictionary properties)
Sets the public interfaces under which this component should be registered in the OSGi service registry. |
Component |
Component.setInterface(String serviceName,
Dictionary properties)
Sets the public interface under which this component should be registered in the OSGi service registry. |
ConfigurationDependency |
ConfigurationDependency.setLocalization(String path)
Points to the basename of the Properties file that can localize the Meta Type informations. |
ConfigurationDependency |
ConfigurationDependency.setPid(String pid)
Sets the service.pid of the configuration you are depending on. |
ServiceDependency |
ServiceDependency.setPropagate(Object instance,
String method)
Sets an Object instance and a callback method used to propagate some properties to the provided service properties. |
ResourceDependency |
ResourceDependency.setPropagate(Object instance,
String method)
|
ServiceDependency |
ServiceDependency.setService(Class serviceName,
String serviceFilter)
Sets the name of the service that should be tracked. |
ServiceDependency |
ServiceDependency.setService(String serviceFilter)
Sets the filter for the services that should be tracked. |
Uses of String in org.apache.felix.dm.annotation.plugin.bnd |
---|
Methods in org.apache.felix.dm.annotation.plugin.bnd that return String | |
---|---|
String |
DescriptorGenerator.getDescriptorPaths()
Returns the path of the descriptor. |
static String |
Patterns.parseClass(String clazz,
Pattern pattern,
int group)
Parses a class. |
String |
EntryWriter.toString()
Returns a string representation for the given component descriptor entry. |
Methods in org.apache.felix.dm.annotation.plugin.bnd with parameters of type String | |
---|---|
void |
AnnotationCollector.classBegin(int access,
String name)
Parses the name of the class. |
void |
AnnotationCollector.field(int access,
String name,
String descriptor)
Parses a field. |
void |
AnnotationCollector.implementsInterfaces(String[] interfaces)
Parses the implemented interfaces ("/" separated). |
void |
AnnotationCollector.method(int access,
String name,
String descriptor)
Parses a method. |
static String |
Patterns.parseClass(String clazz,
Pattern pattern,
int group)
Parses a class. |
static void |
Patterns.parseField(String field,
String descriptor,
Pattern pattern)
Checks if a field descriptor matches a given pattern. |
static void |
Patterns.parseMethod(String method,
String descriptor,
Pattern pattern)
Checks if a method descriptor matches a given pattern. |
void |
EntryWriter.put(EntryParam param,
String value)
Put a String parameter in this descritor entry. |
void |
EntryWriter.put(EntryParam param,
String[] array)
Put a String[] parameter in this descriptor entry. |
void |
EntryWriter.putString(aQute.lib.osgi.Annotation annotation,
EntryParam param,
String def)
Get a String attribute value from an annotation and write it into this descriptor entry. |
void |
EntryWriter.putStringArray(aQute.lib.osgi.Annotation annotation,
EntryParam param,
String[] def)
Get a String array attribute value from an annotation and write it into this descriptor entry. |
static EntryType |
EntryType.valueOf(String name)
Returns the enum constant of this type with the specified name. |
static EntryParam |
EntryParam.valueOf(String name)
Returns the enum constant of this type with the specified name. |
Constructors in org.apache.felix.dm.annotation.plugin.bnd with parameters of type String | |
---|---|
MetaType.AD(String id,
String type,
Object[] defaults,
String name,
String desc,
Integer cardinality,
Boolean required)
|
|
MetaType.Designate(String pid,
boolean factory)
|
Uses of String in org.apache.felix.dm.impl |
---|
Fields in org.apache.felix.dm.impl declared as String | |
---|---|
protected String |
FilterService.m_compositionMethod
|
protected String |
FilterService.m_destroy
|
protected String |
FilterService.m_factoryCreateMethod
|
protected String |
FactoryConfigurationAdapterServiceImpl.AdapterImpl.m_factoryPid
|
protected String |
FilterService.m_init
|
protected String[] |
FilterService.m_serviceInterfaces
|
protected String |
FilterService.m_start
|
protected String |
FilterService.m_stop
|
protected String |
FactoryConfigurationAdapterServiceImpl.AdapterImpl.m_update
|
Methods in org.apache.felix.dm.impl that return String | |
---|---|
String |
FilterService.getAutoConfigInstance(Class clazz)
|
String |
ComponentImpl.getAutoConfigInstance(Class clazz)
|
String |
ComponentImpl.getName()
|
String |
FactoryConfigurationAdapterServiceImpl.AdapterImpl.getName()
Returns the managed service factory name. |
String |
ComponentImpl.toString()
|
String |
State.toString()
|
String |
AdapterServiceImpl.AdapterImpl.toString()
|
String |
ServiceRegistrationImpl.toString()
|
Methods in org.apache.felix.dm.impl with parameters of type String | |
---|---|
void |
AbstractDecorator.deleted(String pid)
|
protected void |
Logger.doLog(ServiceReference sr,
int level,
String msg,
Throwable throwable)
|
void |
FilterService.invokeCallbackMethod(Object[] instances,
String methodName,
Class[][] signatures,
Object[][] parameters)
|
void |
ComponentImpl.invokeCallbackMethod(Object[] instances,
String methodName,
Class[][] signatures,
Object[][] parameters)
|
void |
Logger.log(int level,
String msg)
|
void |
Logger.log(int level,
String msg,
Throwable throwable)
|
void |
Logger.log(ServiceReference sr,
int level,
String msg)
|
void |
Logger.log(ServiceReference sr,
int level,
String msg,
Throwable throwable)
|
Component |
FilterService.setAutoConfig(Class clazz,
String instanceName)
|
Component |
ComponentImpl.setAutoConfig(Class clazz,
String instanceName)
|
Component |
FilterService.setCallbacks(Object instance,
String init,
String start,
String stop,
String destroy)
|
Component |
ComponentImpl.setCallbacks(Object instance,
String init,
String start,
String stop,
String destroy)
|
Component |
FilterService.setCallbacks(String init,
String start,
String stop,
String destroy)
|
Component |
ComponentImpl.setCallbacks(String init,
String start,
String stop,
String destroy)
|
Component |
FilterService.setComposition(Object instance,
String getMethod)
|
Component |
ComponentImpl.setComposition(Object instance,
String getMethod)
|
Component |
FilterService.setComposition(String getMethod)
|
Component |
ComponentImpl.setComposition(String getMethod)
|
Component |
FilterService.setFactory(Object factory,
String createMethod)
|
Component |
ComponentImpl.setFactory(Object factory,
String createMethod)
|
Component |
FilterService.setFactory(String createMethod)
|
Component |
ComponentImpl.setFactory(String createMethod)
|
Component |
FilterService.setInterface(String[] serviceInterfaces,
Dictionary properties)
|
Component |
ComponentImpl.setInterface(String[] serviceName,
Dictionary properties)
|
Component |
FilterService.setInterface(String serviceName,
Dictionary properties)
|
Component |
ComponentImpl.setInterface(String serviceName,
Dictionary properties)
|
void |
AbstractDecorator.updated(String pid,
Dictionary properties)
|
Constructors in org.apache.felix.dm.impl with parameters of type String | |
---|---|
AdapterServiceImpl.AdapterImpl(Class adapteeInterface,
String adapteeFilter)
|
|
AdapterServiceImpl(DependencyManager dm,
Class adapteeInterface,
String adapteeFilter)
Creates a new Adapter Service implementation. |
|
AspectServiceImpl(DependencyManager dm,
Class aspectInterface,
String aspectFilter,
int ranking,
String autoConfig)
|
|
BundleAdapterServiceImpl.BundleAdapterImpl(int bundleStateMask,
String bundleFilter,
boolean propagate)
|
|
BundleAdapterServiceImpl(DependencyManager dm,
int bundleStateMask,
String bundleFilter,
boolean propagate)
Creates a new Bundle Adapter Service implementation. |
|
FactoryConfigurationAdapterServiceImpl.AdapterImpl(String factoryPid,
String updateMethod,
boolean propagate)
Creates a new CM factory configuration adapter. |
|
FactoryConfigurationAdapterServiceImpl(DependencyManager dm,
String factoryPid,
String update,
boolean propagate)
|
|
FactoryConfigurationAdapterServiceImpl(DependencyManager dm,
String factoryPid,
String update,
boolean propagate,
BundleContext bctx,
Logger logger,
String heading,
String description,
String localization,
PropertyMetaData[] properyMetaData)
|
|
ResourceAdapterServiceImpl.ResourceAdapterImpl(String resourceFilter,
boolean propagate)
|
|
ResourceAdapterServiceImpl.ResourceAdapterImpl(String resourceFilter,
Object propagateCallbackInstance,
String propagateCallbackMethod)
|
|
ResourceAdapterServiceImpl(DependencyManager dm,
String resourceFilter,
boolean propagate,
Object callbackInstance,
String callbackChanged)
Creates a new Resource Adapter Service implementation. |
|
ResourceAdapterServiceImpl(DependencyManager dm,
String resourceFilter,
Object propagateCallbackInstance,
String propagateCallbackMethod,
Object callbackInstance,
String callbackChanged)
|
Uses of String in org.apache.felix.dm.impl.dependencies |
---|
Methods in org.apache.felix.dm.impl.dependencies that return String | |
---|---|
String |
BundleDependencyImpl.getAutoConfigName()
|
String |
ResourceDependencyImpl.getAutoConfigName()
|
String |
ConfigurationDependencyImpl.getAutoConfigName()
|
String |
ServiceDependencyImpl.getAutoConfigName()
|
String |
BundleDependencyImpl.getName()
|
String |
ResourceDependencyImpl.getName()
|
String |
ConfigurationDependencyImpl.getName()
|
String |
ServiceDependencyImpl.getName()
|
String |
BundleDependencyImpl.getType()
|
String |
ResourceDependencyImpl.getType()
|
String |
ConfigurationDependencyImpl.getType()
|
String |
ServiceDependencyImpl.getType()
|
String |
ConfigurationDependencyImpl.toString()
|
String |
ServiceDependencyImpl.toString()
|
Methods in org.apache.felix.dm.impl.dependencies with parameters of type String | |
---|---|
void |
BundleDependencyImpl.invoke(DependencyService dependencyService,
Bundle service,
String name)
|
void |
ServiceDependencyImpl.invoke(DependencyService dependencyService,
ServiceReference reference,
Object service,
String name)
|
BundleDependency |
BundleDependencyImpl.setAutoConfig(String instanceName)
|
ResourceDependency |
ResourceDependencyImpl.setAutoConfig(String instanceName)
Sets auto configuration for this service. |
ServiceDependency |
ServiceDependencyImpl.setAutoConfig(String instanceName)
Sets auto configuration for this service. |
ConfigurationDependency |
ConfigurationDependencyImpl.setCallback(String callback)
|
BundleDependency |
BundleDependencyImpl.setCallbacks(Object instance,
String added,
String removed)
Sets the callbacks for this service. |
ResourceDependency |
ResourceDependencyImpl.setCallbacks(Object instance,
String added,
String removed)
Sets the callbacks for this service. |
ServiceDependency |
ServiceDependencyImpl.setCallbacks(Object instance,
String added,
String removed)
Sets the callbacks for this service. |
BundleDependency |
BundleDependencyImpl.setCallbacks(Object instance,
String added,
String changed,
String removed)
Sets the callbacks for this service. |
ResourceDependency |
ResourceDependencyImpl.setCallbacks(Object instance,
String added,
String changed,
String removed)
Sets the callbacks for this service. |
ServiceDependency |
ServiceDependencyImpl.setCallbacks(Object instance,
String added,
String changed,
String removed)
Sets the callbacks for this service. |
BundleDependency |
BundleDependencyImpl.setCallbacks(String added,
String removed)
Sets the callbacks for this service. |
ResourceDependency |
ResourceDependencyImpl.setCallbacks(String added,
String removed)
Sets the callbacks for this service. |
ServiceDependency |
ServiceDependencyImpl.setCallbacks(String added,
String removed)
Sets the callbacks for this service. |
BundleDependency |
BundleDependencyImpl.setCallbacks(String added,
String changed,
String removed)
Sets the callbacks for this service. |
ResourceDependency |
ResourceDependencyImpl.setCallbacks(String added,
String changed,
String removed)
Sets the callbacks for this service. |
ServiceDependency |
ServiceDependencyImpl.setCallbacks(String added,
String changed,
String removed)
Sets the callbacks for this service. |
ConfigurationDependency |
ConfigurationDependencyImpl.setDescription(String description)
|
BundleDependency |
BundleDependencyImpl.setFilter(String filter)
|
ResourceDependency |
ResourceDependencyImpl.setFilter(String resourceFilter)
|
ConfigurationDependency |
ConfigurationDependencyImpl.setHeading(String heading)
|
ConfigurationDependency |
ConfigurationDependencyImpl.setLocalization(String path)
|
ConfigurationDependency |
ConfigurationDependencyImpl.setPid(String pid)
Sets the service.pid of the configuration you
are depending on. |
BundleDependency |
BundleDependencyImpl.setPropagate(Object instance,
String method)
|
ResourceDependency |
ResourceDependencyImpl.setPropagate(Object instance,
String method)
|
ConfigurationDependency |
ConfigurationDependencyImpl.setPropagate(Object instance,
String method)
|
ServiceDependency |
ServiceDependencyImpl.setPropagate(Object instance,
String method)
|
ServiceDependency |
ServiceDependencyImpl.setService(Class serviceName,
String serviceFilter)
Sets the name of the service that should be tracked. |
ServiceDependency |
ServiceDependencyImpl.setService(String serviceFilter)
|
Uses of String in org.apache.felix.dm.impl.metatype |
---|
Methods in org.apache.felix.dm.impl.metatype that return String | |
---|---|
String[] |
PropertyMetaDataImpl.getDefaults()
|
String[] |
AttributeDefinitionImpl.getDefaultValue()
|
String |
AttributeDefinitionImpl.getDescription()
|
String |
PropertyMetaDataImpl.getDescription()
|
String |
ObjectClassDefinitionImpl.getDescription()
|
String |
PropertyMetaDataImpl.getHeading()
|
String |
PropertyMetaDataImpl.getId()
|
String |
AttributeDefinitionImpl.getID()
|
String |
ObjectClassDefinitionImpl.getID()
|
String[] |
MetaTypeProviderImpl.getLocales()
Returns all the Locales our bundle is containing. |
String |
AttributeDefinitionImpl.getName()
|
String |
ObjectClassDefinitionImpl.getName()
|
String |
MetaTypeProviderImpl.getName()
|
String[] |
AttributeDefinitionImpl.getOptionLabels()
|
String[] |
PropertyMetaDataImpl.getOptionLabels()
|
String[] |
AttributeDefinitionImpl.getOptionValues()
|
String[] |
PropertyMetaDataImpl.getOptionValues()
|
String |
Resource.localize(String param)
|
String |
PropertyMetaDataImpl.toString()
|
String |
AttributeDefinitionImpl.validate(String value)
|
Methods in org.apache.felix.dm.impl.metatype with parameters of type String | |
---|---|
PropertyMetaData |
PropertyMetaDataImpl.addOption(String optionLabel,
String optionValue)
|
void |
MetaTypeProviderImpl.deleted(String pid)
|
ObjectClassDefinition |
MetaTypeProviderImpl.getObjectClassDefinition(String id,
String locale)
Returns the ObjectClassDefinition for a given Pid/Locale. |
String |
Resource.localize(String param)
|
PropertyMetaData |
PropertyMetaDataImpl.setDefaults(String[] defaults)
|
PropertyMetaData |
PropertyMetaDataImpl.setDescription(String description)
|
void |
MetaTypeProviderImpl.setDescription(String description)
A human readable description of the PID this annotation is associated with. |
PropertyMetaData |
PropertyMetaDataImpl.setHeading(String heading)
|
PropertyMetaData |
PropertyMetaDataImpl.setId(String id)
|
void |
MetaTypeProviderImpl.setLocalization(String path)
Points to the basename of the Properties file that can localize the Meta Type informations. |
void |
MetaTypeProviderImpl.setName(String heading)
The label used to display the tab name (or section) where the properties are displayed. |
void |
MetaTypeProviderImpl.updated(String pid,
Dictionary properties)
|
String |
AttributeDefinitionImpl.validate(String value)
|
Constructors in org.apache.felix.dm.impl.metatype with parameters of type String | |
---|---|
MetaTypeProviderImpl(String pid,
BundleContext ctx,
Logger logger,
ManagedService msDelegate,
ManagedServiceFactory msfDelegate)
|
|
ObjectClassDefinitionImpl(String id,
String name,
String description,
List propertiesMetaData,
Resource resource)
|
Uses of String in org.apache.felix.dm.runtime |
---|
Methods in org.apache.felix.dm.runtime that return String | |
---|---|
String |
ToggleServiceDependency.getAutoConfigName()
|
String |
MetaData.getString(Params key)
Returns a String descriptor entry parameter value. |
String |
JSONMetaData.getString(Params key)
|
String |
MetaData.getString(Params key,
String def)
Returns a String descriptor entry parameter value. |
String |
JSONMetaData.getString(Params key,
String def)
|
String[] |
MetaData.getStrings(Params key)
Returns a String array descriptor entry parameter value. |
String[] |
JSONMetaData.getStrings(Params key)
|
String[] |
MetaData.getStrings(Params key,
String[] def)
Returns a String array descriptor entry parameter value. |
String[] |
JSONMetaData.getStrings(Params key,
String[] def)
|
String |
AspectServiceBuilder.getType()
|
String |
ResourceAdapterServiceBuilder.getType()
|
String |
FactoryConfigurationAdapterServiceBuilder.getType()
|
String |
AdapterServiceBuilder.getType()
|
String |
BundleAdapterServiceBuilder.getType()
|
String |
ComponentBuilder.getType()
|
String |
FactorySet.toString()
|
String |
JSONMetaData.toString()
|
Methods in org.apache.felix.dm.runtime with parameters of type String | |
---|---|
void |
Log.debug(String format,
Object... args)
|
void |
Log.debug(String format,
Throwable t,
Object... args)
|
void |
Log.error(String format,
Object... args)
|
void |
Log.error(String format,
Throwable t,
Object... args)
|
String |
MetaData.getString(Params key,
String def)
Returns a String descriptor entry parameter value. |
String |
JSONMetaData.getString(Params key,
String def)
|
String[] |
MetaData.getStrings(Params key,
String[] def)
Returns a String array descriptor entry parameter value. |
String[] |
JSONMetaData.getStrings(Params key,
String[] def)
|
void |
Log.info(String format,
Object... args)
|
void |
Log.info(String format,
Throwable t,
Object... args)
|
void |
ToggleServiceDependency.invoke(DependencyService dependencyService,
String name)
|
static Object |
InvocationUtil.invokeCallbackMethod(Object instance,
String methodName,
|
static Object |
InvocationUtil.invokeMethod(Object object,
|
void |
MetaData.setString(Params key,
String value)
Modifies a key Sring value |
void |
JSONMetaData.setString(Params key,
String value)
|
void |
MetaData.setStrings(Params key,
String[] values)
Modifies a String[] value. |
void |
JSONMetaData.setStrings(Params key,
String[] values)
|
static Params |
Params.valueOf(String name)
Returns the enum constant of this type with the specified name. |
static DependencyBuilder.DependencyType |
DependencyBuilder.DependencyType.valueOf(String name)
Returns the enum constant of this type with the specified name. |
void |
Log.warn(String format,
Object... args)
|
void |
Log.warn(String format,
Throwable t,
Object... args)
|
Uses of String in org.apache.felix.dm.samples.annotation |
---|
Methods in org.apache.felix.dm.samples.annotation that return String | |
---|---|
String |
DictionaryAspect.toString()
|
String |
DictionaryImpl.toString()
|
Methods in org.apache.felix.dm.samples.annotation with parameters of type String | |
---|---|
boolean |
DictionaryService.checkWord(String word)
Check for the existence of a word. |
boolean |
DictionaryAspect.checkWord(String word)
Checks if a word is found from our custom word list. |
boolean |
DictionaryImpl.checkWord(String word)
Check if a word exists if the list of words we have been configured from ConfigAdmin/WebConsole. |
void |
SpellChecker.spellcheck(String word)
|
Uses of String in org.apache.felix.dm.shell |
---|
Methods in org.apache.felix.dm.shell that return String | |
---|---|
String |
EquinoxDMCommand.getHelp()
|
String |
DMCommand.getName()
|
String |
DMCommand.getShortDescription()
|
String |
DMCommand.getUsage()
|
Methods in org.apache.felix.dm.shell with parameters of type String | |
---|---|
void |
GogoDMCommand.dm(String[] args)
|
void |
DMCommand.execute(String line,
PrintStream out,
PrintStream err)
|
Uses of String in org.apache.felix.dm.test.bundle.annotation.factory |
---|
Methods in org.apache.felix.dm.test.bundle.annotation.factory with parameters of type String | |
---|---|
void |
MyServiceInterface.added(String instanceId)
|
void |
MyService.added(String instanceId)
|
void |
MyServiceInterface.changed(String modified)
|
void |
MyService.changed(String modified)
|
Uses of String in org.apache.felix.dm.tracker |
---|
Constructors in org.apache.felix.dm.tracker with parameters of type String | |
---|---|
ServiceTracker(BundleContext context,
String clazz,
ServiceTrackerCustomizer customizer)
Create a ServiceTracker on the specified class name. |
Uses of String in org.apache.felix.eventadmin.bridge.upnp |
---|
Methods in org.apache.felix.eventadmin.bridge.upnp with parameters of type String | |
---|---|
void |
UPnPEventToEventAdminBridge.notifyUPnPEvent(String deviceId,
String serviceId,
Dictionary events)
Bridge any event to the EventAdmin service. |
Uses of String in org.apache.felix.eventadmin.impl |
---|
Methods in org.apache.felix.eventadmin.impl that return String | |
---|---|
String[] |
MetaTypeProviderImpl.getLocales()
|
Methods in org.apache.felix.eventadmin.impl with parameters of type String | |
---|---|
ObjectClassDefinition |
MetaTypeProviderImpl.getObjectClassDefinition(String id,
String locale)
|
void |
EventAdminImpl.update(HandlerTasks managers,
int timeout,
String[] ignoreTimeout)
Update the event admin with new configuration. |
Constructors in org.apache.felix.eventadmin.impl with parameters of type String | |
---|---|
EventAdminImpl(HandlerTasks managers,
DefaultThreadPool syncPool,
DefaultThreadPool asyncPool,
int timeout,
String[] ignoreTimeout)
The constructor of the EventAdmin implementation. |
|
MetaTypeProviderImpl(ManagedService delegatee,
int cacheSize,
int threadPoolSize,
int timeout,
boolean requireTopic,
String[] ignoreTimeout)
|
Uses of String in org.apache.felix.eventadmin.impl.handler |
---|
Methods in org.apache.felix.eventadmin.impl.handler that return String | |
---|---|
String |
TopicHandlerFilters.createFilterForTopic(String topic)
Create a filter that will match all EventHandler services that match the given topic. |
String |
CacheTopicHandlerFilters.createFilterForTopic(String topic)
Create a filter that will match all EventHandler services that match the given topic. |
Methods in org.apache.felix.eventadmin.impl.handler with parameters of type String | |
---|---|
Filter |
Filters.createFilter(String filter)
Create a filter for the given filter string or return the TRUE_FILTER in case the string is null. |
Filter |
CacheFilters.createFilter(String filter)
Create a filter for the given filter string or return the TRUE_FILTER in case the string is null. |
String |
TopicHandlerFilters.createFilterForTopic(String topic)
Create a filter that will match all EventHandler services that match the given topic. |
String |
CacheTopicHandlerFilters.createFilterForTopic(String topic)
Create a filter that will match all EventHandler services that match the given topic. |
Uses of String in org.apache.felix.eventadmin.impl.security |
---|
Methods in org.apache.felix.eventadmin.impl.security with parameters of type String | |
---|---|
static Object |
PermissionsUtil.createPublishPermission(String topic)
Creates a TopicPermission for the given topic and the type PUBLISH Note that a java.lang.Object is returned in case creating a new TopicPermission fails. |
static Object |
PermissionsUtil.createSubscribePermission(String topic)
Creates a TopicPermission for the given topic and the type SUBSCRIBE Note that a java.lang.Object is returned in case creating a new TopicPermission fails. |
Uses of String in org.apache.felix.eventadmin.impl.tasks |
---|
Methods in org.apache.felix.eventadmin.impl.tasks that return String | |
---|---|
String |
HandlerTask.getHandlerClassName()
Return the class name of the handler |
String |
HandlerTaskImpl.getHandlerClassName()
|
Methods in org.apache.felix.eventadmin.impl.tasks with parameters of type String | |
---|---|
void |
SyncDeliverTasks.update(long timeout,
String[] ignoreTimeout)
|
Constructors in org.apache.felix.eventadmin.impl.tasks with parameters of type String | |
---|---|
SyncDeliverTasks(DefaultThreadPool pool,
long timeout,
String[] ignoreTimeout)
Construct a new sync deliver tasks. |
Uses of String in org.apache.felix.eventadmin.impl.util |
---|
Methods in org.apache.felix.eventadmin.impl.util with parameters of type String | |
---|---|
void |
LogWrapper.log(int level,
String msg)
Log a message with the given log level. |
void |
LogWrapper.log(int level,
String msg,
Throwable ex)
Log a message with the given log level and the associated exception. |
void |
LogWrapper.log(ServiceReference sr,
int level,
String msg)
Log a message with the given log level together with the associated service reference. |
void |
LogWrapper.log(ServiceReference sr,
int level,
String msg,
Throwable ex)
Log a message with the given log level, the associated service reference and exception. |
Uses of String in org.apache.felix.fileinstall.internal |
---|
Fields in org.apache.felix.fileinstall.internal declared as String | |
---|---|
static String |
DirectoryWatcher.DIR
|
static String |
DirectoryWatcher.DISABLE_CONFIG_SAVE
|
static String |
DirectoryWatcher.FILENAME
|
static String |
DirectoryWatcher.FILTER
|
static String |
DirectoryWatcher.LOG_LEVEL
|
static String |
DirectoryWatcher.NO_INITIAL_DELAY
|
static String |
DirectoryWatcher.POLL
|
static String |
JarDirUrlHandler.PROTOCOL
|
static String |
DirectoryWatcher.START_LEVEL
|
static String |
DirectoryWatcher.START_NEW_BUNDLES
|
static String |
DirectoryWatcher.TMPDIR
|
static String |
DirectoryWatcher.USE_START_ACTIVATION_POLICY
|
static String |
DirectoryWatcher.USE_START_TRANSIENT
|
Methods in org.apache.felix.fileinstall.internal that return String | |
---|---|
static String |
DirectoryWatcher.getThreadName(Dictionary properties)
|
Methods in org.apache.felix.fileinstall.internal with parameters of type String | |
---|---|
void |
FileInstall.deleted(String pid)
|
static void |
Util.log(BundleContext context,
int logLevel,
int msgLevel,
String message,
Throwable e)
Log a message and optional throwable. |
void |
FileInstall.updated(String pid,
Dictionary properties)
|
static void |
Util.zipDir(File directory,
ZipOutputStream zos,
String path,
Set exclusions)
Zip up a directory path |
Uses of String in org.apache.felix.framework |
---|
Methods in org.apache.felix.framework that return String | |
---|---|
protected String |
ModuleImpl.ModuleClassLoader.findLibrary(String name)
|
String |
ModuleImpl.getId()
|
String |
ModuleImpl.getManifestVersion()
|
String |
ModuleImpl.getSymbolicName()
|
protected String |
URLHandlersStreamHandlerProxy.toExternalForm(URL url)
|
String |
ModuleImpl.toString()
|
String |
ModuleImpl.ModuleClassLoader.toString()
|
String |
BundleProtectionDomain.toString()
|
String |
FilterImpl.toString()
|
String |
Felix.toString()
|
Methods in org.apache.felix.framework with parameters of type String | |
---|---|
protected void |
Logger.doLog(Bundle bundle,
ServiceReference sr,
int level,
String msg,
Throwable throwable)
|
protected Class |
ModuleImpl.ModuleClassLoader.findClass(String name)
|
protected String |
ModuleImpl.ModuleClassLoader.findLibrary(String name)
|
protected URL |
ModuleImpl.ModuleClassLoader.findResource(String name)
|
protected Enumeration |
ModuleImpl.ModuleClassLoaderJava5.findResources(String name)
|
protected Enumeration |
ModuleImpl.ModuleClassLoader.findResources(String name)
|
Class |
ModuleImpl.getClassByDelegation(String name)
|
URL |
ModuleImpl.getEntry(String name)
|
InputStream |
ModuleImpl.getInputStream(int index,
String urlPath)
|
URL |
ModuleImpl.getLocalURL(int index,
String urlPath)
|
URL |
ModuleImpl.ModuleClassLoader.getResource(String name)
|
URL |
ModuleImpl.getResourceByDelegation(String name)
|
Enumeration |
ModuleImpl.ModuleClassLoaderJava5.getResources(String name)
|
Enumeration |
ModuleImpl.getResourcesByDelegation(String name)
|
List |
ServiceRegistry.getServiceReferences(String className,
SimpleFilter filter)
|
boolean |
ModuleImpl.hasInputStream(int index,
String urlPath)
|
boolean |
Felix.FelixResolver.isAllowedDynamicImport(Module module,
String pkgName)
|
protected Class |
ModuleImpl.ModuleClassLoader.loadClass(String name,
boolean resolve)
|
void |
Logger.log(Bundle bundle,
int level,
String msg)
|
void |
Logger.log(Bundle bundle,
int level,
String msg,
Throwable throwable)
|
void |
Logger.log(int level,
String msg)
|
void |
Logger.log(int level,
String msg,
Throwable throwable)
|
void |
Logger.log(ServiceReference sr,
int level,
String msg)
|
void |
Logger.log(ServiceReference sr,
int level,
String msg,
Throwable throwable)
|
protected void |
URLHandlersStreamHandlerProxy.parseURL(URL url,
String spec,
int start,
int limit)
|
ServiceRegistration |
ServiceRegistry.registerService(Bundle bundle,
String[] classNames,
Object svcObj,
Dictionary dict)
|
Wire |
Felix.FelixResolver.resolve(Module module,
String pkgName)
|
void |
URLHandlersStreamHandlerProxy.setURL(URL url,
String protocol,
String host,
int port,
String file,
String ref)
|
void |
URLHandlersStreamHandlerProxy.setURL(URL url,
String protocol,
String host,
int port,
String authority,
String userInfo,
String path,
String query,
String ref)
|
Constructors in org.apache.felix.framework with parameters of type String | |
---|---|
FelixResolverState(Logger logger,
String fwkExecEnvStr)
|
|
FilterImpl(String filterStr)
|
|
ModuleImpl(Logger logger,
Map configMap,
Bundle bundle,
String id,
String[] bootPkgs,
boolean[] bootPkgWildcards)
This constructor is used by the extension manager, since it needs a constructor that does not throw an exception. |
|
ModuleImpl(Logger logger,
Map configMap,
Bundle bundle,
String id,
String[] bootPkgs,
boolean[] bootPkgWildcards)
This constructor is used by the extension manager, since it needs a constructor that does not throw an exception. |
|
ModuleImpl(Logger logger,
Map configMap,
Felix.FelixResolver resolver,
Bundle bundle,
String id,
Map headerMap,
Content content,
URLStreamHandler streamHandler,
String[] bootPkgs,
boolean[] bootPkgWildcards)
|
|
ModuleImpl(Logger logger,
Map configMap,
Felix.FelixResolver resolver,
Bundle bundle,
String id,
Map headerMap,
Content content,
URLStreamHandler streamHandler,
String[] bootPkgs,
boolean[] bootPkgWildcards)
|
|
URLHandlersStreamHandlerProxy(String protocol,
SecureAction action,
URLStreamHandler builtIn,
URL builtInURL)
|
Uses of String in org.apache.felix.framework.cache |
---|
Fields in org.apache.felix.framework.cache declared as String | |
---|---|
protected static String |
BundleCache.BUNDLE_DIR_PREFIX
|
static String |
BundleCache.CACHE_BUFSIZE_PROP
|
protected static String |
BundleCache.CACHE_DIR_NAME
|
protected static String |
BundleCache.CACHE_LOCK_NAME
|
static String |
BundleCache.CACHE_LOCKING_PROP
|
protected static String |
BundleCache.CACHE_ROOTDIR_DEFAULT
|
static String |
BundleCache.CACHE_ROOTDIR_PROP
|
static String |
BundleCache.CACHE_SINGLEBUNDLEFILE_PROP
|
static String |
BundleArchive.FILE_PROTOCOL
|
static String |
BundleArchive.INPUTSTREAM_PROTOCOL
|
static String |
BundleArchive.REFERENCE_PROTOCOL
|
Methods in org.apache.felix.framework.cache that return String | |
---|---|
String |
JarContent.getEntryAsNativeLibrary(String entryName)
|
String |
DirectoryContent.getEntryAsNativeLibrary(String entryName)
|
String |
ContentDirectoryContent.getEntryAsNativeLibrary(String name)
|
String |
BundleRevision.getLocation()
Returns the location string this revision. |
String |
BundleArchive.getLocation()
Returns the location string associated with this archive. |
String |
JarContent.toString()
|
String |
DirectoryContent.toString()
|
String |
ContentDirectoryContent.toString()
|
Methods in org.apache.felix.framework.cache with parameters of type String | |
---|---|
BundleArchive |
BundleCache.create(long id,
int startLevel,
String location,
InputStream is)
|
File |
BundleArchive.getDataFile(String fileName)
Returns a File object corresponding to the data file of the relative path of the specified string. |
byte[] |
JarContent.getEntryAsBytes(String name)
|
byte[] |
DirectoryContent.getEntryAsBytes(String name)
|
byte[] |
ContentDirectoryContent.getEntryAsBytes(String name)
|
Content |
JarContent.getEntryAsContent(String entryName)
|
Content |
DirectoryContent.getEntryAsContent(String entryName)
|
Content |
ContentDirectoryContent.getEntryAsContent(String name)
|
String |
JarContent.getEntryAsNativeLibrary(String entryName)
|
String |
DirectoryContent.getEntryAsNativeLibrary(String entryName)
|
String |
ContentDirectoryContent.getEntryAsNativeLibrary(String name)
|
InputStream |
JarContent.getEntryAsStream(String name)
|
InputStream |
DirectoryContent.getEntryAsStream(String name)
|
InputStream |
ContentDirectoryContent.getEntryAsStream(String name)
|
URL |
JarContent.getEntryAsURL(String name)
|
URL |
DirectoryContent.getEntryAsURL(String name)
|
URL |
ContentDirectoryContent.getEntryAsURL(String name)
|
File |
BundleCache.getSystemBundleDataFile(String fileName)
Provides the system bundle access to its private storage area; this special case is necessary since the system bundle is not really a bundle and therefore must be treated in a special way. |
boolean |
JarContent.hasEntry(String name)
|
boolean |
DirectoryContent.hasEntry(String name)
|
boolean |
ContentDirectoryContent.hasEntry(String name)
|
void |
BundleArchive.revise(String location,
InputStream is)
This method adds a revision to the archive using the associated location and input stream. |
Constructors in org.apache.felix.framework.cache with parameters of type String | |
---|---|
BundleArchive(Logger logger,
Map configMap,
File archiveRootDir,
long id,
int startLevel,
String location,
InputStream is)
This constructor is used for creating new archives when a bundle is installed into the framework. |
|
BundleRevision(Logger logger,
Map configMap,
File revisionRootDir,
String location)
This class is abstract and cannot be created. |
|
ContentDirectoryContent(Content content,
String path)
|
Uses of String in org.apache.felix.framework.capabilityset |
---|
Fields in org.apache.felix.framework.capabilityset declared as String | |
---|---|
static String |
Capability.HOST_NAMESPACE
|
static String |
Capability.MODULE_NAMESPACE
|
static String |
Capability.PACKAGE_ATTR
|
static String |
Capability.PACKAGE_NAMESPACE
|
static String |
Capability.VERSION_ATTR
|
Methods in org.apache.felix.framework.capabilityset that return String | |
---|---|
String |
Directive.getName()
|
String |
Attribute.getName()
|
String |
SimpleFilter.getName()
|
String |
Capability.getNamespace()
|
String |
Requirement.getNamespace()
|
String |
Directive.toString()
|
String |
Attribute.toString()
|
String |
SimpleFilter.toString()
|
static String |
SimpleFilter.unparseSubstring(
|
Methods in org.apache.felix.framework.capabilityset with parameters of type String | |
---|---|
static boolean |
SimpleFilter.compareSubstring(
|
Attribute |
Capability.getAttribute(String name)
|
Directive |
Capability.getDirective(String name)
|
Directive |
Requirement.getDirective(String name)
|
static SimpleFilter |
SimpleFilter.parse(String filter)
|
static |
SimpleFilter.parseSubstring(String value)
|
Constructors in org.apache.felix.framework.capabilityset with parameters of type String | |
---|---|
Attribute(String name,
Object value,
boolean isMandatory)
|
|
Directive(String name,
Object value)
|
|
SimpleFilter(String attr,
Object value,
int op)
|
Uses of String in org.apache.felix.framework.ext |
---|
Methods in org.apache.felix.framework.ext with parameters of type String | |
---|---|
void |
FelixBundleContext.addRequirement(String s)
|
Uses of String in org.apache.felix.framework.resolver |
---|
Methods in org.apache.felix.framework.resolver that return String | |
---|---|
String |
Content.getEntryAsNativeLibrary(String name)
This method returns the named entry as a file in the file system for use as a native library. |
String |
Module.getId()
|
String |
Module.getSymbolicName()
|
String |
WireImpl.toString()
|
String |
WireModuleImpl.toString()
|
Methods in org.apache.felix.framework.resolver with parameters of type String | |
---|---|
Class |
Wire.getClass(String name)
Requests a class from the exporting module. |
Class |
WireImpl.getClass(String name)
|
Class |
WireModuleImpl.getClass(String name)
|
Class |
Module.getClassByDelegation(String name)
|
URL |
Module.getEntry(String name)
|
byte[] |
Content.getEntryAsBytes(String name)
This method returns the named entry as an array of bytes. |
Content |
Content.getEntryAsContent(String name)
This method returns the named entry as an IContent Typically, this method only makes sense for entries that correspond to some form of aggregated resource (e.g., an embedded JAR file or directory), but implementations are free to interpret this however makes sense. |
String |
Content.getEntryAsNativeLibrary(String name)
This method returns the named entry as a file in the file system for use as a native library. |
InputStream |
Content.getEntryAsStream(String name)
This method returns the named entry as an input stream. |
URL |
Content.getEntryAsURL(String name)
This method allows retrieving an entry as a local URL. |
InputStream |
Module.getInputStream(int index,
String urlPath)
|
URL |
Module.getLocalURL(int index,
String urlPath)
|
URL |
Wire.getResource(String name)
Requests a resource from the exporting module. |
URL |
WireImpl.getResource(String name)
|
URL |
WireModuleImpl.getResource(String name)
|
URL |
Module.getResourceByDelegation(String name)
|
Enumeration |
Wire.getResources(String name)
Requests resources from the exporting module. |
Enumeration |
WireImpl.getResources(String name)
|
Enumeration |
WireModuleImpl.getResources(String name)
|
Enumeration |
Module.getResourcesByDelegation(String name)
|
boolean |
Content.hasEntry(String name)
This method determines if the specified named entry is contained in the associated content. |
boolean |
Module.hasInputStream(int index,
String urlPath)
|
boolean |
Wire.hasPackage(String pkgName)
Returns whether or not the wire has a given package name. |
boolean |
WireImpl.hasPackage(String pkgName)
|
boolean |
WireModuleImpl.hasPackage(String pkgName)
|
|
Resolver.resolve(Resolver.ResolverState state,
Module module,
String pkgName)
|
|
ResolverImpl.resolve(Resolver.ResolverState state,
Module module,
String pkgName)
|
Constructors in org.apache.felix.framework.resolver with parameters of type String | |
---|---|
ResolveException(String msg,
Module module,
Requirement req)
Constructs an instance of ResolveException with the specified detail message. |
|
ResourceNotFoundException(String msg)
|
Uses of String in org.apache.felix.framework.util |
---|
Methods in org.apache.felix.framework.util that return String | |
---|---|
static String |
Util.base64Encode(String s)
|
static String |
Util.encode(byte[] in,
int len)
Encode a raw byte array to a Base64 String. |
String |
SecureAction.getAbsolutePath(File file)
|
static String |
Util.getClassName(String className)
|
static String |
Util.getClassPackage(String className)
|
static String |
Util.getDefaultProperty(Logger logger,
String name)
|
String |
ListenerHookInfoImpl.getFilter()
|
static String |
Util.getResourcePackage(String resource)
|
String |
SecureAction.getSystemProperty(String name,
String def)
|
static String |
Util.substVars(String val,
String currentKey,
Map cycleMap,
Properties configProps)
This method performs property variable substitution on the specified value. |
String |
MapToDictionary.toString()
|
String |
StringMap.toString()
|
String |
VersionRange.toString()
|
Methods in org.apache.felix.framework.util with parameters of type String | |
---|---|
static String |
Util.base64Encode(String s)
|
File |
SecureAction.createTempFile(String prefix,
String suffix,
File dir)
|
URL |
SecureAction.createURL(String protocol,
String host,
int port,
String path,
URLStreamHandler handler)
|
URL |
SecureAction.createURL(URL context,
String spec,
URLStreamHandler handler)
|
Process |
SecureAction.exec(String command)
|
Class |
SecureAction.forName(String name)
|
static long |
Util.getBundleIdFromModuleId(String id)
Converts a module identifier to a bundle identifier. |
static |
Util.getCapabilityByNamespace(Module module,
String namespace)
Returns all the capabilities from a module that has a specified namespace. |
static String |
Util.getClassName(String className)
|
static String |
Util.getClassPackage(String className)
|
Object |
SecureAction.getDeclaredField(Class targetClass,
String name,
Object target)
|
Method |
SecureAction.getDeclaredMethod(Class target,
String method,
Class[] types)
|
static String |
Util.getDefaultProperty(Logger logger,
String name)
|
ZipEntry |
ZipFileX.getEntry(String name)
|
Method |
SecureAction.getMethod(Class target,
String method,
Class[] types)
|
static int |
Util.getModuleRevisionFromModuleId(String id)
Converts a module identifier to a bundle identifier. |
static String |
Util.getResourcePackage(String resource)
|
String |
SecureAction.getSystemProperty(String name,
String def)
|
static Wire |
Util.getWire(Module m,
String name)
|
static Class |
Util.loadClassUsingClass(Class clazz,
String name,
SecureAction action)
This is a simple utility class that attempts to load the named class using the class loader of the supplied class or the class loader of one of its super classes or their implemented interfaces. |
static VersionRange |
VersionRange.parse(String range)
|
static String |
Util.substVars(String val,
String currentKey,
Map cycleMap,
Properties configProps)
This method performs property variable substitution on the specified value. |
Object |
SecureAction.swapStaticFieldIfNotClass(Class targetClazz,
Class targetType,
Class condition,
String lockName)
|
Constructors in org.apache.felix.framework.util with parameters of type String | |
---|---|
ListenerHookInfoImpl(BundleContext context,
ServiceListener listener,
String filter,
boolean removed)
|
|
ZipFileX(String name)
|
Uses of String in org.apache.felix.framework.util.manifestparser |
---|
Methods in org.apache.felix.framework.util.manifestparser with parameters of type String | |
---|---|
Attribute |
CapabilityImpl.getAttribute(String name)
|
Directive |
CapabilityImpl.getDirective(String name)
|
Directive |
RequirementImpl.getDirective(String name)
|
boolean |
CapabilityImpl.isIncluded(String name)
|
boolean |
R4Library.match(Map configMap,
String name)
Determines if the specified native library name matches this native library definition. |
static String |
R4LibraryClause.normalizeOSName(String value)
|
static String |
R4LibraryClause.normalizeOSVersion(String value)
|
static String |
R4LibraryClause.normalizeProcessor(String value)
|
static R4LibraryClause |
R4LibraryClause.parse(Logger logger,
String s)
|
static |
ManifestParser.parseDelimitedString(String value,
String delim)
Parses delimited string and returns an array containing the tokens. |
static |
ManifestParser.parseExportHeader(Logger logger,
Module owner,
String header,
String bsn,
Version bv)
|
static Directive |
ManifestParser.parseExtensionBundleHeader(String header)
|
Constructors in org.apache.felix.framework.util.manifestparser with parameters of type String | |
---|---|
CapabilityImpl(Module module,
String namespace,
|
|
R4Library(String libraryFile,
String[] osnames,
String[] processors,
String[] osversions,
String[] languages,
String selectionFilter)
|
|
R4Library(String libraryFile,
String[] osnames,
String[] processors,
String[] osversions,
String[] languages,
String selectionFilter)
|
|
R4Library(String libraryFile,
String[] osnames,
String[] processors,
String[] osversions,
String[] languages,
String selectionFilter)
|
|
R4Library(String libraryFile,
String[] osnames,
String[] processors,
String[] osversions,
String[] languages,
String selectionFilter)
|
|
R4Library(String libraryFile,
String[] osnames,
String[] processors,
String[] osversions,
String[] languages,
String selectionFilter)
|
|
R4LibraryClause(String[] libraryEntries,
String[] osnames,
String[] processors,
String[] osversions,
String[] languages,
String selectionFilter)
|
|
R4LibraryClause(String[] libraryEntries,
String[] osnames,
String[] processors,
String[] osversions,
String[] languages,
String selectionFilter)
|
|
R4LibraryClause(String[] libraryEntries,
String[] osnames,
String[] processors,
String[] osversions,
String[] languages,
String selectionFilter)
|
|
R4LibraryClause(String[] libraryEntries,
String[] osnames,
String[] processors,
String[] osversions,
String[] languages,
String selectionFilter)
|
|
R4LibraryClause(String[] libraryEntries,
String[] osnames,
String[] processors,
String[] osversions,
String[] languages,
String selectionFilter)
|
|
R4LibraryClause(String[] libraryEntries,
String[] osnames,
String[] processors,
String[] osversions,
String[] languages,
String selectionFilter)
|
|
RequirementImpl(Module module,
String namespace,
|
Uses of String in org.apache.felix.gogo.command |
---|
Fields in org.apache.felix.gogo.command declared as String | |
---|---|
static String |
Inspect.BUNDLE_TYPE
|
static String |
Inspect.CAPABILITY
|
static String |
Inspect.FRAGMENT_TYPE
|
static String |
Inspect.PACKAGE_TYPE
|
static String |
Inspect.REQUIREMENT
|
static String |
Inspect.SERVICE_TYPE
|
Methods in org.apache.felix.gogo.command that return String | |
---|---|
static String |
Base64Encoder.base64Encode(String s)
|
static String |
Base64Encoder.encode(byte[] in,
int len)
Encode a raw byte array to a Base64 String. |
static String |
Util.getBundleName(Bundle bundle)
|
static String |
Util.getUnderlineString(int len)
|
static String |
Util.getValueString(Object obj)
|
Methods in org.apache.felix.gogo.command with parameters of type String | |
---|---|
static String |
Base64Encoder.base64Encode(String s)
|
File |
Files.cd(CommandSession session,
String dir)
|
static boolean |
Files.compareSubstring(
|
static void |
Util.copy(InputStream is,
File dir,
String destName,
String destDir,
byte[] buffer)
|
void |
OBR.deploy(boolean start,
String[] args)
|
void |
Basic.help(String name)
|
void |
OBR.info(String[] args)
|
static void |
Inspect.inspect(BundleContext bc,
String type,
String direction,
Bundle[] bundles)
|
void |
Basic.inspect(String type,
String direction,
Bundle[] bundles)
|
void |
Basic.install(String[] urls)
|
void |
OBR.javadoc(boolean extract,
File localDir,
String[] args)
|
void |
Basic.lb(boolean showLoc,
boolean showSymbolic,
boolean showUpdate,
String pattern)
|
void |
OBR.list(boolean verbose,
String[] args)
|
void |
Basic.log(int maxEntries,
String logLevel)
|
void |
Basic.log(String logLevel)
|
File[] |
Files.ls(CommandSession session,
String pattern)
|
static |
Files.parseSubstring(String value)
|
void |
OBR.repos(String action,
String[] args)
|
void |
OBR.repos(String action,
String[] args)
|
void |
OBR.source(boolean extract,
File localDir,
String[] args)
|
void |
Basic.start(boolean trans,
boolean policy,
String[] ss)
|
void |
Basic.update(Bundle bundle,
String location)
|
void |
Basic.which(Bundle bundle,
String className)
|
Uses of String in org.apache.felix.gogo.options |
---|
Fields in org.apache.felix.gogo.options declared as String | |
---|---|
static String |
Options.NL
|
Methods in org.apache.felix.gogo.options that return String | |
---|---|
String |
Options.get(String name)
|
String |
Option.get(String name)
get value of named option. |
String |
Options.toString()
|
Methods in org.apache.felix.gogo.options with parameters of type String | |
---|---|
static Option |
Options.compile(String optSpec)
|
static Option |
Options.compile(String[] optSpec)
|
static Option |
Options.compile(String[] optSpec,
Option gopt)
|
static Option |
Options.compile(String[] optSpec,
String[] gspec)
|
static Option |
Options.compile(String[] optSpec,
String[] gspec)
|
String |
Options.get(String name)
|
String |
Option.get(String name)
get value of named option. |
|
Options.getList(String name)
|
|
Option.getList(String name)
get list of all values for named option. |
int |
Options.getNumber(String name)
|
int |
Option.getNumber(String name)
get value of named option as a Number. |
Object |
Options.getObject(String name)
|
Object |
Option.getObject(String name)
get value of named option as an Object. |
|
Options.getObjectList(String name)
|
|
Option.getObjectList(String name)
get list of all Object values for named option. |
boolean |
Options.isSet(String name)
|
boolean |
Option.isSet(String name)
test whether specified option has been explicitly set. |
static void |
Options.main(String[] args)
|
IllegalArgumentException |
Options.usageError(String s)
prints usage message and returns IllegalArgumentException, for you to throw. |
IllegalArgumentException |
Option.usageError(String error)
print specified usage error to System.err. |
Uses of String in org.apache.felix.gogo.runtime |
---|
Fields in org.apache.felix.gogo.runtime declared as String | |
---|---|
static String |
CommandSessionImpl.COMMANDS
|
static String |
Closure.LOCATION
|
static String |
Reflective.MAIN
|
static String |
CommandSessionImpl.SESSION_CLOSED
|
static String |
CommandSessionImpl.VARIABLES
|
Methods in org.apache.felix.gogo.runtime that return String | |
---|---|
String |
CommandNotFoundException.getCommand()
|
String |
Token.source()
|
String |
Tokenizer.Type.toString()
|
String |
Token.toString()
|
String |
Closure.toString()
|
String |
Pipe.toString()
|
Methods in org.apache.felix.gogo.runtime with parameters of type String | |
---|---|
void |
CommandProcessorImpl.addCommand(String scope,
Object target)
|
void |
CommandProcessorImpl.addCommand(String scope,
Object target,
|
Object |
CommandProcessorImpl.addConstant(String name,
Object target)
|
Object |
Evaluate.get(String key)
|
Object |
CommandSessionImpl.get(String name)
|
Object |
Closure.get(String name)
|
static Object |
Reflective.method(CommandSession session,
Object target,
String name,
|
Object |
Evaluate.put(String key,
Object value)
|
void |
CommandSessionImpl.put(String name,
Object value)
|
protected void |
CommandProcessorImpl.put(String name,
Object target)
|
Object |
Closure.put(String key,
Object value)
|
void |
CommandProcessorImpl.removeCommand(String scope,
String function)
|
Object |
CommandProcessorImpl.removeConstant(String name)
|
static Tokenizer.Type |
Tokenizer.Type.valueOf(String name)
Returns the enum constant of this type with the specified name. |
Constructors in org.apache.felix.gogo.runtime with parameters of type String | |
---|---|
CommandNotFoundException(String command)
|
|
CommandProxy(BundleContext context,
ServiceReference reference,
String function)
|
|
CommandProxy(Object target,
String function)
|
|
EOFError(int line,
int column,
String message)
|
|
SyntaxError(int line,
int column,
String message)
|
Uses of String in org.apache.felix.gogo.runtime.activator |
---|
Fields in org.apache.felix.gogo.runtime.activator declared as String | |
---|---|
static String |
Activator.CONTEXT
|
Uses of String in org.apache.felix.gogo.runtime.threadio |
---|
Methods in org.apache.felix.gogo.runtime.threadio with parameters of type String | |
---|---|
PrintStream |
ThreadPrintStream.format(Locale l,
String format,
Object... args)
|
PrintStream |
ThreadPrintStream.format(String format,
Object... args)
|
void |
ThreadPrintStream.print(String s)
|
PrintStream |
ThreadPrintStream.printf(Locale l,
String format,
Object... args)
|
PrintStream |
ThreadPrintStream.printf(String format,
Object... args)
|
void |
ThreadPrintStream.println(String x)
|
Uses of String in org.apache.felix.gogo.shell |
---|
Methods in org.apache.felix.gogo.shell with parameters of type String | |
---|---|
void |
Procedural._throw(String message)
|
void |
Posix.cat(CommandSession session,
String[] args)
|
Object |
Shell.gosh(CommandSession session,
String[] argv)
|
boolean |
Posix.grep(CommandSession session,
String[] argv)
|
void |
Builtin.set(CommandSession session,
String[] argv)
|
Object |
Shell.sh(CommandSession session,
String[] argv)
|
Object |
Shell.source(CommandSession session,
String script)
|
Object |
Builtin.tac(CommandSession session,
String[] argv)
|
void |
Telnet.telnetd(String[] argv)
|
boolean |
Builtin.type(CommandSession session,
String[] argv)
|
Uses of String in org.apache.felix.http.api |
---|
Methods in org.apache.felix.http.api with parameters of type String | |
---|---|
void |
ExtHttpService.registerFilter(javax.servlet.Filter filter,
String pattern,
Dictionary initParams,
int ranking,
HttpContext context)
|
Uses of String in org.apache.felix.http.base.internal.context |
---|
Methods in org.apache.felix.http.base.internal.context that return String | |
---|---|
String |
ServletContextImpl.getContextPath()
|
String |
ServletContextImpl.getInitParameter(String name)
|
String |
ServletContextImpl.getMimeType(String file)
|
String |
ServletContextImpl.getRealPath(String name)
|
String |
ServletContextImpl.getServerInfo()
|
String |
ServletContextImpl.getServletContextName()
|
Methods in org.apache.felix.http.base.internal.context with parameters of type String | |
---|---|
Object |
ServletContextImpl.getAttribute(String name)
|
ServletContext |
ServletContextImpl.getContext(String uri)
|
String |
ServletContextImpl.getInitParameter(String name)
|
String |
ServletContextImpl.getMimeType(String file)
|
RequestDispatcher |
ServletContextImpl.getNamedDispatcher(String name)
|
String |
ServletContextImpl.getRealPath(String name)
|
RequestDispatcher |
ServletContextImpl.getRequestDispatcher(String uri)
|
URL |
ServletContextImpl.getResource(String path)
|
InputStream |
ServletContextImpl.getResourceAsStream(String path)
|
Set |
ServletContextImpl.getResourcePaths(String path)
|
Servlet |
ServletContextImpl.getServlet(String name)
|
void |
ServletContextImpl.log(Exception cause,
String message)
|
void |
ServletContextImpl.log(String message)
|
void |
ServletContextImpl.log(String message,
Throwable cause)
|
void |
ServletContextImpl.removeAttribute(String name)
|
void |
ServletContextImpl.setAttribute(String name,
Object value)
|
Uses of String in org.apache.felix.http.base.internal.dispatch |
---|
Methods in org.apache.felix.http.base.internal.dispatch with parameters of type String | |
---|---|
RequestDispatcher |
ServletPipeline.getRequestDispatcher(String path)
|
Uses of String in org.apache.felix.http.base.internal.handler |
---|
Methods in org.apache.felix.http.base.internal.handler that return String | |
---|---|
String |
ServletHandler.getAlias()
|
String |
FilterConfigImpl.getFilterName()
|
String |
AbstractHandler.getId()
|
String |
FilterConfigImpl.getInitParameter(String name)
|
String |
ServletConfigImpl.getInitParameter(String name)
|
String |
ServletConfigImpl.getServletName()
|
Methods in org.apache.felix.http.base.internal.handler with parameters of type String | |
---|---|
String |
FilterConfigImpl.getInitParameter(String name)
|
String |
ServletConfigImpl.getInitParameter(String name)
|
Servlet |
HandlerRegistry.getServletByAlias(String alias)
|
boolean |
FilterHandler.matches(String uri)
|
boolean |
ServletHandler.matches(String uri)
|
Constructors in org.apache.felix.http.base.internal.handler with parameters of type String | |
---|---|
FilterConfigImpl(String name,
ServletContext context,
|
|
FilterHandler(ExtServletContext context,
javax.servlet.Filter filter,
String pattern,
int ranking)
|
|
ServletConfigImpl(String name,
ServletContext context,
|
|
ServletHandler(ExtServletContext context,
Servlet servlet,
String alias)
|
Uses of String in org.apache.felix.http.base.internal.logger |
---|
Methods in org.apache.felix.http.base.internal.logger with parameters of type String | |
---|---|
static void |
SystemLogger.debug(String message)
|
static void |
SystemLogger.error(String message,
Throwable cause)
|
static void |
SystemLogger.info(String message)
|
void |
AbstractLogger.log(int level,
String message)
|
void |
AbstractLogger.log(int level,
String message,
Throwable cause)
|
void |
AbstractLogger.log(ServiceReference ref,
int level,
String message)
|
void |
LogServiceLogger.log(ServiceReference ref,
int level,
String message,
Throwable cause)
|
void |
ConsoleLogger.log(ServiceReference ref,
int level,
String message,
Throwable cause)
|
void |
NopLogger.log(ServiceReference ref,
int level,
String message,
Throwable cause)
|
static void |
SystemLogger.warning(String message,
Throwable cause)
|
Uses of String in org.apache.felix.http.base.internal.service |
---|
Methods in org.apache.felix.http.base.internal.service that return String | |
---|---|
String |
DefaultHttpContext.getMimeType(String name)
|
Methods in org.apache.felix.http.base.internal.service with parameters of type String | |
---|---|
String |
DefaultHttpContext.getMimeType(String name)
|
URL |
DefaultHttpContext.getResource(String name)
|
void |
HttpServiceImpl.registerFilter(javax.servlet.Filter filter,
String pattern,
Dictionary initParams,
int ranking,
HttpContext context)
|
void |
HttpServiceImpl.registerResources(String alias,
String name,
HttpContext context)
|
void |
HttpServiceImpl.registerServlet(String alias,
Servlet servlet,
Dictionary initParams,
HttpContext context)
|
void |
HttpServiceImpl.unregister(String alias)
|
Constructors in org.apache.felix.http.base.internal.service with parameters of type String | |
---|---|
ResourceServlet(String path)
|
Uses of String in org.apache.felix.http.base.internal.util |
---|
Methods in org.apache.felix.http.base.internal.util that return String | |
---|---|
String |
MimeTypes.getByExtension(String ext)
|
String |
MimeTypes.getByFile(String file)
|
Methods in org.apache.felix.http.base.internal.util with parameters of type String | |
---|---|
String |
MimeTypes.getByExtension(String ext)
|
String |
MimeTypes.getByFile(String file)
|
Uses of String in org.apache.felix.http.jetty.internal |
---|
Fields in org.apache.felix.http.jetty.internal declared as String | |
---|---|
static String |
JettyConfig.FELIX_HTTP_NIO
Felix specific property to control whether Jetty uses NIO or not for HTTP. |
static String |
JettyConfig.FELIX_HTTPS_NIO
Felix specific property to control whether Jetty uses NIO or not for HTTPS. |
Methods in org.apache.felix.http.jetty.internal that return String | |
---|---|
String |
JettyConfig.getClientcert()
|
String |
JettyConfig.getKeyPassword()
|
String |
JettyConfig.getKeystore()
|
String |
JettyConfig.getPassword()
|
String |
JettyConfig.getTrustPassword()
|
String |
JettyConfig.getTruststore()
|
String |
JettyLogger.toString()
|
Methods in org.apache.felix.http.jetty.internal with parameters of type String | |
---|---|
void |
JettyLogger.debug(String msg,
Object arg0,
Object arg1)
|
void |
JettyLogger.debug(String msg,
Throwable cause)
|
org.mortbay.log.Logger |
JettyLogger.getLogger(String name)
|
void |
JettyLogger.info(String msg,
Object arg0,
Object arg1)
|
void |
JettyLogger.warn(String msg,
Object arg0,
Object arg1)
|
void |
JettyLogger.warn(String msg,
Throwable cause)
|
Constructors in org.apache.felix.http.jetty.internal with parameters of type String | |
---|---|
JettyLogger(String name)
|
Uses of String in org.apache.felix.http.proxy |
---|
Constructors in org.apache.felix.http.proxy with parameters of type String | |
---|---|
DispatcherTracker(BundleContext context,
String filter,
ServletConfig config)
|
Uses of String in org.apache.felix.http.samples.filter |
---|
Constructors in org.apache.felix.http.samples.filter with parameters of type String | |
---|---|
TestFilter(String name)
|
|
TestServlet(String name)
|
Uses of String in org.apache.felix.http.samples.whiteboard |
---|
Constructors in org.apache.felix.http.samples.whiteboard with parameters of type String | |
---|---|
TestFilter(String name)
|
|
TestServlet(String name)
|
Uses of String in org.apache.felix.http.whiteboard.internal.manager |
---|
Methods in org.apache.felix.http.whiteboard.internal.manager that return String | |
---|---|
String |
DefaultHttpContext.getMimeType(String name)
|
Methods in org.apache.felix.http.whiteboard.internal.manager with parameters of type String | |
---|---|
void |
HttpContextManager.addHttpContext(Bundle bundle,
String contextId,
HttpContext context)
|
HttpContext |
HttpContextManager.getHttpContext(Bundle bundle,
String contextId)
|
String |
DefaultHttpContext.getMimeType(String name)
|
URL |
DefaultHttpContext.getResource(String name)
|
Constructors in org.apache.felix.http.whiteboard.internal.manager with parameters of type String | |
---|---|
FilterMapping(HttpContext context,
javax.servlet.Filter filter,
String pattern,
int ranking)
|
|
ServletMapping(HttpContext context,
Servlet servlet,
String alias)
|
Uses of String in org.apache.felix.ipojo |
---|
Fields in org.apache.felix.ipojo declared as String | |
---|---|
static String |
ComponentFactory.HANDLER_AUTO_PRIMITIVE
System property set to automatically attach primitive handlers to primitive component types. |
static String |
Handler.HANDLER_LEVEL_PROPERTY
The handler priority. |
static String |
Handler.HANDLER_NAME_PROPERTY
The handler name property. |
static String |
Handler.HANDLER_NAMESPACE_PROPERTY
The handler namespace property. |
static String |
PrimitiveHandler.HANDLER_TYPE
The "Primitive" Handler type (value). |
static String |
Handler.HANDLER_TYPE_PROPERTY
The handler type property. |
static String |
HandlerFactory.IPOJO_NAMESPACE
The iPOJO Default Namespace. |
protected String |
InstanceManager.m_className
The name of the component type implementation class. |
protected String |
IPojoFactory.m_factoryName
The factory name. |
protected String |
InstanceManager.m_name
The name of the component instance. |
protected String |
IPojoFactory.m_version
The version of the component type. |
Methods in org.apache.felix.ipojo that return String | |
---|---|
protected String |
IPojoFactory.generateName()
Helper method generating a new unique name. |
String |
InstanceManager.getClassName()
Gets the implementation class of the component type. |
abstract String |
IPojoFactory.getClassName()
Gets the factory class name. |
String |
Factory.getClassName()
Deprecated. |
String |
ComponentFactory.getClassName()
Gets the class name. |
String[] |
PrimitiveInstanceDescription.getCreatedObjects()
Gets the list of object created by the described instance. |
abstract String |
IPojoFactory.getFactoryName()
Computes the factory name. |
String |
ComponentFactory.getFactoryName()
Computes the factory name. |
String |
IPojoFactory.RequiredHandler.getFullName()
Gets the handler qualified name ( namespace:name ). |
String |
HandlerFactory.getHandlerName()
Gets the name associated with this handler factory. |
String |
HandlerManagerFactory.getHandlerName()
|
String |
InstanceManager.getInstanceName()
Gets the instance name. |
String |
ComponentInstance.getInstanceName()
Returns the name of the instance. |
String |
ConfigurationException.getMessage()
Gets the error message. |
String |
MissingHandlerException.getMessage()
Gets the error message. |
String |
IPojoFactory.getName()
Gets the factory name. |
String |
IPojoFactory.RequiredHandler.getName()
|
String |
Factory.getName()
Returns the factory name. |
String |
IPojoFactory.RequiredHandler.getNamespace()
|
String |
HandlerFactory.getNamespace()
Gets the namespace associated with this handler factory. |
String |
HandlerManagerFactory.getNamespace()
|
String |
IPojoContext.getProperty(String key)
Gets a property value. |
String |
PolicyServiceContext.getProperty(String key)
Gets a property value. |
String |
HandlerFactory.getType()
Gets the type of the handler factory. |
String |
HandlerManagerFactory.getType()
|
String |
Factory.getVersion()
Gets the version of the component type. |
String |
ComponentFactory.getVersion()
Gets the version of the component type. |
Methods in org.apache.felix.ipojo with parameters of type String | |
---|---|
void |
EventDispatcher.addListener(String itf,
ServiceListener listener)
Adds a new service listener to the EventDispatcher.m_listeners
map. |
void |
ServiceContext.addServiceListener(ServiceListener listener,
String filter)
Adds a service listener. |
void |
IPojoContext.addServiceListener(ServiceListener listener,
String filter)
Adds a service listener. |
void |
PolicyServiceContext.addServiceListener(ServiceListener listener,
String filter)
Adds a service listener according to the policy. |
Filter |
IPojoContext.createFilter(String filter)
Creates a filter objects. |
Filter |
PolicyServiceContext.createFilter(String arg0)
Creates a LDAP filter. |
void |
Handler.debug(String message)
Log method (debug). |
Class |
ComponentFactory.defineClass(String name,
byte[] clazz,
ProtectionDomain domain)
Defines a class. |
void |
IPojoFactory.deleted(String name)
Deletes an instance. |
void |
Handler.error(String message)
Log method (error). |
void |
Handler.error(String message,
Throwable exception)
Log method (error). |
ServiceReference[] |
ServiceContext.getAllServiceReferences(String clazz,
String filter)
Gets the service references matching with the given query. |
ServiceReference[] |
IPojoContext.getAllServiceReferences(String clazz,
String filter)
Gets the service references matching with the given query. |
ServiceReference[] |
PolicyServiceContext.getAllServiceReferences(String clazz,
String filter)
Gets all service references. |
File |
IPojoContext.getDataFile(String filename)
Gets a data file. |
File |
PolicyServiceContext.getDataFile(String filename)
Gets a data file. |
DependencyDescription |
PrimitiveInstanceDescription.getDependency(String specification)
Gets the instance service dependency matching with the given service specification or id. |
Object |
InstanceManager.getFieldValue(String fieldName)
Gives access to a field value of the first created pojo. |
Object |
InstanceManager.getFieldValue(String fieldName,
Object pojo)
Gives access to a field value to the given created pojo. |
abstract Handler |
Handler.getHandler(String name)
Get a plugged handler of the same container. |
Handler |
InstanceManager.getHandler(String name)
Returns a specified handler. |
Handler |
PrimitiveHandler.getHandler(String name)
Gets a plugged handler of the same container. |
String |
IPojoContext.getProperty(String key)
Gets a property value. |
Object |
ContextSource.getProperty(String property)
Gets the current value of the given property. |
String |
PolicyServiceContext.getProperty(String key)
Gets a property value. |
ProvidedServiceDescription |
PrimitiveInstanceDescription.getProvidedService(String specification)
Gets the instance provided service matching with the given service specification. |
URL |
ComponentFactory.getResource(String resName)
Returns the URL of a resource. |
ServiceReference |
ServiceContext.getServiceReference(String clazz)
Gets a service reference for the given interface. |
ServiceReference |
IPojoContext.getServiceReference(String clazz)
Gets a service reference for the given interface. |
ServiceReference |
PolicyServiceContext.getServiceReference(String clazz)
Gets a service reference for the required service specification. |
ServiceReference[] |
ServiceContext.getServiceReferences(String clazz,
String filter)
Gets service reference list for the given query. |
ServiceReference[] |
IPojoContext.getServiceReferences(String clazz,
String filter)
Gets service reference list for the given query. |
ServiceReference[] |
PolicyServiceContext.getServiceReferences(String clazz,
String filter)
Get a service reference for the required service specification. |
void |
Handler.info(String message)
Log method (info). |
Bundle |
IPojoContext.installBundle(String location)
Installs a bundle. |
Bundle |
PolicyServiceContext.installBundle(String location)
Installs a bundle. |
Bundle |
IPojoContext.installBundle(String location,
InputStream input)
Installs a bundle. |
Bundle |
PolicyServiceContext.installBundle(String location,
InputStream input)
Installs a bundle. |
Class |
ComponentFactory.loadClass(String className)
Loads a class. |
void |
InstanceManager.onEntry(Object pojo,
String methodId,
Object[] args)
Dispatches entry method events on registered method interceptors. |
void |
ErrorHandler.onError(ComponentInstance instance,
String message,
Throwable error)
Method invokes when an error occurred. |
void |
InstanceManager.onError(Object pojo,
String methodId,
Throwable error)
Dispatches error method events on registered method interceptors. |
void |
InstanceManager.onExit(Object pojo,
String methodId,
Object result)
Dispatches exit method events on registered method interceptors. |
Object |
InstanceManager.onGet(Object pojo,
String fieldName)
This method is called by the manipulated class each time that a GETFIELD instruction is executed. |
Object |
FieldInterceptor.onGet(Object pojo,
String fieldName,
Object value)
This method is called when a GETFIELD operation is detected. |
Object |
PrimitiveHandler.onGet(Object pojo,
String fieldName,
Object value)
Callback method called when a managed field asks for a value. |
void |
FieldInterceptor.onSet(Object pojo,
String fieldName,
Object value)
This method is called when a PUTFIELD operation is detected, e.g. |
void |
InstanceManager.onSet(Object pojo,
String fieldName,
Object objectValue)
This method is called by the manipulated class each time that a PUTFIELD instruction is executed. |
void |
PrimitiveHandler.onSet(Object pojo,
String fieldName,
Object value)
Callback method called when a managed field receives a new value. |
void |
ErrorHandler.onWarning(ComponentInstance instance,
String message,
Throwable error)
Method invokes when a warning occurred. |
void |
ContextSource.registerContextListener(ContextListener listener,
String[] properties)
Registers a context listener on the given set of properties. |
ServiceRegistration |
ServiceContext.registerService(String[] clazzes,
Object service,
Dictionary properties)
Registers a service inside this service context. |
ServiceRegistration |
IPojoContext.registerService(String[] clazzes,
Object service,
Dictionary properties)
Registers a service. |
ServiceRegistration |
PolicyServiceContext.registerService(String[] clazzes,
Object service,
Dictionary properties)
This method is not supported. |
ServiceRegistration |
ServiceContext.registerService(String clazz,
Object service,
Dictionary properties)
Registers a service inside this service context. |
ServiceRegistration |
IPojoContext.registerService(String clazz,
Object service,
Dictionary properties)
Registers a service. |
ServiceRegistration |
PolicyServiceContext.registerService(String clazz,
Object service,
Dictionary properties)
This method is not supported. |
void |
ContextListener.update(ContextSource source,
String property,
Object value)
A monitored value has been modified. |
void |
IPojoFactory.updated(String name,
Dictionary properties)
Creates or updates an instance. |
void |
Handler.warn(String message)
Log method (warning). |
void |
Handler.warn(String message,
Throwable exception)
Log method (warning). |
Constructors in org.apache.felix.ipojo with parameters of type String | |
---|---|
ConfigurationException(String mes)
Creates a new configuration exception. |
|
IPojoFactory.RequiredHandler(String name,
String namespace)
Crates a Required Handler. |
|
UnacceptableConfiguration(String message)
Creates an UnacceptableConfiguration. |
Uses of String in org.apache.felix.ipojo.api |
---|
Fields in org.apache.felix.ipojo.api declared as String | |
---|---|
static String |
TemporalDependency.EMPTY
OnTimeout policy: empty array or collection. |
static String |
TemporalDependency.NULL
OnTimeout policy: inject null. |
static String |
TemporalDependency.NULLABLE
OnTimeout policy: nullable object. |
Methods in org.apache.felix.ipojo.api with parameters of type String | |
---|---|
PrimitiveComponentType |
PrimitiveComponentType.addProperty(String key,
Object obj)
Adds a configuration property. |
Service |
Service.addProperty(String key,
Object obj)
Adds a service property. |
ComponentInstance |
SingletonComponentType.create(String name)
Starts the component type and creates the singleton instance. |
ComponentInstance |
ComponentType.createInstance(String name)
Creates a component instance from the current type with the given name. |
boolean |
ComponentType.disposeInstance(String name)
Disposes the instance created with this component type which has the given name. |
ComponentInstance |
ComponentType.getInstanceByName(String name)
Gets the component instance created from this component type. |
Dependency |
Dependency.setBindMethod(String bind)
Sets the dependency bind method. |
PrimitiveComponentType |
PrimitiveComponentType.setClassName(String classname)
Sets the implementation class. |
Dependency |
Dependency.setComparator(String cmp)
Sets the dependency comparator. |
PrimitiveComponentType |
PrimitiveComponentType.setComponentTypeName(String name)
Sets the component type name. |
PrimitiveComponentType |
PrimitiveComponentType.setComponentTypeVersion(String version)
Sets the component type version. |
Service |
Service.setCreationStrategy(String strategy)
Sets the creation strategy. |
Dependency |
Dependency.setDefaultImplementation(String di)
Sets the dependency default-implementation. |
PrimitiveComponentType |
PrimitiveComponentType.setFactoryMethod(String method)
Sets the dependency factory method. |
Dependency |
Dependency.setField(String field)
Sets the field attached to the dependency. |
TemporalDependency |
TemporalDependency.setField(String field)
Sets the field attached to the dependency. |
Property |
Property.setField(String name)
Sets the property field. |
ServiceProperty |
ServiceProperty.setField(String name)
Sets the property field. |
Dependency |
Dependency.setFilter(String filter)
Sets the dependency filter. |
TemporalDependency |
TemporalDependency.setFilter(String filter)
Sets the dependency filter. |
Dependency |
Dependency.setFrom(String from)
Sets the dependency 'from' attribute. |
Dependency |
Dependency.setId(String id)
Sets the dependency id. |
PrimitiveComponentType |
PrimitiveComponentType.setInvalidateMethod(String method)
Sets the invalidate method. |
PrimitiveComponentType |
PrimitiveComponentType.setManagedServicePID(String pid)
Sets the managed service pid. |
Property |
Property.setMethod(String name)
Sets the property method. |
Dependency |
Dependency.setModifiedMethod(String modified)
Sets the dependency modified method. |
Property |
Property.setName(String name)
Sets the property name. |
ServiceProperty |
ServiceProperty.setName(String name)
Sets the property name. |
TemporalDependency |
TemporalDependency.setOnTimeoutPolicy(String tip)
Sets the dependency ontimeout policy. |
Service |
Service.setServiceController(String field,
boolean initialValue)
Sets the service controller. |
Dependency |
Dependency.setSpecification(String spec)
Sets the required service specification. |
TemporalDependency |
TemporalDependency.setSpecification(String spec)
Sets the required service specification. |
Service |
Service.setSpecification(String spec)
Sets the provided service specification. |
TemporalDependency |
TemporalDependency.setTimeout(String time)
Sets the dependency timeout. |
ServiceProperty |
ServiceProperty.setType(String name)
Sets the property type. |
Dependency |
Dependency.setUnbindMethod(String unbind)
Sets the dependency unbind method. |
PrimitiveComponentType |
PrimitiveComponentType.setUpdatedMethod(String method)
Sets the updated method. |
PrimitiveComponentType |
PrimitiveComponentType.setValidateMethod(String method)
Sets the validate method. |
Property |
Property.setValue(String name)
Sets the property value. |
ServiceProperty |
ServiceProperty.setValue(String name)
Sets the property value. |
Uses of String in org.apache.felix.ipojo.api.composite |
---|
Fields in org.apache.felix.ipojo.api.composite declared as String | |
---|---|
static String |
ProvidedService.ALL_POLICY
Delegation policy: all. |
static String |
ImportedService.COMPOSITE_AND_GLOBAL_SCOPE
Scoping policy: composite+global. |
static String |
ImportedService.COMPOSITE_SCOPE
Scoping policy: composite. |
static String |
ImportedService.GLOBAL_SCOPE
Scoping policy: global. |
static String |
ProvidedService.ONE_POLICY
Delegation policy: one. |
Methods in org.apache.felix.ipojo.api.composite with parameters of type String | |
---|---|
InstantiatedService |
InstantiatedService.addProperty(String name,
Dictionary values)
Adds a dictionary property. |
Instance |
Instance.addProperty(String name,
Dictionary values)
Adds a dictionary property. |
InstantiatedService |
InstantiatedService.addProperty(String name,
List values)
Adds a list property. |
Instance |
Instance.addProperty(String name,
List values)
Adds a list property. |
InstantiatedService |
InstantiatedService.addProperty(String name,
Map values)
Adds a map property. |
Instance |
Instance.addProperty(String name,
Map values)
Adds a map property. |
InstantiatedService |
InstantiatedService.addProperty(String name,
String value)
Adds a string property. |
Instance |
Instance.addProperty(String name,
String value)
Adds the string property. |
InstantiatedService |
InstantiatedService.addProperty(String name,
String[] values)
Adds an array property. |
InstantiatedService |
InstantiatedService.addProperty(String name,
String[] values)
Adds an array property. |
Instance |
Instance.addProperty(String name,
String[] values)
Adds an array property. |
Instance |
Instance.addProperty(String name,
String[] values)
Adds an array property. |
InstantiatedService |
InstantiatedService.addProperty(String name,
Vector values)
Adds a vector property. |
Instance |
Instance.addProperty(String name,
Vector values)
Adds a vector property. |
InstantiatedService |
InstantiatedService.setComparator(String cmp)
Sets the dependency comparator. |
ImportedService |
ImportedService.setComparator(String cmp)
Sets the dependency comparator. |
ExportedService |
ExportedService.setComparator(String cmp)
Sets the dependency comparator. |
CompositeComponentType |
CompositeComponentType.setComponentTypeName(String name)
Sets the component type name. |
CompositeComponentType |
CompositeComponentType.setComponentTypeVersion(String version)
Sets the component type version. |
ProvidedService |
ProvidedService.setDelegation(String method,
String policy)
Sets the delegation policy of the given method. |
InstantiatedService |
InstantiatedService.setFilter(String filter)
Sets the dependency filter. |
ImportedService |
ImportedService.setFilter(String filter)
Sets the dependency filter. |
ExportedService |
ExportedService.setFilter(String filter)
Sets the dependency filter. |
ImportedService |
ImportedService.setId(String id)
Sets the dependency id. |
ImportedService |
ImportedService.setScope(String scope)
Sets the dependency scope. |
InstantiatedService |
InstantiatedService.setSpecification(String spec)
Sets the required service specification. |
ImportedService |
ImportedService.setSpecification(String spec)
Sets the required service specification. |
ExportedService |
ExportedService.setSpecification(String spec)
Sets the required service specification. |
ProvidedService |
ProvidedService.setSpecification(String spec)
Sets the provided service specification. |
Constructors in org.apache.felix.ipojo.api.composite with parameters of type String | |
---|---|
Instance(String type)
Creates a Instance. |
Uses of String in org.apache.felix.ipojo.arch |
---|
Methods in org.apache.felix.ipojo.arch that return String | |
---|---|
String |
ArchCommandImpl.getName()
Get the command name. |
String |
ArchCommandImpl.getShortDescription()
Gets a small description. |
String |
ArchCommandImpl.getUsage()
Gets help message. |
Methods in org.apache.felix.ipojo.arch with parameters of type String | |
---|---|
void |
ArchCommandImpl.execute(String line,
PrintStream out,
PrintStream err)
Executes the arch command. |
Uses of String in org.apache.felix.ipojo.arch.gogo |
---|
Methods in org.apache.felix.ipojo.arch.gogo with parameters of type String | |
---|---|
void |
Arch.factory(String factory)
Displays the information about a specific factory. |
void |
Arch.instance(String instance)
Displays the architecture of a specific instance. |
Uses of String in org.apache.felix.ipojo.architecture |
---|
Methods in org.apache.felix.ipojo.architecture that return String | |
---|---|
String |
ComponentTypeDescription.getClassName()
Deprecated. |
String[] |
ComponentTypeDescription.getFactoryInterfacesToPublish()
Gets the interfaces published by the factory. |
String |
HandlerDescription.getHandlerName()
Gets the handler name. |
String |
ComponentTypeDescription.getName()
Returns the component-type name. |
String |
PropertyDescription.getName()
Gets the current property name. |
String |
InstanceDescription.getName()
Gets the instance name. |
String[] |
ComponentTypeDescription.getprovidedServiceSpecification()
Gets the list of provided service offered by instances of this type. |
String |
PropertyDescription.getType()
Gets the current property type. |
String |
PropertyDescription.getValue()
Gets the current property value. |
String |
ComponentTypeDescription.getVersion()
Gets the component type version. |
String |
ComponentTypeDescription.toString()
Gets a printable form of the current component type description. |
Methods in org.apache.felix.ipojo.architecture with parameters of type String | |
---|---|
void |
ComponentTypeDescription.addProperty(String name,
String value)
Adds a String property in the component type. |
void |
ComponentTypeDescription.addProperty(String name,
String value,
boolean immutable)
Adds a String property in the component type. |
void |
ComponentTypeDescription.addProvidedServiceSpecification(String serviceSpecification)
Adds a provided service to the component type. |
HandlerDescription |
InstanceDescription.getHandlerDescription(String handler)
Gets a handler description by specifying the handler qualified name. |
Constructors in org.apache.felix.ipojo.architecture with parameters of type String | |
---|---|
PropertyDescription(String name,
String type,
String value)
Constructor. |
|
PropertyDescription(String name,
String type,
String value,
boolean immutable)
Constructor. |
Uses of String in org.apache.felix.ipojo.composite |
---|
Fields in org.apache.felix.ipojo.composite declared as String | |
---|---|
static String |
CompositeHandler.HANDLER_TYPE
Composite Handler type. |
Methods in org.apache.felix.ipojo.composite that return String | |
---|---|
String |
CompositeFactory.getClassName()
|
String |
FactoryProxy.getClassName()
|
String |
CompositeFactory.getFactoryName()
|
String |
CompositeManager.getInstanceName()
Get the instance name. |
String |
FactoryProxy.getName()
Return the factory name. |
String |
CompositeServiceContext.getProperty(String key)
Get a property value. |
String |
FactoryProxy.getVersion()
|
Methods in org.apache.felix.ipojo.composite with parameters of type String | |
---|---|
void |
CompositeServiceContext.addServiceListener(ServiceListener arg0,
String arg1)
Add a filtered service listener. |
Filter |
CompositeServiceContext.createFilter(String arg0)
Create a LDAP filter. |
ServiceReference[] |
CompositeServiceContext.getAllServiceReferences(String arg0,
String arg1)
Get all service references. |
CompositeHandler |
CompositeManager.getCompositeHandler(String name)
Return a specified handler. |
File |
CompositeServiceContext.getDataFile(String filename)
Get a data file. |
Handler |
CompositeHandler.getHandler(String name)
Get a plugged handler of the same container. |
String |
CompositeServiceContext.getProperty(String key)
Get a property value. |
ServiceReference |
CompositeServiceContext.getServiceReference(String arg0)
Get a service reference for the required interface. |
ServiceReference[] |
CompositeServiceContext.getServiceReferences(String clazz,
String filter)
Get all accessible service reference for the given query. |
Bundle |
CompositeServiceContext.installBundle(String location)
Install a bundle. |
Bundle |
CompositeServiceContext.installBundle(String location,
InputStream input)
Install a bundle. |
ServiceRegistration |
CompositeServiceContext.registerService(String[] arg0,
Object arg1,
Dictionary arg2)
Register a service inside the composite context. |
ServiceRegistration |
CompositeServiceContext.registerService(String arg0,
Object arg1,
Dictionary arg2)
Register a service inside the composite context. |
Uses of String in org.apache.felix.ipojo.composite.instance |
---|
Methods in org.apache.felix.ipojo.composite.instance with parameters of type String | |
---|---|
Object |
InstanceHandler.getObjectFromInstance(String type)
Method returning an instance object of the given component type. |
Uses of String in org.apache.felix.ipojo.composite.service.instantiator |
---|
Methods in org.apache.felix.ipojo.composite.service.instantiator that return String | |
---|---|
String |
ServiceImporter.getId()
|
String |
SvcInstance.getServiceSpecification()
Get the required specification. |
Constructors in org.apache.felix.ipojo.composite.service.instantiator with parameters of type String | |
---|---|
ServiceImporter(Class specification,
Filter filter,
boolean multiple,
boolean optional,
Comparator cmp,
int policy,
BundleContext context,
String identitity,
ServiceDependencyHandler handler)
Constructor. |
|
SvcInstance(ServiceDependencyHandler handler,
String spec,
Dictionary conf,
boolean isAgg,
boolean isOpt,
Filter filt,
Comparator cmp,
int policy)
Constructor. |
Uses of String in org.apache.felix.ipojo.composite.service.provides |
---|
Methods in org.apache.felix.ipojo.composite.service.provides that return String | |
---|---|
String |
SpecificationMetadata.getComponentType()
|
String |
FieldMetadata.getName()
|
String |
SpecificationMetadata.getName()
|
String |
CompositionMetadata.getName()
|
String |
ProvidedService.getSpecification()
|
Methods in org.apache.felix.ipojo.composite.service.provides with parameters of type String | |
---|---|
protected Element |
CompositionMetadata.buildMetadata(String name)
Build service implementation metadata. |
static byte[] |
POJOWriter.dump(Class clazz,
String className,
List fields,
List methods,
Handler handler)
Return the proxy 'classname' for the contract 'contractname' by delegating on available service. |
MethodMetadata |
SpecificationMetadata.getMethodByName(String name)
Get a method by its name. |
void |
FieldMetadata.setName(String name)
|
Constructors in org.apache.felix.ipojo.composite.service.provides with parameters of type String | |
---|---|
CompositionException(String message)
Constructor. |
|
CompositionMetadata(BundleContext context,
Element description,
ProvidedServiceHandler psh,
String name)
Constructor. |
|
ProvidedService(ProvidedServiceHandler handler,
Element element,
String name)
Constructor. |
|
SpecificationMetadata(Class clazz,
String type,
ProvidedServiceHandler psd)
Constructor. |
|
SpecificationMetadata(String name,
BundleContext context,
boolean isAggregate,
boolean isOptional,
ProvidedServiceHandler psd)
Constructor. |
Uses of String in org.apache.felix.ipojo.composite.util |
---|
Fields in org.apache.felix.ipojo.composite.util declared as String | |
---|---|
static String |
SourceManager.SOURCE_NAME
Source Name service property. |
Methods in org.apache.felix.ipojo.composite.util that return String | |
---|---|
static String[] |
SourceManager.getProperties(String str)
Compute the properties (${name}) from the given filter. |
static String |
SourceManager.substitute(String str,
Dictionary values)
This method substitute ${var} substring by values stored in a map. |
Methods in org.apache.felix.ipojo.composite.util with parameters of type String | |
---|---|
static String[] |
SourceManager.getProperties(String str)
Compute the properties (${name}) from the given filter. |
static String |
SourceManager.substitute(String str,
Dictionary values)
This method substitute ${var} substring by values stored in a map. |
void |
SourceManager.update(ContextSource source,
String property,
Object value)
A context source has modified a monitored property. |
Constructors in org.apache.felix.ipojo.composite.util with parameters of type String | |
---|---|
SourceManager(String sources,
String depfilter,
DependencyModel dependency,
CompositeManager manager)
Constructor. |
Uses of String in org.apache.felix.ipojo.context |
---|
Methods in org.apache.felix.ipojo.context that return String | |
---|---|
protected String[] |
ServiceRegistrationImpl.getPropertyKeys()
Get the property keys. |
String[] |
ServiceReferenceImpl.getPropertyKeys()
Get the String arrays of service property keys. |
Methods in org.apache.felix.ipojo.context with parameters of type String | |
---|---|
void |
ServiceRegistry.addServiceListener(ServiceListener listener,
String filter)
Add a service listener with a filter. |
ServiceReference[] |
ServiceRegistry.getAllServiceReferences(String clazz,
String filter)
Get all service references consistent with the given interface and filter. |
protected Object |
ServiceRegistrationImpl.getProperty(String key)
Look for a property in the service properties. |
Object |
ServiceReferenceImpl.getProperty(String name)
Get a property value. |
ServiceReference |
ServiceRegistry.getServiceReference(String clazz)
Look for a service reference. |
ServiceReference[] |
ServiceRegistry.getServiceReferences(String className,
String expr)
Get available (and accessible) service references. |
boolean |
ServiceReferenceImpl.isAssignableTo(Bundle arg0,
String arg1)
Check if the current service reference is assignable to the given bundle. |
ServiceRegistration |
ServiceRegistry.registerService(ComponentInstance instance,
String[] clazzes,
Object svcObj,
Dictionary dict)
Register a service. |
ServiceRegistration |
ServiceRegistry.registerService(ComponentInstance instance,
String clazz,
Object svcObj,
Dictionary dict)
Register a service. |
Constructors in org.apache.felix.ipojo.context with parameters of type String | |
---|---|
ServiceRegistrationImpl(ServiceRegistry registry,
ComponentInstance instance,
String[] classes,
Long serviceId,
Object svcObj,
Dictionary dict)
Constructor. |
Uses of String in org.apache.felix.ipojo.handler.extender |
---|
Fields in org.apache.felix.ipojo.handler.extender declared as String | |
---|---|
static String |
ExtenderModelHandler.NAMESPACE
The handler namespace. |
Constructors in org.apache.felix.ipojo.handler.extender with parameters of type String | |
---|---|
ExtenderManager(ExtenderModelHandler handler,
String extension,
String bind,
String unbind)
Constructor. |
Uses of String in org.apache.felix.ipojo.handler.temporal |
---|
Fields in org.apache.felix.ipojo.handler.temporal declared as String | |
---|---|
static String |
TemporalHandler.NAMESPACE
The handler namespace. |
Methods in org.apache.felix.ipojo.handler.temporal with parameters of type String | |
---|---|
Object |
TemporalDependency.onGet(Object arg0,
String arg1,
Object arg2)
The code require a value of the monitored field. |
void |
TemporalDependency.onSet(Object arg0,
String arg1,
Object arg2)
The monitored field receives a value. |
Constructors in org.apache.felix.ipojo.handler.temporal with parameters of type String | |
---|---|
TemporalDependency(Class spec,
boolean agg,
boolean collection,
boolean proxy,
Filter filter,
BundleContext context,
long timeout,
int policy,
String defaultImpl,
TemporalHandler handler)
Creates a temporal dependency. |
Uses of String in org.apache.felix.ipojo.handler.wbp |
---|
Fields in org.apache.felix.ipojo.handler.wbp declared as String | |
---|---|
static String |
WhiteBoardPatternHandler.NAMESPACE
The handler namespace. |
Constructors in org.apache.felix.ipojo.handler.wbp with parameters of type String | |
---|---|
WhiteBoardManager(WhiteBoardPatternHandler handler,
Filter filter,
String bind,
String unbind,
String modification)
Constructor. |
Uses of String in org.apache.felix.ipojo.handlers.configuration |
---|
Methods in org.apache.felix.ipojo.handlers.configuration that return String | |
---|---|
String |
ConfigurationHandlerDescription.getManagedServicePid()
Gets the managed service pid. |
Methods in org.apache.felix.ipojo.handlers.configuration with parameters of type String | |
---|---|
protected boolean |
ConfigurationHandler.containsProperty(String name)
Checks if the list contains the property. |
Constructors in org.apache.felix.ipojo.handlers.configuration with parameters of type String | |
---|---|
ConfigurationHandlerDescription(Handler handler,
List props,
String pid)
Creates the description object for the configuration handler description. |
Uses of String in org.apache.felix.ipojo.handlers.dependency |
---|
Fields in org.apache.felix.ipojo.handlers.dependency declared as String | |
---|---|
static String |
DependencyHandler.DYNAMIC_PROXY
Proxy type value: dynamic-proxy. |
static String |
DependencyHandler.PROXY_DISABLED
Proxy settings value: disabled. |
static String |
DependencyHandler.PROXY_ENABLED
Proxy settings value: enabled. |
static String |
DependencyHandler.PROXY_SETTINGS_PROPERTY
Proxy settings property. |
static String |
DependencyHandler.PROXY_TYPE_PROPERTY
Proxy type property. |
static String |
DependencyHandler.SMART_PROXY
Proxy type value: smart. |
Methods in org.apache.felix.ipojo.handlers.dependency that return String | |
---|---|
String |
DependencyDescription.getComparator()
|
String |
DependencyDescription.getDefaultImplementation()
|
String |
Dependency.getDefaultImplementation()
|
String |
Dependency.getField()
|
String |
DependencyDescription.getFilter()
|
String |
DependencyDescription.getId()
|
String |
Dependency.getId()
|
String |
DependencyDescription.getInterface()
|
String |
DependencyCallback.getMethodName()
|
String |
DependencyDescription.getSpecification()
Gets the required service specification name. |
Methods in org.apache.felix.ipojo.handlers.dependency with parameters of type String | |
---|---|
Object |
Dependency.onGet(Object pojo,
String fieldName,
Object value)
This method is called by the replaced code in the component implementation class. |
void |
Dependency.onSet(Object pojo,
String fieldName,
Object value)
The field was set. |
void |
DependencyCallback.setArgument(String[] arg)
Set the argument type (Empty or the class name). |
Constructors in org.apache.felix.ipojo.handlers.dependency with parameters of type String | |
---|---|
Dependency(DependencyHandler handler,
String field,
Class spec,
Filter filter,
boolean isOptional,
boolean isAggregate,
boolean nullable,
boolean isProxy,
String identity,
BundleContext context,
int policy,
Comparator cmp,
String defaultImplem)
Dependency constructor. |
|
DependencyCallback(Dependency dep,
String method,
int methodType)
Constructor. |
Uses of String in org.apache.felix.ipojo.handlers.event |
---|
Fields in org.apache.felix.ipojo.handlers.event declared as String | |
---|---|
static String |
EventUtil.TOPIC_SEPARATOR
The separator between topics. |
static String |
EventUtil.TOPIC_TOKEN_SEPARATOR
The separator between topics. |
Methods in org.apache.felix.ipojo.handlers.event with parameters of type String | |
---|---|
static boolean |
EventUtil.isValidTopic(String topic)
Check the given topic is valid. |
static boolean |
EventUtil.isValidTopicScope(String topicScope)
Check the given topic scope is valid. |
static boolean |
EventUtil.matches(String topic,
String topicPattern)
Tests that the given topic match with the given topic pattern. |
static boolean |
EventUtil.matches(String topic,
String[] topicPatterns)
Tests that the given topic match with the given topic patterns. |
static boolean |
EventUtil.matches(String topic,
String[] topicPatterns)
Tests that the given topic match with the given topic patterns. |
Uses of String in org.apache.felix.ipojo.handlers.event.publisher |
---|
Fields in org.apache.felix.ipojo.handlers.event.publisher declared as String | |
---|---|
static String |
PublisherImpl.INSTANCE_NAME_PROPERTY
The key where the component instance name is stored. |
static String |
EventAdminPublisherHandler.NAMESPACE
The handler Namespace. |
static String |
EventAdminPublisherHandler.TOPICS_PROPERTY
The names of instance configuration properties. |
Methods in org.apache.felix.ipojo.handlers.event.publisher with parameters of type String | |
---|---|
Object |
EventAdminPublisherHandler.onGet(Object pojo,
String fieldName,
Object value)
Field interceptor callback. |
Constructors in org.apache.felix.ipojo.handlers.event.publisher with parameters of type String | |
---|---|
PublisherImpl(EventAdminPublisherHandler handler,
String[] topics,
boolean synchronous,
String dataKey,
String instanceName)
Constructs an Publisher with given parameters. |
|
PublisherImpl(EventAdminPublisherHandler handler,
String[] topics,
boolean synchronous,
String dataKey,
String instanceName)
Constructs an Publisher with given parameters. |
Uses of String in org.apache.felix.ipojo.handlers.event.subscriber |
---|
Fields in org.apache.felix.ipojo.handlers.event.subscriber declared as String | |
---|---|
static String |
EventAdminSubscriberHandler.FILTER_PROPERTY
The event's filter instance configuration property. |
static String |
EventAdminSubscriberHandler.NAMESPACE
The handler namespace. |
static String |
EventAdminSubscriberHandler.TOPICS_PROPERTY
The event's topics instance configuration property. |
Uses of String in org.apache.felix.ipojo.handlers.jmx |
---|
Fields in org.apache.felix.ipojo.handlers.jmx declared as String | |
---|---|
static String |
MBeanHandler.POST_DEREGISTER_METH_NAME
The name of the MBeanRegistration postDeregister method. |
static String |
MBeanHandler.POST_REGISTER_METH_NAME
The name of the MBeanRegistration postRegister method. |
static String |
MBeanHandler.PRE_DEREGISTER_METH_NAME
The name of the MBeanRegistration preDeregister method. |
static String |
MBeanHandler.PRE_REGISTER_METH_NAME
The name of the MBeanRegistration preRegister method. |
Methods in org.apache.felix.ipojo.handlers.jmx that return String | |
---|---|
String |
JmxConfigFieldMap.getDecription()
Gets the description of the MBean. |
String |
MethodField.getDescription()
Gets the description. |
String |
PropertyField.getDescription()
Returns the description. |
String |
PropertyField.getField()
Returns the field. |
String |
MethodField.getName()
Gets the name. |
String |
PropertyField.getName()
Returns the name. |
String |
MethodField.getReturnType()
|
String |
PropertyField.getRights()
Returns the rights. |
String[] |
MethodField.getSignature()
|
String |
PropertyField.getType()
Returns the type. |
String |
MBeanHandler.getUsedObjectName()
Returns the objectName used to register the MBean. |
Methods in org.apache.felix.ipojo.handlers.jmx with parameters of type String | |
---|---|
void |
JmxConfigFieldMap.addMethodFromName(String name,
MethodField methodField)
Adds a new method descriptor from its name. |
void |
JmxConfigFieldMap.addMethodFromName(String name,
MethodField[] methodsField)
Adds new methods descriptors from one name. |
void |
JmxConfigFieldMap.addNotificationFromName(String name,
NotificationField notificationField)
Adds a notification. |
void |
JmxConfigFieldMap.addPropertyFromName(String name,
PropertyField propertyField)
Adds a new attribute exposed in the Mbean. |
Object |
DynamicMBeanImpl.getAttribute(String arg0)
Gets the value of the required attribute. |
AttributeList |
DynamicMBeanImpl.getAttributes(String[] attributeNames)
Gets values of required attributes. |
MethodField[] |
JmxConfigFieldMap.getMethodFromName(String name)
Returns the method(s) with the given name. |
MethodField |
JmxConfigFieldMap.getMethodFromName(String operationName,
String[] signature)
Gets the method with the good signature. |
MethodField |
JmxConfigFieldMap.getMethodFromName(String operationName,
String[] signature)
Gets the method with the good signature. |
NotificationField |
JmxConfigFieldMap.getNotificationFromName(String name)
Returns the notification with the given name. |
PropertyField |
JmxConfigFieldMap.getPropertyFromField(String field)
Gets the property by the field. |
PropertyField |
JmxConfigFieldMap.getPropertyFromName(String name)
Gets the property by the name. |
Object |
DynamicMBeanImpl.invoke(String operationName,
Object[] params,
String[] signature)
Invokes the required method on the targeted POJO. |
Object |
DynamicMBeanImpl.invoke(String operationName,
Object[] params,
String[] signature)
Invokes the required method on the targeted POJO. |
static boolean |
PropertyField.isRightsValid(String rights)
Is the rights is valid or not ? (ie = 'r' || 'w'). |
Object |
MBeanHandler.onGet(Object pojo,
String fieldName,
Object value)
Called when a POJO member is read by the MBean. |
void |
MBeanHandler.onSet(Object pojo,
String fieldName,
Object value)
Called when a POJO member is modified externally. |
void |
JmxConfigFieldMap.overrideMethodFromName(String name,
MethodField methodField)
Adds a method from name and erases the older if exists. |
void |
JmxConfigFieldMap.overrideMethodFromName(String name,
MethodField[] methodsField)
Add methods from name and erases the olders if exists. |
void |
DynamicMBeanImpl.sendNotification(String msg,
String attributeName,
String attributeType,
Object oldValue,
Object newValue)
Sends a notification to a subscriber. |
void |
JmxConfigFieldMap.setDescription(String description)
Sets the description of the MBean. |
void |
PropertyField.setField(String field)
Modifies the field. |
void |
PropertyField.setName(String name)
Modifies the name. |
void |
PropertyField.setRights(String rights)
Modifies the rights. |
Constructors in org.apache.felix.ipojo.handlers.jmx with parameters of type String | |
---|---|
MethodField(MethodMetadata method,
String description)
Constructor. |
|
NotificationField(String name,
String field,
String description)
Constructor. |
|
PropertyField(String name,
String field,
String rights,
String type)
Constructor. |
Uses of String in org.apache.felix.ipojo.handlers.lifecycle.callback |
---|
Methods in org.apache.felix.ipojo.handlers.lifecycle.callback that return String | |
---|---|
protected String |
LifecycleCallback.getMethod()
Get the method name of the callback. |
Constructors in org.apache.felix.ipojo.handlers.lifecycle.callback with parameters of type String | |
---|---|
LifecycleCallback(LifecycleCallbackHandler handler,
int transition,
String method)
LifecycleCallback constructor. |
Uses of String in org.apache.felix.ipojo.handlers.lifecycle.controller |
---|
Methods in org.apache.felix.ipojo.handlers.lifecycle.controller with parameters of type String | |
---|---|
Object |
ControllerHandler.onGet(Object pojo,
String field,
Object value)
GetterCallback. |
void |
ControllerHandler.onSet(Object pojo,
String field,
Object value)
SetterCallback. |
Uses of String in org.apache.felix.ipojo.handlers.providedservice |
---|
Methods in org.apache.felix.ipojo.handlers.providedservice that return String | |
---|---|
String |
ProvidedServiceDescription.getController()
Gets the controller value as a String. |
String |
ProvidedServiceDescription.getController(String specification)
Gets the controller value as a String. |
String[] |
ProvidedServiceDescription.getServiceSpecifications()
Gets the list of provided service specifications. |
String[] |
ProvidedService.getServiceSpecifications()
Get the published service specifications. |
Methods in org.apache.felix.ipojo.handlers.providedservice with parameters of type String | |
---|---|
String |
ProvidedServiceDescription.getController(String specification)
Gets the controller value as a String. |
org.apache.felix.ipojo.handlers.providedservice.ProvidedService.ServiceController |
ProvidedService.getController(String field)
|
org.apache.felix.ipojo.handlers.providedservice.ProvidedService.ServiceController |
ProvidedService.getControllerBySpecification(String spec)
|
Object |
ProvidedServiceHandler.onGet(Object pojo,
String fieldName,
Object value)
Getter Callback Method. |
abstract void |
CreationStrategy.onPublication(InstanceManager instance,
String[] interfaces,
Properties props)
Method called when the service is registered. |
void |
ProvidedServiceHandler.onSet(Object pojo,
String fieldName,
Object value)
Setter Callback Method. |
void |
ProvidedService.setController(String field,
boolean value,
String specification)
Sets the service controller on this provided service. |
Constructors in org.apache.felix.ipojo.handlers.providedservice with parameters of type String | |
---|---|
ProvidedService(ProvidedServiceHandler handler,
String[] specification,
int factoryPolicy,
Class creationStrategyClass,
Dictionary conf)
Creates a provided service object. |
Uses of String in org.apache.felix.ipojo.handlers.providedservice.strategy |
---|
Methods in org.apache.felix.ipojo.handlers.providedservice.strategy with parameters of type String | |
---|---|
void |
ConfigurableCreationStrategy.onPublication(InstanceManager manager,
String[] specifications,
Properties props)
Method called when the underlying iPOJO Service factory is published. |
Uses of String in org.apache.felix.ipojo.manipulation |
---|
Fields in org.apache.felix.ipojo.manipulation declared as String | |
---|---|
static String |
MethodCreator.IM_FIELD
Instance Manager Field. |
protected static String |
ManipulationProperty.IPOJO_INTERNAL_DESCRIPTOR
Ipojo internal package name for internal descriptor. |
protected static String |
ManipulationProperty.IPOJO_INTERNAL_PACKAGE_NAME
Activator internal package name. |
protected static String |
ManipulationProperty.IPOJO_PACKAGE_NAME
iPOJO Package name. |
static String |
MethodCreator.PREFIX
All POJO method will be renamed by using this prefix. |
Methods in org.apache.felix.ipojo.manipulation that return String | |
---|---|
String |
MethodDescriptor.getDescriptor()
|
String |
MethodDescriptor.getName()
|
String |
ClassChecker.getSuperClass()
|
Methods in org.apache.felix.ipojo.manipulation with parameters of type String | |
---|---|
void |
ManipulationProperty.Logger.log(int level,
String message)
Log method. |
void |
ClassChecker.visit(int version,
int access,
String name,
String signature,
String superName,
String[] interfaces)
Visit the class. |
void |
ClassChecker.visit(int version,
int access,
String name,
String signature,
String superName,
String[] interfaces)
Visit the class. |
void |
MethodCreator.visit(int version,
int access,
String name,
String signature,
String superName,
String[] interfaces)
Visit method. |
void |
MethodCreator.visit(int version,
int access,
String name,
String signature,
String superName,
String[] interfaces)
Visit method. |
void |
ClassChecker.AnnotationDescriptor.visit(String arg0,
Object arg1)
Visits a simple attribute. |
void |
ClassChecker.ArrayAttribute.visit(String arg0,
Object arg1)
Visits the content of the array. |
org.objectweb.asm.AnnotationVisitor |
ConstructorCodeAdapter.visitAnnotation(String name,
boolean visible)
Visits an annotation. |
org.objectweb.asm.AnnotationVisitor |
MethodCodeAdapter.visitAnnotation(String name,
boolean visible)
Visits an annotation. |
org.objectweb.asm.AnnotationVisitor |
ClassChecker.AnnotationDescriptor.visitAnnotation(String arg0,
String arg1)
Visits a nested annotation. |
org.objectweb.asm.AnnotationVisitor |
ClassChecker.ArrayAttribute.visitAnnotation(String arg0,
String arg1)
Visits the content of the array. |
org.objectweb.asm.AnnotationVisitor |
ClassChecker.AnnotationDescriptor.visitArray(String arg0)
Visits an array attribute. |
org.objectweb.asm.AnnotationVisitor |
ClassChecker.ArrayAttribute.visitArray(String arg0)
Visits the content of the array. |
void |
ClassChecker.AnnotationDescriptor.visitEnum(String arg0,
String arg1,
String arg2)
Visits an enumeration attribute. |
void |
ClassChecker.ArrayAttribute.visitEnum(String arg0,
String arg1,
String arg2)
Visits the content of the array. |
org.objectweb.asm.FieldVisitor |
ClassChecker.visitField(int access,
String name,
String desc,
String signature,
Object value)
Check if the _cm field already exists. |
org.objectweb.asm.FieldVisitor |
MethodCreator.visitField(int access,
String name,
String desc,
String signature,
Object value)
Visit a Field. |
void |
ConstructorCodeAdapter.visitFieldInsn(int opcode,
String owner,
String name,
String desc)
Adapts field accesses. |
void |
MethodCodeAdapter.visitFieldInsn(int opcode,
String owner,
String name,
String desc)
Visit an instruction modifying a method (GETFIELD/PUTFIELD). |
void |
ClassChecker.visitInnerClass(String name,
String outerName,
String innerName,
int access)
Add the inner class to the list of inner class to manipulate. |
void |
ConstructorCodeAdapter.visitLocalVariable(String name,
String desc,
String signature,
org.objectweb.asm.Label start,
org.objectweb.asm.Label end,
int index)
Visits a local variable. |
org.objectweb.asm.MethodVisitor |
InnerClassAdapter.visitMethod(int access,
String name,
String desc,
String signature,
String[] exceptions)
Visits a method. |
org.objectweb.asm.MethodVisitor |
InnerClassAdapter.visitMethod(int access,
String name,
String desc,
String signature,
String[] exceptions)
Visits a method. |
org.objectweb.asm.MethodVisitor |
ClassChecker.visitMethod(int access,
String name,
String desc,
String signature,
String[] exceptions)
Visit a method. |
org.objectweb.asm.MethodVisitor |
ClassChecker.visitMethod(int access,
String name,
String desc,
String signature,
String[] exceptions)
Visit a method. |
org.objectweb.asm.MethodVisitor |
MethodCreator.visitMethod(int access,
String name,
String desc,
String signature,
String[] exceptions)
A method is visited. |
org.objectweb.asm.MethodVisitor |
MethodCreator.visitMethod(int access,
String name,
String desc,
String signature,
String[] exceptions)
A method is visited. |
void |
ConstructorCodeAdapter.visitMethodInsn(int opcode,
String owner,
String name,
String desc)
Visits a method invocation instruction. |
org.objectweb.asm.AnnotationVisitor |
MethodCodeAdapter.visitParameterAnnotation(int id,
String name,
boolean visible)
Visits a parameter annotation. |
Constructors in org.apache.felix.ipojo.manipulation with parameters of type String | |
---|---|
ClassChecker.AnnotationDescriptor(String name,
boolean visible)
Creates an annotation descriptor. |
|
ClassChecker.AnnotationDescriptor(String name,
String desc)
Creates an annotation descriptor. |
|
ClassChecker.ArrayAttribute(String name)
Creates an array attribute. |
|
ConstructorCodeAdapter(org.objectweb.asm.MethodVisitor mv,
String owner,
Set fields,
int access,
String name,
String desc,
String superClass)
PropertyCodeAdapter constructor. |
|
InnerClassAdapter(org.objectweb.asm.ClassVisitor arg0,
String outerClass,
Set fields)
Creates the inner class adapter. |
|
InnerClassManipulator(String classname,
Set fields)
Creates an inner class manipulator. |
|
MethodCodeAdapter(org.objectweb.asm.MethodVisitor mv,
String owner,
int access,
String name,
String desc,
Set fields)
MethodCodeAdapter constructor. |
|
MethodDescriptor(String name,
String desc)
Constructor. |
Uses of String in org.apache.felix.ipojo.manipulation.annotations |
---|
Methods in org.apache.felix.ipojo.manipulation.annotations that return String | |
---|---|
String |
MetadataCollector.getClassName()
|
Methods in org.apache.felix.ipojo.manipulation.annotations with parameters of type String | |
---|---|
static Element |
CustomAnnotationVisitor.buildElement(String desc)
Build the element object from the given descriptor. |
static boolean |
CustomAnnotationVisitor.isCustomAnnotation(String desc)
Check if the given annotation descriptor is an iPOJO custom annotation. |
void |
MetadataCollector.visit(int version,
int access,
String name,
String signature,
String superName,
String[] interfaces)
Start visiting a class. |
void |
MetadataCollector.visit(int version,
int access,
String name,
String signature,
String superName,
String[] interfaces)
Start visiting a class. |
void |
CustomAnnotationVisitor.visit(String arg0,
Object arg1)
Visit a 'simple' annotation attribute. |
org.objectweb.asm.AnnotationVisitor |
MethodCollector.visitAnnotation(String arg0,
boolean arg1)
Visit method annotations. |
org.objectweb.asm.AnnotationVisitor |
MetadataCollector.visitAnnotation(String desc,
boolean visible)
Visit class annotations. |
org.objectweb.asm.AnnotationVisitor |
FieldCollector.visitAnnotation(String arg0,
boolean arg1)
Visit annotations on the current field. |
org.objectweb.asm.AnnotationVisitor |
CustomAnnotationVisitor.visitAnnotation(String arg0,
String arg1)
Visit a sub-annotation. |
org.objectweb.asm.AnnotationVisitor |
CustomAnnotationVisitor.visitArray(String arg0)
Visit an array attribute. |
void |
CustomAnnotationVisitor.visitEnum(String arg0,
String arg1,
String arg2)
Visits an enumeration attribute. |
org.objectweb.asm.FieldVisitor |
MetadataCollector.visitField(int access,
String name,
String desc,
String signature,
Object value)
Visit a field. |
org.objectweb.asm.MethodVisitor |
MetadataCollector.visitMethod(int access,
String name,
String desc,
String signature,
String[] exceptions)
Visit a method. |
org.objectweb.asm.MethodVisitor |
MetadataCollector.visitMethod(int access,
String name,
String desc,
String signature,
String[] exceptions)
Visit a method. |
org.objectweb.asm.AnnotationVisitor |
MethodCollector.visitParameterAnnotation(int index,
String annotation,
boolean visible)
Visit a parameter annotation. |
Constructors in org.apache.felix.ipojo.manipulation.annotations with parameters of type String | |
---|---|
CustomAnnotationVisitor(Element elem,
MetadataCollector collector,
boolean root,
boolean clazz,
int index,
String descriptor)
Constructor used for parameter annotations |
|
FieldCollector(String fieldName,
MetadataCollector collector)
Constructor. |
|
MethodCollector(String name,
String descriptor,
MetadataCollector collector)
Constructor. |
Uses of String in org.apache.felix.ipojo.manipulator |
---|
Fields in org.apache.felix.ipojo.manipulator declared as String | |
---|---|
static String |
Pojoization.IPOJO_PACKAGE_VERSION
iPOJO Imported Package Version. |
Methods in org.apache.felix.ipojo.manipulator that return String | |
---|---|
String[] |
QuotedTokenizer.getTokens()
|
String |
QuotedTokenizer.nextToken()
Get the next token. |
String |
QuotedTokenizer.nextToken(String separators)
Get the next token. |
String |
Pojoization.printClauses(Map exports,
String allowedDirectives)
Print a standard Map based OSGi header. |
Methods in org.apache.felix.ipojo.manipulator with parameters of type String | |
---|---|
protected void |
Pojoization.error(String mes)
Add an error in the error list. |
protected byte[] |
Pojoization.getBytecode(String classname)
Gets a byte array that contains the bytecode of the given classname. |
protected InputStream |
Pojoization.getInputStream(String classname)
Gets an input stream on the given class. |
String |
QuotedTokenizer.nextToken(String separators)
Get the next token. |
Map |
Pojoization.parseHeader(String value)
Standard OSGi header parser. |
String |
Pojoization.printClauses(Map exports,
String allowedDirectives)
Print a standard Map based OSGi header. |
void |
Pojoization.warn(String mes)
Add a warning in the warning list. |
Constructors in org.apache.felix.ipojo.manipulator with parameters of type String | |
---|---|
QuotedTokenizer(String string,
String separators)
Constructors. |
|
QuotedTokenizer(String string,
String separators,
boolean returnTokens)
Constructors. |
Uses of String in org.apache.felix.ipojo.metadata |
---|
Methods in org.apache.felix.ipojo.metadata that return String | |
---|---|
String |
Element.getAttribute(String name)
Returns the value of the attribute given in parameter. |
String |
Element.getAttribute(String name,
String ns)
Returns the value of the attribute "name" of the namespace "ns". |
String |
Attribute.getName()
Gets the attribute name. |
String |
Element.getName()
Gets element name. |
String |
Attribute.getNameSpace()
Gets attribute namespace. |
String |
Element.getNameSpace()
Gets element namespace. |
String |
Attribute.getValue()
Gets attribute value. |
String |
Element.toString()
To String method. |
String |
Element.toXMLString()
Gets the XML form of this element. |
Methods in org.apache.felix.ipojo.metadata with parameters of type String | |
---|---|
boolean |
Element.containsAttribute(String name)
Does the element contain an attribute of the name given in parameter. |
boolean |
Element.containsElement(String name)
Does the element contain a sub-element of the type given in parameter. |
boolean |
Element.containsElement(String name,
String ns)
Does the element contain a sub-element of the type given in parameter. |
String |
Element.getAttribute(String name)
Returns the value of the attribute given in parameter. |
String |
Element.getAttribute(String name,
String ns)
Returns the value of the attribute "name" of the namespace "ns". |
Element[] |
Element.getElements(String name)
Gets the elements array of the element type given in parameter. |
Element[] |
Element.getElements(String name,
String ns)
Gets the elements array of the element type given in parameter. |
Constructors in org.apache.felix.ipojo.metadata with parameters of type String | |
---|---|
Attribute(String name,
String value)
Creates an attribute. |
|
Attribute(String name,
String ns,
String value)
Creates an attribute. |
|
Element(String name,
String ns)
Creates an Element. |
Uses of String in org.apache.felix.ipojo.parser |
---|
Fields in org.apache.felix.ipojo.parser declared as String | |
---|---|
static String |
MethodMetadata.BC_CONSTRUCTOR_ID
Bundle Context Constructor Method Id. |
static String |
MethodMetadata.CONSTRUCTOR_PREFIX
Constructor Prefix. |
static String |
MethodMetadata.EMPTY_CONSTRUCTOR_ID
Empty Constructor Method Id. |
Methods in org.apache.felix.ipojo.parser that return String | |
---|---|
static String |
MethodMetadata.computeMethodId(Constructor method)
Computes the method id for the given Constructor object. |
static String |
MethodMetadata.computeMethodId(Method method)
Computes the method id for the given Method object. |
String |
FieldMetadata.getFieldName()
|
String |
FieldMetadata.getFieldType()
|
String[] |
PojoMetadata.getInterfaces()
|
static String |
FieldMetadata.getInternalPrimitiveType(String string)
Gets the internal notation for primitive type. |
String[] |
MethodMetadata.getMethodArguments()
|
String |
MethodMetadata.getMethodIdentifier()
Gets the method unique identifier. |
String |
MethodMetadata.getMethodName()
|
String |
MethodMetadata.getMethodReturn()
|
static String |
FieldMetadata.getPrimitiveTypeByClass(Class clazz)
Gets the iPOJO primitive type from the given primitive class. |
static String |
FieldMetadata.getReflectionType(String type)
Gets the 'reflective' type of the given type. |
String |
PojoMetadata.getSuperClass()
|
static String[] |
ParseUtils.parseArrays(String str)
Parses the iPOJO string form of an array as {a, b, c} or [a, b, c]. |
static String[] |
ParseUtils.split(String toSplit,
String separator)
Split method. |
Methods in org.apache.felix.ipojo.parser with parameters of type String | |
---|---|
MethodMetadata |
PojoMetadata.getConstructor(String[] types)
Gets the constructor corresponding to the given argument types. |
FieldMetadata |
PojoMetadata.getField(String name)
Gets the field metadata for the given name. |
FieldMetadata |
PojoMetadata.getField(String name,
String type)
Gets the field metadata for the given name and type. |
static String |
FieldMetadata.getInternalPrimitiveType(String string)
Gets the internal notation for primitive type. |
MethodMetadata |
PojoMetadata.getMethod(String name)
Gets the MethodMetadata corresponding to the method (contained in the implementation class) with the given name. |
MethodMetadata |
PojoMetadata.getMethod(String name,
String[] types)
Gets the MethodMetadata corresponding to the method (contained in the implementation class) to given name and argument types. |
MethodMetadata |
PojoMetadata.getMethod(String name,
String[] types)
Gets the MethodMetadata corresponding to the method (contained in the implementation class) to given name and argument types. |
MethodMetadata[] |
PojoMetadata.getMethods(String name)
Gets the MethodMetadata list corresponding to the method (contained in the implementation class) to given name. |
static String |
FieldMetadata.getReflectionType(String type)
Gets the 'reflective' type of the given type. |
boolean |
PojoMetadata.isInterfaceImplemented(String itf)
Checks if the given interface name is implemented. |
static Element |
ManifestMetadataParser.parse(String metadata)
Parses the metadata from the string given in argument. |
static String[] |
ParseUtils.parseArrays(String str)
Parses the iPOJO string form of an array as {a, b, c} or [a, b, c]. |
static List |
ParseUtils.parseArraysAsList(String str)
Parses the string form of an array as {a, b, c} or [a, b, c] as a list. |
void |
ManifestMetadataParser.parseHeader(String header)
Parses the given header, initialized the ManifestMetadataParser.m_elements list
(adds the iPOJO element) and parses
contained component type declarations and instance configurations. |
static Element |
ManifestMetadataParser.parseHeaderMetadata(String header)
Parses the metadata from the given header string. |
static String[] |
ParseUtils.split(String toSplit,
String separator)
Split method. |
Constructors in org.apache.felix.ipojo.parser with parameters of type String | |
---|---|
FieldMetadata(String field,
String type)
Creates a field metadata. |
|
ParseException(String msg)
Parsing error. |
Uses of String in org.apache.felix.ipojo.transaction |
---|
Fields in org.apache.felix.ipojo.transaction declared as String | |
---|---|
static String |
TransactionHandler.NAME
|
static String |
TransactionHandler.NAMESPACE
|
Methods in org.apache.felix.ipojo.transaction with parameters of type String | |
---|---|
void |
TransactionnalMethod.onError(String exception)
|
Object |
TransactionHandler.onGet(Object pojo,
String fieldName,
Object value)
|
Constructors in org.apache.felix.ipojo.transaction with parameters of type String | |
---|---|
TransactionnalMethod(String method,
int propagation,
int timeout,
|
Uses of String in org.apache.felix.ipojo.util |
---|
Fields in org.apache.felix.ipojo.util declared as String | |
---|---|
static String |
Logger.IPOJO_LOG_LEVEL_HEADER
iPOJO log level manifest header. |
static String |
Logger.IPOJO_LOG_LEVEL_PROP
The iPOJO default log level property. |
protected String |
Tracker.m_listenerFilter
The filter string for use when adding the ServiceListener. |
Methods in org.apache.felix.ipojo.util that return String | |
---|---|
String[] |
Callback.getArguments()
Gets the method arguments. |
String |
DependencyModel.getComparator()
Gets the used comparator name. |
String |
Property.getField()
|
String |
DependencyModel.getFilter()
Returns the dependency filter (String form). |
String |
Property.getMethod()
Gets the method name, null if no method. |
String |
Callback.getMethod()
Gets the method name. |
String |
Property.getName()
|
String |
Property.getType()
|
Methods in org.apache.felix.ipojo.util with parameters of type String | |
---|---|
static Class |
Property.computeType(String type,
BundleContext context)
Computes and returns the property type according to the given type name. |
static Object |
Property.create(Class type,
String strValue)
Creates an object of the given type with the given String value. |
static Object |
Property.createArrayObject(Class interntype,
String[] values)
Creates an array object containing the type component type from the String array 'values'. |
static boolean |
SecurityHelper.hasPermissionToGetService(String itf,
BundleContext comp)
Checks if the component bundle context has enough permission to get the given service. |
static boolean |
SecurityHelper.hasPermissionToGetServices(String[] itfs,
BundleContext comp)
Checks if the component bundle context has enough permission to get the given services. |
static boolean |
SecurityHelper.hasPermissionToRegisterService(String itf,
BundleContext comp)
Checks if the component bundle context has enough permission to register the given service. |
static boolean |
SecurityHelper.hasPermissionToRegisterServices(String[] itfs,
BundleContext comp)
Checks if the component bundle context has enough permission to register the given services. |
static Class |
DependencyModel.loadSpecification(String specification,
BundleContext context)
Loads the given specification class. |
void |
Logger.log(int level,
String msg)
Logs a message. |
void |
Logger.log(int level,
String msg,
Throwable exception)
Logs a message with an exception. |
Object |
Property.onGet(Object pojo,
String fieldName,
Object value)
A field value is required by the object 'pojo'. |
void |
Property.onSet(Object pojo,
String fieldName,
Object value)
The field 'field' receives a new value. |
static BundleContext |
SecurityHelper.selectContextToGetService(String itf,
BundleContext comp,
BundleContext ipojo)
Gets a bundle context to get the given service. |
static BundleContext |
SecurityHelper.selectContextToRegisterService(String itf,
BundleContext comp,
BundleContext ipojo)
Gets a bundle context to register the given service. |
static BundleContext |
SecurityHelper.selectContextToRegisterServices(String[] itfs,
BundleContext comp,
BundleContext ipojo)
Gets a bundle context to register the given services. |
Constructors in org.apache.felix.ipojo.util with parameters of type String | |
---|---|
Callback(String method,
Class[] args,
boolean isStatic,
InstanceManager manager)
Creates a Callback. |
|
Callback(String method,
String[] args,
boolean isStatic,
InstanceManager manager)
Creates a Callback. |
|
Callback(String method,
String[] args,
boolean isStatic,
InstanceManager manager)
Creates a Callback. |
|
Logger(BundleContext context,
String name)
Create a logger. |
|
Logger(BundleContext context,
String name,
int level)
Creates a logger. |
|
Property(String name,
String field,
String method,
int index,
String value,
String type,
InstanceManager manager,
Handler handler)
|
|
Property(String name,
String field,
String method,
String value,
String type,
InstanceManager manager,
Handler handler)
Creates a property. |
|
Tracker(BundleContext context,
String clazz,
TrackerCustomizer customizer)
Creates a Tracker object on the specified class name. |
Uses of String in org.apache.felix.ipojo.webconsole |
---|
Fields in org.apache.felix.ipojo.webconsole declared as String | |
---|---|
protected String[] |
IPOJOPlugin.m_css
CSS files used by the plugin. |
Methods in org.apache.felix.ipojo.webconsole that return String | |
---|---|
protected String[] |
IPOJOPlugin.getCssReferences()
Get the CSS used by the plugin. |
static String |
StateUtils.getDependencyBindingPolicy(int policy)
Gets the dependency binding policy as a String. |
static String |
StateUtils.getDependencyState(int state)
Gets the dependency state as a String. |
static String |
StateUtils.getFactoryState(int state)
Gets the factory state as a String. |
static String |
StateUtils.getInstanceState(int state)
Gets the instance state as a String. |
String |
IPOJOPlugin.getLabel()
Gets the plugin label. |
static String |
StateUtils.getProvidedServiceState(int state)
Gets the provided service state as a String. |
String |
IPOJOPlugin.getTitle()
Gets the plugin title. |
Methods in org.apache.felix.ipojo.webconsole with parameters of type String | |
---|---|
static |
StateUtils.getInstanceList(
Gets the instance list created by the given factory. |
URL |
IPOJOPlugin.getResource(String path)
Allows loading the 'ui' folder as web resource. |
Uses of String in org.apache.felix.ipojo.xml.parser |
---|
Fields in org.apache.felix.ipojo.xml.parser declared as String | |
---|---|
static String |
SchemaResolver.XSD_PATH
Directory where embedded schemas are copied. |
Methods in org.apache.felix.ipojo.xml.parser with parameters of type String | |
---|---|
void |
XMLMetadataParser.endElement(String namespaceURI,
String localName,
String qName)
End of an element. |
void |
XMLMetadataParser.endPrefixMapping(String prefix)
End prefix mapping. |
void |
XMLMetadataParser.processingInstruction(String target,
String data)
Process an instruction. |
InputSource |
SchemaResolver.resolveEntity(String publicId,
String systemId)
Resolves systemIds to use embedded schemas. |
void |
XMLMetadataParser.skippedEntity(String name)
Skipped entity. |
void |
XMLMetadataParser.startElement(String namespaceURI,
String localName,
String qName,
Attributes atts)
Start an element. |
void |
XMLMetadataParser.startPrefixMapping(String prefix,
String uri)
Start a prefix mapping. |
Constructors in org.apache.felix.ipojo.xml.parser with parameters of type String | |
---|---|
ParseException(String msg)
Parsing error. |
Uses of String in org.apache.felix.jmood |
---|
Fields in org.apache.felix.jmood declared as String | |
---|---|
static String |
AgentConstants.FRAMEWORK_NOTIFICATION_TYPE
|
static String |
AgentConstants.GROUP
|
static String |
SecurityManagerHandler.IS_POLICY_EMBEDDED
|
static String |
SecurityManagerHandler.JAVA_SECURITY_POLICY
|
static String |
AgentConstants.LOG_NOTIFICATION_TYPE
|
static String |
AgentConstants.ROLE
|
static String |
AgentConstants.SERVICE_NOTIFICATION_TYPE
|
static String |
AgentConstants.USER
|
static String |
AgentConstants.USER_ADMIN_NOTIFICATION_TYPE
|
Methods in org.apache.felix.jmood with parameters of type String | |
---|---|
void |
AgentContext.debug(String s)
|
void |
AgentContext.error(String s)
|
void |
AgentContext.error(String s,
Exception e)
|
void |
AgentContext.info(String s)
|
void |
AgentContext.warning(String s)
|
Constructors in org.apache.felix.jmood with parameters of type String | |
---|---|
SecurityManagerHandler(AgentContext ac,
boolean policyEmbedded,
String policyPath)
|
Uses of String in org.apache.felix.jmood.compendium |
---|
Methods in org.apache.felix.jmood.compendium that return String | |
---|---|
String |
ConfigAdminManager.createFactoryConfiguration(String pid)
|
String |
ConfigAdminManagerMBean.createFactoryConfiguration(String pid)
|
String |
ConfigAdminManager.createFactoryConfiguration(String pid,
String location)
|
String |
ConfigAdminManagerMBean.createFactoryConfiguration(String pid,
String location)
|
String |
ConfigurationDelegateMBean.getBundleLocation()
|
String |
ConfigurationDelegate.getBundleLocation()
|
String |
ConfigAdminManager.getConfiguration(String pid)
|
String |
ConfigAdminManagerMBean.getConfiguration(String pid)
|
String |
ConfigAdminManager.getConfiguration(String pid,
String location)
This method gets a configuration object related to a pid and a bundle location |
String |
ConfigAdminManagerMBean.getConfiguration(String pid,
String location)
This method gets a configuration object related to a pid and a bundle location |
String |
ConfigurationDelegateMBean.getFactoryPid()
|
String |
ConfigurationDelegate.getFactoryPid()
|
String[] |
UserManagerMBean.getGroups()
|
String[] |
UserManager.getGroups()
|
String[] |
UserManagerMBean.getImpliedRoles(String username)
|
String[] |
UserManager.getImpliedRoles(String username)
|
String[] |
LogManagerMBean.getLogMessages()
This method exposes the attribute LogFromReader for remote management. |
String[] |
LogManager.getLogMessages()
This method exposes the attribute LogFromReader for remote management. |
String[] |
UserManagerMBean.getMembers(String groupname)
|
String[] |
UserManager.getMembers(String groupname)
|
String |
ConfigurationDelegateMBean.getPid()
|
String |
ConfigurationDelegate.getPid()
|
String |
ConfigurationDelegateMBean.getProperty(String key)
|
String |
ConfigurationDelegate.getProperty(String key)
|
String[] |
UserManagerMBean.getRequiredMembers(String groupname)
|
String[] |
UserManager.getRequiredMembers(String groupname)
|
String[] |
UserManagerMBean.getRoles()
|
String[] |
UserManager.getRoles()
|
String[] |
UserManagerMBean.getRoles(String filter)
|
String[] |
UserManager.getRoles(String filter)
|
String |
UserManagerMBean.getUser(String key,
String value)
|
String |
UserManager.getUser(String key,
String value)
|
String[] |
UserManagerMBean.getUsers()
|
String[] |
UserManager.getUsers()
|
String[] |
ConfigAdminManager.listConfigurations(String filter)
|
String[] |
ConfigAdminManagerMBean.listConfigurations(String filter)
|
Methods in org.apache.felix.jmood.compendium with parameters of type String | |
---|---|
void |
UserManagerMBean.addCredential(String key,
Object value,
String username)
|
void |
UserManager.addCredential(String key,
Object value,
String username)
|
boolean |
UserManagerMBean.addMember(String groupname,
String rolename)
|
boolean |
UserManager.addMember(String groupname,
String rolename)
|
void |
UserManagerMBean.addProperty(String key,
Object value,
String rolename)
|
void |
UserManager.addProperty(String key,
Object value,
String rolename)
|
void |
ConfigAdminManager.addPropertyToConfigurations(String filter,
String name,
String value,
String type)
Updates or adds a property to configurations selected by an LDAP expression Arrays and vectors not supported |
void |
ConfigAdminManagerMBean.addPropertyToConfigurations(String filter,
String name,
String value,
String type)
Updates or adds a property to configurations selected by an LDAP expression Arrays and vectors not supported |
boolean |
UserManagerMBean.addRequiredMember(String groupname,
String rolename)
|
boolean |
UserManager.addRequiredMember(String groupname,
String rolename)
|
protected static Object |
ConfigAdminManager.castValueToType(String type,
String value)
|
String |
ConfigAdminManager.createFactoryConfiguration(String pid)
|
String |
ConfigAdminManagerMBean.createFactoryConfiguration(String pid)
|
String |
ConfigAdminManager.createFactoryConfiguration(String pid,
String location)
|
String |
ConfigAdminManagerMBean.createFactoryConfiguration(String pid,
String location)
|
void |
UserManagerMBean.createRole(String name,
String type)
Creates a role of the specified type, case insensitive, with the specified name |
void |
UserManager.createRole(String name,
String type)
Creates a role of the specified type, case insensitive, with the specified name |
void |
ConfigAdminManager.deleteConfigurations(String filter)
Delete the configurations identified by the LDAP filter |
void |
ConfigAdminManagerMBean.deleteConfigurations(String filter)
Delete the configurations identified by the LDAP filter |
void |
ConfigurationDelegateMBean.deleteProperty(String key)
|
void |
ConfigurationDelegate.deleteProperty(String key)
|
CompositeData |
UserManagerMBean.getAuthorization(String user)
|
CompositeData |
UserManager.getAuthorization(String user)
|
String |
ConfigAdminManager.getConfiguration(String pid)
|
String |
ConfigAdminManagerMBean.getConfiguration(String pid)
|
String |
ConfigAdminManager.getConfiguration(String pid,
String location)
This method gets a configuration object related to a pid and a bundle location |
String |
ConfigAdminManagerMBean.getConfiguration(String pid,
String location)
This method gets a configuration object related to a pid and a bundle location |
Hashtable |
UserManagerMBean.getCredentials(String username)
|
Hashtable |
UserManager.getCredentials(String username)
|
CompositeData |
UserManagerMBean.getGroup(String groupname)
|
CompositeData |
UserManager.getGroup(String groupname)
|
String[] |
UserManagerMBean.getImpliedRoles(String username)
|
String[] |
UserManager.getImpliedRoles(String username)
|
String[] |
UserManagerMBean.getMembers(String groupname)
|
String[] |
UserManager.getMembers(String groupname)
|
Hashtable |
UserManagerMBean.getProperties(String rolename)
|
Hashtable |
UserManager.getProperties(String rolename)
|
String |
ConfigurationDelegateMBean.getProperty(String key)
|
String |
ConfigurationDelegate.getProperty(String key)
|
String[] |
UserManagerMBean.getRequiredMembers(String groupname)
|
String[] |
UserManager.getRequiredMembers(String groupname)
|
CompositeData |
UserManagerMBean.getRole(String name)
|
CompositeData |
UserManager.getRole(String name)
|
String[] |
UserManagerMBean.getRoles(String filter)
|
String[] |
UserManager.getRoles(String filter)
|
CompositeData |
UserManagerMBean.getUser(String username)
|
CompositeData |
UserManager.getUser(String username)
|
String |
UserManagerMBean.getUser(String key,
String value)
|
String |
UserManager.getUser(String key,
String value)
|
protected static boolean |
ConfigAdminManager.isValidType(String type)
Validate that the value type is supported |
String[] |
ConfigAdminManager.listConfigurations(String filter)
|
String[] |
ConfigAdminManagerMBean.listConfigurations(String filter)
|
void |
UserManagerMBean.removeCredential(String key,
String username)
|
void |
UserManager.removeCredential(String key,
String username)
|
boolean |
UserManagerMBean.removeMember(String groupname,
String rolename)
|
boolean |
UserManager.removeMember(String groupname,
String rolename)
|
void |
UserManagerMBean.removeProperty(String key,
String rolename)
|
void |
UserManager.removeProperty(String key,
String rolename)
|
void |
ConfigAdminManager.removePropertyFromConfigurations(String filter,
String name)
Removes a property from all the configurations selected by an LDAP expression |
void |
ConfigAdminManagerMBean.removePropertyFromConfigurations(String filter,
String name)
Removes a property from all the configurations selected by an LDAP expression |
boolean |
UserManagerMBean.removeRole(String name)
|
boolean |
UserManager.removeRole(String name)
|
void |
ConfigurationDelegateMBean.setBundleLocation(String bundleLocation)
|
void |
ConfigurationDelegate.setBundleLocation(String bundleLocation)
|
void |
ConfigurationDelegateMBean.setProperty(String key,
String value,
String type)
|
void |
ConfigurationDelegate.setProperty(String key,
String value,
String type)
|
Uses of String in org.apache.felix.jmood.core |
---|
Methods in org.apache.felix.jmood.core that return String | |
---|---|
String |
ManagedServiceMBean.getBundle()
|
String |
ManagedService.getBundle()
|
String[] |
ManagedBundleMBean.getBundleDependencies()
|
String[] |
ManagedBundle.getBundleDependencies()
|
String[] |
ManagedBundleMBean.getExportedPackages()
|
String[] |
ManagedBundle.getExportedPackages()
|
String |
ManagedPackage.getExportingBundle()
|
String |
ManagedPackageMBean.getExportingBundle()
|
String[] |
ManagedBundleMBean.getFragments()
|
String[] |
ManagedBundle.getFragments()
|
String[] |
ManagedBundleMBean.getHosts()
|
String[] |
ManagedBundle.getHosts()
|
String[] |
ManagedBundleMBean.getImportedPackages()
|
String[] |
ManagedBundle.getImportedPackages()
|
String[] |
ManagedPackage.getImportingBundles()
|
String[] |
ManagedPackageMBean.getImportingBundles()
|
String |
ManagedPackage.getName()
|
String |
ManagedPackageMBean.getName()
|
String |
FrameworkMBean.getProperty(String key)
|
String |
Framework.getProperty(String key)
|
String[] |
ManagedBundleMBean.getRegisteredServices()
|
String[] |
ManagedBundle.getRegisteredServices()
|
String[] |
ManagedBundleMBean.getRequiringBundles()
|
String[] |
ManagedBundle.getRequiringBundles()
|
String[] |
ManagedServiceMBean.getServiceInterfaces()
|
String[] |
ManagedService.getServiceInterfaces()
|
String[] |
ManagedBundleMBean.getServicesInUse()
|
String[] |
ManagedBundle.getServicesInUse()
|
String |
ManagedBundleMBean.getState()
|
String |
ManagedBundle.getState()
|
String |
ManagedBundleMBean.getSymbolicName()
|
String |
ManagedBundle.getSymbolicName()
|
String[] |
ManagedServiceMBean.getUsingBundles()
|
String[] |
ManagedService.getUsingBundles()
|
String |
ManagedPackage.getVersion()
|
String |
ManagedPackageMBean.getVersion()
|
Methods in org.apache.felix.jmood.core with parameters of type String | |
---|---|
void |
CoreController.batchInstallBundle(String[] bundleLocations)
|
void |
CoreControllerMBean.batchInstallBundle(String[] bundleLocations)
|
void |
CoreController.batchSetBundleStartLevel(String[] bundleSymbolicNames,
int[] newlevels)
|
void |
CoreControllerMBean.batchSetBundleStartLevel(String[] bundleSymbolicNames,
int[] newlevels)
|
void |
CoreController.batchStartBundles(String[] bundleSymbolicNames)
|
void |
CoreControllerMBean.batchStartBundles(String[] bundleSymbolicNames)
|
void |
CoreController.batchStopBundles(String[] bundleSymbolicNames)
|
void |
CoreControllerMBean.batchStopBundles(String[] bundleSymbolicNames)
|
void |
CoreController.batchUpdateBundleFromUrl(String[] bundleSymbolicNames,
String[] urls)
|
void |
CoreController.batchUpdateBundleFromUrl(String[] bundleSymbolicNames,
String[] urls)
|
void |
CoreControllerMBean.batchUpdateBundleFromUrl(String[] bundleSymbolicNames,
String[] urls)
|
void |
CoreControllerMBean.batchUpdateBundleFromUrl(String[] bundleSymbolicNames,
String[] urls)
|
void |
CoreController.batchUpdateBundles(String[] bundleSymbolicNames)
|
void |
CoreControllerMBean.batchUpdateBundles(String[] bundleSymbolicNames)
|
String |
FrameworkMBean.getProperty(String key)
|
String |
Framework.getProperty(String key)
|
void |
CoreController.installBundle(String bundleLocation)
|
void |
CoreControllerMBean.installBundle(String bundleLocation)
|
void |
CoreController.refreshPackages(String[] bundleSymbolicNames)
|
void |
CoreControllerMBean.refreshPackages(String[] bundleSymbolicNames)
|
void |
CoreController.resolveBundles(String[] bundleSymbolicNames)
|
void |
CoreControllerMBean.resolveBundles(String[] bundleSymbolicNames)
|
void |
CoreController.setBundleStartLevel(String bundleSymbolicName,
int newlevel)
|
void |
CoreControllerMBean.setBundleStartLevel(String bundleSymbolicName,
int newlevel)
|
void |
CoreController.startBundle(String bundleSymbolicName)
|
void |
CoreControllerMBean.startBundle(String bundleSymbolicName)
|
void |
CoreController.stopBundle(String bundleSymbolicName)
|
void |
CoreControllerMBean.stopBundle(String bundleSymbolicName)
|
void |
CoreController.uninstallBundle(String bundleSymbolicName)
|
void |
CoreControllerMBean.uninstallBundle(String bundleSymbolicName)
|
void |
CoreController.updateBundle(String bundleSymbolicName)
|
void |
CoreControllerMBean.updateBundle(String bundleSymbolicName)
|
void |
CoreController.updateBundleFromUrl(String bundleSymbolicName,
String url)
|
void |
CoreControllerMBean.updateBundleFromUrl(String bundleSymbolicName,
String url)
|
void |
ManagedBundleMBean.updateFromUrl(String url)
|
void |
ManagedBundle.updateFromUrl(String url)
|
Constructors in org.apache.felix.jmood.core with parameters of type String | |
---|---|
BundleNotAvailableException(String message)
|
|
BundleNotAvailableException(String message,
Throwable cause)
|
|
NotImplementedException(String message)
|
|
NotImplementedException(String message,
Throwable cause)
|
|
ServiceNotAvailableException(String message)
|
|
ServiceNotAvailableException(String message,
Throwable cause)
|
Uses of String in org.apache.felix.jmood.core.instrumentation |
---|
Methods in org.apache.felix.jmood.core.instrumentation that return String | |
---|---|
String |
PackageInfo.getName()
|
String |
BundleInfo.getState()
|
String |
BundleInfo.getSymbolicName()
|
String |
PackageInfo.getVersion()
|
Methods in org.apache.felix.jmood.core.instrumentation with parameters of type String | |
---|---|
protected void |
PackageInfo.setName(String name)
|
protected void |
BundleInfo.setState(String state)
|
protected void |
BundleInfo.setSymbolicName(String symbolicName)
|
protected void |
PackageInfo.setVersion(String version)
|
Uses of String in org.apache.felix.jmood.utils |
---|
Fields in org.apache.felix.jmood.utils declared as String | |
---|---|
static String |
ObjectNames.ALL_CM_OBJECT
|
static String |
ObjectNames.ALLBUNDLES
|
static String |
ObjectNames.ALLPACKAGES
|
static String |
ObjectNames.ALLSERVICES
|
static String[] |
CompositeDataItemNames.AUTHORIZATION
|
static String |
ObjectNames.BUNDLE
|
static String[] |
CompositeDataItemNames.BUNDLE_EVENT
|
static String |
CompositeDataItemNames.BUNDLE_ID
|
static String |
CompositeDataItemNames.BUNDLE_LOCATION
|
static String |
CompositeDataItemNames.BYTEARRAY_VALUES
|
static String |
CompositeDataItemNames.CLASSNAME
|
static String |
ObjectNames.CM_OBJECT
|
static String |
ObjectNames.CM_SERVICE
|
static String |
ObjectNames.COMPENDIUM
|
static String |
ObjectNames.CORE
|
static String |
ObjectNames.CORE_CONTROLLER
|
static String |
CompositeDataItemNames.ENCODED_CREDENTIALS
|
static String |
CompositeDataItemNames.ENCODED_EXCEPTION
|
static String |
CompositeDataItemNames.ENCODED_ROLE
|
static String |
CompositeDataItemNames.ENCODED_SERVICE
|
static String |
CompositeDataItemNames.ENCODED_USER
|
static String |
CompositeDataItemNames.EVENT_TYPE
|
static String[] |
CompositeDataItemNames.EXCEPTION
|
static String |
CompositeDataItemNames.EXCEPTION_MESSAGE
|
static String |
CompositeDataItemNames.FILENAME
|
static String |
ObjectNames.FRAMEWORK
|
static String[] |
CompositeDataItemNames.FRAMEWORK_EVENT
|
static String[] |
CompositeDataItemNames.GROUP
|
static String |
CompositeDataItemNames.GROUP_MEMBERS
|
static String |
CompositeDataItemNames.GROUP_REQUIRED_MEMBERS
|
static String |
CompositeDataItemNames.IS_NATIVE_METHOD
|
static String |
CompositeDataItemNames.KEYS_FOR_BYTEARRAY_VALUES
|
static String |
CompositeDataItemNames.KEYS_FOR_STRING_VALUES
|
static String |
CompositeDataItemNames.LINE_NUMBER
|
static String[] |
CompositeDataItemNames.LOG_ENTRY
|
static String |
CompositeDataItemNames.LOG_LEVEL
|
static String |
CompositeDataItemNames.LOG_MESSAGE
|
static String |
ObjectNames.LOG_SERVICE
|
static String |
CompositeDataItemNames.LOG_TIME
|
static String |
CompositeDataItemNames.METHOD_NAME
|
static String |
CompositeDataItemNames.OBJECT_CLASS
|
static String |
ObjectNames.PACKAGE
package mbean object names also contain a version property to avoid InstanceAlreadyExistsException when two
versions of the same package co-exist. |
static String[] |
CompositeDataItemNames.ROLE
|
static String |
CompositeDataItemNames.ROLE_ENCODED_PROPERTIES
|
static String |
CompositeDataItemNames.ROLE_NAME
|
static String |
CompositeDataItemNames.ROLE_NAMES
|
static String[] |
CompositeDataItemNames.ROLE_PROPERTIES
|
static String |
CompositeDataItemNames.ROLE_TYPE
|
static String[] |
CompositeDataItemNames.SERVICE
|
static String |
ObjectNames.SERVICE
|
static String[] |
CompositeDataItemNames.SERVICE_EVENT
|
static String |
CompositeDataItemNames.STACK_TRACE
|
static String[] |
CompositeDataItemNames.STACK_TRACE_ELEMENT
|
static String |
CompositeDataItemNames.STRING_VALUES
|
static String |
ObjectNames.UA_SERVICE
|
static String[] |
CompositeDataItemNames.USER
|
static String[] |
CompositeDataItemNames.USER_CREDENTIALS
|
static String[] |
CompositeDataItemNames.USER_EVENT
|
static String |
CompositeDataItemNames.USER_NAME
|
Methods in org.apache.felix.jmood.utils that return String | |
---|---|
static String |
InstrumentationSupport.getPackageName(ExportedPackage pkg)
|
static String[] |
InstrumentationSupport.getPackageNames(ExportedPackage[] packages)
OSGi exported packages can be uniquely identified by the tuple (packageName, packageVersion). |
static String[] |
InstrumentationSupport.getServiceNames(ServiceReference[] services)
OSGi Services can be registered under more than one interface (objectClass in the spec). |
static String |
InstrumentationSupport.getState(int state)
|
static String |
InstrumentationSupport.getSymbolicName(Bundle bundle)
|
static String[] |
InstrumentationSupport.getSymbolicNames(Bundle[] bundles)
For each BundleInfo, this method returns the symbolic name String, which we define as the concatenation of the getSymbolicName of the Bundle interface and the bundle version as specified
in the bundle header. |
Methods in org.apache.felix.jmood.utils with parameters of type String | |
---|---|
static long |
InstrumentationSupport.getBundleId(String symbolicName,
AgentContext ac)
|
Uses of String in org.apache.felix.main |
---|
Fields in org.apache.felix.main declared as String | |
---|---|
static String |
AutoProcessor.AUTO_DEPLOY_ACTION_PROPERY
The property name used to specify auto-deploy actions. |
static String |
AutoProcessor.AUTO_DEPLOY_DIR_PROPERY
The property name used for the bundle directory. |
static String |
AutoProcessor.AUTO_DEPLOY_DIR_VALUE
The default name used for the bundle directory. |
static String |
AutoProcessor.AUTO_DEPLOY_INSTALL_VALUE
The name used for the auto-deploy install action. |
static String |
AutoProcessor.AUTO_DEPLOY_START_VALUE
The name used for the auto-deploy start action. |
static String |
AutoProcessor.AUTO_DEPLOY_STARTLEVEL_PROPERY
The property name used to specify auto-deploy start level. |
static String |
AutoProcessor.AUTO_DEPLOY_UNINSTALL_VALUE
The name used for the auto-deploy uninstall action. |
static String |
AutoProcessor.AUTO_DEPLOY_UPDATE_VALUE
The name used for the auto-deploy update action. |
static String |
AutoProcessor.AUTO_INSTALL_PROP
The property name prefix for the launcher's auto-install property. |
static String |
AutoProcessor.AUTO_START_PROP
The property name prefix for the launcher's auto-start property. |
static String |
Main.BUNDLE_DIR_SWITCH
Switch for specifying bundle directory. |
static String |
Main.CONFIG_DIRECTORY
Name of the configuration directory. |
static String |
Main.CONFIG_PROPERTIES_FILE_VALUE
The default name used for the configuration properties file. |
static String |
Main.CONFIG_PROPERTIES_PROP
The property name used to specify an URL to the configuration property file to be used for the created the framework instance. |
static String |
Main.SHUTDOWN_HOOK_PROP
The property name used to specify whether the launcher should install a shutdown hook. |
static String |
Main.SYSTEM_PROPERTIES_FILE_VALUE
The default name used for the system properties file. |
static String |
Main.SYSTEM_PROPERTIES_PROP
The property name used to specify an URL to the system property file. |
Methods in org.apache.felix.main with parameters of type String | |
---|---|
static void |
Main.main(String[] args)
This method performs the main task of constructing an framework instance and starting its execution. |
Uses of String in org.apache.felix.metatype |
---|
Fields in org.apache.felix.metatype declared as String | |
---|---|
static String |
AD.VALIDATE_GREATER_THAN_MAXIMUM
The message returned from the AD.validate(String) method if the
value is greater than the specified maximum value
(value is "%greater than maximum"). |
static String |
AD.VALIDATE_LESS_THAN_MINIMUM
The message returned from the AD.validate(String) method if the
value is less than the specified minimum value
(value is "%less than minimum"). |
static String |
AD.VALIDATE_NOT_A_VALID_OPTION
The message returned from the AD.validate(String) method if the
value is not any of the specified option values
(value is "%not a valid option"). |
Methods in org.apache.felix.metatype that return String | |
---|---|
String |
Attribute.getAdRef()
|
String |
Designate.getBundleLocation()
|
String[] |
Attribute.getContent()
|
String[] |
AD.getDefaultValue()
|
String |
AD.getDescription()
|
String |
OCD.getDescription()
|
String |
Designate.getFactoryPid()
|
String |
AD.getID()
|
String |
OCD.getID()
|
String |
MetaData.getLocalePrefix()
|
String[] |
DefaultMetaTypeProvider.getLocales()
|
String |
AD.getMax()
|
String |
AD.getMin()
|
String |
AD.getName()
|
String |
OCD.getName()
|
String |
DesignateObject.getOcdRef()
|
String[] |
AD.getOptionLabels()
|
String[] |
AD.getOptionValues()
|
String |
Designate.getPid()
|
static String[] |
AD.splitList(String listString)
|
String |
AD.validate(String valueString)
Implements validation of the valueString and returns an
indication of the success:
null
If neither a minimal value nor a
maximal value nor any
optional values are defined in this
instance, validation cannot be performed. |
Methods in org.apache.felix.metatype with parameters of type String | |
---|---|
void |
Attribute.addContent(String[] added)
|
void |
Attribute.addContent(String content,
boolean split)
|
void |
OCD.addIcon(Integer size,
String icon)
|
protected Comparable |
AD.convertToType(String value)
|
Designate |
DefaultMetaTypeProvider.getDesignate(String pid)
|
ObjectClassDefinition |
DefaultMetaTypeProvider.getObjectClassDefinition(String id,
String locale)
|
void |
Attribute.setAdRef(String adRef)
|
void |
Designate.setBundleLocation(String bundleLocation)
|
void |
AD.setDefaultValue(String defaultValue)
|
void |
AD.setDefaultValue(String[] defaultValue)
|
void |
AD.setDescription(String description)
|
void |
OCD.setDescription(String description)
|
void |
Designate.setFactoryPid(String factoryPid)
|
void |
OCD.setId(String id)
|
void |
AD.setID(String id)
|
void |
MetaData.setLocalePrefix(String localePrefix)
|
void |
AD.setMax(String max)
|
void |
AD.setMin(String min)
|
void |
AD.setName(String name)
|
void |
OCD.setName(String name)
|
void |
DesignateObject.setOcdRef(String ocdRef)
|
void |
Designate.setPid(String pid)
|
void |
AD.setType(String typeString)
|
static String[] |
AD.splitList(String listString)
|
static int |
AD.toType(String typeString)
|
String |
AD.validate(String valueString)
Implements validation of the valueString and returns an
indication of the success:
null
If neither a minimal value nor a
maximal value nor any
optional values are defined in this
instance, validation cannot be performed. |
Uses of String in org.apache.felix.metatype.internal |
---|
Fields in org.apache.felix.metatype.internal declared as String | |
---|---|
static String |
MetaTypeInformationImpl.SERVICE_FACTORYPID
|
Methods in org.apache.felix.metatype.internal that return String | |
---|---|
String |
LocalizedObjectClassDefinition.getDescription()
|
String[] |
MetaTypeInformationImpl.getFactoryPids()
|
String |
LocalizedObjectClassDefinition.getID()
|
String[] |
MetaTypeInformationImpl.getLocales()
|
String |
LocalizedObjectClassDefinition.getName()
|
String[] |
MetaTypeInformationImpl.getPids()
|
Methods in org.apache.felix.metatype.internal with parameters of type String | |
---|---|
protected void |
MetaTypeInformationImpl.addFactoryPids(String[] factoryPids)
|
protected void |
MetaTypeInformationImpl.addMetaTypeProvider(String key,
MetaTypeProvider mtp)
|
protected void |
MetaTypeInformationImpl.addPids(String[] pids)
|
ObjectClassDefinition |
MetaTypeInformationImpl.getObjectClassDefinition(String id,
String locale)
|
static void |
Activator.log(int level,
String message)
|
static void |
Activator.log(int level,
String message,
Throwable exception)
|
static void |
Activator.log(ServiceReference sr,
int level,
String message)
|
static void |
Activator.log(ServiceReference sr,
int level,
String message,
Throwable exception)
|
protected void |
MetaTypeInformationImpl.removeFactoryPid(String factoryPid)
|
protected MetaTypeProvider |
MetaTypeInformationImpl.removeMetaTypeProvider(String key)
|
protected void |
MetaTypeInformationImpl.removePid(String pid)
|
Uses of String in org.apache.felix.metatype.internal.l10n |
---|
Methods in org.apache.felix.metatype.internal.l10n that return String | |
---|---|
String |
Resources.getLocale()
|
String |
Resources.getResource(String resourceName)
|
Methods in org.apache.felix.metatype.internal.l10n with parameters of type String | |
---|---|
String |
Resources.getResource(String resourceName)
|
static Resources |
BundleResources.getResources(Bundle bundle,
String basename,
String locale)
|
Uses of String in org.apache.felix.mosgi.console.component |
---|
Fields in org.apache.felix.mosgi.console.component declared as String | |
---|---|
static String |
JtreeCellRenderer.UNKNOWN_DATE
|
static String |
JtreeCellRenderer.UNKNOWN_TIME
|
Methods in org.apache.felix.mosgi.console.component that return String | |
---|---|
String |
MyTree.convertValueToText(Object value,
boolean selected,
boolean expanded,
boolean leaf,
int row,
boolean hasFocus)
|
protected String |
RemoteLogger_jtree.getLogLvl(DefaultMutableTreeNode dmtn)
|
String |
RemoteLogger_jtable.getName()
|
String |
RemoteLogger_jtree.getName()
|
String |
RemoteLogger_jtable.pluginLocation()
|
String |
RemoteLogger_jtree.pluginLocation()
|
Uses of String in org.apache.felix.mosgi.console.gui |
---|
Fields in org.apache.felix.mosgi.console.gui declared as String | |
---|---|
protected static String |
NodesTree.TOP_NAME
|
Methods in org.apache.felix.mosgi.console.gui that return String | |
---|---|
String |
Gateway.getNickname()
|
protected static String |
NodesTree.getProtocolPackageProvider(String protoName)
|
String |
Gateway.getToolTipText()
|
Methods in org.apache.felix.mosgi.console.gui with parameters of type String | |
---|---|
void |
Activator.firePropertyChangedEvent(String name,
Object oldValue,
Object newValue)
|
protected static String |
NodesTree.getProtocolPackageProvider(String protoName)
|
Uses of String in org.apache.felix.mosgi.console.ifc |
---|
Fields in org.apache.felix.mosgi.console.ifc declared as String | |
---|---|
static String |
CommonPlugin.COMMON_PLUGIN_ADDED
|
static String |
CommonPlugin.COMMON_PLUGIN_REMOVED
|
static String |
Plugin.EMPTY_NODE
|
static String |
Plugin.NEW_NODE_CONNECTION
|
static String |
Plugin.NEW_NODE_READY
|
static String |
Plugin.NEW_NODE_SELECTED
|
static String |
Plugin.PLUGIN_ACTIVATED
|
static String |
Plugin.PLUGIN_ADDED
|
static String |
Plugin.PLUGIN_REMOVED
|
Methods in org.apache.felix.mosgi.console.ifc that return String | |
---|---|
String |
TabIfc.getBundleName()
|
String |
Plugin.getName()
|
String |
Plugin.pluginLocation()
|
Uses of String in org.apache.felix.mosgi.jmx.agent |
---|
Fields in org.apache.felix.mosgi.jmx.agent declared as String | |
---|---|
static String |
Constants.OBJECTNAME
|
Uses of String in org.apache.felix.mosgi.jmx.agent.mx4j |
---|
Fields in org.apache.felix.mosgi.jmx.agent.mx4j declared as String | |
---|---|
static String |
MX4JSystemKeys.MX4J_LOG_PRIORITY
Specifies the level of logging performed by the MX4J JMX implementation. |
static String |
MX4JSystemKeys.MX4J_LOG_PROTOTYPE
Specifies a full qualified class name of a class extending the mx4j.log.Logger class, that
will be used as prototype for new loggers created. |
static String |
MX4JSystemKeys.MX4J_MBEAN_INVOKER
Specifies a full qualified class name of a class implementing the mx4j.server.MBeanInvoker interface,
that will be used as invoker for standard MBeans. |
static String |
MX4JSystemKeys.MX4J_MBEANSERVER_CLASSLOADER_REPOSITORY
Specifies a full qualified class name of a class extending the mx4j.server.ModifiableClassLoaderRepository
class, that will be used by the MBeanServer to store ClassLoader MBeans that wants to be registered in
the MBeanServer's ClassLoaderRepository. |
static String |
MX4JSystemKeys.MX4J_MBEANSERVER_REPOSITORY
Specifies a full qualified class name of a class implementing the mx4j.server.MBeanRepository
interface, that will be used by the MBeanServer to store information about registered MBeans. |
static String |
MX4JSystemKeys.MX4J_STRICT_MBEAN_INTERFACE
When this property is set to false (as specified by Boolean.valueOf(String) ), the MX4J
JMX implementation will accept as MBean interfaces of standard MBeans also interfaces defined in
different packages or as nested classes of the MBean class. |
static String |
MX4JSystemKeys.MX4J_UNCHECKED_IDENTIFIERS
From JMX 1.2, names for attributes and operations, as well as their (return) types, must be valid Java identifiers, as specified by Character.isJavaIdentifierStart(char) and Character.isJavaIdentifierPart(char) . |
Methods in org.apache.felix.mosgi.jmx.agent.mx4j that return String | |
---|---|
String |
MBeanDescriptionAdapter.getAttributeDescription(String attribute)
|
String |
MBeanDescription.getAttributeDescription(String attribute)
Should return the description for the specified attribute. |
String |
MBeanDescriptionAdapter.getConstructorDescription(Constructor ctor)
|
String |
MBeanDescription.getConstructorDescription(Constructor ctor)
Should return the description for the given constructor of the MBean. |
String |
MBeanDescriptionAdapter.getConstructorParameterDescription(Constructor ctor,
int index)
|
String |
MBeanDescription.getConstructorParameterDescription(Constructor ctor,
int index)
Should return the description for the constructor's parameter for the given constructor and parameter index. |
String |
MBeanDescriptionAdapter.getConstructorParameterName(Constructor ctor,
int index)
|
String |
MBeanDescription.getConstructorParameterName(Constructor ctor,
int index)
Should return the name of the constructor's parameter for the given constructor and parameter index. |
protected String |
AbstractDynamicMBean.getMBeanClassName()
To be overridden to return metadata information about the class name of this MBean; by default returns this class' name. |
String |
MBeanDescriptionAdapter.getMBeanDescription()
|
String |
MBeanDescription.getMBeanDescription()
Should return the description of the MBean. |
protected String |
AbstractDynamicMBean.getMBeanDescription()
To be overridden to return metadata information about the description of this MBean. |
String |
MBeanDescriptionAdapter.getOperationDescription(Method operation)
|
String |
MBeanDescription.getOperationDescription(Method operation)
Should return the description for the specified operation. |
String |
MBeanDescriptionAdapter.getOperationParameterDescription(Method method,
int index)
|
String |
MBeanDescription.getOperationParameterDescription(Method method,
int index)
Should return the description for the operations's parameter for the given operation and parameter index. |
String |
MBeanDescriptionAdapter.getOperationParameterName(Method method,
int index)
|
String |
MBeanDescription.getOperationParameterName(Method method,
int index)
Should return the name of the operation's parameter for the given operation and parameter index. |
Methods in org.apache.felix.mosgi.jmx.agent.mx4j with parameters of type String | |
---|---|
protected Method |
AbstractDynamicMBean.findMethod(Class cls,
String name,
Class[] params)
Returns the (public) method with the given name and signature on the given class. |
Object |
AbstractDynamicMBean.getAttribute(String attribute)
Returns the value of the manageable attribute, as specified by the DynamicMBean interface. |
String |
MBeanDescriptionAdapter.getAttributeDescription(String attribute)
|
String |
MBeanDescription.getAttributeDescription(String attribute)
Should return the description for the specified attribute. |
AttributeList |
AbstractDynamicMBean.getAttributes(String[] attributes)
Returns the manageable attributes, as specified by the DynamicMBean interface. |
protected Object |
AbstractDynamicMBean.invoke(Object resource,
String name,
Class[] params,
Object[] args)
Looks up the method to call on given resource and invokes it. |
protected Object |
AbstractDynamicMBean.invoke(String name,
Class[] params,
Object[] args)
Deprecated. Replaced by AbstractDynamicMBean.invoke(Object,String,Class[],Object[]) . The resource passed is the resource as set by AbstractDynamicMBean.setResource(java.lang.Object) or - if it is null - 'this' instance. This method is deprecated because it is not thread safe. |
Object |
AbstractDynamicMBean.invoke(String method,
Object[] arguments,
String[] params)
Returns the value of the manageable operation as specified by the DynamicMBean interface |
Object |
AbstractDynamicMBean.invoke(String method,
Object[] arguments,
String[] params)
Returns the value of the manageable operation as specified by the DynamicMBean interface |
Constructors in org.apache.felix.mosgi.jmx.agent.mx4j with parameters of type String | |
---|---|
ImplementationException(String message)
|
Uses of String in org.apache.felix.mosgi.jmx.agent.mx4j.loading |
---|
Fields in org.apache.felix.mosgi.jmx.agent.mx4j.loading declared as String | |
---|---|
static String |
MLetParser.ARCHIVE_ATTR
|
static String |
MLetParser.ARG_TAG
|
static String |
MLetParser.CLOSE_BRACKET
|
static String |
MLetParser.CLOSE_COMMENT
|
static String |
MLetParser.CODE_ATTR
|
static String |
MLetParser.CODEBASE_ATTR
|
static String |
MLetParser.MLET_TAG
|
static String |
MLetParser.NAME_ATTR
|
static String |
MLetParser.OBJECT_ATTR
|
static String |
MLetParser.OPEN_BRACKET
|
static String |
MLetParser.OPEN_COMMENT
|
static String |
MLetParser.TYPE_ATTR
|
static String |
MLetParser.VALUE_ATTR
|
static String |
MLetParser.VERSION_ATTR
|
Methods in org.apache.felix.mosgi.jmx.agent.mx4j.loading that return String | |
---|---|
String |
MLetTag.getArchive()
|
String |
MLetTag.getCode()
|
String |
MLetTag.getCodeBase()
|
String |
MLetTag.getObject()
|
String[] |
MLetTag.getSignature()
|
String |
MLetTag.getVersion()
|
String[] |
MLetTag.parseArchive()
Returns the jars file names specified in the ARCHIVE attribute of the MLet tag. |
Methods in org.apache.felix.mosgi.jmx.agent.mx4j.loading with parameters of type String | |
---|---|
URL |
MLetTag.createArchiveURL(URL codebase,
String archive)
Returns the URL for the given archive file name using the provided URL as a codebase, or null if the URL cannot be created. |
List |
MLetParser.parse(String content)
Parses the given content, that must contains a valid MLet file. |
protected Class |
ClassLoaderObjectInputStream.resolveProxyClass(String[] interfaces)
|
Constructors in org.apache.felix.mosgi.jmx.agent.mx4j.loading with parameters of type String | |
---|---|
MLetParseException(String message)
|
Uses of String in org.apache.felix.mosgi.jmx.agent.mx4j.log |
---|
Methods in org.apache.felix.mosgi.jmx.agent.mx4j.log that return String | |
---|---|
String |
Logger.getCategory()
|
Methods in org.apache.felix.mosgi.jmx.agent.mx4j.log with parameters of type String | |
---|---|
static Logger |
Log.getLogger(String category)
Returns a new instance of a Logger associated with the given category ;
if Log.redirectTo(org.apache.felix.mosgi.jmx.agent.mx4j.log.Logger) has been called then a new instance of the prototype Logger, associated with the given
category |
static void |
Log.redirectTo(Logger prototype,
String category)
Tells to the log service to use the given delegate Logger to perform logging for the given
category (that cannot be null). |
protected void |
Logger.setCategory(String category)
|
Uses of String in org.apache.felix.mosgi.jmx.agent.mx4j.server |
---|
Methods in org.apache.felix.mosgi.jmx.agent.mx4j.server that return String | |
---|---|
String |
MX4JMBeanServer.getDefaultDomain()
|
String[] |
MX4JMBeanServer.getDomains()
|
String |
MX4JMBeanServerDelegate.getImplementationName()
|
String |
MX4JMBeanServerDelegate.getImplementationVendor()
|
String |
MX4JMBeanServerDelegate.getImplementationVersion()
|
Methods in org.apache.felix.mosgi.jmx.agent.mx4j.server with parameters of type String | |
---|---|
ObjectInstance |
MX4JMBeanServer.createMBean(String className,
ObjectName objectName)
|
ObjectInstance |
MX4JMBeanServer.createMBean(String className,
ObjectName objectName,
Object[] args,
String[] parameters)
|
ObjectInstance |
MX4JMBeanServer.createMBean(String className,
ObjectName objectName,
Object[] args,
String[] parameters)
|
ObjectInstance |
MX4JMBeanServer.createMBean(String className,
ObjectName objectName,
ObjectName loaderName)
|
ObjectInstance |
MX4JMBeanServer.createMBean(String className,
ObjectName objectName,
ObjectName loaderName,
Object[] args,
String[] parameters)
|
ObjectInstance |
MX4JMBeanServer.createMBean(String className,
ObjectName objectName,
ObjectName loaderName,
Object[] args,
String[] parameters)
|
ObjectInputStream |
MX4JMBeanServer.deserialize(String className,
byte[] bytes)
|
ObjectInputStream |
MX4JMBeanServer.deserialize(String className,
ObjectName loaderName,
byte[] bytes)
|
Object |
MBeanInvoker.getAttribute(MBeanMetaData metadata,
String attribute)
Returns the value of the specified attribute. |
Object |
ReflectedMBeanInvoker.getAttribute(MBeanMetaData metadata,
String attribute)
|
Object |
MX4JMBeanServer.getAttribute(ObjectName objectName,
String attribute)
|
AttributeList |
MX4JMBeanServer.getAttributes(ObjectName objectName,
String[] attributes)
|
Object |
MX4JMBeanServer.instantiate(String className)
|
Object |
MX4JMBeanServer.instantiate(String className,
Object[] args,
String[] parameters)
|
Object |
MX4JMBeanServer.instantiate(String className,
Object[] args,
String[] parameters)
|
Object |
MX4JMBeanServer.instantiate(String className,
ObjectName loaderName)
|
Object |
MX4JMBeanServer.instantiate(String className,
ObjectName loaderName,
Object[] args,
String[] parameters)
|
Object |
MX4JMBeanServer.instantiate(String className,
ObjectName loaderName,
Object[] args,
String[] parameters)
|
Object |
MBeanInvoker.invoke(MBeanMetaData metadata,
String method,
String[] signature,
Object[] args)
Invokes the specified operation on the MBean instance |
Object |
MBeanInvoker.invoke(MBeanMetaData metadata,
String method,
String[] signature,
Object[] args)
Invokes the specified operation on the MBean instance |
Object |
ReflectedMBeanInvoker.invoke(MBeanMetaData metadata,
String method,
String[] params,
Object[] args)
|
Object |
ReflectedMBeanInvoker.invoke(MBeanMetaData metadata,
String method,
String[] params,
Object[] args)
|
Object |
MX4JMBeanServer.invoke(ObjectName objectName,
String methodName,
Object[] args,
String[] parameters)
|
Object |
MX4JMBeanServer.invoke(ObjectName objectName,
String methodName,
Object[] args,
String[] parameters)
|
protected Object |
ReflectedMBeanInvoker.invokeImpl(MBeanMetaData metadata,
String method,
String[] signature,
Object[] args)
|
protected Object |
ReflectedMBeanInvoker.invokeImpl(MBeanMetaData metadata,
String method,
String[] signature,
Object[] args)
|
boolean |
MX4JMBeanServer.isInstanceOf(ObjectName objectName,
String className)
|
Class |
DefaultClassLoaderRepository.loadClass(String className)
|
Class |
DefaultClassLoaderRepository.loadClassBefore(ClassLoader loader,
String className)
|
Class |
DefaultClassLoaderRepository.loadClassWithout(ClassLoader loader,
String className)
|
MBeanServer |
MX4JMBeanServerBuilder.newMBeanServer(String defaultDomain,
MBeanServer outer,
MBeanServerDelegate delegate)
Returns a new MX4JMBeanServer instance. |
Constructors in org.apache.felix.mosgi.jmx.agent.mx4j.server with parameters of type String | |
---|---|
MX4JMBeanServer(String defaultDomain,
MBeanServer outer,
MBeanServerDelegate delegate)
Create a new MBeanServer implementation with the specified default domain. |
Uses of String in org.apache.felix.mosgi.jmx.agent.mx4j.server.interceptor |
---|
Fields in org.apache.felix.mosgi.jmx.agent.mx4j.server.interceptor declared as String | |
---|---|
static String |
MBeanServerInterceptorConfigurator.OBJECT_NAME
|
Methods in org.apache.felix.mosgi.jmx.agent.mx4j.server.interceptor that return String | |
---|---|
String |
MBeanServerInterceptor.getType()
A concise string that tells the type of this interceptor |
String |
InvokerMBeanServerInterceptorMBean.getType()
Returns the type of this interceptor |
abstract String |
DefaultMBeanServerInterceptor.getType()
Returns the type of this interceptor |
String |
DefaultMBeanServerInterceptorMBean.getType()
Returns the type of this interceptor |
String |
SecurityMBeanServerInterceptorMBean.getType()
Returns the type of this interceptor |
String |
ContextClassLoaderMBeanServerInterceptor.getType()
|
String |
NotificationListenerMBeanServerInterceptor.getType()
|
String |
InvokerMBeanServerInterceptor.getType()
Returns the type of this interceptor |
String |
SecurityMBeanServerInterceptor.getType()
|
Methods in org.apache.felix.mosgi.jmx.agent.mx4j.server.interceptor with parameters of type String | |
---|---|
Object |
MBeanServerInterceptor.getAttribute(MBeanMetaData metadata,
String attribute)
Gets the specified attribute value from the MBean instance. |
Object |
DefaultMBeanServerInterceptor.getAttribute(MBeanMetaData metadata,
String attribute)
|
Object |
ContextClassLoaderMBeanServerInterceptor.getAttribute(MBeanMetaData metadata,
String attribute)
|
Object |
InvokerMBeanServerInterceptor.getAttribute(MBeanMetaData metadata,
String attribute)
|
Object |
SecurityMBeanServerInterceptor.getAttribute(MBeanMetaData metadata,
String attribute)
|
AttributeList |
MBeanServerInterceptor.getAttributes(MBeanMetaData metadata,
String[] attributes)
Gets the specified attributes values from the MBean instance. |
AttributeList |
DefaultMBeanServerInterceptor.getAttributes(MBeanMetaData metadata,
String[] attributes)
|
AttributeList |
ContextClassLoaderMBeanServerInterceptor.getAttributes(MBeanMetaData metadata,
String[] attributes)
|
AttributeList |
InvokerMBeanServerInterceptor.getAttributes(MBeanMetaData metadata,
String[] attributes)
|
AttributeList |
SecurityMBeanServerInterceptor.getAttributes(MBeanMetaData metadata,
String[] attributes)
|
void |
MBeanServerInterceptor.instantiate(MBeanMetaData metadata,
String className,
String[] params,
Object[] args)
Instantiate the given className passing the given arguments to the constructor with the given signature |
void |
MBeanServerInterceptor.instantiate(MBeanMetaData metadata,
String className,
String[] params,
Object[] args)
Instantiate the given className passing the given arguments to the constructor with the given signature |
void |
DefaultMBeanServerInterceptor.instantiate(MBeanMetaData metadata,
String className,
String[] params,
Object[] args)
|
void |
DefaultMBeanServerInterceptor.instantiate(MBeanMetaData metadata,
String className,
String[] params,
Object[] args)
|
void |
ContextClassLoaderMBeanServerInterceptor.instantiate(MBeanMetaData metadata,
String className,
String[] params,
Object[] args)
|
void |
ContextClassLoaderMBeanServerInterceptor.instantiate(MBeanMetaData metadata,
String className,
String[] params,
Object[] args)
|
void |
InvokerMBeanServerInterceptor.instantiate(MBeanMetaData metadata,
String className,
String[] params,
Object[] args)
|
void |
InvokerMBeanServerInterceptor.instantiate(MBeanMetaData metadata,
String className,
String[] params,
Object[] args)
|
void |
SecurityMBeanServerInterceptor.instantiate(MBeanMetaData metadata,
String className,
String[] params,
Object[] args)
|
void |
SecurityMBeanServerInterceptor.instantiate(MBeanMetaData metadata,
String className,
String[] params,
Object[] args)
|
Object |
MBeanServerInterceptor.invoke(MBeanMetaData metadata,
String method,
String[] params,
Object[] args)
Invokes the specified MBean operation on the MBean instance |
Object |
MBeanServerInterceptor.invoke(MBeanMetaData metadata,
String method,
String[] params,
Object[] args)
Invokes the specified MBean operation on the MBean instance |
Object |
DefaultMBeanServerInterceptor.invoke(MBeanMetaData metadata,
String method,
String[] params,
Object[] args)
|
Object |
DefaultMBeanServerInterceptor.invoke(MBeanMetaData metadata,
String method,
String[] params,
Object[] args)
|
Object |
ContextClassLoaderMBeanServerInterceptor.invoke(MBeanMetaData metadata,
String method,
String[] params,
Object[] args)
|
Object |
ContextClassLoaderMBeanServerInterceptor.invoke(MBeanMetaData metadata,
String method,
String[] params,
Object[] args)
|
Object |
InvokerMBeanServerInterceptor.invoke(MBeanMetaData metadata,
String method,
String[] params,
Object[] args)
|
Object |
InvokerMBeanServerInterceptor.invoke(MBeanMetaData metadata,
String method,
String[] params,
Object[] args)
|
Object |
SecurityMBeanServerInterceptor.invoke(MBeanMetaData metadata,
String method,
String[] params,
Object[] args)
|
Object |
SecurityMBeanServerInterceptor.invoke(MBeanMetaData metadata,
String method,
String[] params,
Object[] args)
|
Uses of String in org.apache.felix.mosgi.jmx.agent.mx4j.util |
---|
Methods in org.apache.felix.mosgi.jmx.agent.mx4j.util with parameters of type String | |
---|---|
Object |
MethodTernaryTree.get(String methodName,
String[] signature)
Returns the method information given the method name and its signature. |
Object |
MethodTernaryTree.get(String methodName,
String[] signature)
Returns the method information given the method name and its signature. |
static Class |
Utils.loadClass(ClassLoader loader,
String name)
This methods load a class given the classloader and the name of the class, and work for extended names of primitive types. |
static Class[] |
Utils.loadClasses(ClassLoader loader,
String[] names)
Returns the classes whose names are specified by the names argument, loaded with the
specified classloader. |
void |
MethodTernaryTree.put(String methodName,
String[] signature,
Object information)
Inserts in this TernaryTree the given method information, using as key the method name and its signature |
void |
MethodTernaryTree.put(String methodName,
String[] signature,
Object information)
Inserts in this TernaryTree the given method information, using as key the method name and its signature |
static boolean |
Utils.wildcardMatch(String pattern,
String string)
|
Uses of String in org.apache.felix.mosgi.jmx.httpconnector.mx4j.tools.adaptor |
---|
Methods in org.apache.felix.mosgi.jmx.httpconnector.mx4j.tools.adaptor with parameters of type String | |
---|---|
ServerSocket |
AdaptorServerSocketFactory.createServerSocket(int port,
int backlog,
String host)
Creates a new ServerSocket on the specified port, with the specified backlog and on the given host. |
ServerSocket |
PlainAdaptorServerSocketFactory.createServerSocket(int port,
int backlog,
String host)
|
Uses of String in org.apache.felix.mosgi.jmx.httpconnector.mx4j.tools.adaptor.http |
---|
Fields in org.apache.felix.mosgi.jmx.httpconnector.mx4j.tools.adaptor.http declared as String | |
---|---|
static String |
HttpConstants.HTTP_VERSION
HTTP implemented version |
static String |
HttpConstants.METHOD_GET
Get method header |
static String |
HttpConstants.METHOD_POST
Post method header |
static String |
HttpConstants.SERVER_INFO
Server info header |
Methods in org.apache.felix.mosgi.jmx.httpconnector.mx4j.tools.adaptor.http that return String | |
---|---|
static String |
HttpUtil.canonicalizePath(String path)
Makes a path canonical |
String |
HttpAdaptor.getAuthenticationMethod()
Authentication Method |
String |
HttpAdaptorMBean.getAuthenticationMethod()
Authentication Method |
static String |
HttpUtil.getCodeMessage(int code)
Gets a message apropriate for a give HTTP code |
String |
XSLTProcessor.getDefaultPage()
|
String |
XSLTProcessorMBean.getDefaultPage()
Returns the default start page |
String |
XSLTProcessor.getFile()
|
String |
XSLTProcessorMBean.getFile()
Returns the jar/zip file or the directory where XSL files are loaded |
String |
HttpInputStream.getHeader(String name)
Returns a given header by name, assumes lower case |
String |
HttpAdaptor.getHost()
Return the host name the server will be listening to. |
String |
HttpAdaptorMBean.getHost()
Return the host name the server will be listening to. |
String |
HttpInputStream.getMethod()
Returns the method of the request |
String |
DefaultProcessor.getName()
|
String |
ProcessorMBean.getName()
|
String |
XSLTProcessor.getName()
|
String |
HttpInputStream.getPath()
Returns the path of the request |
String |
XSLTProcessor.getPathInJar()
|
String |
XSLTProcessorMBean.getPathInJar()
Returns the path of the XSL templates inside a jar file. |
String |
HttpInputStream.getQueryString()
Returns the query string |
String |
HttpInputStream.getVariable(String name)
Returns one variable value. |
String[] |
HttpInputStream.getVariableValues(String name)
Returns one variable values. |
String |
HttpAdaptor.getVersion()
Gets the HttpAdaptor version |
String |
HttpAdaptorMBean.getVersion()
Gets the HttpAdaptor version |
protected String |
DefaultProcessor.normalize(String s)
Normalizes the given string. |
String |
DefaultProcessor.notFoundElement(String path,
HttpOutputStream out,
HttpInputStream in)
|
String |
ProcessorMBean.notFoundElement(String path,
HttpOutputStream out,
HttpInputStream in)
Let the processor load internally a not found element. |
String |
XSLTProcessor.notFoundElement(String path,
HttpOutputStream out,
HttpInputStream in)
|
String |
DefaultProcessor.preProcess(String path)
|
String |
ProcessorMBean.preProcess(String path)
Preprocess a path and return a replacement path. |
protected String |
HttpAdaptor.preProcess(String path)
|
String |
XSLTProcessor.preProcess(String path)
|
String |
HttpInputStream.readLine()
Reads an HTTP line |
Methods in org.apache.felix.mosgi.jmx.httpconnector.mx4j.tools.adaptor.http with parameters of type String | |
---|---|
void |
HttpAdaptor.addAuthorization(String username,
String password)
Adds an authorization pair as username/password |
void |
HttpAdaptorMBean.addAuthorization(String username,
String password)
Adds an authorization pair as username/password |
void |
HttpAdaptor.addCommandProcessor(String path,
HttpCommandProcessor processor)
Adds a command processor object |
void |
HttpAdaptorMBean.addCommandProcessor(String path,
HttpCommandProcessor processor)
Adds a command processor object |
void |
HttpAdaptor.addCommandProcessor(String path,
String processorClass)
Adds a command processor object by class |
void |
HttpAdaptorMBean.addCommandProcessor(String path,
String processorClass)
Adds a command processor object by class |
void |
XSLTProcessor.addMimeType(String extension,
String type)
|
void |
XSLTProcessorMBean.addMimeType(String extension,
String type)
Maps a given extension with a specified MIME type |
static boolean |
HttpUtil.booleanVariableValue(HttpInputStream in,
String variable,
boolean defaultValue)
Returns whether a boolean variable is in the variables. |
protected static boolean |
CommandProcessorUtil.canCreateParameterValue(String parameterType)
Checks if the given type is primitive of can be initialized from String. This is done by trying to load the class and checking if there is a public String only constructor. |
static String |
HttpUtil.canonicalizePath(String path)
Makes a path canonical |
protected static Object |
CommandProcessorUtil.createParameterValue(String parameterType,
String parameterValue)
Creates a parameter object of the given type containing a given value. |
protected Transformer |
XSLTProcessor.createTransformer(String path)
|
protected void |
HttpAdaptor.findUnknownElement(String path,
HttpOutputStream out,
HttpInputStream in)
|
String |
HttpInputStream.getHeader(String name)
Returns a given header by name, assumes lower case |
protected InputStream |
XSLTProcessor.getInputStream(String path)
|
protected HttpCommandProcessor |
HttpAdaptor.getProcessor(String path)
|
String |
HttpInputStream.getVariable(String name)
Returns one variable value. |
String[] |
HttpInputStream.getVariableValues(String name)
Returns one variable values. |
protected String |
DefaultProcessor.normalize(String s)
Normalizes the given string. |
String |
DefaultProcessor.notFoundElement(String path,
HttpOutputStream out,
HttpInputStream in)
|
String |
ProcessorMBean.notFoundElement(String path,
HttpOutputStream out,
HttpInputStream in)
Let the processor load internally a not found element. |
String |
XSLTProcessor.notFoundElement(String path,
HttpOutputStream out,
HttpInputStream in)
|
protected void |
HttpInputStream.parseMethod(String method)
Parses the connection method. |
protected void |
HttpInputStream.parseRequest(String request)
Parses the request |
protected void |
HttpInputStream.parseVersion(String verStr)
Parses the request HttpConstants version |
String |
DefaultProcessor.preProcess(String path)
|
String |
ProcessorMBean.preProcess(String path)
Preprocess a path and return a replacement path. |
protected String |
HttpAdaptor.preProcess(String path)
|
String |
XSLTProcessor.preProcess(String path)
|
void |
HttpAdaptor.removeCommandProcessor(String path)
Removes a command processor object by class |
void |
HttpAdaptorMBean.removeCommandProcessor(String path)
Removes a command processor object by class |
Source |
XSLTProcessor.resolve(String href,
String base)
|
void |
HttpAdaptor.setAuthenticationMethod(String method)
Sets the Authentication Method. |
void |
HttpAdaptorMBean.setAuthenticationMethod(String method)
Sets the Authentication Method. |
void |
XSLTProcessor.setDefaultPage(String defaultPage)
|
void |
XSLTProcessorMBean.setDefaultPage(String defaultPage)
Sets the default start page, serverbydomain as a default |
void |
XSLTProcessor.setFile(String file)
|
void |
XSLTProcessorMBean.setFile(String file)
Sets the jar/zip file or the directory where to find the XSL files |
void |
HttpOutputStream.setHeader(String attr,
String value)
Sets a given header code |
void |
HttpAdaptor.setHost(String host)
Sets the host name where the server will be listening |
void |
HttpAdaptorMBean.setHost(String host)
Sets the host name where the server will be listening |
void |
XSLTProcessor.setLocaleString(String locale)
|
void |
XSLTProcessorMBean.setLocaleString(String locale)
Sets the locale used to internationalize the output, as a string |
void |
XSLTProcessor.setPathInJar(String path)
|
void |
XSLTProcessorMBean.setPathInJar(String path)
Specifies the path of the XSL templates inside a jar file. |
void |
HttpAdaptor.setProcessorClass(String processorClass)
Sets the classname of the object which will post process the XML results. |
void |
HttpAdaptorMBean.setProcessorClass(String processorClass)
Sets the classname of the object which will post process the XML results. |
void |
HttpAdaptor.setProcessorNameString(String processorName)
Sets the object name of the PostProcessor MBean. |
void |
HttpAdaptorMBean.setProcessorNameString(String processorName)
Sets the object name of the PostProcessor MBean. |
void |
HttpAdaptor.setSocketFactoryNameString(String factoryName)
Sets the factory's object name which will create the server sockets |
void |
HttpAdaptorMBean.setSocketFactoryNameString(String factoryName)
Sets the factory's object name which will create the server sockets |
void |
HttpOutputStream.write(String msg)
Writes a given message line |
Constructors in org.apache.felix.mosgi.jmx.httpconnector.mx4j.tools.adaptor.http with parameters of type String | |
---|---|
HttpAdaptor(int port,
String host)
Overloaded constructor to allow the port to be set. |
|
HttpAdaptor(String host)
Overloaded constructor to allow the host to be set. |
|
HttpException(int code,
String description)
Constructor for the HttpException object |
Uses of String in org.apache.felix.mosgi.jmx.rmiconnector |
---|
Methods in org.apache.felix.mosgi.jmx.rmiconnector with parameters of type String | |
---|---|
static void |
RmiConnectorActivator.log(int prio,
String message,
Throwable t)
|
Uses of String in org.apache.felix.mosgi.jmx.rmiconnector.mx4j.remote |
---|
Fields in org.apache.felix.mosgi.jmx.rmiconnector.mx4j.remote declared as String | |
---|---|
static String |
MX4JRemoteConstants.CLIENT_PROVIDER_CLASS
The string 'ClientProvider' as mandated by the spec |
static String |
MX4JRemoteConstants.CONNECTION_HEARTBEAT_PERIOD
MX4J's implementation uses this property to specify the period (in ms) of the heartbeat pulse for JMXConnectors that use heartbeat to check if the
connection with JMXConnectorServers is still alive. |
static String |
MX4JRemoteConstants.CONNECTION_HEARTBEAT_RETRIES
MX4J's implementation uses this property to specify the number of retries of heartbeat pulses before declaring the connection between a JMXConnector and a
JMXConnectorServer failed, at which a
notification failed is emitted. |
static String |
MX4JRemoteConstants.FETCH_NOTIFICATIONS_MAX_NUMBER
The reference implementation uses this property to specify the maximum number of notification to fetch. |
static String |
MX4JRemoteConstants.FETCH_NOTIFICATIONS_SLEEP
MX4J's implementation uses this property to specify the amount of time (in ms) the client should sleep between notification fetches. |
static String |
MX4JRemoteConstants.FETCH_NOTIFICATIONS_TIMEOUT
The reference implementation uses this property to specify the notification fetch timeout (in ms). |
static String |
MX4JRemoteConstants.NOTIFICATION_BUFFER_CAPACITY
The reference implementation uses this property to specify the notification buffer size. |
static String |
MX4JRemoteConstants.NOTIFICATION_PURGE_DISTANCE
MX4J's implementation uses this property to specify the distance between the lowest expected notification sequence number (sent by the client via fetchNotifications()) and the minimum sequence number of the notification buffer. |
static String |
MX4JRemoteConstants.PROTOCOL_RESOLVER_PACKAGES
The key that specifies resolver packages, very much like JMXConnectorFactory.PROTOCOL_PROVIDER_PACKAGES |
static String |
MX4JRemoteConstants.PROVIDER_PACKAGES
MX4J provider packages list for JMXConnector and JMXConnectorServer factories |
static String |
MX4JRemoteConstants.PROVIDER_PACKAGES_SEPARATOR
A vertical bar '|' as mandated by the spec |
static String |
MX4JRemoteConstants.RESOLVER_CLASS
The string 'Resolver' |
static String |
MX4JRemoteConstants.RESOLVER_PACKAGES
MX4J provider packages list for mx4j.remote.ConnectionResolver subclasses |
static String |
MX4JRemoteConstants.RESOLVER_PACKAGES_SEPARATOR
A vertical bar '|' |
static String |
MX4JRemoteConstants.SERVER_PROVIDER_CLASS
The string 'ServerProvider' as mandated by the spec |
Methods in org.apache.felix.mosgi.jmx.rmiconnector.mx4j.remote that return String | |
---|---|
protected static String |
ProviderHelper.constructClassName(String packageName,
String protocol,
String className)
|
static String |
MX4JRemoteUtils.createConnectionID(String protocol,
String callerAddress,
int callerPort,
Subject subject)
|
protected static String |
ProviderHelper.findSystemPackageList(String key)
|
protected static String |
ProviderHelper.normalizeProtocol(String protocol)
|
String |
NotificationTuple.toString()
|
String |
DefaultRemoteNotificationServerHandler.NotificationBuffer.toString()
|
Methods in org.apache.felix.mosgi.jmx.rmiconnector.mx4j.remote with parameters of type String | |
---|---|
protected static String |
ProviderHelper.constructClassName(String packageName,
String protocol,
String className)
|
static String |
MX4JRemoteUtils.createConnectionID(String protocol,
String callerAddress,
int callerPort,
Subject subject)
|
protected static String |
ProviderHelper.findSystemPackageList(String key)
|
static ConnectionResolver |
ConnectionResolver.getInstance(String proto)
Returns a subclass of ConnectionResolver for the specified protocol. |
protected static Class |
ProviderHelper.loadClass(String className,
ClassLoader loader)
|
protected static String |
ProviderHelper.normalizeProtocol(String protocol)
|
Uses of String in org.apache.felix.mosgi.jmx.rmiconnector.mx4j.remote.resolver.rmi |
---|
Methods in org.apache.felix.mosgi.jmx.rmiconnector.mx4j.remote.resolver.rmi that return String | |
---|---|
protected String |
RMIResolver.encodeStub(RMIServerImpl rmiServer,
Map environment)
|
Uses of String in org.apache.felix.mosgi.jmx.rmiconnector.mx4j.remote.rmi |
---|
Methods in org.apache.felix.mosgi.jmx.rmiconnector.mx4j.remote.rmi that return String | |
---|---|
String |
RMIConnectionInvoker.getConnectionId()
|
String |
ClientInvoker.getDefaultDomain()
|
String |
RMIConnectionInvoker.getDefaultDomain(Subject delegate)
|
String[] |
ClientInvoker.getDomains()
|
String[] |
RMIConnectionInvoker.getDomains(Subject delegate)
|
Methods in org.apache.felix.mosgi.jmx.rmiconnector.mx4j.remote.rmi with parameters of type String | |
---|---|
ObjectInstance |
ClientInvoker.createMBean(String className,
ObjectName objectName)
|
ObjectInstance |
RMIConnectionInvoker.createMBean(String className,
ObjectName name,
MarshalledObject params,
String[] signature,
Subject delegate)
|
ObjectInstance |
RMIConnectionInvoker.createMBean(String className,
ObjectName name,
MarshalledObject params,
String[] signature,
Subject delegate)
|
ObjectInstance |
ClientInvoker.createMBean(String className,
ObjectName objectName,
Object[] args,
String[] parameters)
|
ObjectInstance |
ClientInvoker.createMBean(String className,
ObjectName objectName,
Object[] args,
String[] parameters)
|
ObjectInstance |
ClientInvoker.createMBean(String className,
ObjectName objectName,
ObjectName loaderName)
|
ObjectInstance |
RMIConnectionInvoker.createMBean(String className,
ObjectName name,
ObjectName loaderName,
MarshalledObject params,
String[] signature,
Subject delegate)
|
ObjectInstance |
RMIConnectionInvoker.createMBean(String className,
ObjectName name,
ObjectName loaderName,
MarshalledObject params,
String[] signature,
Subject delegate)
|
ObjectInstance |
ClientInvoker.createMBean(String className,
ObjectName objectName,
ObjectName loaderName,
Object[] args,
String[] parameters)
|
ObjectInstance |
ClientInvoker.createMBean(String className,
ObjectName objectName,
ObjectName loaderName,
Object[] args,
String[] parameters)
|
ObjectInstance |
RMIConnectionInvoker.createMBean(String className,
ObjectName name,
ObjectName loaderName,
Subject delegate)
|
ObjectInstance |
RMIConnectionInvoker.createMBean(String className,
ObjectName name,
Subject delegate)
|
Object |
ClientInvoker.getAttribute(ObjectName objectName,
String attribute)
|
Object |
RMIConnectionInvoker.getAttribute(ObjectName name,
String attribute,
Subject delegate)
|
AttributeList |
ClientInvoker.getAttributes(ObjectName objectName,
String[] attributes)
|
AttributeList |
RMIConnectionInvoker.getAttributes(ObjectName name,
String[] attributes,
Subject delegate)
|
Object |
RMIConnectionInvoker.invoke(ObjectName name,
String operationName,
MarshalledObject params,
String[] signature,
Subject delegate)
|
Object |
RMIConnectionInvoker.invoke(ObjectName name,
String operationName,
MarshalledObject params,
String[] signature,
Subject delegate)
|
Object |
ClientInvoker.invoke(ObjectName objectName,
String methodName,
Object[] args,
String[] parameters)
|
Object |
ClientInvoker.invoke(ObjectName objectName,
String methodName,
Object[] args,
String[] parameters)
|
boolean |
ClientInvoker.isInstanceOf(ObjectName objectName,
String className)
|
boolean |
RMIConnectionInvoker.isInstanceOf(ObjectName name,
String className,
Subject delegate)
|
Uses of String in org.apache.felix.mosgi.managedelements.bundlesprobes |
---|
Methods in org.apache.felix.mosgi.managedelements.bundlesprobes that return String | |
---|---|
String |
BundlesProbes.getBundleName()
|
Methods in org.apache.felix.mosgi.managedelements.bundlesprobes with parameters of type String | |
---|---|
void |
BundlesProbes.install(String location)
|
void |
BundlesProbesMBean.install(String location)
|
Uses of String in org.apache.felix.mosgi.managedelements.bundlesprobes.tab |
---|
Methods in org.apache.felix.mosgi.managedelements.bundlesprobes.tab that return String | |
---|---|
String |
BundlesProbesTabUI.getName()
|
String |
BundlesProbesTabUI.pluginLocation()
|
Methods in org.apache.felix.mosgi.managedelements.bundlesprobes.tab with parameters of type String | |
---|---|
void |
BundlesProbesModelTabUI.installButtonAction(String text)
|
Uses of String in org.apache.felix.mosgi.managedelements.memoryprobe |
---|
Methods in org.apache.felix.mosgi.managedelements.memoryprobe that return String | |
---|---|
String |
MemoryProbe.getBundleName()
|
Uses of String in org.apache.felix.mosgi.managedelements.obrprobe |
---|
Methods in org.apache.felix.mosgi.managedelements.obrprobe that return String | |
---|---|
String |
ObrProbe.getBundleName()
|
Methods in org.apache.felix.mosgi.managedelements.obrprobe with parameters of type String | |
---|---|
void |
ObrProbe.deploy(String location,
String version)
|
void |
ObrProbeMBean.deploy(String location,
String version)
|
Uses of String in org.apache.felix.mosgi.managedelements.obrprobe.tab |
---|
Methods in org.apache.felix.mosgi.managedelements.obrprobe.tab that return String | |
---|---|
String |
ObrProbeTabUI.getName()
|
String |
ObrProbeTabUI.pluginLocation()
|
Methods in org.apache.felix.mosgi.managedelements.obrprobe.tab with parameters of type String | |
---|---|
static Integer[] |
ObrProbeTabUI.parseVersionString(String s)
|
Uses of String in org.apache.felix.mosgi.managedelements.osgiprobes |
---|
Methods in org.apache.felix.mosgi.managedelements.osgiprobes that return String | |
---|---|
String |
OsgiProbes.getBundleName()
|
String |
OsgiProbes.getFwExeEnv()
|
String |
OsgiProbesMBean.getFwExeEnv()
|
String |
OsgiProbes.getFwLanguage()
|
String |
OsgiProbesMBean.getFwLanguage()
|
String |
OsgiProbes.getFwOsName()
|
String |
OsgiProbesMBean.getFwOsName()
|
String |
OsgiProbes.getFwOsVersion()
|
String |
OsgiProbesMBean.getFwOsVersion()
|
String |
OsgiProbes.getFwProcessor()
|
String |
OsgiProbesMBean.getFwProcessor()
|
String |
OsgiProbes.getFwVendor()
|
String |
OsgiProbesMBean.getFwVendor()
|
String |
OsgiProbes.getFwVersion()
|
String |
OsgiProbesMBean.getFwVersion()
|
String |
OsgiProbes.getProfile()
|
String |
OsgiProbesMBean.getProfile()
|
Uses of String in org.apache.felix.mosgi.managedelements.osgiprobes.tab |
---|
Methods in org.apache.felix.mosgi.managedelements.osgiprobes.tab that return String | |
---|---|
String |
OsgiProbesTabUI.getName()
|
String |
OsgiProbesTabUI.pluginLocation()
|
Uses of String in org.apache.felix.prefs |
---|
Fields in org.apache.felix.prefs declared as String | |
---|---|
protected String |
PreferencesDescription.identifier
|
protected String |
PreferencesImpl.name
The name of the properties. |
Methods in org.apache.felix.prefs that return String | |
---|---|
String |
PreferencesImpl.absolutePath()
|
String[] |
PreferencesImpl.childrenNames()
|
String |
PreferencesImpl.get(String key,
String def)
|
String |
PreferencesDescription.getIdentifier()
|
String[] |
PreferencesImpl.keys()
|
String |
PreferencesImpl.name()
|
Methods in org.apache.felix.prefs with parameters of type String | |
---|---|
protected void |
PreferencesImpl.checkKey(String key)
The key is not allowed to be null. |
void |
ChangeSet.childAdded(String name)
Inform that a child has been added. |
void |
ChangeSet.childRemoved(String name)
Inform that a child has been removed. |
String |
PreferencesImpl.get(String key,
String def)
|
boolean |
PreferencesImpl.getBoolean(String key,
boolean def)
|
byte[] |
PreferencesImpl.getByteArray(String key,
byte[] def)
|
double |
PreferencesImpl.getDouble(String key,
double def)
|
float |
PreferencesImpl.getFloat(String key,
float def)
|
int |
PreferencesImpl.getInt(String key,
int def)
|
long |
PreferencesImpl.getLong(String key,
long def)
|
protected PreferencesImpl |
PreferencesImpl.getNode(String path,
boolean saveNewlyCreatedNode,
boolean create)
Get a relative node. |
PreferencesImpl |
PreferencesImpl.getOrCreateNode(String pathName)
Get or create the node. |
Preferences |
PreferencesImpl.node(String pathName)
We do not synchronize this method to avoid dead locks as this method might call another preferences object in the hierarchy. |
boolean |
PreferencesImpl.nodeExists(String pathName)
We do not synchronize this method to avoid dead locks as this method might call another preferences object in the hierarchy. |
void |
ChangeSet.propertyChanged(String name)
Inform that a property has been added/changed. |
void |
ChangeSet.propertyRemoved(String name)
Inform that a property has removed. |
void |
PreferencesImpl.put(String key,
String value)
|
void |
PreferencesImpl.putBoolean(String key,
boolean value)
|
void |
PreferencesImpl.putByteArray(String key,
byte[] value)
|
void |
PreferencesImpl.putDouble(String key,
double value)
|
void |
PreferencesImpl.putFloat(String key,
float value)
|
void |
PreferencesImpl.putInt(String key,
int value)
|
void |
PreferencesImpl.putLong(String key,
long value)
|
void |
PreferencesImpl.remove(String key)
|
Constructors in org.apache.felix.prefs with parameters of type String | |
---|---|
PreferencesDescription(Long id,
String identifier)
|
|
PreferencesImpl(PreferencesImpl p,
String name)
Construct a child node. |
Uses of String in org.apache.felix.prefs.impl |
---|
Methods in org.apache.felix.prefs.impl that return String | |
---|---|
String[] |
PreferencesServiceImpl.getUsers()
|
Methods in org.apache.felix.prefs.impl with parameters of type String | |
---|---|
Preferences |
PreferencesServiceImpl.getUserPreferences(String name)
|
protected void |
PreferencesManager.log(int level,
String message,
Throwable t)
|
Uses of String in org.apache.felix.scr |
---|
Methods in org.apache.felix.scr that return String | |
---|---|
String |
Component.getActivate()
Returns the name of the method to be called when the component is being activated. |
String |
Reference.getBindMethodName()
Returns the name of the method called if a service is being bound to the Component or null if no such method is configued. |
String |
Component.getClassName()
Returns the class name of the Component implementation. |
String |
Component.getConfigurationPolicy()
Reuturns the configuration policy declared in the component descriptor. |
String |
Component.getDeactivate()
Returns the name of the method to be called when the component is being deactivated. |
String |
Component.getFactory()
Returns the component factory name or null if this component
is not defined as a component factory. |
String |
Component.getModified()
Returns the name of the method to be called when the component configuration has been updated or null if such a method is
not declared in the component descriptor. |
String |
Component.getName()
Returns the name of the component, which is also used as the service PID. |
String |
Reference.getName()
Returns the name of this Reference. |
String |
Reference.getServiceName()
Returns the name of the service used by this Reference. |
String[] |
Component.getServices()
Returns an array of service names provided by this Component or null if the Component is not registered as a service. |
String |
Reference.getTarget()
Returns the value of the target property of this reference. |
String |
Reference.getUnbindMethodName()
Returns the name of the method called if a service is being unbound from the Component or null if no such method is configued. |
String |
Reference.getUpdatedMethodName()
Returns the name of the method called if a bound service updates its service registration properties or null if no such method
is configued. |
Methods in org.apache.felix.scr with parameters of type String | |
---|---|
Component[] |
ScrService.getComponents(String componentName)
Returns the components whose component.name matches the
given componentName or null if no component
with the given name is currently managed. |
Uses of String in org.apache.felix.scr.impl |
---|
Methods in org.apache.felix.scr.impl that return String | |
---|---|
String |
ScrCommand.getName()
|
String |
ScrCommand.getShortDescription()
|
String |
ScrCommand.getUsage()
|
Methods in org.apache.felix.scr.impl with parameters of type String | |
---|---|
void |
BundleComponentActivator.disableComponent(String name)
Implements the ComponentContext.disableComponent(String)
method by first finding the component(s) for the name and
then starting a thread to actually disable all components found. |
void |
BundleComponentActivator.enableComponent(String name)
Implements the ComponentContext.enableComponent(String)
method by first finding the component(s) for the name and
then starting a thread to actually enable all components found. |
void |
ScrCommand.execute(String commandLine,
PrintStream out,
PrintStream err)
|
ComponentHolder |
ComponentRegistry.getComponentHolder(String name)
Returns the component registered under the given name or null
if no component is registered yet. |
Component[] |
ComponentRegistry.getComponents(String componentName)
|
static void |
Activator.log(int level,
Bundle bundle,
String message,
Throwable ex)
Method to actually emit the log message. |
void |
BundleComponentActivator.log(int level,
String message,
ComponentMetadata metadata,
Throwable ex)
Method to actually emit the log message. |
void |
BundleComponentActivator.log(int level,
String pattern,
Object[] arguments,
ComponentMetadata metadata,
Throwable ex)
Method to actually emit the log message. |
Uses of String in org.apache.felix.scr.impl.config |
---|
Methods in org.apache.felix.scr.impl.config that return String | |
---|---|
String[] |
MetaTypeProviderImpl.getLocales()
|
Methods in org.apache.felix.scr.impl.config with parameters of type String | |
---|---|
void |
ComponentHolder.configurationDeleted(String pid)
The configuration with the given PID has been deleted from the Configuration Admin service. |
void |
ConfiguredComponentHolder.configurationDeleted(String pid)
The configuration with the given pid
(service.pid of the configuration object) is deleted. |
void |
UnconfiguredComponentHolder.configurationDeleted(String pid)
|
void |
ComponentHolder.configurationUpdated(String pid,
Dictionary props)
Configure a component with configuration from the given PID. |
void |
ConfiguredComponentHolder.configurationUpdated(String pid,
Dictionary props)
Configures a component with the given configuration. |
void |
UnconfiguredComponentHolder.configurationUpdated(String pid,
Dictionary props)
|
Configuration[] |
ConfigurationComponentRegistry.findFactoryConfigurations(ConfigurationAdmin ca,
String factoryPid)
Returns all configurations whose factory PID equals the given factory PID or null if no such configurations exist |
Configuration |
ConfigurationComponentRegistry.findSingletonConfiguration(ConfigurationAdmin ca,
String pid)
Returns the configuration whose PID equals the given pid. |
ObjectClassDefinition |
MetaTypeProviderImpl.getObjectClassDefinition(String id,
String locale)
|
Uses of String in org.apache.felix.scr.impl.helper |
---|
Methods in org.apache.felix.scr.impl.helper that return String | |
---|---|
protected String |
ActivateMethod.getMethodNamePrefix()
|
protected String |
DeactivateMethod.getMethodNamePrefix()
|
protected String |
ModifiedMethod.getMethodNamePrefix()
|
protected String |
UnbindMethod.getMethodNamePrefix()
|
protected String |
BindMethod.getMethodNamePrefix()
|
protected String |
UpdatedMethod.getMethodNamePrefix()
|
String |
ReadOnlyDictionary.toString()
|
Methods in org.apache.felix.scr.impl.helper with parameters of type String | |
---|---|
void |
Logger.log(int level,
String message,
ComponentMetadata metadata,
Throwable ex)
Writes a messages for the given ComponentMetadata . |
void |
Logger.log(int level,
String pattern,
Object[] arguments,
ComponentMetadata metadata,
Throwable ex)
Method to actually emit the log message. |
Constructors in org.apache.felix.scr.impl.helper with parameters of type String | |
---|---|
ActivateMethod(AbstractComponentManager componentManager,
String methodName,
boolean methodRequired,
Class componentClass)
|
|
BindMethod(AbstractComponentManager componentManager,
String methodName,
Class componentClass,
String referenceName,
String referenceClassName)
|
|
DeactivateMethod(AbstractComponentManager componentManager,
String methodName,
boolean methodRequired,
Class componentClass)
|
|
ModifiedMethod(AbstractComponentManager componentManager,
String methodName,
Class componentClass)
|
|
UnbindMethod(AbstractComponentManager componentManager,
String methodName,
Class componentClass,
String referenceName,
String referenceClassName)
|
|
UpdatedMethod(AbstractComponentManager componentManager,
String methodName,
Class componentClass,
String referenceName,
String referenceClassName)
|
Uses of String in org.apache.felix.scr.impl.manager |
---|
Methods in org.apache.felix.scr.impl.manager that return String | |
---|---|
String |
AbstractComponentManager.getActivate()
|
String |
DependencyManager.getBindMethodName()
|
String |
AbstractComponentManager.getClassName()
|
String |
AbstractComponentManager.getConfigurationPolicy()
|
String |
AbstractComponentManager.getDeactivate()
|
String |
AbstractComponentManager.getFactory()
|
String |
AbstractComponentManager.getModified()
|
String |
AbstractComponentManager.getName()
|
String |
DependencyManager.getName()
Returns the name of the service reference. |
String |
DependencyManager.getServiceName()
|
String[] |
AbstractComponentManager.getServices()
|
String |
DependencyManager.getTarget()
Returns the target filter of this dependency as a string or null if this dependency has no target filter set. |
String |
DependencyManager.getUnbindMethodName()
|
String |
DependencyManager.getUpdatedMethodName()
|
String |
AbstractComponentManager.toString()
|
String |
AbstractComponentManager.State.toString()
|
Methods in org.apache.felix.scr.impl.manager with parameters of type String | |
---|---|
void |
ComponentFactoryImpl.configurationDeleted(String pid)
|
void |
ComponentFactoryImpl.configurationUpdated(String pid,
Dictionary configuration)
|
void |
ComponentContextImpl.disableComponent(String name)
|
void |
ComponentContextImpl.enableComponent(String name)
|
Object |
ComponentContextImpl.locateService(String name)
|
Object |
ComponentContextImpl.locateService(String name,
ServiceReference ref)
|
Object[] |
ComponentContextImpl.locateServices(String name)
|
void |
AbstractComponentManager.log(int level,
String message,
Object[] arguments,
Throwable ex)
|
void |
AbstractComponentManager.log(int level,
String message,
Throwable ex)
|
Constructors in org.apache.felix.scr.impl.manager with parameters of type String | |
---|---|
AbstractComponentManager.Satisfied(String name,
int state)
|
|
AbstractComponentManager.State(String name,
int state)
|
Uses of String in org.apache.felix.scr.impl.metadata |
---|
Fields in org.apache.felix.scr.impl.metadata declared as String | |
---|---|
static String |
ReferenceMetadata.CARDINALITY_0_1
|
static String |
ReferenceMetadata.CARDINALITY_0_N
|
static String |
ReferenceMetadata.CARDINALITY_1_1
|
static String |
ReferenceMetadata.CARDINALITY_1_N
|
static String |
ComponentMetadata.CONFIGURATION_POLICY_IGNORE
|
static String |
ComponentMetadata.CONFIGURATION_POLICY_OPTIONAL
|
static String |
ComponentMetadata.CONFIGURATION_POLICY_REQUIRE
|
static String |
XmlHandler.NAMESPACE_URI
|
static String |
XmlHandler.NAMESPACE_URI_1_1
|
static String |
XmlHandler.NAMESPACE_URI_1_1_FELIX
|
static String |
XmlHandler.NAMESPACE_URI_EMPTY
|
protected String |
XmlHandler.overrideNamespace
Override namespace. |
static String |
ReferenceMetadata.POLICY_DYNAMIC
|
static String |
ReferenceMetadata.POLICY_STATIC
|
Methods in org.apache.felix.scr.impl.metadata that return String | |
---|---|
String |
ComponentMetadata.getActivate()
Returns the name of the activate method |
String |
ReferenceMetadata.getBind()
Get the name of a method in the component implementation class that is used to notify that a service is bound to the component configuration |
String |
ReferenceMetadata.getCardinality()
Get the cardinality as a string |
String |
ComponentMetadata.getConfigurationPolicy()
Returns the configuration Policy |
String |
ComponentMetadata.getDeactivate()
Returns the name of the deactivate method |
String |
ComponentMetadata.getFactoryIdentifier()
Returns the factory identifier |
String |
ComponentMetadata.getImplementationClassName()
Returns the name of the implementation class |
String |
ReferenceMetadata.getInterface()
Returns the fully qualified name of the class that is used by the component to access the service |
String |
ComponentMetadata.getModified()
Returns the name of the modified method |
String |
PropertyMetadata.getName()
Get the name of the property |
String |
ComponentMetadata.getName()
Returns the name of the component |
String |
ReferenceMetadata.getName()
Returns the name of the reference |
String |
ReferenceMetadata.getPolicy()
Get the policy as a string |
String[] |
ServiceMetadata.getProvides()
Returns the implemented interfaces |
String |
ReferenceMetadata.getTarget()
Returns the filter expression that further constrains the set of target services |
String |
ReferenceMetadata.getTargetPropertyName()
Returns the name of the component property referring to the target
property of this reference. |
String |
PropertyMetadata.getType()
Get the type of the property |
String |
ReferenceMetadata.getUnbind()
Get the name of a method in the component implementation class that is used to notify that a service is unbound from the component configuration |
String |
ReferenceMetadata.getUpdated()
Get the name of a method in the component implementation class that is used to notify that the service properties of a bound service have been updated |
Methods in org.apache.felix.scr.impl.metadata with parameters of type String | |
---|---|
void |
ServiceMetadata.addProvide(String provide)
Add a provided interface to this service |
void |
XmlHandler.characters(String text)
|
void |
XmlHandler.endElement(String uri,
String localName)
Method called when a tag closes |
void |
XmlHandler.processingInstruction(String target,
String data)
|
void |
ComponentMetadata.setActivate(String activate)
Sets the name of the activate method |
void |
ReferenceMetadata.setBind(String bind)
Setter for the bind method attribute |
void |
ReferenceMetadata.setCardinality(String cardinality)
Setter for the cardinality attribute |
void |
ComponentMetadata.setConfigurationPolicy(String configurationPolicy)
Sets the configuration policy |
void |
ComponentMetadata.setDeactivate(String deactivate)
Sets the name of the deactivate method |
void |
ComponentMetadata.setFactoryIdentifier(String factoryIdentifier)
|
void |
ComponentMetadata.setImplementationClassName(String implementationClassName)
Sets the name of the implementation class |
void |
ReferenceMetadata.setInterface(String interfaceName)
Setter for the interfaceName attribute |
void |
ComponentMetadata.setModified(String modified)
Sets the name of the modified method |
void |
PropertyMetadata.setName(String name)
Set the name |
void |
ComponentMetadata.setName(String name)
Setter for the name |
void |
ReferenceMetadata.setName(String name)
Setter for the name attribute |
void |
ReferenceMetadata.setPolicy(String policy)
Setter for the policy attribute |
void |
ReferenceMetadata.setTarget(String target)
Setter for the target attribute (filter) |
void |
PropertyMetadata.setType(String type)
Set the type |
void |
ReferenceMetadata.setUnbind(String unbind)
Setter for the unbind method attribute |
void |
ReferenceMetadata.setUpdated(String updated)
Setter for the updated method attribute |
void |
PropertyMetadata.setValue(String value)
Set the value |
void |
PropertyMetadata.setValues(String values)
Set multiple values as an array, where the values are contained in the string as one value per line. |
void |
XmlHandler.startElement(String uri,
String localName,
Properties attrib)
Method called when a tag opens |
Uses of String in org.apache.felix.scr.impl.parser |
---|
Methods in org.apache.felix.scr.impl.parser with parameters of type String | |
---|---|
void |
KXml2SAXHandler.characters(String text)
Method called when parsing text |
void |
KXml2SAXHandler.endElement(String uri,
String localName)
Method called when a tag closes |
void |
KXml2SAXHandler.processingInstruction(String target,
String data)
|
void |
KXml2SAXHandler.startElement(String uri,
String localName,
Properties attrib)
Method called when a tag opens |
Constructors in org.apache.felix.scr.impl.parser with parameters of type String | |
---|---|
ParseException(String msg,
Exception originalException)
|
Uses of String in org.apache.felix.service.command |
---|
Fields in org.apache.felix.service.command declared as String | |
---|---|
static String |
CommandProcessor.COMMAND_FUNCTION
A list of method names that may be called for this command provider. |
static String |
CommandProcessor.COMMAND_SCOPE
The scope of commands provided by this service. |
static String |
Converter.CONVERTER_CLASSES
This property is a string, or array of strings, and defines the classes or interfaces that this converter recognizes. |
static String |
Parameter.UNSPECIFIED
|
Methods in org.apache.felix.service.command with parameters of type String | |
---|---|
Object |
CommandSession.get(String name)
Get the value of a variable. |
void |
CommandSession.put(String name,
Object value)
Set the value of a variable. |
Uses of String in org.apache.felix.servicebinder |
---|
Fields in org.apache.felix.servicebinder declared as String | |
---|---|
static String |
InstanceReference.INSTANCE_BUNDLE
|
static String |
InstanceReference.INSTANCE_DEPENDENCIES
|
static String |
InstanceReference.INSTANCE_METADATA
|
static String |
InstanceReference.INSTANCE_STATE
|
Methods in org.apache.felix.servicebinder that return String | |
---|---|
String |
DependencyMetadata.getBindMethodName()
Get the name of the Bind method |
String |
DependencyMetadata.getCardinality()
Get the cardinality as a string |
String |
DependencyMetadata.getFilter()
Returns the filter |
String |
InstanceMetadata.getImplementorName()
Returns the name of the implementor |
String[] |
InstanceMetadata.getInterfaces()
Returns the implemented interfaces |
String |
PropertyMetadata.getName()
Get the name of the property |
String |
DependencyMetadata.getPolicy()
Get the policy as a string |
String |
DependencyMetadata.getServiceName()
Returns the name of the required service |
String |
PropertyMetadata.getType()
Get the type of the property |
String |
DependencyMetadata.getUnbindMethodName()
Get the name of the Unbind method |
Methods in org.apache.felix.servicebinder with parameters of type String | |
---|---|
void |
XmlHandler.endElement(String uri,
String localName,
String qName)
Method called when a tag closes |
Object |
InstanceManager.get(String name)
Get a property associated with this instance. |
Object |
InstanceReference.get(String name)
Get a property associated with this instance. |
void |
InstanceManager.put(String name,
Object obj)
Associate a property with this instance. |
void |
InstanceReference.put(String name,
Object value)
Associate a property with this instance. |
void |
XmlHandler.startElement(String uri,
String localName,
String qName,
Properties attrib)
Method called when a tag opens |
Constructors in org.apache.felix.servicebinder with parameters of type String | |
---|---|
PropertyMetadata(String name,
String type,
String val)
Create a PropertyMetadata object |
|
ServiceBinderException(String msg)
|
Uses of String in org.apache.felix.servicebinder.parser |
---|
Constructors in org.apache.felix.servicebinder.parser with parameters of type String | |
---|---|
ParseException(String msg)
|
Uses of String in org.apache.felix.shell |
---|
Fields in org.apache.felix.shell declared as String | |
---|---|
static String |
CdCommand.BASE_URL_PROPERTY
Property used to configure the base URL. |
Methods in org.apache.felix.shell that return String | |
---|---|
String |
CdCommand.getBaseURL()
Returns the current directory of the impl service. |
String |
ShellService.getCommandDescription(String name)
Returns the description associated with the specified command name. |
String[] |
ShellService.getCommands()
Returns an array of command names available in the impl service. |
String |
ShellService.getCommandUsage(String name)
Returns the usage string associated with the specified command name. |
String |
Command.getName()
Returns the name of the command that is implemented by the interface. |
String |
Command.getShortDescription()
Returns a short description of the command; this description should be as short as possible. |
String |
Command.getUsage()
Returns the usage string for the command. |
Methods in org.apache.felix.shell with parameters of type String | |
---|---|
void |
Command.execute(String line,
PrintStream out,
PrintStream err)
Executes the command using the supplied command line, output print stream, and error print stream. |
void |
ShellService.executeCommand(String commandLine,
PrintStream out,
PrintStream err)
This method executes the supplied command line using the supplied output and error print stream. |
String |
ShellService.getCommandDescription(String name)
Returns the description associated with the specified command name. |
ServiceReference |
ShellService.getCommandReference(String name)
Returns the service reference associated with the specified command name. |
String |
ShellService.getCommandUsage(String name)
Returns the usage string associated with the specified command name. |
void |
CdCommand.setBaseURL(String s)
Sets the current directory of the impl service. |
Uses of String in org.apache.felix.shell.gui |
---|
Methods in org.apache.felix.shell.gui that return String | |
---|---|
String |
Plugin.getName()
Returns the name of the plugin. |
Uses of String in org.apache.felix.shell.gui.impl |
---|
Fields in org.apache.felix.shell.gui.impl declared as String | |
---|---|
static String |
Activator.PLUGIN_LIST_PROPERTY
|
Methods in org.apache.felix.shell.gui.impl with parameters of type String | |
---|---|
protected void |
Activator.firePropertyChangedEvent(String name,
Object oldValue,
Object newValue)
|
Uses of String in org.apache.felix.shell.gui.plugin |
---|
Methods in org.apache.felix.shell.gui.plugin that return String | |
---|---|
String |
ShellPlugin.getName()
|
String |
BundleListPlugin.getName()
|
String |
OBRPlugin.getName()
|
Methods in org.apache.felix.shell.gui.plugin with parameters of type String | |
---|---|
void |
ScrollableOutputArea.addText(String text)
|
void |
ScrollableOutputArea.setText(String s)
|
Uses of String in org.apache.felix.shell.impl |
---|
Fields in org.apache.felix.shell.impl declared as String | |
---|---|
static String |
InspectCommandImpl.BUNDLE_TYPE
|
static String |
InspectCommandImpl.CAPABILITY
|
static String |
InspectCommandImpl.FRAGMENT_TYPE
|
static String |
InspectCommandImpl.PACKAGE_TYPE
|
static String |
InspectCommandImpl.REQUIREMENT
|
static String |
InspectCommandImpl.SERVICE_TYPE
|
Methods in org.apache.felix.shell.impl that return String | |
---|---|
String |
CdCommandImpl.getBaseURL()
|
static String |
Util.getBundleName(Bundle bundle)
|
String |
StopCommandImpl.getName()
|
String |
HeadersCommandImpl.getName()
|
String |
InstallCommandImpl.getName()
|
String |
HelpCommandImpl.getName()
|
String |
ShutdownCommandImpl.getName()
|
String |
LogCommandImpl.getName()
|
String |
VersionCommandImpl.getName()
|
String |
UpdateCommandImpl.getName()
|
String |
RefreshCommandImpl.getName()
|
String |
ResolveCommandImpl.getName()
|
String |
InspectCommandImpl.getName()
|
String |
CdCommandImpl.getName()
|
String |
PsCommandImpl.getName()
|
String |
UninstallCommandImpl.getName()
|
String |
SystemPropertiesCommandImpl.getName()
|
String |
StartLevelCommandImpl.getName()
|
String |
BundleLevelCommandImpl.getName()
|
String |
StartCommandImpl.getName()
|
String |
FindCommandImpl.getName()
|
String |
StopCommandImpl.getShortDescription()
|
String |
HeadersCommandImpl.getShortDescription()
|
String |
InstallCommandImpl.getShortDescription()
|
String |
HelpCommandImpl.getShortDescription()
|
String |
ShutdownCommandImpl.getShortDescription()
|
String |
LogCommandImpl.getShortDescription()
|
String |
VersionCommandImpl.getShortDescription()
|
String |
UpdateCommandImpl.getShortDescription()
|
String |
RefreshCommandImpl.getShortDescription()
|
String |
ResolveCommandImpl.getShortDescription()
|
String |
InspectCommandImpl.getShortDescription()
|
String |
CdCommandImpl.getShortDescription()
|
String |
PsCommandImpl.getShortDescription()
|
String |
UninstallCommandImpl.getShortDescription()
|
String |
SystemPropertiesCommandImpl.getShortDescription()
|
String |
StartLevelCommandImpl.getShortDescription()
|
String |
BundleLevelCommandImpl.getShortDescription()
|
String |
StartCommandImpl.getShortDescription()
|
String |
FindCommandImpl.getShortDescription()
|
String |
PsCommandImpl.getStateString(int i)
|
static String |
Util.getUnderlineString(String s)
|
String |
StopCommandImpl.getUsage()
|
String |
HeadersCommandImpl.getUsage()
|
String |
InstallCommandImpl.getUsage()
|
String |
HelpCommandImpl.getUsage()
|
String |
ShutdownCommandImpl.getUsage()
|
String |
LogCommandImpl.getUsage()
|
String |
VersionCommandImpl.getUsage()
|
String |
UpdateCommandImpl.getUsage()
|
String |
RefreshCommandImpl.getUsage()
|
String |
ResolveCommandImpl.getUsage()
|
String |
InspectCommandImpl.getUsage()
|
String |
CdCommandImpl.getUsage()
|
String |
PsCommandImpl.getUsage()
|
String |
UninstallCommandImpl.getUsage()
|
String |
SystemPropertiesCommandImpl.getUsage()
|
String |
StartLevelCommandImpl.getUsage()
|
String |
BundleLevelCommandImpl.getUsage()
|
String |
StartCommandImpl.getUsage()
|
String |
FindCommandImpl.getUsage()
|
static String |
Util.getValueString(Object obj)
|
Methods in org.apache.felix.shell.impl with parameters of type String | |
---|---|
void |
StopCommandImpl.execute(String s,
PrintStream out,
PrintStream err)
|
void |
HeadersCommandImpl.execute(String s,
PrintStream out,
PrintStream err)
|
void |
InstallCommandImpl.execute(String s,
PrintStream out,
PrintStream err)
|
void |
HelpCommandImpl.execute(String s,
PrintStream out,
PrintStream err)
|
void |
ShutdownCommandImpl.execute(String s,
PrintStream out,
PrintStream err)
|
void |
LogCommandImpl.execute(String line,
PrintStream out,
PrintStream err)
|
void |
VersionCommandImpl.execute(String s,
PrintStream out,
PrintStream err)
|
void |
UpdateCommandImpl.execute(String s,
PrintStream out,
PrintStream err)
|
void |
RefreshCommandImpl.execute(String s,
PrintStream out,
PrintStream err)
|
void |
ResolveCommandImpl.execute(String s,
PrintStream out,
PrintStream err)
|
void |
InspectCommandImpl.execute(String s,
PrintStream out,
PrintStream err)
|
void |
CdCommandImpl.execute(String s,
PrintStream out,
PrintStream err)
|
void |
PsCommandImpl.execute(String s,
PrintStream out,
PrintStream err)
|
void |
UninstallCommandImpl.execute(String s,
PrintStream out,
PrintStream err)
|
void |
SystemPropertiesCommandImpl.execute(String line,
PrintStream out,
PrintStream err)
|
void |
StartLevelCommandImpl.execute(String s,
PrintStream out,
PrintStream err)
|
void |
BundleLevelCommandImpl.execute(String s,
PrintStream out,
PrintStream err)
|
void |
StartCommandImpl.execute(String s,
PrintStream out,
PrintStream err)
|
void |
FindCommandImpl.execute(String line,
PrintStream out,
PrintStream err)
|
static String |
Util.getUnderlineString(String s)
|
protected Bundle |
InstallCommandImpl.install(String location,
PrintStream out,
PrintStream err)
|
void |
InspectCommandImpl.printExportedServices(String[] ids,
PrintStream out,
PrintStream err)
|
void |
InspectCommandImpl.printImportedServices(String[] ids,
PrintStream out,
PrintStream err)
|
void |
CdCommandImpl.setBaseURL(String s)
|
Constructors in org.apache.felix.shell.impl with parameters of type String | |
---|---|
Activator.ExecutePrivileged(Command command,
String commandLine,
PrintStream out,
PrintStream err)
|
|
LogOptions(String commandLine)
|
Uses of String in org.apache.felix.transaction.internal |
---|
Fields in org.apache.felix.transaction.internal declared as String | |
---|---|
static String |
TransactionManagerService.HOWL_ADLER32_CHECKSUM
|
static String |
TransactionManagerService.HOWL_BUFFER_CLASS_NAME
|
static String |
TransactionManagerService.HOWL_BUFFER_SIZE
|
static String |
TransactionManagerService.HOWL_CHECKSUM_ENABLED
|
static String |
TransactionManagerService.HOWL_FLUSH_SLEEP_TIME
|
static String |
TransactionManagerService.HOWL_LOG_FILE_DIR
|
static String |
TransactionManagerService.HOWL_LOG_FILE_EXT
|
static String |
TransactionManagerService.HOWL_LOG_FILE_NAME
|
static String |
TransactionManagerService.HOWL_MAX_BLOCKS_PER_FILE
|
static String |
TransactionManagerService.HOWL_MAX_BUFFERS
|
static String |
TransactionManagerService.HOWL_MAX_LOG_FILES
|
static String |
TransactionManagerService.HOWL_MIN_BUFFERS
|
static String |
TransactionManagerService.HOWL_THREADS_WAITING_FORCE_THRESHOLD
|
static String |
TransactionManagerService.RECOVERABLE
|
static String |
TransactionManagerService.TRANSACTION_TIMEOUT
|
Methods in org.apache.felix.transaction.internal that return String | |
---|---|
String |
Activator.getName()
|
Methods in org.apache.felix.transaction.internal with parameters of type String | |
---|---|
void |
Activator.deleted(String pid)
|
void |
Activator.updated(String pid,
Dictionary properties)
|
Constructors in org.apache.felix.transaction.internal with parameters of type String | |
---|---|
TransactionManagerService(String pid,
Dictionary properties,
BundleContext bundleContext)
|
Uses of String in org.apache.felix.upnp.basedriver.controller |
---|
Fields in org.apache.felix.upnp.basedriver.controller declared as String | |
---|---|
static String |
DriverController.ALL_DEVICE
String for searching all the device on UPnP Networks |
static String |
DriverController.ROOT_DEVICE
String for searching only root device on UPnP Networks |
Methods in org.apache.felix.upnp.basedriver.controller that return String | |
---|---|
String |
DevicesInfo.getLocationURL(String udn)
Allow you to get the URL of the XML description of a device specified by UUID. |
String |
DevicesInfo.getSCPDURL(String udn,
String serviceId)
Allow you to get the URL of the XML description of a service specified by the ServiceId and the UUID of the device that contains the service |
String |
DevicesInfo.resolveRelativeUrl(String udn,
String link)
Allow you to get the absolute URL of a link that is contained in a device. |
Methods in org.apache.felix.upnp.basedriver.controller with parameters of type String | |
---|---|
String |
DevicesInfo.getLocationURL(String udn)
Allow you to get the URL of the XML description of a device specified by UUID. |
String |
DevicesInfo.getSCPDURL(String udn,
String serviceId)
Allow you to get the URL of the XML description of a service specified by the ServiceId and the UUID of the device that contains the service |
String |
DevicesInfo.resolveRelativeUrl(String udn,
String link)
Allow you to get the absolute URL of a link that is contained in a device. |
void |
DriverController.search(String target)
forces the UPnP base driver to send an M-SEARCH message on the UPnP Networks, and refresh the device found by UPnP Base Driver |
Uses of String in org.apache.felix.upnp.basedriver.controller.impl |
---|
Methods in org.apache.felix.upnp.basedriver.controller.impl that return String | |
---|---|
String |
DriverControllerImpl.getLocationURL(String udn)
|
String |
DriverControllerImpl.getSCPDURL(String udn,
String serviceId)
|
String |
DriverControllerImpl.resolveRelativeUrl(String udn,
String link)
|
Methods in org.apache.felix.upnp.basedriver.controller.impl with parameters of type String | |
---|---|
String |
DriverControllerImpl.getLocationURL(String udn)
|
String |
DriverControllerImpl.getSCPDURL(String udn,
String serviceId)
|
String |
DriverControllerImpl.resolveRelativeUrl(String udn,
String link)
|
void |
DriverControllerImpl.search(String target)
|
Uses of String in org.apache.felix.upnp.basedriver.export |
---|
Methods in org.apache.felix.upnp.basedriver.export that return String | |
---|---|
String |
DeviceNode.toString()
|
Methods in org.apache.felix.upnp.basedriver.export with parameters of type String | |
---|---|
boolean |
DeviceNode.contains(String udn)
|
DeviceNode |
DeviceNode.dethatch(String name)
|
boolean |
DeviceNode.equals(String udn)
|
void |
ExporterUPnPEventListener.notifyUPnPEvent(String deviceId,
String serviceId,
Dictionary events)
|
DeviceNode |
RootDeviceExportingQueue.removeRootDevice(String udn)
|
DeviceNode |
DeviceNode.search(String name)
|
Constructors in org.apache.felix.upnp.basedriver.export with parameters of type String | |
---|---|
GeneralActionListener(ServiceReference sr,
String serviceId)
|
Uses of String in org.apache.felix.upnp.basedriver.importer.core |
---|
Methods in org.apache.felix.upnp.basedriver.importer.core with parameters of type String | |
---|---|
void |
MyCtrlPoint.doDeviceRegistration(String udn)
|
void |
MyCtrlPoint.doDeviceRegistration(String udn,
boolean checkDouble)
|
void |
MyCtrlPoint.doServiceUpdating(String udn,
String serviceType)
|
org.cybergarage.upnp.Device |
MyCtrlPoint.findDevice(String udn,
org.cybergarage.upnp.Device dev)
|
org.cybergarage.upnp.Device |
MyCtrlPoint.findDeviceCtrl(org.cybergarage.upnp.ControlPoint ctrl,
String udn)
|
void |
MyCtrlPoint.newEventArrived(String uuid,
long seq,
org.cybergarage.upnp.event.PropertyList props)
|
org.cybergarage.upnp.Service |
MyCtrlPoint.serviceFromSid(String sid)
|
Uses of String in org.apache.felix.upnp.basedriver.importer.core.event.message |
---|
Methods in org.apache.felix.upnp.basedriver.importer.core.event.message that return String | |
---|---|
String |
StateChanged.getDeviceID()
|
String |
FirstMessage.getDeviceID()
|
String |
StateChanged.getServiceID()
|
String |
FirstMessage.getServiceID()
|
String |
StateChanged.getSid()
|
String |
FirstMessage.getSid()
|
String |
SidExipired.getSid()
|
Methods in org.apache.felix.upnp.basedriver.importer.core.event.message with parameters of type String | |
---|---|
void |
FirstMessage.setSid(String sid)
|
Constructors in org.apache.felix.upnp.basedriver.importer.core.event.message with parameters of type String | |
---|---|
SidExipired(String sid,
org.cybergarage.upnp.Service service)
|
|
StateChanged(String sid,
long seq,
Dictionary dic,
org.cybergarage.upnp.Device device,
org.cybergarage.upnp.Service service)
|
Uses of String in org.apache.felix.upnp.basedriver.importer.core.event.structs |
---|
Methods in org.apache.felix.upnp.basedriver.importer.core.event.structs that return String | |
---|---|
String |
StateVarsToNotify.getDeviceID()
|
String |
StateVarsToNotify.getServiceID()
|
String |
StateVarsToNotify.getSid()
|
Methods in org.apache.felix.upnp.basedriver.importer.core.event.structs with parameters of type String | |
---|---|
void |
Monitor.addListener(String sid,
UPnPEventListener listener)
|
void |
Monitor.clearAll(String sid,
org.cybergarage.upnp.Service service)
|
void |
Monitor.delSid(String sid)
|
Vector |
Sid2Listeners.get(String sid)
|
Renewer |
SidRenewer.get(String sid)
|
boolean |
SidsListenersMaps.getAlreadyFirst(String sid)
|
boolean |
Sid2Listeners.getAlreadyFirst(String sid)
|
Vector |
SidsListenersMaps.getListenersFromSid(String sid)
|
void |
SidRenewer.put(String sid,
Renewer renewer)
|
void |
Sid2Listeners.put(String sid,
UPnPEventListener listener)
|
void |
Listener2Sids.put(UPnPEventListener listener,
String sid)
|
void |
SidsListenersMaps.putListener2Sids(UPnPEventListener listener,
String sid)
|
void |
SidsListenersMaps.putSid2Listeners(String sid,
UPnPEventListener listener)
|
void |
Monitor.putStateVars(String sid,
StateVarsToNotify vars)
|
void |
Sid2Listeners.remove(String sid)
|
void |
SidRenewer.remove(String sid)
|
void |
SidsListenersMaps.removeSidKey(String sid)
|
void |
SidsListenersMaps.setAlreadyFirst(String sid,
boolean bool)
|
void |
Sid2Listeners.setAlreadyFirst(String sid,
boolean bool)
|
boolean |
SidsListenersMaps.updateListeners(String sid,
String deviceID,
String serviceID,
Dictionary dictionary)
|
boolean |
Sid2Listeners.updateListeners(String sid,
String deviceID,
String serviceID,
Dictionary dictionary)
|
void |
Monitor.updateStateVars(String sid,
Dictionary dic)
|
Uses of String in org.apache.felix.upnp.basedriver.importer.core.event.thread |
---|
Constructors in org.apache.felix.upnp.basedriver.importer.core.event.thread with parameters of type String | |
---|---|
Renewer(long timeout,
String sid,
org.cybergarage.upnp.Service service,
MyCtrlPoint ctrl,
SubscriptionQueue subqueue)
* |
Uses of String in org.apache.felix.upnp.basedriver.importer.core.upnp |
---|
Methods in org.apache.felix.upnp.basedriver.importer.core.upnp that return String | |
---|---|
String[] |
UPnPStateVariableImpl.getAllowedValues()
|
String |
UPnPServiceImpl.getId()
|
String[] |
UPnPActionImpl.getInputArgumentNames()
|
String |
UPnPIconImpl.getMimeType()
|
String |
UPnPActionImpl.getName()
|
String |
UPnPStateVariableImpl.getName()
|
String[] |
UPnPActionImpl.getOutputArgumentNames()
|
String |
UPnPActionImpl.getReturnArgumentName()
|
String |
UPnPServiceImpl.getType()
|
String |
UPnPStateVariableImpl.getUPnPDataType()
|
String |
UPnPServiceImpl.getVersion()
|
Methods in org.apache.felix.upnp.basedriver.importer.core.upnp with parameters of type String | |
---|---|
boolean |
UPnPDeviceImpl.existServiceType(String serviceType)
|
UPnPAction |
UPnPServiceImpl.getAction(String name)
|
Dictionary |
UPnPDeviceImpl.getDescriptions(String locale)
|
UPnPIcon[] |
UPnPDeviceImpl.getIcons(String locale)
|
UPnPService |
UPnPDeviceImpl.getService(String serviceId)
|
UPnPStateVariable |
UPnPActionImpl.getStateVariable(String argumentName)
|
UPnPStateVariable |
UPnPServiceImpl.getStateVariable(String name)
|
void |
UPnPDeviceImpl.setProperty(String property,
Object obj)
|
Uses of String in org.apache.felix.upnp.basedriver.importer.util |
---|
Methods in org.apache.felix.upnp.basedriver.importer.util that return String | |
---|---|
String |
ParseUSN.getServiceType()
|
String |
ParseUSN.getUDN()
|
static String |
ParseLocation.getUrlBase(String location)
|
static String[] |
StringSplitter.split(String tosplit,
char ch)
|
Methods in org.apache.felix.upnp.basedriver.importer.util with parameters of type String | |
---|---|
static String |
ParseLocation.getUrlBase(String location)
|
static String[] |
StringSplitter.split(String tosplit,
char ch)
|
Constructors in org.apache.felix.upnp.basedriver.importer.util with parameters of type String | |
---|---|
ParseUSN(String usn)
|
Uses of String in org.apache.felix.upnp.basedriver.tool |
---|
Fields in org.apache.felix.upnp.basedriver.tool declared as String | |
---|---|
static String |
Logger.END_ROW
|
static String |
Logger.NEWLINE
|
static String |
Logger.ROW
|
Methods in org.apache.felix.upnp.basedriver.tool with parameters of type String | |
---|---|
void |
Logger.DEBUG(String message)
|
void |
Logger.ERROR(String message)
|
void |
Logger.INFO(String message)
|
void |
Logger.log(int msglevel,
String message)
Logs a message. |
void |
Logger.log(int msglevel,
String message,
Throwable exception)
Logs a message with an exception. |
void |
Logger.PACKET(String message)
|
void |
Logger.setCyberDebug(String value)
|
void |
Logger.WARNING(String message)
|
Constructors in org.apache.felix.upnp.basedriver.tool with parameters of type String | |
---|---|
Logger(String levelStr)
Create a Logger with System.out as PrintStream and without
reporting message on both PrintStream and LogService |
Uses of String in org.apache.felix.upnp.basedriver.util |
---|
Fields in org.apache.felix.upnp.basedriver.util declared as String | |
---|---|
static String |
Constants.BASEDRIVER_LOG_PROP
Set the verbosity of the logging message of the bundle |
static String |
Constants.CYBERDOMO_LOG_PROP
If equal to "true" enables the CyberDomo UPnP SDK debugging messages |
static String |
Constants.EXPORTER_ENABLED_PROP
If equal to "true" enables Exporter facility of the UPnP Base Driver |
static String |
Constants.IMPORTER_ENABLED_PROP
If equal to "true" enables Importer facility of the UPnP Base Driver |
static String |
Constants.NET_ONLY_IPV4_PROP
If equal to "true" enables the use of NICs with IPv4 configured and only IPv4 addresses will be used |
static String |
Constants.NET_ONLY_IPV6_PROP
If equal to "true" enables the use of NICs with IPv6 configured and only IPv6 addresses will be used NOTE:This property is used only on JDK 1.4 or greater |
static String |
Constants.NET_USE_LOOPBACK_PROP
If equal to "true" enables the use of Loopback addresses, either IPv6 and IPv4 |
static String |
Constants.UPNP_IMPORT
If this property is set on a UPnP Device means that the device service is been created by UPnP base Driver. |
Methods in org.apache.felix.upnp.basedriver.util that return String | |
---|---|
static String |
Converter.toString(Object value,
String upnpType)
|
Methods in org.apache.felix.upnp.basedriver.util with parameters of type String | |
---|---|
static Object |
Converter.parseString(String value,
String upnpType)
|
static String |
Converter.toString(Object value,
String upnpType)
|
Uses of String in org.apache.felix.upnp.extra.util |
---|
Methods in org.apache.felix.upnp.extra.util that return String | |
---|---|
String |
UPnPSubscriber.subscribeAllServicesOf(String deviceId)
|
String |
UPnPSubscriber.subscribeEveryDeviceTypeServices(String deviceType)
|
String |
UPnPSubscriber.subscribeEveryServiceType(String deviceType,
String serviceType)
|
String |
UPnPSubscriber.subscribeServiceIdOf(String deviceId,
String serviceId)
|
String |
UPnPSubscriber.subscribeServiceTypeOf(String deviceId,
String serviceType)
|
Methods in org.apache.felix.upnp.extra.util with parameters of type String | |
---|---|
void |
EventSource.addPropertyChangeListener(String propertyName,
PropertyChangeListener listener)
|
void |
EventSource.removePropertyChangeListener(String propertyName,
PropertyChangeListener listener)
|
void |
UPnPSubscriber.subscribe(String filter)
|
String |
UPnPSubscriber.subscribeAllServicesOf(String deviceId)
|
String |
UPnPSubscriber.subscribeEveryDeviceTypeServices(String deviceType)
|
String |
UPnPSubscriber.subscribeEveryServiceType(String deviceType,
String serviceType)
|
String |
UPnPSubscriber.subscribeServiceIdOf(String deviceId,
String serviceId)
|
String |
UPnPSubscriber.subscribeServiceTypeOf(String deviceId,
String serviceType)
|
void |
UPnPSubscriber.unsubscribe(String filter)
|
void |
UPnPSubscriber.unsubscribeAllServicesOf(String deviceId)
|
void |
UPnPSubscriber.unsubscribeServiceIdOf(String deviceId,
String serviceId)
|
Uses of String in org.apache.felix.upnp.sample.binaryLight |
---|
Methods in org.apache.felix.upnp.sample.binaryLight with parameters of type String | |
---|---|
void |
LightModel.addPropertyChangeListener(String propertyName,
PropertyChangeListener listener)
|
static ImageIcon |
LightUI.loadIcon(String path,
String title)
|
void |
LightModel.removePropertyChangeListener(String propertyName,
PropertyChangeListener listener)
|
Uses of String in org.apache.felix.upnp.sample.binaryLight.actions |
---|
Methods in org.apache.felix.upnp.sample.binaryLight.actions that return String | |
---|---|
String[] |
SetTargetAction.getInputArgumentNames()
|
String[] |
GetTargetAction.getInputArgumentNames()
|
String[] |
GetStatusAction.getInputArgumentNames()
|
String |
SetTargetAction.getName()
|
String |
GetTargetAction.getName()
|
String |
GetStatusAction.getName()
|
String[] |
SetTargetAction.getOutputArgumentNames()
|
String[] |
GetTargetAction.getOutputArgumentNames()
|
String[] |
GetStatusAction.getOutputArgumentNames()
|
String |
SetTargetAction.getReturnArgumentName()
|
String |
GetTargetAction.getReturnArgumentName()
|
String |
GetStatusAction.getReturnArgumentName()
|
Methods in org.apache.felix.upnp.sample.binaryLight.actions with parameters of type String | |
---|---|
UPnPStateVariable |
SetTargetAction.getStateVariable(String argumentName)
|
UPnPStateVariable |
GetTargetAction.getStateVariable(String argumentName)
|
UPnPStateVariable |
GetStatusAction.getStateVariable(String argumentName)
|
Uses of String in org.apache.felix.upnp.sample.binaryLight.devices |
---|
Methods in org.apache.felix.upnp.sample.binaryLight.devices with parameters of type String | |
---|---|
Dictionary |
LightDevice.getDescriptions(String locale)
|
UPnPIcon[] |
LightDevice.getIcons(String locale)
|
UPnPService |
LightDevice.getService(String serviceId)
|
Uses of String in org.apache.felix.upnp.sample.binaryLight.icons |
---|
Methods in org.apache.felix.upnp.sample.binaryLight.icons that return String | |
---|---|
String |
LightIcon.getMimeType()
|
Uses of String in org.apache.felix.upnp.sample.binaryLight.services |
---|
Methods in org.apache.felix.upnp.sample.binaryLight.services that return String | |
---|---|
String |
PowerSwitchService.getId()
|
String |
PowerSwitchService.getType()
|
String |
PowerSwitchService.getVersion()
|
Methods in org.apache.felix.upnp.sample.binaryLight.services with parameters of type String | |
---|---|
UPnPAction |
PowerSwitchService.getAction(String name)
|
UPnPStateVariable |
PowerSwitchService.getStateVariable(String name)
|
Uses of String in org.apache.felix.upnp.sample.binaryLight.statevariables |
---|
Methods in org.apache.felix.upnp.sample.binaryLight.statevariables that return String | |
---|---|
String[] |
TargetStateVariable.getAllowedValues()
|
String[] |
StatusStateVariable.getAllowedValues()
|
String |
TargetStateVariable.getName()
|
String |
StatusStateVariable.getName()
|
String |
TargetStateVariable.getUPnPDataType()
|
String |
StatusStateVariable.getUPnPDataType()
|
Uses of String in org.apache.felix.upnp.sample.clock |
---|
Methods in org.apache.felix.upnp.sample.clock with parameters of type String | |
---|---|
UPnPAction |
TimerService.getAction(String name)
|
Dictionary |
ClockDevice.getDescriptions(String locale)
|
UPnPIcon[] |
ClockDevice.getIcons(String locale)
|
UPnPService |
ClockDevice.getService(String serviceId)
|
UPnPStateVariable |
SetTimeAction.getStateVariable(String argumentName)
|
UPnPStateVariable |
TimerService.getStateVariable(String name)
|
UPnPStateVariable |
GetTimeAction.getStateVariable(String argumentName)
|
Uses of String in org.apache.felix.upnp.sample.tv |
---|
Methods in org.apache.felix.upnp.sample.tv that return String | |
---|---|
String |
TvDevice.getAirconTempture()
|
String[] |
PowerStateVariable.getAllowedValues()
|
String[] |
ResultStateVariable.getAllowedValues()
|
String |
TvDevice.getClockTime()
|
String |
PowerService.getId()
|
String[] |
GetPowerAction.getInputArgumentNames()
|
String[] |
SetPowerAction.getInputArgumentNames()
|
String |
TvDevice.getMessage()
|
String |
TvIcon.getMimeType()
|
String |
PowerStateVariable.getName()
|
String |
ResultStateVariable.getName()
|
String |
GetPowerAction.getName()
|
String |
SetPowerAction.getName()
|
String[] |
GetPowerAction.getOutputArgumentNames()
|
String[] |
SetPowerAction.getOutputArgumentNames()
|
String |
GetPowerAction.getReturnArgumentName()
|
String |
SetPowerAction.getReturnArgumentName()
|
String |
PowerService.getType()
|
String |
PowerStateVariable.getUPnPDataType()
|
String |
ResultStateVariable.getUPnPDataType()
|
String |
PowerService.getVersion()
|
Methods in org.apache.felix.upnp.sample.tv with parameters of type String | |
---|---|
UPnPAction |
PowerService.getAction(String name)
|
Dictionary |
TvDevice.getDescriptions(String locale)
|
UPnPIcon[] |
TvDevice.getIcons(String locale)
|
UPnPService |
TvDevice.getService(String serviceId)
|
UPnPStateVariable |
PowerService.getStateVariable(String name)
|
UPnPStateVariable |
GetPowerAction.getStateVariable(String argumentName)
|
UPnPStateVariable |
SetPowerAction.getStateVariable(String argumentName)
|
void |
TvDevice.notifyUPnPEvent(String deviceId,
String serviceId,
Dictionary events)
|
void |
TvDevice.setMessage(String msg)
|
void |
UPnPSubscriber.subscribe(String deviceType,
String serviceType)
|
Uses of String in org.apache.felix.upnp.tester |
---|
Methods in org.apache.felix.upnp.tester with parameters of type String | |
---|---|
static ImageIcon |
test.loadIcon(String name)
|
static void |
test.main(String[] args)
|
void |
UPnPSubscriber.subscribe(String deviceId,
String serviceId)
|
void |
UPnPSubscriber.unsubscribe(String deviceId,
String serviceId)
|
Constructors in org.apache.felix.upnp.tester with parameters of type String | |
---|---|
test(String filename)
|
Uses of String in org.apache.felix.upnp.tester.discovery |
---|
Methods in org.apache.felix.upnp.tester.discovery that return String | |
---|---|
String |
DriverProxy.getDeviceDescriptionURI(String udn)
|
String |
DriverProxy.getServiceDescriptionURI(String udn,
String serviceId)
|
String |
DriverProxy.resolveRelativeUrl(String udn,
String link)
|
String |
DeviceNode.toString()
|
Methods in org.apache.felix.upnp.tester.discovery with parameters of type String | |
---|---|
boolean |
DeviceNode.contains(String udn)
|
DeviceNode |
DeviceNode.dethatch(String name)
|
void |
DriverProxy.doSearch(String target)
|
boolean |
DeviceNode.equals(String udn)
|
String |
DriverProxy.getDeviceDescriptionURI(String udn)
|
String |
DriverProxy.getServiceDescriptionURI(String udn,
String serviceId)
|
String |
DriverProxy.resolveRelativeUrl(String udn,
String link)
|
void |
DeviceNodeListener.rootDeviceUnplugged(String udn)
|
DeviceNode |
DeviceNode.search(String name)
|
Uses of String in org.apache.felix.upnp.tester.gui |
---|
Fields in org.apache.felix.upnp.tester.gui declared as String | |
---|---|
static String |
UPnPDeviceTreeNode.ACTION
|
protected String |
UPnPDeviceTreeNode.category
|
static String |
UPnPDeviceTreeNode.DEVICE
|
static String |
UPnPDeviceTreeNode.EVENTED_STATE
|
static String |
UPnPDeviceTreeNode.ROOT_DEVICE
|
static String |
UPnPDeviceTreeNode.SERVICE
|
static String |
UPnPDeviceTreeNode.STATE
|
static String |
UPnPDeviceTreeNode.SUBSCRIBED_STATE
|
Methods in org.apache.felix.upnp.tester.gui that return String | |
---|---|
String |
PropertiesViewer.getDataLink(Point p)
|
static String |
Util.justString(Object obj)
|
String |
UPnPDeviceTreeNode.toString()
|
Methods in org.apache.felix.upnp.tester.gui with parameters of type String | |
---|---|
static void |
LogPanel.clear(String msg)
|
static void |
LogPanel.log(String msg)
|
void |
SubscriptionPanel.notifyUPnPEvent(String deviceId,
String serviceId,
Dictionary events)
|
static void |
Util.openUrl(String url)
|
void |
TreeViewer.rootDeviceUnplugged(String udn)
|
void |
PropertiesViewer.setProperties(String[] name,
String[] values)
|
void |
PropertiesViewer.setProperties(String[] name,
String[] values)
|
static void |
LogPanel.status(String msg)
|
Constructors in org.apache.felix.upnp.tester.gui with parameters of type String | |
---|---|
UPnPDeviceTreeNode(String obj)
|
Uses of String in org.apache.felix.useradmin |
---|
Methods in org.apache.felix.useradmin with parameters of type String | |
---|---|
Role |
UserAdminRepositoryManager.findRoleByName(String name)
Finding role by role name. |
Object |
UserAdminRepositoryManager.findRoleByTypeAndKeyValue(int roleType,
String key,
String value)
Finding Role by role type and property of a role. |
Role |
UserAdminRepositoryManager.remove(String name)
Remove role with provided name. |
Role |
UserAdminRepositoryManager.save(String name,
int type,
UserAdminServiceImpl userAdmin)
Saving role with specific name and type. |
void |
Base64.setCharset(String charset)
Setting character set. |
void |
MessageDigester.setCharset(String charset)
Setting char set for digester. |
Uses of String in org.apache.felix.useradmin.impl |
---|
Fields in org.apache.felix.useradmin.impl declared as String | |
---|---|
protected String |
RoleImpl.name
role name. |
Methods in org.apache.felix.useradmin.impl that return String | |
---|---|
protected String |
RoleProperties.getChangeAction()
The permission need to modify the properties. |
protected String |
RoleCredentials.getChangeAction()
The permission need to modify the credentials. |
String |
AuthorizationImpl.getName()
|
String |
RoleImpl.getName()
|
String[] |
AuthorizationImpl.getRoles()
Looking for all Roles implied by this Authorization object. |
String |
RoleProperties.toString()
|
String |
RoleCredentials.toString()
|
Methods in org.apache.felix.useradmin.impl with parameters of type String | |
---|---|
Role |
UserAdminServiceImpl.createRole(String name,
int type)
|
Role |
UserAdminRepositoryManagerImpl.findRoleByName(String name)
|
Object |
UserAdminRepositoryManagerImpl.findRoleByTypeAndKeyValue(int roleType,
String key,
String value)
|
Role |
UserAdminServiceImpl.getRole(String name)
|
Role[] |
UserAdminServiceImpl.getRoles(String filter)
|
User |
UserAdminServiceImpl.getUser(String key,
String value)
|
boolean |
UserImpl.hasCredential(String key,
Object value)
|
boolean |
AuthorizationImpl.hasRole(String name)
|
void |
Logger.log(int level,
String message)
|
void |
Logger.log(int level,
String message,
Throwable exception)
|
void |
Logger.log(ServiceReference ref,
int level,
String message)
|
void |
Logger.log(ServiceReference ref,
int level,
String message,
Throwable exception)
|
Role |
UserAdminRepositoryManagerImpl.remove(String name)
|
boolean |
UserAdminServiceImpl.removeRole(String name)
|
Role |
UserAdminRepositoryManagerImpl.save(String name,
int type,
UserAdminServiceImpl userAdmin)
|
void |
Base64Impl.setCharset(String charset)
|
void |
MessageDigesterImpl.setCharset(String charset)
|
void |
RoleImpl.setName(String name)
Setting role name. |
Constructors in org.apache.felix.useradmin.impl with parameters of type String | |
---|---|
MessageDigesterImpl(String algorithm,
String randomGenerator)
Constructs new MessageDigester. |
Uses of String in org.apache.felix.webconsole |
---|
Fields in org.apache.felix.webconsole declared as String | |
---|---|
static String |
WebConsoleConstants.ATTR_APP_ROOT
The name of the request attribute providing the absolute path of the Web Console root (value is "felix.webconsole.appRoot"). |
static String |
WebConsoleConstants.ATTR_CONSOLE_VARIABLE_RESOLVER
The name of the request attribute holding the VariableResolver
for the request (value is "felix.webconsole.variable.resolver"). |
static String |
AbstractWebConsolePlugin.ATTR_FILEUPLOAD
The name of the request attribute containing the map of FileItems from the POST request |
static String |
WebConsoleConstants.ATTR_LABEL_MAP
The name of the request attribute providing a mapping of labels to page titles of registered console plugins (value is "felix.webconsole.labelMap"). |
static String |
WebConsoleConstants.ATTR_LANG_MAP
The name of the request attribute holding the language Map
for the request (value is "felix.webconsole.langMap"). |
static String |
WebConsoleConstants.ATTR_PLUGIN_ROOT
The name of the request attribute providing the absolute path of the current plugin (value is "felix.webconsole.pluginRoot"). |
static String |
WebConsoleConstants.CONFIG_PRINTER_MODES
The property marking a service as a configuration printer. |
static String |
WebConsoleConstants.CONFIG_PRINTER_WEB_UNESCAPED
Name of the optional service registration property indicating that a ConfigurationPrinter service will provide HTML output when used
in web mode. |
static String |
AbstractWebConsolePlugin.GET_RESOURCE_METHOD_NAME
Web Console Plugin typically consists of servlet and resources such as images, scripts or style sheets. |
static String |
ConfigurationPrinter.MODE_ALWAYS
The default mode - this printer is used in the web console and the zip. |
static String |
ConfigurationPrinter.MODE_TXT
The txt mode - this printer is used in the txt. |
static String |
ConfigurationPrinter.MODE_WEB
The web mode - this printer is used in the web console. |
static String |
ConfigurationPrinter.MODE_ZIP
The zip mode - this printer is used in the zip. |
static String |
WebConsoleConstants.PLUGIN_CSS_REFERENCES
The name of the service registration properties providing references to addition CSS files that should be loaded when rendering the header for a registered plugin. |
static String |
WebConsoleConstants.PLUGIN_LABEL
The URI address label under which the OSGi Manager plugin is called by the OSGi Manager (value is "felix.webconsole.label"). |
static String |
WebConsoleConstants.PLUGIN_TITLE
The title under which the OSGi Manager plugin is called by the OSGi Manager (value is "felix.webconsole.title"). |
static String |
ConfigurationPrinter.PROPERTY_MODES
Deprecated. Use WebConsoleConstants.CONFIG_PRINTER_MODES |
static String |
ConfigurationPrinter.SERVICE
The service name under which services of this class must be registered to be picked for inclusion in the configuration report. |
static String |
WebConsoleConstants.SERVICE_NAME
The name of the service to register as to be used as a "plugin" for the OSGi Manager (value is "javax.servlet.Servlet"). |
static String |
WebConsoleSecurityProvider2.USER_ATTRIBUTE
The name of the request attribute providing the object representing the authenticated user. |
Methods in org.apache.felix.webconsole that return String | |
---|---|
static String |
WebConsoleUtil.escapeHtml(String text)
Escapes HTML special chars like: <>&\r\n and space |
String |
BrandingPlugin.getBrandName()
Returns an indicative name of the branding plugin. |
String |
DefaultBrandingPlugin.getBrandName()
|
protected String[] |
AbstractWebConsolePlugin.getCssReferences()
Returns a list of CSS reference paths or null if no
additional CSS files are provided by the plugin. |
protected String[] |
SimpleWebConsolePlugin.getCssReferences()
|
String |
BrandingPlugin.getFavIcon()
Returns the absolute path to an icon to be used as the web console "favicon". |
String |
DefaultBrandingPlugin.getFavIcon()
|
abstract String |
AbstractWebConsolePlugin.getLabel()
Retrieves the label. |
String |
SimpleWebConsolePlugin.getLabel()
|
String |
BrandingPlugin.getMainStyleSheet()
Returns the absolute path to a CSS file to be used as the main CSS for the basic admin site. |
String |
DefaultBrandingPlugin.getMainStyleSheet()
|
static String |
AbstractWebConsolePlugin.getParameter(HttpServletRequest request,
String name)
Deprecated. use WebConsoleUtil.getParameter(HttpServletRequest, String) |
static String |
WebConsoleUtil.getParameter(HttpServletRequest request,
String name)
An utility method, that is used to filter out simple parameter from file parameter when multipart transfer encoding is used. |
String |
BrandingPlugin.getProductImage()
Returns an absolute path to an image to be rendered as the logo of the branding product. |
String |
DefaultBrandingPlugin.getProductImage()
|
String |
BrandingPlugin.getProductName()
Returns the name of the product in which the web console is contained and to which the web console is branded. |
String |
DefaultBrandingPlugin.getProductName()
|
String |
BrandingPlugin.getProductURL()
Returns an (absolute) URL to a web site representing the product to which the web console is branded. |
String |
DefaultBrandingPlugin.getProductURL()
|
String |
AbstractWebConsolePlugin.getServletName()
Returns the title for this plugin as returned by AbstractWebConsolePlugin.getTitle() |
abstract String |
AbstractWebConsolePlugin.getTitle()
Retrieves the title of the plug-in. |
String |
SimpleWebConsolePlugin.getTitle()
|
String |
ConfigurationPrinter.getTitle()
Returns a human readable title string to be placed in front of the configuration report generated by the ConfigurationPrinter.printConfiguration(PrintWriter) method. |
String |
BrandingPlugin.getVendorImage()
Returns an absolute path to an image to be rendered as the logo of the branding product vendor. |
String |
DefaultBrandingPlugin.getVendorImage()
|
String |
BrandingPlugin.getVendorName()
Returns the name of the branding product vendor. |
String |
DefaultBrandingPlugin.getVendorName()
|
String |
BrandingPlugin.getVendorURL()
Returns an (absolute) URL to the web site of the branding product vendor. |
String |
DefaultBrandingPlugin.getVendorURL()
|
protected String |
AbstractWebConsolePlugin.readTemplateFile(String templateFile)
Reads the templateFile as a resource through the class
loader of this class converting the binary data into a string using
UTF-8 encoding. |
String |
DefaultVariableResolver.resolve(String variable)
Returns the string representation of the value stored under the variable name in this map. |
String |
VariableResolver.resolve(String variable)
Returns a replacement value for the named variable or null
if no replacement is available. |
static String |
WebConsoleUtil.toString(Object value)
This method will stringify a Java object. |
static String |
WebConsoleUtil.urlDecode(String value)
Decode the given value expected to be URL encoded. |
Methods in org.apache.felix.webconsole with parameters of type String | |
---|---|
Object |
WebConsoleSecurityProvider.authenticate(String username,
String password)
Authenticates the user with the given user name and password. |
boolean |
WebConsoleSecurityProvider.authorize(Object user,
String role)
Checks whether bthe authenticated user has the given role permission. |
static String |
WebConsoleUtil.escapeHtml(String text)
Escapes HTML special chars like: <>&\r\n and space |
URL[] |
AttachmentProvider.getAttachments(String mode)
Return an array of attachments for the given render mode. |
static String |
AbstractWebConsolePlugin.getParameter(HttpServletRequest request,
String name)
Deprecated. use WebConsoleUtil.getParameter(HttpServletRequest, String) |
static String |
WebConsoleUtil.getParameter(HttpServletRequest request,
String name)
An utility method, that is used to filter out simple parameter from file parameter when multipart transfer encoding is used. |
static int |
WebConsoleUtil.getParameterInt(HttpServletRequest request,
String name,
int _default)
Retrieves a request parameter and converts it to int. |
protected URL |
SimpleWebConsolePlugin.getResource(String path)
Called internally by AbstractWebConsolePlugin to load resources. |
Object |
SimpleWebConsolePlugin.getService(String serviceName)
Gets the service with the specified class name. |
static void |
WebConsoleUtil.keyVal(org.json.JSONWriter jw,
String key,
Object value)
Writes a key-value pair in a JSON writer. |
void |
AbstractWebConsolePlugin.log(int level,
String message)
Calls the GenericServlet.log(String) method if the
configured log level is less than or equal to the given level . |
void |
AbstractWebConsolePlugin.log(int level,
String message,
Throwable t)
Calls the GenericServlet.log(String, Throwable) method if
the configured log level is less than or equal to the given
level . |
void |
ModeAwareConfigurationPrinter.printConfiguration(PrintWriter printWriter,
String mode)
Prints the configuration report to the given printWriter . |
protected String |
AbstractWebConsolePlugin.readTemplateFile(String templateFile)
Reads the templateFile as a resource through the class
loader of this class converting the binary data into a string using
UTF-8 encoding. |
String |
DefaultVariableResolver.resolve(String variable)
Returns the string representation of the value stored under the variable name in this map. |
String |
VariableResolver.resolve(String variable)
Returns a replacement value for the named variable or null
if no replacement is available. |
protected void |
AbstractWebConsolePlugin.sendRedirect(HttpServletRequest request,
HttpServletResponse response,
String redirectUrl)
Deprecated. use WebConsoleUtil.sendRedirect(HttpServletRequest, HttpServletResponse, String) |
static void |
WebConsoleUtil.sendRedirect(HttpServletRequest request,
HttpServletResponse response,
String redirectUrl)
Utility method to handle relative redirects. |
static String |
WebConsoleUtil.urlDecode(String value)
Decode the given value expected to be URL encoded. |
Constructors in org.apache.felix.webconsole with parameters of type String | |
---|---|
SimpleWebConsolePlugin(String label,
String title,
String[] css)
Creates new Simple Web Console Plugin. |
|
SimpleWebConsolePlugin(String label,
String title,
String[] css)
Creates new Simple Web Console Plugin. |
Uses of String in org.apache.felix.webconsole.internal |
---|
Fields in org.apache.felix.webconsole.internal declared as String | |
---|---|
static String |
Util.PAGE_LOGS
Logs subpage |
static String |
Util.PAGE_VM_STAT
vm statistics subpage |
static String |
Util.PAGE_WEBAPPS
web apps subpage |
static String |
Util.PARAM_ACTION
Parameter name |
static String |
Util.PARAM_CONTENT
Parameter name |
static String |
Util.PARAM_SHUTDOWN
Parameter name |
static String |
Util.VALUE_SHUTDOWN
Parameter value |
Methods in org.apache.felix.webconsole.internal that return String | |
---|---|
protected String[] |
WebConsolePluginAdapter.getCssReferences()
Returns the CSS references from the felix.webconsole.css
service registration property of the plugin. |
static String |
Util.getHeaderValue(Bundle bundle,
String headerName)
Returns the value of the header or the empty string if the header is not available. |
String |
WebConsolePluginAdapter.getLabel()
Returns the label of this plugin page as defined in the constructor. |
static String |
Util.getName(Bundle bundle,
Locale locale)
Return a display name for the given bundle :
If the bundle has a non-empty Bundle-Name manifest
header that value is returned.
Otherwise the symbolic name is returned if set
Otherwise the bundle's location is returned if defined
Finally, as a last resort, the bundles id is returned
|
String |
WebConsolePluginAdapter.getTitle()
Returns the title of this plugin page as defined by the WebConsoleConstants.PLUGIN_TITLE service registration attribute
which is exposed as the servlet name in the servlet configuration. |
Methods in org.apache.felix.webconsole.internal with parameters of type String | |
---|---|
static String |
Util.getHeaderValue(Bundle bundle,
String headerName)
Returns the value of the header or the empty string if the header is not available. |
static Locale |
Util.parseLocaleString(String locale)
This method expects a locale string in format language_COUNTRY, or language. |
Constructors in org.apache.felix.webconsole.internal with parameters of type String | |
---|---|
WebConsolePluginAdapter(String label,
Servlet plugin,
ServiceReference serviceReference)
Creates a new wrapper for a Web Console Plugin |
Uses of String in org.apache.felix.webconsole.internal.compendium |
---|
Methods in org.apache.felix.webconsole.internal.compendium that return String | |
---|---|
String |
WireAdminConfigurationPrinter.getTitle()
|
String |
ConfigurationAdminConfigurationPrinter.getTitle()
|
String |
PreferencesConfigurationPrinter.getTitle()
|
String |
ComponentConfigurationPrinter.getTitle()
|
Uses of String in org.apache.felix.webconsole.internal.core |
---|
Fields in org.apache.felix.webconsole.internal.core declared as String | |
---|---|
static String |
ServicesServlet.LABEL
the label for the services plugin |
static String |
BundlesServlet.NAME
the label of the bundles plugin - used by other plugins to reference to plugin details |
Methods in org.apache.felix.webconsole.internal.core that return String | |
---|---|
String |
ServicesConfigurationPrinter.getTitle()
|
String |
PermissionsConfigurationPrinter.getTitle()
|
Uses of String in org.apache.felix.webconsole.internal.misc |
---|
Fields in org.apache.felix.webconsole.internal.misc declared as String | |
---|---|
String |
ConfigurationPrinterAdapter.label
|
String |
ConfigurationPrinterAdapter.title
|
Methods in org.apache.felix.webconsole.internal.misc that return String | |
---|---|
String |
SystemPropertiesPrinter.getTitle()
|
String |
ThreadPrinter.getTitle()
|
String |
ConfigurationPrinterAdapter.toString()
|
Methods in org.apache.felix.webconsole.internal.misc with parameters of type String | |
---|---|
URL[] |
ConfigurationPrinterAdapter.getAttachments(String mode)
|
static void |
ConfigurationRender.infoLine(PrintWriter pw,
String indent,
String label,
Object value)
Renders an info line - element in the framework configuration. |
boolean |
ConfigurationPrinterAdapter.match(String mode)
|
void |
ConfigurationPrinterAdapter.printConfiguration(PrintWriter pw,
String mode)
|
Uses of String in org.apache.felix.webconsole.internal.obr |
---|
Methods in org.apache.felix.webconsole.internal.obr with parameters of type String | |
---|---|
static void |
OsgiDeployer.logRequirements(AbstractWebConsolePlugin logger,
String message,
Requirement[] reasons)
|
static void |
OsgiDeployer.logResource(AbstractWebConsolePlugin logger,
String message,
Resource[] res)
|
Uses of String in org.apache.felix.webconsole.internal.servlet |
---|
Fields in org.apache.felix.webconsole.internal.servlet declared as String | |
---|---|
static String |
OsgiManager.PARAM_NO_REDIRECT_AFTER_ACTION
The name and value of a parameter which will prevent redirection to a render after the action has been executed (value is "_noredir_"). |
Methods in org.apache.felix.webconsole.internal.servlet that return String | |
---|---|
static String |
Base64.encodeBase64String(byte[] binaryData)
Encodes binary data using the base64 algorithm into 76 character blocks separated by CRLF. |
static String |
Base64.encodeBase64URLSafeString(byte[] binaryData)
Encodes binary data using a URL-safe variation of the base64 algorithm but does not chunk the output. |
String |
Base64.encodeToString(byte[] pArray)
Encodes a byte[] containing binary data, into a String containing characters in the Base64 alphabet. |
Methods in org.apache.felix.webconsole.internal.servlet with parameters of type String | |
---|---|
byte[] |
Base64.decode(String pArray)
Decodes a String containing characters in the Base64 alphabet. |
static byte[] |
Base64.decodeBase64(String base64String)
Decodes a Base64 String into octets |
Uses of String in org.apache.felix.webconsole.plugins.event.internal |
---|
Fields in org.apache.felix.webconsole.plugins.event.internal declared as String | |
---|---|
String |
EventInfo.category
The event class. |
String |
EventInfo.info
Additional information for this event. |
String |
EventInfo.topic
The event topic. |
Methods in org.apache.felix.webconsole.plugins.event.internal that return String | |
---|---|
static String |
OsgiUtil.toString(Dictionary props,
String key,
String defaultValue)
|
static String[] |
OsgiUtil.toStringArray(Dictionary props,
String key,
String[] defaultArray)
|
Methods in org.apache.felix.webconsole.plugins.event.internal with parameters of type String | |
---|---|
URL |
PluginServlet.getResource(String path)
|
static boolean |
OsgiUtil.toBoolean(Dictionary props,
String key,
boolean defaultValue)
|
static int |
OsgiUtil.toInteger(Dictionary props,
String key,
int defaultValue)
|
static Object |
OsgiUtil.toObject(Dictionary props,
String key)
|
static String |
OsgiUtil.toString(Dictionary props,
String key,
String defaultValue)
|
static String[] |
OsgiUtil.toStringArray(Dictionary props,
String key,
String[] defaultArray)
|
static String[] |
OsgiUtil.toStringArray(Dictionary props,
String key,
String[] defaultArray)
|
Constructors in org.apache.felix.webconsole.plugins.event.internal with parameters of type String | |
---|---|
EventInfo(String topic,
String info,
String category)
|
|
EventInfo(String topic,
String info,
String category,
Map props)
|
Uses of String in org.apache.felix.webconsole.plugins.event.internal.converter |
---|
Fields in org.apache.felix.webconsole.plugins.event.internal.converter declared as String | |
---|---|
static String |
ServiceEventConverter.TOPIC
|
static String |
FrameworkEventConverter.TOPIC
|
static String |
ConfigurationEventConverter.TOPIC
|
static String |
BundleEventConverter.TOPIC
|
Uses of String in org.apache.felix.wireadmin |
---|
Methods in org.apache.felix.wireadmin that return String | |
---|---|
String[] |
WireImpl.getScope()
Return the calculated scope of this Wire object. |
String |
WireImpl.toString()
|
Methods in org.apache.felix.wireadmin with parameters of type String | |
---|---|
Wire |
WireAdminImpl.createWire(String producerPID,
String consumerPID,
Dictionary props)
Create a new Wire object that connects a Producer service to a Consumer service. |
Wire[] |
WireAdminImpl.getWires(String filter)
Return the Wire objects that match the given filter. |
boolean |
WireImpl.hasScope(String name)
Return true if the given name is in this Wire object's scope. |
Uses of String in org.apache.xerces.impl.dv.util |
---|
Methods in org.apache.xerces.impl.dv.util that return String | |
---|---|
static String |
HexBin.encode(byte[] binaryData)
Encode a byte array to hex string |
static String |
Base64.encode(byte[] binaryData)
Encodes hex octects into Base64 |
Methods in org.apache.xerces.impl.dv.util with parameters of type String | |
---|---|
static byte[] |
HexBin.decode(String encoded)
Decode hex string to a byte array |
static byte[] |
Base64.decode(String encoded)
Decodes Base64 data into octects |
Uses of String in org.osgi.application |
---|
Methods in org.osgi.application that return String | |
---|---|
String |
ApplicationContext.getApplicationId()
This method return the identifier of the corresponding application type. |
String |
ApplicationContext.getInstanceId()
This method returns the identifier of the corresponding application instance. |
Methods in org.osgi.application with parameters of type String | |
---|---|
void |
ApplicationContext.addServiceListener(ApplicationServiceListener listener,
String referenceName)
Adds the specified ApplicationServiceListener object to this context
application instance's list of listeners. |
void |
ApplicationContext.addServiceListener(ApplicationServiceListener listener,
String[] referenceNames)
Adds the specified ApplicationServiceListener object to this context
application instance's list of listeners. |
Object |
ApplicationContext.locateService(String referenceName)
This method returns the service object for the specified referenceName . |
Object[] |
ApplicationContext.locateServices(String referenceName)
This method returns the service objects for the specified referenceName . |
ServiceRegistration |
ApplicationContext.registerService(String[] clazzes,
Object service,
Dictionary properties)
Registers the specified service object with the specified properties under the specified class names into the Framework. |
ServiceRegistration |
ApplicationContext.registerService(String clazz,
Object service,
Dictionary properties)
Registers the specified service object with the specified properties under the specified class name with the Framework. |
Uses of String in org.osgi.framework |
---|
Fields in org.osgi.framework declared as String | |
---|---|
static String |
Constants.ACTIVATION_LAZY
Bundle activation policy declaring the bundle must be activated when the first class load is made from the bundle. |
static String |
Constants.BUNDLE_ACTIVATIONPOLICY
Manifest header identifying the bundle's activation policy. |
static String |
Constants.BUNDLE_ACTIVATOR
Manifest header attribute identifying the bundle's activator class. |
static String |
Constants.BUNDLE_CATEGORY
Manifest header identifying the bundle's category. |
static String |
Constants.BUNDLE_CLASSPATH
Manifest header identifying a list of directories and embedded JAR files, which are bundle resources used to extend the bundle's classpath. |
static String |
Constants.BUNDLE_CONTACTADDRESS
Manifest header identifying the contact address where problems with the bundle may be reported; for example, an email address. |
static String |
Constants.BUNDLE_COPYRIGHT
Manifest header identifying the bundle's copyright information. |
static String |
Constants.BUNDLE_DESCRIPTION
Manifest header containing a brief description of the bundle's functionality. |
static String |
Constants.BUNDLE_DOCURL
Manifest header identifying the bundle's documentation URL, from which further information about the bundle may be obtained. |
static String |
Constants.BUNDLE_LOCALIZATION
Manifest header identifying the base name of the bundle's localization entries. |
static String |
Constants.BUNDLE_LOCALIZATION_DEFAULT_BASENAME
Default value for the Bundle-Localization manifest header. |
static String |
Constants.BUNDLE_MANIFESTVERSION
Manifest header identifying the bundle manifest version. |
static String |
Constants.BUNDLE_NAME
Manifest header identifying the bundle's name. |
static String |
Constants.BUNDLE_NATIVECODE
Manifest header identifying a number of hardware environments and the native language code libraries that the bundle is carrying for each of these environments. |
static String |
Constants.BUNDLE_NATIVECODE_LANGUAGE
Manifest header attribute identifying the language in which the native bundle code is written specified in the Bundle-NativeCode manifest header. |
static String |
Constants.BUNDLE_NATIVECODE_OSNAME
Manifest header attribute identifying the operating system required to run native bundle code specified in the Bundle-NativeCode manifest header). |
static String |
Constants.BUNDLE_NATIVECODE_OSVERSION
Manifest header attribute identifying the operating system version required to run native bundle code specified in the Bundle-NativeCode manifest header). |
static String |
Constants.BUNDLE_NATIVECODE_PROCESSOR
Manifest header attribute identifying the processor required to run native bundle code specified in the Bundle-NativeCode manifest header). |
static String |
Constants.BUNDLE_REQUIREDEXECUTIONENVIRONMENT
Manifest header identifying the required execution environment for the bundle. |
static String |
Constants.BUNDLE_SYMBOLICNAME
Manifest header identifying the bundle's symbolic name. |
static String |
Constants.BUNDLE_SYMBOLICNAME_ATTRIBUTE
Manifest header attribute identifying the symbolic name of a bundle that exports a package specified in the Import-Package manifest header. |
static String |
Constants.BUNDLE_UPDATELOCATION
Manifest header identifying the location from which a new bundle version is obtained during a bundle update operation. |
static String |
Constants.BUNDLE_VENDOR
Manifest header identifying the bundle's vendor. |
static String |
Constants.BUNDLE_VERSION
Manifest header identifying the bundle's version. |
static String |
Constants.BUNDLE_VERSION_ATTRIBUTE
Manifest header attribute identifying a range of versions for a bundle specified in the Require-Bundle or
Fragment-Host manifest headers. |
static String |
AdminPermission.CLASS
The action string class . |
static String |
AdminPermission.CONTEXT
The action string context . |
static String |
Constants.DYNAMICIMPORT_PACKAGE
Manifest header identifying the packages that the bundle may dynamically import during execution. |
static String |
Constants.EXCLUDE_DIRECTIVE
Manifest header directive identifying a list of classes to exclude in the exported package.. |
static String |
AdminPermission.EXECUTE
The action string execute . |
static String |
PackagePermission.EXPORT
Deprecated. Since 1.5. Use exportonly instead. |
static String |
Constants.EXPORT_PACKAGE
Manifest header identifying the packages that the bundle offers to the Framework for export. |
static String |
Constants.EXPORT_SERVICE
Deprecated. As of 1.2. |
static String |
PackagePermission.EXPORTONLY
The action string exportonly . |
static String |
Constants.EXTENSION_BOOTCLASSPATH
Manifest header directive value identifying the type of extension fragment. |
static String |
Constants.EXTENSION_DIRECTIVE
Manifest header directive identifying the type of the extension fragment. |
static String |
Constants.EXTENSION_FRAMEWORK
Manifest header directive value identifying the type of extension fragment. |
static String |
AdminPermission.EXTENSIONLIFECYCLE
The action string extensionLifecycle . |
static String |
BundlePermission.FRAGMENT
The action string fragment . |
static String |
Constants.FRAGMENT_ATTACHMENT_ALWAYS
Manifest header directive value identifying a fragment attachment type of always. |
static String |
Constants.FRAGMENT_ATTACHMENT_DIRECTIVE
Manifest header directive identifying if and when a fragment may attach to a host bundle. |
static String |
Constants.FRAGMENT_ATTACHMENT_NEVER
Manifest header directive value identifying a fragment attachment type of never. |
static String |
Constants.FRAGMENT_ATTACHMENT_RESOLVETIME
Manifest header directive value identifying a fragment attachment type of resolve-time. |
static String |
Constants.FRAGMENT_HOST
Manifest header identifying the symbolic name of another bundle for which that the bundle is a fragment. |
static String |
Constants.FRAMEWORK_BEGINNING_STARTLEVEL
Specifies the beginning start level of the framework. |
static String |
Constants.FRAMEWORK_BOOTDELEGATION
Framework environment property identifying packages for which the Framework must delegate class loading to the parent class loader of the bundle. |
static String |
Constants.FRAMEWORK_BUNDLE_PARENT
Specifies the parent class loader type for all bundle class loaders. |
static String |
Constants.FRAMEWORK_BUNDLE_PARENT_APP
Specifies to use the application class loader as the parent class loader for all bundle class loaders. |
static String |
Constants.FRAMEWORK_BUNDLE_PARENT_BOOT
Specifies to use of the boot class loader as the parent class loader for all bundle class loaders. |
static String |
Constants.FRAMEWORK_BUNDLE_PARENT_EXT
Specifies to use the extension class loader as the parent class loader for all bundle class loaders. |
static String |
Constants.FRAMEWORK_BUNDLE_PARENT_FRAMEWORK
Specifies to use the framework class loader as the parent class loader for all bundle class loaders. |
static String |
Constants.FRAMEWORK_EXECPERMISSION
Specifies an optional OS specific command to set file permissions on extracted native code. |
static String |
Constants.FRAMEWORK_EXECUTIONENVIRONMENT
Framework environment property identifying execution environments provided by the Framework. |
static String |
Constants.FRAMEWORK_LANGUAGE
Framework environment property identifying the Framework implementation language (see ISO 639 for possible values). |
static String |
Constants.FRAMEWORK_LIBRARY_EXTENSIONS
Specifies a comma separated list of additional library file extensions that must be used when a bundle's class loader is searching for native libraries. |
static String |
Constants.FRAMEWORK_OS_NAME
Framework environment property identifying the Framework host-computer's operating system. |
static String |
Constants.FRAMEWORK_OS_VERSION
Framework environment property identifying the Framework host-computer's operating system version number. |
static String |
Constants.FRAMEWORK_PROCESSOR
Framework environment property identifying the Framework host-computer's processor name. |
static String |
Constants.FRAMEWORK_SECURITY
Specifies the type of security manager the framework must use. |
static String |
Constants.FRAMEWORK_SECURITY_OSGI
Specifies that a security manager that supports all security aspects of the OSGi core specification including postponed conditions must be installed. |
static String |
Constants.FRAMEWORK_STORAGE
Specified the persistent storage area used by the framework. |
static String |
Constants.FRAMEWORK_STORAGE_CLEAN
Specifies if and when the persistent storage area for the framework should be cleaned. |
static String |
Constants.FRAMEWORK_STORAGE_CLEAN_ONFIRSTINIT
Specifies that the framework storage area must be cleaned before the framework is initialized for the first time. |
static String |
Constants.FRAMEWORK_SYSTEMPACKAGES
Framework environment property identifying packages which the system bundle must export. |
static String |
Constants.FRAMEWORK_SYSTEMPACKAGES_EXTRA
Framework environment property identifying extra packages which the system bundle must export from the current execution environment. |
static String |
Constants.FRAMEWORK_TRUST_REPOSITORIES
Specifies the trust repositories used by the framework. |
static String |
Constants.FRAMEWORK_VENDOR
Framework environment property identifying the Framework implementation vendor. |
static String |
Constants.FRAMEWORK_VERSION
Framework environment property identifying the Framework version. |
static String |
Constants.FRAMEWORK_WINDOWSYSTEM
Specifies the current windowing system. |
static String |
ServicePermission.GET
The action string get . |
static String |
BundlePermission.HOST
The action string host . |
static String |
PackagePermission.IMPORT
The action string import . |
static String |
Constants.IMPORT_PACKAGE
Manifest header identifying the packages on which the bundle depends. |
static String |
Constants.IMPORT_SERVICE
Deprecated. As of 1.2. |
static String |
Constants.INCLUDE_DIRECTIVE
Manifest header directive identifying a list of classes to include in the exported package. |
static String |
AdminPermission.LIFECYCLE
The action string lifecycle . |
static String |
AdminPermission.LISTENER
The action string listener . |
static String |
Constants.MANDATORY_DIRECTIVE
Manifest header directive identifying names of matching attributes which must be specified by matching Import-Package statements in the Export-Package manifest header. |
static String |
AdminPermission.METADATA
The action string metadata . |
static String |
Constants.OBJECTCLASS
Service property identifying all of the class names under which a service was registered in the Framework. |
static String |
Constants.PACKAGE_SPECIFICATION_VERSION
Deprecated. As of 1.3. This has been replaced by Constants.VERSION_ATTRIBUTE . |
static String |
BundlePermission.PROVIDE
The action string provide . |
static String |
ServicePermission.REGISTER
The action string register . |
static String |
BundlePermission.REQUIRE
The action string require . |
static String |
Constants.REQUIRE_BUNDLE
Manifest header identifying the symbolic names of other bundles required by the bundle. |
static String |
Constants.RESOLUTION_DIRECTIVE
Manifest header directive identifying the resolution type in the Import-Package or Require-Bundle manifest header. |
static String |
Constants.RESOLUTION_MANDATORY
Manifest header directive value identifying a mandatory resolution type. |
static String |
Constants.RESOLUTION_OPTIONAL
Manifest header directive value identifying an optional resolution type. |
static String |
AdminPermission.RESOLVE
The action string resolve . |
static String |
AdminPermission.RESOURCE
The action string resource . |
static String |
Constants.SELECTION_FILTER_ATTRIBUTE
Manifest header attribute is used for selection by filtering based upon system properties. |
static String |
Constants.SERVICE_DESCRIPTION
Service property identifying a service's description. |
static String |
Constants.SERVICE_ID
Service property identifying a service's registration number. |
static String |
Constants.SERVICE_PID
Service property identifying a service's persistent identifier. |
static String |
Constants.SERVICE_RANKING
Service property identifying a service's ranking number. |
static String |
Constants.SERVICE_VENDOR
Service property identifying a service's vendor. |
static String |
Constants.SINGLETON_DIRECTIVE
Manifest header directive identifying whether a bundle is a singleton. |
static String |
AdminPermission.STARTLEVEL
The action string startlevel . |
static String |
Constants.SUPPORTS_BOOTCLASSPATH_EXTENSION
Framework environment property identifying whether the Framework supports bootclasspath extension bundles. |
static String |
Constants.SUPPORTS_FRAMEWORK_EXTENSION
Framework environment property identifying whether the Framework supports framework extension bundles. |
static String |
Constants.SUPPORTS_FRAMEWORK_FRAGMENT
Framework environment property identifying whether the Framework supports fragment bundles. |
static String |
Constants.SUPPORTS_FRAMEWORK_REQUIREBUNDLE
Framework environment property identifying whether the Framework supports the Require-Bundle manifest header. |
static String |
Constants.SYSTEM_BUNDLE_LOCATION
Location identifier of the OSGi system bundle , which is defined to be "System Bundle". |
static String |
Constants.SYSTEM_BUNDLE_SYMBOLICNAME
Alias for the symbolic name of the OSGi system bundle . |
static String |
Constants.USES_DIRECTIVE
Manifest header directive identifying a list of packages that an exported package uses. |
static String |
Constants.VERSION_ATTRIBUTE
Manifest header attribute identifying the version of a package specified in the Export-Package or Import-Package manifest header. |
static String |
Constants.VISIBILITY_DIRECTIVE
Manifest header directive identifying the visibility of a required bundle in the Require-Bundle manifest header. |
static String |
Constants.VISIBILITY_PRIVATE
Manifest header directive value identifying a private visibility type. |
static String |
Constants.VISIBILITY_REEXPORT
Manifest header directive value identifying a reexport visibility type. |
Methods in org.osgi.framework that return String | |
---|---|
String |
ServicePermission.getActions()
Returns the canonical string representation of the actions. |
String |
PackagePermission.getActions()
Returns the canonical string representation of the PackagePermission actions. |
String |
AdminPermission.getActions()
Returns the canonical string representation of the AdminPermission actions. |
String |
BundlePermission.getActions()
Returns the canonical string representation of the BundlePermission actions. |
String |
InvalidSyntaxException.getFilter()
Returns the filter string that generated the InvalidSyntaxException object. |
String |
Bundle.getLocation()
Returns this bundle's location identifier. |
String |
BundleContext.getProperty(String key)
Returns the value of the specified property. |
String[] |
ServiceReference.getPropertyKeys()
Returns an array of the keys in the properties Dictionary
object of the service referenced by this ServiceReference
object. |
String |
Version.getQualifier()
Returns the qualifier component of this version identifier. |
String |
Bundle.getSymbolicName()
Returns the symbolic name of this bundle as specified by its Bundle-SymbolicName manifest header. |
String |
Filter.toString()
Returns this Filter 's filter string. |
String |
Version.toString()
Returns the string representation of this version identifier. |
Methods in org.osgi.framework with parameters of type String | |
---|---|
void |
BundleContext.addServiceListener(ServiceListener listener,
String filter)
Adds the specified ServiceListener object with the
specified filter to the context bundle's list of
listeners. |
Filter |
BundleContext.createFilter(String filter)
Creates a Filter object. |
static Filter |
FrameworkUtil.createFilter(String filter)
Creates a Filter object. |
Enumeration |
Bundle.findEntries(String path,
String filePattern,
boolean recurse)
Returns entries in this bundle and its attached fragments. |
ServiceReference[] |
BundleContext.getAllServiceReferences(String clazz,
String filter)
Returns an array of ServiceReference objects. |
File |
BundleContext.getDataFile(String filename)
Creates a File object for a file in the persistent storage
area provided for the bundle by the Framework. |
URL |
Bundle.getEntry(String path)
Returns a URL to the entry at the specified path in this bundle. |
Enumeration |
Bundle.getEntryPaths(String path)
Returns an Enumeration of all the paths ( String objects)
to entries within this bundle whose longest sub-path matches the
specified path. |
Dictionary |
Bundle.getHeaders(String locale)
Returns this bundle's Manifest headers and values localized to the specified locale. |
String |
BundleContext.getProperty(String key)
Returns the value of the specified property. |
Object |
ServiceReference.getProperty(String key)
Returns the property value to which the specified property key is mapped in the properties Dictionary object of the service
referenced by this ServiceReference object. |
URL |
Bundle.getResource(String name)
Find the specified resource from this bundle's class loader. |
Enumeration |
Bundle.getResources(String name)
Find the specified resources from this bundle's class loader. |
ServiceReference |
BundleContext.getServiceReference(String clazz)
Returns a ServiceReference object for a service that
implements and was registered under the specified class. |
ServiceReference[] |
BundleContext.getServiceReferences(String clazz,
String filter)
Returns an array of ServiceReference objects. |
Bundle |
BundleContext.installBundle(String location)
Installs a bundle from the specified location identifier. |
Bundle |
BundleContext.installBundle(String location,
InputStream input)
Installs a bundle from the specified InputStream object. |
boolean |
ServiceReference.isAssignableTo(Bundle bundle,
String className)
Tests if the bundle that registered the service referenced by this ServiceReference and the specified bundle use the same
source for the package of the specified class name. |
Class |
Bundle.loadClass(String name)
Loads the specified class using this bundle's class loader. |
static boolean |
FrameworkUtil.matchDistinguishedNameChain(String matchPattern,
List dnChain)
Match a Distinguished Name (DN) chain against a pattern. |
static Version |
Version.parseVersion(String version)
Parses a version identifier from the specified string. |
ServiceRegistration |
BundleContext.registerService(String[] clazzes,
Object service,
Dictionary properties)
Registers the specified service object with the specified properties under the specified class names into the Framework. |
ServiceRegistration |
BundleContext.registerService(String clazz,
Object service,
Dictionary properties)
Registers the specified service object with the specified properties under the specified class name with the Framework. |
Constructors in org.osgi.framework with parameters of type String | |
---|---|
AdminPermission(Bundle bundle,
String actions)
Creates a new requested AdminPermission object to be used by
the code that must perform checkPermission . |
|
AdminPermission(String filter,
String actions)
Create a new AdminPermission. |
|
BundleException(String msg)
Creates a BundleException with the specified message. |
|
BundleException(String msg,
int type)
Creates a BundleException with the specified message and
type. |
|
BundleException(String msg,
int type,
Throwable cause)
Creates a BundleException with the specified message, type
and exception cause. |
|
BundleException(String msg,
Throwable cause)
Creates a BundleException with the specified message and
exception cause. |
|
BundlePermission(String symbolicName,
String actions)
Defines the authority to provide and/or require and or specify a host fragment symbolic name within the OSGi environment. |
|
InvalidSyntaxException(String msg,
String filter)
Creates an exception of type InvalidSyntaxException . |
|
InvalidSyntaxException(String msg,
String filter,
Throwable cause)
Creates an exception of type InvalidSyntaxException . |
|
PackagePermission(String name,
Bundle exportingBundle,
String actions)
Creates a new requested PackagePermission object to be used
by code that must perform checkPermission for the
import action. |
|
PackagePermission(String name,
String actions)
Creates a new PackagePermission object. |
|
ServiceException(String msg)
Creates a ServiceException with the specified message. |
|
ServiceException(String msg,
int type)
Creates a ServiceException with the specified message and
type. |
|
ServiceException(String msg,
int type,
Throwable cause)
Creates a ServiceException with the specified message,
type and exception cause. |
|
ServiceException(String msg,
Throwable cause)
Creates a ServiceException with the specified message and
exception cause. |
|
ServicePermission(ServiceReference reference,
String actions)
Creates a new requested ServicePermission object to be used
by code that must perform checkPermission for the
get action. |
|
ServicePermission(String name,
String actions)
Create a new ServicePermission. |
|
Version(int major,
int minor,
int micro,
String qualifier)
Creates a version identifier from the specified components. |
|
Version(String version)
Created a version identifier from the specified string. |
Uses of String in org.osgi.framework.hooks.service |
---|
Methods in org.osgi.framework.hooks.service that return String | |
---|---|
String |
ListenerHook.ListenerInfo.getFilter()
Return the filter string with which the listener was added. |
Methods in org.osgi.framework.hooks.service with parameters of type String | |
---|---|
void |
FindHook.find(BundleContext context,
String name,
String filter,
boolean allServices,
Collection references)
Find hook method. |
Uses of String in org.osgi.framework.launch |
---|
Methods in org.osgi.framework.launch that return String | |
---|---|
String |
Framework.getLocation()
Returns the Framework location identifier. |
String |
Framework.getSymbolicName()
Returns the symbolic name of this Framework. |
Uses of String in org.osgi.service.application |
---|
Fields in org.osgi.service.application declared as String | |
---|---|
static String |
ApplicationDescriptor.APPLICATION_CONTAINER
The property key for the application container of the application. |
static String |
ApplicationDescriptor.APPLICATION_COPYRIGHT
The property key for the localized copyright notice of the application. |
static String |
ApplicationDescriptor.APPLICATION_DESCRIPTION
The property key for the localized description of the application. |
static String |
ApplicationHandle.APPLICATION_DESCRIPTOR
The property key for the pid of the corresponding application descriptor. |
static String |
ApplicationDescriptor.APPLICATION_DOCUMENTATION
The property key for the localized documentation of the application. |
static String |
ApplicationDescriptor.APPLICATION_ICON
The property key for the localized icon of the application. |
static String |
ApplicationDescriptor.APPLICATION_LAUNCHABLE
The property key for the launchable property of the application. |
static String |
ApplicationDescriptor.APPLICATION_LICENSE
The property key for the localized license of the application. |
static String |
ApplicationDescriptor.APPLICATION_LOCATION
The property key for the location of the application. |
static String |
ApplicationDescriptor.APPLICATION_LOCKED
The property key for the locked property of the application. |
static String |
ApplicationDescriptor.APPLICATION_NAME
The property key for the localized name of the application. |
static String |
ApplicationHandle.APPLICATION_PID
The property key for the unique identifier (PID) of the application instance. |
static String |
ApplicationDescriptor.APPLICATION_PID
The property key for the unique identifier (PID) of the application. |
static String |
ScheduledApplication.APPLICATION_PID
The property key for the identifier of the application being scheduled. |
static String |
ApplicationHandle.APPLICATION_STATE
The property key for the state of this application instance. |
static String |
ApplicationHandle.APPLICATION_SUPPORTS_EXITVALUE
The property key for the supports exit value property of this application instance. |
static String |
ApplicationDescriptor.APPLICATION_VENDOR
The property key for the name of the application vendor. |
static String |
ApplicationDescriptor.APPLICATION_VERSION
The property key for the version of the application. |
static String |
ApplicationDescriptor.APPLICATION_VISIBLE
The property key for the visibility property of the application. |
static String |
ScheduledApplication.DAY_OF_MONTH
The name of the day of month attribute of a virtual timer event. |
static String |
ScheduledApplication.DAY_OF_WEEK
The name of the day of week attribute of a virtual timer event. |
static String |
ScheduledApplication.HOUR_OF_DAY
The name of the hour of day attribute of a virtual timer event. |
static String |
ApplicationAdminPermission.LIFECYCLE_ACTION
Allows the lifecycle management of the target applications. |
static String |
ApplicationAdminPermission.LOCK_ACTION
Allows setting/unsetting the locking state of the target applications. |
static String |
ScheduledApplication.MINUTE
The name of the minute attribute of a virtual timer event. |
static String |
ScheduledApplication.MONTH
The name of the month attribute of a virtual timer event. |
static String |
ApplicationHandle.RUNNING
The application instance is running. |
static String |
ApplicationAdminPermission.SCHEDULE_ACTION
Allows scheduling of the target applications. |
static String |
ScheduledApplication.SCHEDULE_ID
The property key for the schedule identifier. |
static String |
ApplicationHandle.STOPPING
The application instance is being stopped. |
static String |
ScheduledApplication.TIMER_TOPIC
The topic name for the virtual timer topic. |
static String |
ScheduledApplication.TRIGGERING_EVENT
The key for the startup argument used to pass the event object that triggered the schedule to launch the application instance. |
static String |
ScheduledApplication.YEAR
The name of the year attribute of a virtual timer event. |
Methods in org.osgi.service.application that return String | |
---|---|
String |
ApplicationAdminPermission.getActions()
Returns the actions of this permission. |
String |
ApplicationDescriptor.getApplicationId()
Returns the identifier of the represented application. |
String |
ScheduledApplication.getEventFilter()
Queries the event filter for the triggering event. |
String |
ApplicationHandle.getInstanceId()
Returns the unique identifier of this instance. |
String |
ScheduledApplication.getScheduleId()
Returns the identifier of this schedule. |
abstract String |
ApplicationHandle.getState()
Get the state of the application instance. |
String |
ScheduledApplication.getTopic()
Queries the topic of the triggering event. |
Methods in org.osgi.service.application with parameters of type String | |
---|---|
Map |
ApplicationDescriptor.getProperties(String locale)
Returns the properties of the application descriptor as key-value pairs. |
protected abstract Map |
ApplicationDescriptor.getPropertiesSpecific(String locale)
Container implementations can provide application model specific and/or container implementation specific properties via this method. |
abstract boolean |
ApplicationDescriptor.matchDNChain(String pattern)
This method verifies whether the specified pattern
matches the Distinguished Names of any of the certificate chains
used to authenticate this application. |
ScheduledApplication |
ApplicationDescriptor.schedule(String scheduleId,
Map arguments,
String topic,
String eventFilter,
boolean recurring)
Schedules the application at a specified event. |
ApplicationAdminPermission |
ApplicationAdminPermission.setCurrentApplicationId(String applicationId)
This method can be used in the ProtectionDomain
implementation in the implies method to insert the
application ID of the current application into the permission being
checked. |
Constructors in org.osgi.service.application with parameters of type String | |
---|---|
ApplicationAdminPermission(ApplicationDescriptor application,
String actions)
This contructor should be used when creating ApplicationAdminPermission
instance for checkPermission call. |
|
ApplicationAdminPermission(String filter,
String actions)
Constructs an ApplicationAdminPermission. |
|
ApplicationDescriptor(String applicationId)
Constructs the ApplicationDescriptor . |
|
ApplicationException(int errorCode,
String message)
Creates an ApplicationException with the specified error code. |
|
ApplicationException(int errorCode,
String message,
Throwable cause)
Creates a ApplicationException that wraps another exception. |
|
ApplicationHandle(String instanceId,
ApplicationDescriptor descriptor)
Application instance identifier is specified by the container when the instance is created. |
Uses of String in org.osgi.service.blueprint.container |
---|
Fields in org.osgi.service.blueprint.container declared as String | |
---|---|
static String |
EventConstants.BUNDLE
The Blueprint bundle associated with this event. |
static String |
EventConstants.BUNDLE_ID
The bundle id of the Blueprint bundle associated with this event. |
static String |
EventConstants.BUNDLE_SYMBOLICNAME
The bundle symbolic name of the Blueprint bundle associated with this event. |
static String |
EventConstants.BUNDLE_VERSION
The bundle version of the Blueprint bundle associated with this event. |
static String |
EventConstants.CAUSE
The cause for a FAILURE event. |
static String |
EventConstants.DEPENDENCIES
The filters identifying the missing dependencies that caused this event for a FAILURE ,
GRACE_PERIOD , or
WAITING event. |
static String |
EventConstants.EVENT
The BlueprintEvent object that caused this event. |
static String |
EventConstants.EXTENDER_BUNDLE
The Blueprint extender bundle that is generating this event. |
static String |
EventConstants.EXTENDER_BUNDLE_ID
The bundle id of the Blueprint extender bundle that is generating this event. |
static String |
EventConstants.EXTENDER_BUNDLE_SYMBOLICNAME
The bundle symbolic of the Blueprint extender bundle that is generating this event. |
static String |
EventConstants.EXTENDER_BUNDLE_VERSION
The bundle version of the Blueprint extender bundle that is generating this event. |
static String |
EventConstants.TIMESTAMP
The time the event was created. |
static String |
EventConstants.TOPIC_BLUEPRINT_EVENTS
Topic prefix for all events issued by the Blueprint Container |
static String |
EventConstants.TOPIC_CREATED
Topic for Blueprint Container CREATED events |
static String |
EventConstants.TOPIC_CREATING
Topic for Blueprint Container CREATING events |
static String |
EventConstants.TOPIC_DESTROYED
Topic for Blueprint Container DESTROYED events |
static String |
EventConstants.TOPIC_DESTROYING
Topic for Blueprint Container DESTROYING events |
static String |
EventConstants.TOPIC_FAILURE
Topic for Blueprint Container FAILURE events |
static String |
EventConstants.TOPIC_GRACE_PERIOD
Topic for Blueprint Container GRACE_PERIOD events |
static String |
EventConstants.TOPIC_WAITING
Topic for Blueprint Container WAITING events |
static String |
EventConstants.TYPE
The type of the event that has been issued. |
Methods in org.osgi.service.blueprint.container that return String | |
---|---|
String |
NoSuchComponentException.getComponentId()
Returns the id of the non-existent component. |
String[] |
BlueprintEvent.getDependencies()
Return the filters identifying the missing dependencies that caused this event. |
String |
ServiceUnavailableException.getFilter()
Returns the filter expression that a service would have needed to satisfy in order for the invocation to proceed. |
Methods in org.osgi.service.blueprint.container with parameters of type String | |
---|---|
Object |
BlueprintContainer.getComponentInstance(String id)
Return the component instance for the specified component id. |
ComponentMetadata |
BlueprintContainer.getComponentMetadata(String id)
Return the Component Metadata object for the component with the specified component id. |
Constructors in org.osgi.service.blueprint.container with parameters of type String | |
---|---|
BlueprintEvent(int type,
Bundle bundle,
Bundle extenderBundle,
String[] dependencies)
Create a BlueprintEvent object associated with a set of
dependencies. |
|
BlueprintEvent(int type,
Bundle bundle,
Bundle extenderBundle,
String[] dependencies,
Throwable cause)
Create a BlueprintEvent object associated with a failure
cause and a set of dependencies. |
|
ComponentDefinitionException(String explanation)
Creates a Component Definition Exception with the specified message |
|
ComponentDefinitionException(String explanation,
Throwable cause)
Creates a Component Definition Exception with the specified message and exception cause. |
|
NoSuchComponentException(String id)
Create a No Such Component Exception for a non-existent component. |
|
NoSuchComponentException(String msg,
String id)
Create a No Such Component Exception for a non-existent component. |
|
ServiceUnavailableException(String message,
String filter)
Creates a Service Unavailable Exception with the specified message. |
|
ServiceUnavailableException(String message,
String filter,
Throwable cause)
Creates a Service Unavailable Exception with the specified message and exception cause. |
Uses of String in org.osgi.service.blueprint.reflect |
---|
Fields in org.osgi.service.blueprint.reflect declared as String | |
---|---|
static String |
BeanMetadata.SCOPE_PROTOTYPE
The bean has prototype scope. |
static String |
BeanMetadata.SCOPE_SINGLETON
The bean has singleton scope. |
Methods in org.osgi.service.blueprint.reflect that return String | |
---|---|
String |
ReferenceListener.getBindMethod()
Return the name of the bind method. |
String |
BeanMetadata.getClassName()
Return the name of the class specified for the bean. |
String |
RefMetadata.getComponentId()
Return the id of the referenced component. |
String |
IdRefMetadata.getComponentId()
Return the id of the referenced component. |
String |
ServiceReferenceMetadata.getComponentName()
Return the value of the component-name attribute of the
service reference. |
String |
BeanMetadata.getDestroyMethod()
Return the name of the destroy method specified for the bean. |
String |
BeanMetadata.getFactoryMethod()
Return the name of the factory method for the bean. |
String |
ServiceReferenceMetadata.getFilter()
Return the filter expression that a matching service must match. |
String |
ComponentMetadata.getId()
Return the id of the component. |
String |
BeanMetadata.getInitMethod()
Return the name of the init method specified for the bean. |
String |
ServiceReferenceMetadata.getInterface()
Return the name of the interface type that a matching service must support. |
String |
MapMetadata.getKeyType()
Return the name of the type of the map keys. |
String |
BeanProperty.getName()
Return the name of the property to be injected. |
String |
RegistrationListener.getRegistrationMethod()
Return the name of the registration method. |
String |
BeanMetadata.getScope()
Return the scope for the bean. |
String |
ValueMetadata.getStringValue()
Return the unconverted string representation of the value. |
String |
ValueMetadata.getType()
Return the name of the type to which the value should be converted. |
String |
ReferenceListener.getUnbindMethod()
Return the name of the unbind method. |
String |
RegistrationListener.getUnregistrationMethod()
Return the name of the unregistration method. |
String |
BeanArgument.getValueType()
Return the name of the value type to match the argument and convert the value into when invoking the constructor or factory method. |
String |
CollectionMetadata.getValueType()
Return the type specified for the values of the collection. |
String |
MapMetadata.getValueType()
Return the name of the type of the map values. |
Uses of String in org.osgi.service.cm |
---|
Fields in org.osgi.service.cm declared as String | |
---|---|
static String |
ConfigurationPlugin.CM_RANKING
A service property to specify the order in which plugins are invoked. |
static String |
ConfigurationPlugin.CM_TARGET
A service property to limit the Managed Service or Managed Service Factory configuration dictionaries a Configuration Plugin service receives. |
static String |
ConfigurationPermission.CONFIGURE
The action string configure . |
static String |
ConfigurationAdmin.SERVICE_BUNDLELOCATION
Configuration property naming the location of the bundle that is associated with a a Configuration object. |
static String |
ConfigurationAdmin.SERVICE_FACTORYPID
Configuration property naming the Factory PID in the configuration dictionary. |
Methods in org.osgi.service.cm that return String | |
---|---|
String |
ConfigurationPermission.getActions()
Returns the canonical string representation of the ConfigurationPermission actions. |
String |
Configuration.getBundleLocation()
Get the bundle location. |
String |
Configuration.getFactoryPid()
For a factory configuration return the PID of the corresponding Managed Service Factory, else return null . |
String |
ConfigurationEvent.getFactoryPid()
Returns the factory pid of the associated configuration. |
String |
ManagedServiceFactory.getName()
Return a descriptive name of this factory. |
String |
Configuration.getPid()
Get the PID for this Configuration object. |
String |
ConfigurationEvent.getPid()
Returns the pid of the associated configuration. |
String |
ConfigurationException.getProperty()
Return the property name that caused the failure or null. |
String |
ConfigurationException.getReason()
Return the reason for this exception. |
Methods in org.osgi.service.cm with parameters of type String | |
---|---|
Configuration |
ConfigurationAdmin.createFactoryConfiguration(String factoryPid)
Create a new factory Configuration object with a new PID. |
Configuration |
ConfigurationAdmin.createFactoryConfiguration(String factoryPid,
String location)
Create a new factory Configuration object with a new PID. |
void |
ManagedServiceFactory.deleted(String pid)
Remove a factory instance. |
Configuration |
ConfigurationAdmin.getConfiguration(String pid)
Get an existing or new Configuration object from the
persistent store. |
Configuration |
ConfigurationAdmin.getConfiguration(String pid,
String location)
Get an existing Configuration object from the persistent
store, or create a new Configuration object. |
Configuration[] |
ConfigurationAdmin.listConfigurations(String filter)
List the current Configuration objects which match the
filter. |
void |
Configuration.setBundleLocation(String bundleLocation)
Bind this Configuration object to the specified bundle
location. |
void |
ManagedServiceFactory.updated(String pid,
Dictionary properties)
Create a new instance, or update the configuration of an existing instance. |
Constructors in org.osgi.service.cm with parameters of type String | |
---|---|
ConfigurationEvent(ServiceReference reference,
int type,
String factoryPid,
String pid)
Constructs a ConfigurationEvent object from the given
ServiceReference object, event type, and pids. |
|
ConfigurationException(String property,
String reason)
Create a ConfigurationException object. |
|
ConfigurationException(String property,
String reason,
Throwable cause)
Create a ConfigurationException object. |
|
ConfigurationPermission(String name,
String actions)
Create a new ConfigurationPermission. |
Uses of String in org.osgi.service.component |
---|
Fields in org.osgi.service.component declared as String | |
---|---|
static String |
ComponentConstants.COMPONENT_FACTORY
A service registration property for a Component Factory that contains the value of the factory attribute. |
static String |
ComponentConstants.COMPONENT_ID
A component property that contains the generated id for a component configuration. |
static String |
ComponentConstants.COMPONENT_NAME
A component property for a component configuration that contains the name of the component as specified in the name attribute of the
component element. |
static String |
ComponentConstants.REFERENCE_TARGET_SUFFIX
The suffix for reference target properties. |
static String |
ComponentConstants.SERVICE_COMPONENT
Manifest header specifying the XML documents within a bundle that contain the bundle's Service Component descriptions. |
Methods in org.osgi.service.component with parameters of type String | |
---|---|
void |
ComponentContext.disableComponent(String name)
Disables the specified component name. |
void |
ComponentContext.enableComponent(String name)
Enables the specified component name. |
Object |
ComponentContext.locateService(String name)
Returns the service object for the specified reference name. |
Object |
ComponentContext.locateService(String name,
ServiceReference reference)
Returns the service object for the specified reference name and ServiceReference . |
Object[] |
ComponentContext.locateServices(String name)
Returns the service objects for the specified reference name. |
Constructors in org.osgi.service.component with parameters of type String | |
---|---|
ComponentException(String message)
Construct a new ComponentException with the specified message. |
|
ComponentException(String message,
Throwable cause)
Construct a new ComponentException with the specified message and cause. |
Uses of String in org.osgi.service.condpermadmin |
---|
Fields in org.osgi.service.condpermadmin declared as String | |
---|---|
static String |
ConditionalPermissionInfo.ALLOW
This string is used to indicate that a row in the Conditional Permission Table should return an access decision of "allow" if the conditions are all satisfied and at least one of the permissions is implied. |
static String |
ConditionalPermissionInfo.DENY
This string is used to indicate that a row in the Conditional Permission Table should return an access decision of "deny" if the conditions are all satisfied and at least one of the permissions is implied. |
Methods in org.osgi.service.condpermadmin that return String | |
---|---|
String |
ConditionalPermissionInfo.getAccessDecision()
Returns the access decision for this Conditional Permission Info. |
String[] |
ConditionInfo.getArgs()
Returns arguments of this ConditionInfo . |
String |
ConditionInfo.getEncoded()
Returns the string encoding of this ConditionInfo in a form
suitable for restoring this ConditionInfo . |
String |
ConditionalPermissionInfo.getEncoded()
Returns the string encoding of this ConditionalPermissionInfo in a form suitable for restoring
this ConditionalPermissionInfo . |
String |
ConditionalPermissionInfo.getName()
Returns the name of this Conditional Permission Info. |
String |
ConditionInfo.getType()
Returns the fully qualified class name of the condition represented by this ConditionInfo . |
String |
ConditionInfo.toString()
Returns the string representation of this ConditionInfo . |
String |
ConditionalPermissionInfo.toString()
Returns the string representation of this ConditionalPermissionInfo . |
Methods in org.osgi.service.condpermadmin with parameters of type String | |
---|---|
AccessControlContext |
ConditionalPermissionAdmin.getAccessControlContext(String[] signers)
Returns the Access Control Context that corresponds to the specified signers. |
ConditionalPermissionInfo |
ConditionalPermissionAdmin.getConditionalPermissionInfo(String name)
Deprecated. Since 1.1. Use ConditionalPermissionAdmin.newConditionalPermissionUpdate()
instead. |
ConditionalPermissionInfo |
ConditionalPermissionAdmin.newConditionalPermissionInfo(String encodedConditionalPermissionInfo)
Creates a new ConditionalPermissionInfo from the specified
encoded ConditionalPermissionInfo string suitable for
insertion into a ConditionalPermissionUpdate . |
ConditionalPermissionInfo |
ConditionalPermissionAdmin.newConditionalPermissionInfo(String name,
ConditionInfo[] conditions,
PermissionInfo[] permissions,
String access)
Creates a new ConditionalPermissionInfo with the specified fields suitable for insertion into a ConditionalPermissionUpdate . |
ConditionalPermissionInfo |
ConditionalPermissionAdmin.setConditionalPermissionInfo(String name,
ConditionInfo[] conditions,
PermissionInfo[] permissions)
Deprecated. Since 1.1. Use ConditionalPermissionAdmin.newConditionalPermissionUpdate()
instead. |
Constructors in org.osgi.service.condpermadmin with parameters of type String | |
---|---|
ConditionInfo(String encodedCondition)
Constructs a ConditionInfo object from the specified encoded
ConditionInfo string. |
|
ConditionInfo(String type,
String[] args)
Constructs a ConditionInfo from the specified type and args. |
|
ConditionInfo(String type,
String[] args)
Constructs a ConditionInfo from the specified type and args. |
Uses of String in org.osgi.service.deploymentadmin |
---|
Fields in org.osgi.service.deploymentadmin declared as String | |
---|---|
static String |
DeploymentAdminPermission.CANCEL
Constant String to the "cancel" action. |
static String |
DeploymentPackage.EVENT_DEPLOYMENTPACKAGE_CURRENTVERSION
The currently installed version of the Deployment Package. |
static String |
DeploymentPackage.EVENT_DEPLOYMENTPACKAGE_NAME
The name of the Deployment Package. |
static String |
DeploymentPackage.EVENT_DEPLOYMENTPACKAGE_NEXTVERSION
The version of DP after the successful completion of the install operation (used in INSTALL event only). |
static String |
DeploymentPackage.EVENT_DEPLOYMENTPACKAGE_READABLENAME
The human readable name of the DP localized to the default locale. |
static String |
DeploymentAdminPermission.INSTALL
Constant String to the "install" action. |
static String |
DeploymentAdminPermission.LIST
Constant String to the "list" action. |
static String |
DeploymentAdminPermission.METADATA
Constant String to the "metadata" action. |
static String |
DeploymentAdminPermission.UNINSTALL
Constant String to the "uninstall" action. |
static String |
DeploymentAdminPermission.UNINSTALL_FORCED
Constant String to the "uninstall_forced" action. |
Methods in org.osgi.service.deploymentadmin that return String | |
---|---|
String |
DeploymentAdminPermission.getActions()
Returns the String representation of the action list. |
String |
DeploymentPackage.getDisplayName()
Returns the Deployment Package human readable name. |
String |
DeploymentPackage.getHeader(String header)
Returns the requested deployment package manifest header from the main section. |
String |
DeploymentPackage.getName()
Returns the Deployment Package Symbolic Name of the package. |
String |
DeploymentPackage.getResourceHeader(String resource,
String header)
Returns the requested deployment package manifest header from the name section determined by the resource parameter. |
String[] |
DeploymentPackage.getResources()
Returns an array of strings representing the resources (including bundles) that are specified in the manifest of this deployment package. |
String |
BundleInfo.getSymbolicName()
Returns the Bundle Symbolic Name of the represented bundle. |
Methods in org.osgi.service.deploymentadmin with parameters of type String | |
---|---|
Bundle |
DeploymentPackage.getBundle(String symbolicName)
Returns the bundle instance, which is part of this deployment package, that corresponds to the bundle's symbolic name passed in the symbolicName parameter. |
DeploymentPackage |
DeploymentAdmin.getDeploymentPackage(String symbName)
Gets the currently installed DeploymentPackage instance which has the given
symbolic name. |
String |
DeploymentPackage.getHeader(String header)
Returns the requested deployment package manifest header from the main section. |
String |
DeploymentPackage.getResourceHeader(String resource,
String header)
Returns the requested deployment package manifest header from the name section determined by the resource parameter. |
ServiceReference |
DeploymentPackage.getResourceProcessor(String resource)
At the time of deployment, resource processor service instances are located to resources contained in a deployment package. |
Constructors in org.osgi.service.deploymentadmin with parameters of type String | |
---|---|
DeploymentAdminPermission(String name,
String actions)
Creates a new DeploymentAdminPermission object for the given name and
action . |
|
DeploymentException(int code,
String message)
Create an instance of the exception. |
|
DeploymentException(int code,
String message,
Throwable cause)
Create an instance of the exception. |
Uses of String in org.osgi.service.deploymentadmin.spi |
---|
Fields in org.osgi.service.deploymentadmin.spi declared as String | |
---|---|
static String |
DeploymentCustomizerPermission.PRIVATEAREA
Constant String to the "privatearea" action. |
Methods in org.osgi.service.deploymentadmin.spi that return String | |
---|---|
String |
DeploymentCustomizerPermission.getActions()
Returns the String representation of the action list. |
Methods in org.osgi.service.deploymentadmin.spi with parameters of type String | |
---|---|
void |
ResourceProcessor.dropped(String resource)
Called when a resource, associated with a particular resource processor, had belonged to an earlier version of a deployment package but is not present in the current version of the deployment package. |
void |
ResourceProcessor.process(String name,
InputStream stream)
Called when a resource is encountered in the deployment package for which this resource processor has been selected to handle the processing of that resource. |
Constructors in org.osgi.service.deploymentadmin.spi with parameters of type String | |
---|---|
DeploymentCustomizerPermission(String name,
String actions)
Creates a new DeploymentCustomizerPermission object for the given
name and action . |
|
ResourceProcessorException(int code,
String message)
Create an instance of the exception. |
|
ResourceProcessorException(int code,
String message,
Throwable cause)
Create an instance of the exception. |
Uses of String in org.osgi.service.device |
---|
Fields in org.osgi.service.device declared as String | |
---|---|
static String |
Constants.DEVICE_CATEGORY
Property (named "DEVICE_CATEGORY") containing a human readable description of the device categories implemented by a device. |
static String |
Constants.DEVICE_DESCRIPTION
Property (named "DEVICE_DESCRIPTION") containing a human readable string describing the actual hardware device. |
static String |
Constants.DEVICE_SERIAL
Property (named "DEVICE_SERIAL") specifying a device's serial number. |
static String |
Constants.DRIVER_ID
Property (named "DRIVER_ID") identifying a driver. |
Methods in org.osgi.service.device that return String | |
---|---|
String |
Driver.attach(ServiceReference reference)
Attaches this Driver service to the Device service represented by the given ServiceReference object. |
String[] |
DriverLocator.findDrivers(Dictionary props)
Returns an array of DRIVER_ID strings of drivers capable of
attaching to a device with the given properties. |
Methods in org.osgi.service.device with parameters of type String | |
---|---|
InputStream |
DriverLocator.loadDriver(String id)
Get an InputStream from which the driver bundle providing a
driver with the giving DRIVER_ID can be installed. |
Uses of String in org.osgi.service.event |
---|
Fields in org.osgi.service.event declared as String | |
---|---|
static String |
EventConstants.BUNDLE
The Bundle object of the bundle relevant to the event. |
static String |
EventConstants.BUNDLE_ID
The Bundle id of the bundle relevant to the event. |
static String |
EventConstants.BUNDLE_SIGNER
The Distinguished Names of the signers of the bundle relevant to the event. |
static String |
EventConstants.BUNDLE_SYMBOLICNAME
The Bundle Symbolic Name of the bundle relevant to the event. |
static String |
EventConstants.BUNDLE_VERSION
The version of the bundle relevant to the event. |
static String |
EventConstants.EVENT
The forwarded event object. |
static String |
EventConstants.EVENT_FILTER
Service Registration property (named event.filter )
specifying a filter to further select Event s of interest to
a Event Handler service. |
static String |
EventConstants.EVENT_TOPIC
Service registration property (named event.topics )
specifying the Event topics of interest to a Event Handler
service. |
static String |
EventConstants.EXCEPTION
An exception or error. |
static String |
EventConstants.EXCEPTION_CLASS
The name of the exception type. |
static String |
EventConstants.EXCEPTION_MESSAGE
The exception message. |
static String |
EventConstants.EXECPTION_CLASS
Deprecated. As of 1.1, replaced by EXCEPTION_CLASS |
static String |
EventConstants.MESSAGE
A human-readable message that is usually not localized. |
static String |
TopicPermission.PUBLISH
The action string publish . |
static String |
EventConstants.SERVICE
A service reference. |
static String |
EventConstants.SERVICE_ID
A service's id. |
static String |
EventConstants.SERVICE_OBJECTCLASS
A service's objectClass. |
static String |
EventConstants.SERVICE_PID
A service's persistent identity. |
static String |
TopicPermission.SUBSCRIBE
The action string subscribe . |
static String |
EventConstants.TIMESTAMP
The time when the event occurred, as reported by System.currentTimeMillis() . |
Methods in org.osgi.service.event that return String | |
---|---|
String |
TopicPermission.getActions()
Returns the canonical string representation of the TopicPermission actions. |
String[] |
Event.getPropertyNames()
Returns a list of this event's property names. |
String |
Event.getTopic()
Returns the topic of this event. |
String |
Event.toString()
Returns the string representation of this event. |
Methods in org.osgi.service.event with parameters of type String | |
---|---|
Object |
Event.getProperty(String name)
Retrieves a property. |
Constructors in org.osgi.service.event with parameters of type String | |
---|---|
Event(String topic,
Dictionary properties)
Constructs an event. |
|
Event(String topic,
Map properties)
Constructs an event. |
|
TopicPermission(String name,
String actions)
Defines the authority to publich and/or subscribe to a topic within the EventAdmin service. |
Uses of String in org.osgi.service.http |
---|
Fields in org.osgi.service.http declared as String | |
---|---|
static String |
HttpContext.AUTHENTICATION_TYPE
HttpServletRequest attribute specifying the scheme used in
authentication. |
static String |
HttpContext.AUTHORIZATION
HttpServletRequest attribute specifying the
Authorization object obtained from the
org.osgi.service.useradmin.UserAdmin service. |
static String |
HttpContext.REMOTE_USER
HttpServletRequest attribute specifying the name of the
authenticated user. |
Methods in org.osgi.service.http that return String | |
---|---|
String |
HttpContext.getMimeType(String name)
Maps a name to a MIME type. |
Methods in org.osgi.service.http with parameters of type String | |
---|---|
String |
HttpContext.getMimeType(String name)
Maps a name to a MIME type. |
URL |
HttpContext.getResource(String name)
Maps a resource name to a URL. |
void |
HttpService.registerResources(String alias,
String name,
HttpContext context)
Registers resources into the URI namespace. |
void |
HttpService.registerServlet(String alias,
Servlet servlet,
Dictionary initparams,
HttpContext context)
Registers a servlet into the URI namespace. |
void |
HttpService.unregister(String alias)
Unregisters a previous registration done by registerServlet or
registerResources methods. |
Constructors in org.osgi.service.http with parameters of type String | |
---|---|
NamespaceException(String message)
Construct a NamespaceException object with a detail message. |
|
NamespaceException(String message,
Throwable cause)
Construct a NamespaceException object with a detail message
and a nested exception. |
Uses of String in org.osgi.service.io |
---|
Fields in org.osgi.service.io declared as String | |
---|---|
static String |
ConnectionFactory.IO_SCHEME
Service property containing the scheme(s) for which this Connection Factory can create Connection objects. |
Methods in org.osgi.service.io with parameters of type String | |
---|---|
Connection |
ConnectionFactory.createConnection(String name,
int mode,
boolean timeouts)
Create a new Connection object for the specified URI. |
Connection |
ConnectorService.open(String name)
Create and open a Connection object for the specified name. |
Connection |
ConnectorService.open(String name,
int mode)
Create and open a Connection object for the specified name and
access mode. |
Connection |
ConnectorService.open(String name,
int mode,
boolean timeouts)
Create and open a Connection object for the specified name,
access mode and timeouts. |
DataInputStream |
ConnectorService.openDataInputStream(String name)
Create and open a DataInputStream object for the specified
name. |
DataOutputStream |
ConnectorService.openDataOutputStream(String name)
Create and open a DataOutputStream object for the specified
name. |
InputStream |
ConnectorService.openInputStream(String name)
Create and open an InputStream object for the specified name. |
OutputStream |
ConnectorService.openOutputStream(String name)
Create and open an OutputStream object for the specified name. |
Uses of String in org.osgi.service.log |
---|
Methods in org.osgi.service.log that return String | |
---|---|
String |
LogEntry.getMessage()
Returns the human readable message associated with this LogEntry
object. |
Methods in org.osgi.service.log with parameters of type String | |
---|---|
void |
LogService.log(int level,
String message)
Logs a message. |
void |
LogService.log(int level,
String message,
Throwable exception)
Logs a message with an exception. |
void |
LogService.log(ServiceReference sr,
int level,
String message)
Logs a message associated with a specific ServiceReference
object. |
void |
LogService.log(ServiceReference sr,
int level,
String message,
Throwable exception)
Logs a message with an exception associated and a ServiceReference object. |
Uses of String in org.osgi.service.metatype |
---|
Fields in org.osgi.service.metatype declared as String | |
---|---|
static String |
MetaTypeService.METATYPE_DOCUMENTS_LOCATION
Location of meta type documents. |
Methods in org.osgi.service.metatype that return String | |
---|---|
String[] |
AttributeDefinition.getDefaultValue()
Return a default for this attribute. |
String |
ObjectClassDefinition.getDescription()
Return a description of this object class. |
String |
AttributeDefinition.getDescription()
Return a description of this attribute. |
String[] |
MetaTypeInformation.getFactoryPids()
Return the Factory PIDs (for ManagedServiceFactories) for which ObjectClassDefinition information is available. |
String |
ObjectClassDefinition.getID()
Return the id of this object class. |
String |
AttributeDefinition.getID()
Unique identity for this attribute. |
String[] |
MetaTypeProvider.getLocales()
Return a list of available locales. |
String |
ObjectClassDefinition.getName()
Return the name of this object class. |
String |
AttributeDefinition.getName()
Get the name of the attribute. |
String[] |
AttributeDefinition.getOptionLabels()
Return a list of labels of option values. |
String[] |
AttributeDefinition.getOptionValues()
Return a list of option values that this attribute can take. |
String[] |
MetaTypeInformation.getPids()
Return the PIDs (for ManagedServices) for which ObjectClassDefinition information is available. |
String |
AttributeDefinition.validate(String value)
Validate an attribute in String form. |
Methods in org.osgi.service.metatype with parameters of type String | |
---|---|
ObjectClassDefinition |
MetaTypeProvider.getObjectClassDefinition(String id,
String locale)
Returns an object class definition for the specified id localized to the specified locale. |
String |
AttributeDefinition.validate(String value)
Validate an attribute in String form. |
Uses of String in org.osgi.service.monitor |
---|
Fields in org.osgi.service.monitor declared as String | |
---|---|
static String |
MonitorPermission.PUBLISH
Holders of MonitorPermission with the publish
action present are Monitorable services that are allowed
to publish the StatusVariable s specified in the
permission's target field. |
static String |
MonitorPermission.READ
Holders of MonitorPermission with the read
action present are allowed to read the value of the
StatusVariable s specified in the permission's target field. |
static String |
MonitorPermission.RESET
Holders of MonitorPermission with the reset
action present are allowed to reset the value of the
StatusVariable s specified in the permission's target field. |
static String |
MonitorPermission.STARTJOB
Holders of MonitorPermission with the startjob
action present are allowed to initiate monitoring jobs involving the
StatusVariable s specified in the permission's target field. |
static String |
MonitorPermission.SWITCHEVENTS
Holders of MonitorPermission with the
switchevents action present are allowed to switch event
sending on or off for the value of the StatusVariable s
specified in the permission's target field. |
Methods in org.osgi.service.monitor that return String | |
---|---|
String |
MonitorPermission.getActions()
Get the action string associated with this permission. |
String |
MonitorAdmin.getDescription(String path)
Returns a human readable description of the given StatusVariable . |
String |
Monitorable.getDescription(String id)
Returns a human readable description of a StatusVariable . |
String |
StatusVariable.getID()
Returns the ID of this StatusVariable . |
String |
MonitoringJob.getInitiator()
Returns the identifier of the principal who initiated the job. |
String[] |
MonitorAdmin.getMonitorableNames()
Returns the names of the Monitorable services that are
currently registered. |
String[] |
MonitoringJob.getStatusVariableNames()
Returns the list of StatusVariable names that are the
targets of this measurement job. |
String[] |
Monitorable.getStatusVariableNames()
Returns the list of StatusVariable identifiers published
by this Monitorable . |
String[] |
MonitorAdmin.getStatusVariableNames(String monitorableId)
Returns the list of StatusVariable names published by a
Monitorable instance. |
String |
StatusVariable.getString()
Returns the StatusVariable value if its type is
String . |
String |
StatusVariable.toString()
Returns a String representation of this
StatusVariable . |
Methods in org.osgi.service.monitor with parameters of type String | |
---|---|
String |
MonitorAdmin.getDescription(String path)
Returns a human readable description of the given StatusVariable . |
String |
Monitorable.getDescription(String id)
Returns a human readable description of a StatusVariable . |
StatusVariable |
MonitorAdmin.getStatusVariable(String path)
Returns a StatusVariable addressed by its full path. |
StatusVariable |
Monitorable.getStatusVariable(String id)
Returns the StatusVariable object addressed by its
identifier. |
String[] |
MonitorAdmin.getStatusVariableNames(String monitorableId)
Returns the list of StatusVariable names published by a
Monitorable instance. |
StatusVariable[] |
MonitorAdmin.getStatusVariables(String monitorableId)
Returns the StatusVariable objects published by a
Monitorable instance. |
boolean |
Monitorable.notifiesOnChange(String id)
Tells whether the StatusVariable provider is able to send
instant notifications when the given StatusVariable
changes. |
boolean |
MonitorAdmin.resetStatusVariable(String path)
Issues a request to reset a given StatusVariable . |
boolean |
Monitorable.resetStatusVariable(String id)
Issues a request to reset a given StatusVariable . |
MonitoringJob |
MonitorAdmin.startJob(String initiator,
String[] statusVariables,
int count)
Starts a change based MonitoringJob with the parameters
provided. |
MonitoringJob |
MonitorAdmin.startJob(String initiator,
String[] statusVariables,
int count)
Starts a change based MonitoringJob with the parameters
provided. |
MonitoringJob |
MonitorAdmin.startScheduledJob(String initiator,
String[] statusVariables,
int schedule,
int count)
Starts a time based MonitoringJob with the parameters
provided. |
MonitoringJob |
MonitorAdmin.startScheduledJob(String initiator,
String[] statusVariables,
int schedule,
int count)
Starts a time based MonitoringJob with the parameters
provided. |
void |
MonitorAdmin.switchEvents(String path,
boolean on)
Switches event sending on or off for the specified StatusVariable s. |
void |
MonitorListener.updated(String monitorableId,
StatusVariable statusVariable)
Callback for notification of a StatusVariable change. |
Constructors in org.osgi.service.monitor with parameters of type String | |
---|---|
MonitorPermission(String statusVariable,
String actions)
Create a MonitorPermission object, specifying the target
and actions. |
|
StatusVariable(String id,
int cm,
boolean data)
Constructor for a StatusVariable of boolean
type. |
|
StatusVariable(String id,
int cm,
float data)
Constructor for a StatusVariable of float
type. |
|
StatusVariable(String id,
int cm,
int data)
Constructor for a StatusVariable of int
type. |
|
StatusVariable(String id,
int cm,
String data)
Constructor for a StatusVariable of String
type. |
Uses of String in org.osgi.service.obr |
---|
Fields in org.osgi.service.obr declared as String | |
---|---|
static String |
Resource.COPYRIGHT
|
static String |
Resource.DESCRIPTION
|
static String |
Resource.DOCUMENTATION_URL
|
static String |
Resource.ID
|
static String[] |
Resource.KEYS
|
static String |
Resource.LICENSE_URL
|
static String |
Resource.PRESENTATION_NAME
|
static String |
Resource.SIZE
|
static String |
Resource.SOURCE_URL
|
static String |
Resource.SYMBOLIC_NAME
|
static String |
Resource.URL
|
static String |
Resource.VERSION
|
Methods in org.osgi.service.obr that return String | |
---|---|
String[] |
Resource.getCategories()
|
String |
Requirement.getComment()
|
String |
Requirement.getFilter()
Return the filter. |
String |
Resource.getId()
|
String |
Capability.getName()
Return the name of the capability. |
String |
Repository.getName()
Return the name of this reposotory. |
String |
Requirement.getName()
Return the name of the requirement. |
String |
Resource.getPresentationName()
|
String |
Resource.getSymbolicName()
|
Methods in org.osgi.service.obr with parameters of type String | |
---|---|
Resource[] |
RepositoryAdmin.discoverResources(String filterExpr)
Discover any resources that match the given filter. |
Resource |
RepositoryAdmin.getResource(String respositoryId)
|
Constructors in org.osgi.service.obr with parameters of type String | |
---|---|
RepositoryPermission(String name)
|
Uses of String in org.osgi.service.packageadmin |
---|
Methods in org.osgi.service.packageadmin that return String | |
---|---|
String |
ExportedPackage.getName()
Returns the name of the package associated with this exported package. |
String |
ExportedPackage.getSpecificationVersion()
Deprecated. As of 1.2, replaced by ExportedPackage.getVersion() . |
String |
RequiredBundle.getSymbolicName()
Returns the symbolic name of this required bundle. |
Methods in org.osgi.service.packageadmin with parameters of type String | |
---|---|
Bundle[] |
PackageAdmin.getBundles(String symbolicName,
String versionRange)
Returns the bundles with the specified symbolic name whose bundle version is within the specified version range. |
ExportedPackage |
PackageAdmin.getExportedPackage(String name)
Gets the exported package for the specified package name. |
ExportedPackage[] |
PackageAdmin.getExportedPackages(String name)
Gets the exported packages for the specified package name. |
RequiredBundle[] |
PackageAdmin.getRequiredBundles(String symbolicName)
Returns an array of required bundles having the specified symbolic name. |
Uses of String in org.osgi.service.permissionadmin |
---|
Methods in org.osgi.service.permissionadmin that return String | |
---|---|
String |
PermissionInfo.getActions()
Returns the actions of the permission represented by this PermissionInfo . |
String |
PermissionInfo.getEncoded()
Returns the string encoding of this PermissionInfo in a form
suitable for restoring this PermissionInfo . |
String[] |
PermissionAdmin.getLocations()
Returns the bundle locations that have permissions assigned to them, that is, bundle locations for which an entry exists in the permission table. |
String |
PermissionInfo.getName()
Returns the name of the permission represented by this PermissionInfo . |
String |
PermissionInfo.getType()
Returns the fully qualified class name of the permission represented by this PermissionInfo . |
String |
PermissionInfo.toString()
Returns the string representation of this PermissionInfo . |
Methods in org.osgi.service.permissionadmin with parameters of type String | |
---|---|
PermissionInfo[] |
PermissionAdmin.getPermissions(String location)
Gets the permissions assigned to the bundle with the specified location. |
void |
PermissionAdmin.setPermissions(String location,
PermissionInfo[] permissions)
Assigns the specified permissions to the bundle with the specified location. |
Constructors in org.osgi.service.permissionadmin with parameters of type String | |
---|---|
PermissionInfo(String encodedPermission)
Constructs a PermissionInfo object from the specified
encoded PermissionInfo string. |
|
PermissionInfo(String type,
String name,
String actions)
Constructs a PermissionInfo from the specified type, name,
and actions. |
Uses of String in org.osgi.service.prefs |
---|
Methods in org.osgi.service.prefs that return String | |
---|---|
String |
Preferences.absolutePath()
Returns this node's absolute path name. |
String[] |
Preferences.childrenNames()
Returns the names of the children of this node. |
String |
Preferences.get(String key,
String def)
Returns the value associated with the specified key in this
node. |
String[] |
PreferencesService.getUsers()
Returns the names of users for which node trees exist. |
String[] |
Preferences.keys()
Returns all of the keys that have an associated value in this node. |
String |
Preferences.name()
Returns this node's name, relative to its parent. |
Methods in org.osgi.service.prefs with parameters of type String | |
---|---|
String |
Preferences.get(String key,
String def)
Returns the value associated with the specified key in this
node. |
boolean |
Preferences.getBoolean(String key,
boolean def)
Returns the boolean value represented by the String
object associated with the specified key in this node. |
byte[] |
Preferences.getByteArray(String key,
byte[] def)
Returns the byte[] value represented by the String
object associated with the specified key in this node. |
double |
Preferences.getDouble(String key,
double def)
Returns the double value represented by the String
object associated with the specified key in this node. |
float |
Preferences.getFloat(String key,
float def)
Returns the float value represented by the String
object associated with the specified key in this node. |
int |
Preferences.getInt(String key,
int def)
Returns the int value represented by the String
object associated with the specified key in this node. |
long |
Preferences.getLong(String key,
long def)
Returns the long value represented by the String
object associated with the specified key in this node. |
Preferences |
PreferencesService.getUserPreferences(String name)
Returns the root node for the specified user and the calling bundle. |
Preferences |
Preferences.node(String pathName)
Returns a named Preferences object (node), creating it and any
of its ancestors if they do not already exist. |
boolean |
Preferences.nodeExists(String pathName)
Returns true if the named node exists. |
void |
Preferences.put(String key,
String value)
Associates the specified value with the specified key in this node. |
void |
Preferences.putBoolean(String key,
boolean value)
Associates a String object representing the specified
boolean value with the specified key in this node. |
void |
Preferences.putByteArray(String key,
byte[] value)
Associates a String object representing the specified
byte[] with the specified key in this node. |
void |
Preferences.putDouble(String key,
double value)
Associates a String object representing the specified
double value with the specified key in this node. |
void |
Preferences.putFloat(String key,
float value)
Associates a String object representing the specified
float value with the specified key in this node. |
void |
Preferences.putInt(String key,
int value)
Associates a String object representing the specified
int value with the specified key in this node. |
void |
Preferences.putLong(String key,
long value)
Associates a String object representing the specified
long value with the specified key in this node. |
void |
Preferences.remove(String key)
Removes the value associated with the specified key in this
node, if any. |
Constructors in org.osgi.service.prefs with parameters of type String | |
---|---|
BackingStoreException(String message)
Constructs a BackingStoreException with the specified detail
message. |
|
BackingStoreException(String message,
Throwable cause)
Constructs a BackingStoreException with the specified detail
message. |
Uses of String in org.osgi.service.provisioning |
---|
Fields in org.osgi.service.provisioning declared as String | |
---|---|
static String |
ProvisioningService.INITIALPROVISIONING_ENTRIES
Name of the header that specifies the type information for the ZIP file entries. |
static String |
ProvisioningService.MIME_BUNDLE
MIME type to be stored in the extra field of a ZipEntry
object for an installable bundle file. |
static String |
ProvisioningService.MIME_BUNDLE_ALT
Alternative MIME type to be stored in the extra field of a ZipEntry object for an installable bundle file. |
static String |
ProvisioningService.MIME_BUNDLE_URL
MIME type to be stored in the extra field of a ZipEntry for a String that represents a URL for a bundle. |
static String |
ProvisioningService.MIME_BYTE_ARRAY
MIME type to be stored stored in the extra field of a ZipEntry object for byte[] data. |
static String |
ProvisioningService.MIME_STRING
MIME type to be stored in the extra field of a ZipEntry
object for String data. |
static String |
ProvisioningService.PROVISIONING_AGENT_CONFIG
The key to the provisioning information that contains the initial configuration information of the initial Management Agent. |
static String |
ProvisioningService.PROVISIONING_REFERENCE
The key to the provisioning information that contains the location of the provision data provider. |
static String |
ProvisioningService.PROVISIONING_ROOTX509
The key to the provisioning information that contains the root X509 certificate used to establish trust with operator when using HTTPS. |
static String |
ProvisioningService.PROVISIONING_RSH_SECRET
The key to the provisioning information that contains the shared secret used in conjunction with the RSH protocol. |
static String |
ProvisioningService.PROVISIONING_SPID
The key to the provisioning information that uniquely identifies the Service Platform. |
static String |
ProvisioningService.PROVISIONING_START_BUNDLE
The key to the provisioning information that contains the location of the bundle to start with AllPermission . |
static String |
ProvisioningService.PROVISIONING_UPDATE_COUNT
The key to the provisioning information that contains the update count of the info data. |
Uses of String in org.osgi.service.upnp |
---|
Fields in org.osgi.service.upnp declared as String | |
---|---|
static String |
UPnPDevice.CHILDREN_UDN
The property key that must be set for all devices containing other embedded devices. |
static String |
UPnPDevice.DEVICE_CATEGORY
Constant for the value of the service property DEVICE_CATEGORY
used for all UPnP devices. |
static String |
UPnPDevice.FRIENDLY_NAME
Mandatory property key for a short user friendly version of the device name. |
static String |
UPnPService.ID
Property key for the optional service id. |
static String |
UPnPDevice.ID
Property key for the Unique Device ID property. |
static String |
UPnPDevice.MANUFACTURER
Mandatory property key for the device manufacturer's property. |
static String |
UPnPDevice.MANUFACTURER_URL
Optional property key for a URL to the device manufacturers Web site. |
static String |
UPnPDevice.MODEL_DESCRIPTION
Optional (but recommended) property key for a String object
with a long description of the device for the end user. |
static String |
UPnPDevice.MODEL_NAME
Mandatory property key for the device model name. |
static String |
UPnPDevice.MODEL_NUMBER
Optional (but recommended) property key for a String class
typed property holding the model number of the device. |
static String |
UPnPDevice.MODEL_URL
Optional property key for a String typed property holding a
string representing the URL to the Web site for this model. |
static String |
UPnPDevice.PARENT_UDN
The property key that must be set for all embedded devices. |
static String |
UPnPDevice.PRESENTATION_URL
Optional (but recommended) property key for a String typed
property holding a string representing the URL to a device representation
Web page. |
static String |
UPnPDevice.SERIAL_NUMBER
Optional (but recommended) property key for a String typed
property holding the serial number of the device. |
static String |
UPnPService.TYPE
Property key for the optional service type uri. |
static String |
UPnPDevice.TYPE
Property key for the UPnP Device Type property. |
static String |
UPnPStateVariable.TYPE_BIN_BASE64
MIME-style Base64 encoded binary BLOB. |
static String |
UPnPStateVariable.TYPE_BIN_HEX
Hexadecimal digits representing octets. |
static String |
UPnPStateVariable.TYPE_BOOLEAN
True or false. |
static String |
UPnPStateVariable.TYPE_CHAR
Unicode string. |
static String |
UPnPStateVariable.TYPE_DATE
A calendar date. |
static String |
UPnPStateVariable.TYPE_DATETIME
A specific instant of time. |
static String |
UPnPStateVariable.TYPE_DATETIME_TZ
A specific instant of time. |
static String |
UPnPStateVariable.TYPE_FIXED_14_4
Same as r8 but no more than 14 digits to the left of the decimal point and no more than 4 to the right. |
static String |
UPnPStateVariable.TYPE_FLOAT
Floating-point number. |
static String |
UPnPStateVariable.TYPE_I1
1 Byte int. |
static String |
UPnPStateVariable.TYPE_I2
2 Byte int. |
static String |
UPnPStateVariable.TYPE_I4
4 Byte int. |
static String |
UPnPStateVariable.TYPE_INT
Integer number. |
static String |
UPnPStateVariable.TYPE_NUMBER
Same as r8. |
static String |
UPnPStateVariable.TYPE_R4
4 Byte float. |
static String |
UPnPStateVariable.TYPE_R8
8 Byte float. |
static String |
UPnPStateVariable.TYPE_STRING
Unicode string. |
static String |
UPnPStateVariable.TYPE_TIME
An instant of time that recurs every day. |
static String |
UPnPStateVariable.TYPE_TIME_TZ
An instant of time that recurs every day. |
static String |
UPnPStateVariable.TYPE_UI1
Unsigned 1 Byte int. |
static String |
UPnPStateVariable.TYPE_UI2
Unsigned 2 Byte int. |
static String |
UPnPStateVariable.TYPE_UI4
Unsigned 4 Byte int. |
static String |
UPnPStateVariable.TYPE_URI
Universal Resource Identifier. |
static String |
UPnPStateVariable.TYPE_UUID
Universally Unique ID. |
static String |
UPnPDevice.UDN
Property key for the Unique Device Name (UDN) property. |
static String |
UPnPDevice.UPC
Optional property key for a String typed property holding the
Universal Product Code (UPC) of the device. |
static String |
UPnPDevice.UPNP_EXPORT
The UPnP.export service property is a hint that marks a device
to be picked up and exported by the UPnP Service. |
static String |
UPnPEventListener.UPNP_FILTER
Key for a service property having a value that is an object of type org.osgi.framework.Filter and that is used to limit received
events. |
Methods in org.osgi.service.upnp that return String | |
---|---|
String[] |
UPnPStateVariable.getAllowedValues()
Returns the allowed values, if defined. |
String |
UPnPService.getId()
Returns the serviceId field in the UPnP service description. |
String[] |
UPnPAction.getInputArgumentNames()
Lists all input arguments for this action. |
String |
UPnPIcon.getMimeType()
Returns the MIME type of the icon. |
String |
UPnPStateVariable.getName()
Returns the variable name. |
String |
UPnPAction.getName()
Returns the action name. |
String[] |
UPnPAction.getOutputArgumentNames()
List all output arguments for this action. |
String |
UPnPAction.getReturnArgumentName()
Returns the name of the designated return argument. |
String |
UPnPService.getType()
Returns the serviceType field in the UPnP service description. |
String |
UPnPStateVariable.getUPnPDataType()
Returns the UPnP type of this state variable. |
String |
UPnPService.getVersion()
Returns the version suffix encoded in the serviceType field in
the UPnP service description. |
Methods in org.osgi.service.upnp with parameters of type String | |
---|---|
UPnPAction |
UPnPService.getAction(String name)
Locates a specific action by name. |
Dictionary |
UPnPDevice.getDescriptions(String locale)
Get a set of localized UPnP properties. |
UPnPIcon[] |
UPnPDevice.getIcons(String locale)
Lists all icons for this device in a given locale. |
UPnPService |
UPnPDevice.getService(String serviceId)
Locates a specific service by its service id. |
UPnPStateVariable |
UPnPService.getStateVariable(String name)
Gets a UPnPStateVariable objects provided by this service by
name |
UPnPStateVariable |
UPnPAction.getStateVariable(String argumentName)
Finds the state variable associated with an argument name. |
void |
UPnPEventListener.notifyUPnPEvent(String deviceId,
String serviceId,
Dictionary events)
Callback method that is invoked for received events. |
Constructors in org.osgi.service.upnp with parameters of type String | |
---|---|
UPnPException(int errorCode,
String errordesc)
This constructor creates a UPnPException on the specified error code and error description. |
Uses of String in org.osgi.service.url |
---|
Fields in org.osgi.service.url declared as String | |
---|---|
static String |
URLConstants.URL_CONTENT_MIMETYPE
Service property naming the MIME types serviced by a java.net.ContentHandler. |
static String |
URLConstants.URL_HANDLER_PROTOCOL
Service property naming the protocols serviced by a URLStreamHandlerService. |
Methods in org.osgi.service.url that return String | |
---|---|
String |
AbstractURLStreamHandlerService.toExternalForm(URL u)
This method calls super.toExternalForm . |
String |
URLStreamHandlerService.toExternalForm(URL u)
|
Methods in org.osgi.service.url with parameters of type String | |
---|---|
void |
AbstractURLStreamHandlerService.parseURL(URLStreamHandlerSetter realHandler,
URL u,
String spec,
int start,
int limit)
Parse a URL using the URLStreamHandlerSetter object. |
void |
URLStreamHandlerService.parseURL(URLStreamHandlerSetter realHandler,
URL u,
String spec,
int start,
int limit)
Parse a URL. |
protected void |
AbstractURLStreamHandlerService.setURL(URL u,
String proto,
String host,
int port,
String file,
String ref)
Deprecated. This method is only for compatibility with handlers written for JDK 1.1. |
void |
URLStreamHandlerSetter.setURL(URL u,
String protocol,
String host,
int port,
String file,
String ref)
Deprecated. This method is only for compatibility with handlers written for JDK 1.1. |
protected void |
AbstractURLStreamHandlerService.setURL(URL u,
String proto,
String host,
int port,
String auth,
String user,
String path,
String query,
String ref)
This method calls realHandler.setURL(URL,String,String,int,String,String,String,String) . |
void |
URLStreamHandlerSetter.setURL(URL u,
String protocol,
String host,
int port,
String authority,
String userInfo,
String path,
String query,
String ref)
|
Uses of String in org.osgi.service.useradmin |
---|
Fields in org.osgi.service.useradmin declared as String | |
---|---|
static String |
UserAdminPermission.ADMIN
The permission name "admin". |
static String |
UserAdminPermission.CHANGE_CREDENTIAL
The action string "changeCredential". |
static String |
UserAdminPermission.CHANGE_PROPERTY
The action string "changeProperty". |
static String |
UserAdminPermission.GET_CREDENTIAL
The action string "getCredential". |
static String |
Role.USER_ANYONE
The name of the predefined role, user.anyone, that all users and groups belong to. |
Methods in org.osgi.service.useradmin that return String | |
---|---|
String |
UserAdminPermission.getActions()
Returns the canonical string representation of the actions, separated by comma. |
String |
Role.getName()
Returns the name of this role. |
String |
Authorization.getName()
Gets the name of the User that this Authorization
context was created for. |
String[] |
Authorization.getRoles()
Gets the names of all roles implied by this Authorization
context. |
String |
UserAdminPermission.toString()
Returns a string describing this UserAdminPermission object. |
Methods in org.osgi.service.useradmin with parameters of type String | |
---|---|
Role |
UserAdmin.createRole(String name,
int type)
Creates a Role object with the given name and of the given
type. |
Role |
UserAdmin.getRole(String name)
Gets the Role object with the given name from this
User Admin service. |
Role[] |
UserAdmin.getRoles(String filter)
Gets the Role objects managed by this User Admin service that
have properties matching the specified LDAP filter criteria. |
User |
UserAdmin.getUser(String key,
String value)
Gets the user with the given property key -value
pair from the User Admin service database. |
boolean |
User.hasCredential(String key,
Object value)
Checks to see if this User object has a credential with the
specified key set to the specified value . |
boolean |
Authorization.hasRole(String name)
Checks if the role with the specified name is implied by this Authorization context. |
boolean |
UserAdmin.removeRole(String name)
Removes the Role object with the given name from this User
Admin service and all groups it is a member of. |
Constructors in org.osgi.service.useradmin with parameters of type String | |
---|---|
UserAdminPermission(String name,
String actions)
Creates a new UserAdminPermission with the specified name
and actions. |
Uses of String in org.osgi.service.wireadmin |
---|
Fields in org.osgi.service.wireadmin declared as String | |
---|---|
static String |
WirePermission.CONSUME
The action string for the consume action. |
static String |
WirePermission.PRODUCE
The action string for the produce action. |
static String |
WireConstants.WIREADMIN_CONSUMER_COMPOSITE
A service registration property for a Consumer service that is composite. |
static String |
WireConstants.WIREADMIN_CONSUMER_FLAVORS
Service Registration property (named wireadmin.consumer.flavors )
specifying the list of data types understood by this Consumer service. |
static String |
WireConstants.WIREADMIN_CONSUMER_PID
Wire property key (named wireadmin.consumer.pid )
specifying the service.pid of the associated Consumer service. |
static String |
WireConstants.WIREADMIN_CONSUMER_SCOPE
Service registration property key (named wireadmin.consumer.scope ) specifying a list of names that may
be used to define the scope of this Wire object. |
static String |
WireConstants.WIREADMIN_EVENTS
Service Registration property (named wireadmin.events )
specifying the WireAdminEvent type of interest to a Wire Admin
Listener service. |
static String |
WireConstants.WIREADMIN_FILTER
Wire property key (named wireadmin.filter )
specifying a filter used to control the delivery rate of data between the
Producer and the Consumer service. |
static String |
WireConstants.WIREADMIN_PID
Wire property key (named wireadmin.pid ) specifying
the persistent identity (PID) of this Wire object. |
static String |
WireConstants.WIREADMIN_PRODUCER_COMPOSITE
A service registration property for a Producer service that is composite. |
static String |
WireConstants.WIREADMIN_PRODUCER_FILTERS
Service Registration property (named wireadmin.producer.filters ). |
static String |
WireConstants.WIREADMIN_PRODUCER_FLAVORS
Service Registration property (named wireadmin.producer.flavors )
specifying the list of data types available from this Producer service. |
static String |
WireConstants.WIREADMIN_PRODUCER_PID
Wire property key (named wireadmin.producer.pid )
specifying the service.pid of the associated Producer service. |
static String |
WireConstants.WIREADMIN_PRODUCER_SCOPE
Service registration property key (named wireadmin.producer.scope ) specifying a list of names that may
be used to define the scope of this Wire object. |
static String[] |
WireConstants.WIREADMIN_SCOPE_ALL
Matches all scope names. |
static String |
WireConstants.WIREVALUE_CURRENT
Wire object's filter attribute (named
wirevalue.current ) representing the current value. |
static String |
WireConstants.WIREVALUE_DELTA_ABSOLUTE
Wire object's filter attribute (named
wirevalue.delta.absolute ) representing the absolute delta. |
static String |
WireConstants.WIREVALUE_DELTA_RELATIVE
Wire object's filter attribute (named
wirevalue.delta.relative ) representing the relative delta. |
static String |
WireConstants.WIREVALUE_ELAPSED
Wire object's filter attribute (named
wirevalue.elapsed ) representing the elapsed time, in ms,
between this filter evaluation and the last update of the
Consumer service. |
static String |
WireConstants.WIREVALUE_PREVIOUS
Wire object's filter attribute (named
wirevalue.previous ) representing the previous value. |
Methods in org.osgi.service.wireadmin that return String | |
---|---|
String |
WirePermission.getActions()
Returns the canonical string representation of the actions. |
String |
BasicEnvelope.getScope()
|
String |
Envelope.getScope()
Return the scope name of this Envelope object. |
String[] |
Wire.getScope()
Return the calculated scope of this Wire object. |
String |
WirePermission.toString()
Returns a string describing this WirePermission . |
Methods in org.osgi.service.wireadmin with parameters of type String | |
---|---|
Wire |
WireAdmin.createWire(String producerPID,
String consumerPID,
Dictionary properties)
Create a new Wire object that connects a Producer service to a
Consumer service. |
Wire[] |
WireAdmin.getWires(String filter)
Return the Wire objects that match the given filter . |
boolean |
Wire.hasScope(String name)
Return true if the given name is in this Wire object's scope. |
Constructors in org.osgi.service.wireadmin with parameters of type String | |
---|---|
BasicEnvelope(Object value,
Object identification,
String scope)
Constructor. |
|
WirePermission(String name,
String actions)
Create a new WirePermission with the given name (may be wildcard) and actions. |
Uses of String in org.osgi.util.measurement |
---|
Methods in org.osgi.util.measurement that return String | |
---|---|
String |
State.getName()
Returns the name of this State . |
String |
Measurement.toString()
Returns a String object representing this Measurement
object. |
String |
Unit.toString()
Returns a String object representing the Unit |
String |
State.toString()
Returns a String object representing this object. |
Constructors in org.osgi.util.measurement with parameters of type String | |
---|---|
State(int value,
String name)
Create a new State object with a time of 0. |
|
State(int value,
String name,
long time)
Create a new State object. |
Uses of String in org.osgi.util.tracker |
---|
Constructors in org.osgi.util.tracker with parameters of type String | |
---|---|
ServiceTracker(BundleContext context,
String clazz,
ServiceTrackerCustomizer customizer)
Create a ServiceTracker on the specified class name. |
Uses of String in org.osgi.util.xml |
---|
Fields in org.osgi.util.xml declared as String | |
---|---|
static String |
XMLParserActivator.DOMCLASSFILE
Fully qualified path name of DOM Parser Factory Class Name file |
static String |
XMLParserActivator.DOMFACTORYNAME
Filename containing the DOM Parser Factory Class name. |
static String |
XMLParserActivator.PARSER_NAMESPACEAWARE
Service property specifying if factory is configured to support namespace aware parsers. |
static String |
XMLParserActivator.PARSER_VALIDATING
Service property specifying if factory is configured to support validating parsers. |
static String |
XMLParserActivator.SAXCLASSFILE
Fully qualified path name of SAX Parser Factory Class Name file |
static String |
XMLParserActivator.SAXFACTORYNAME
Filename containing the SAX Parser Factory Class name. |
Uses of String in org.ungoverned.osgi.service.shell |
---|
Fields in org.ungoverned.osgi.service.shell declared as String | |
---|---|
static String |
CdCommand.BASE_URL_PROPERTY
Property used to configure the base URL. |
Methods in org.ungoverned.osgi.service.shell that return String | |
---|---|
String |
CdCommand.getBaseURL()
Returns the current directory of the impl service. |
String |
ShellService.getCommandDescription(String name)
Returns the description associated with the specified command name. |
String[] |
ShellService.getCommands()
Returns an array of command names available in the impl service. |
String |
ShellService.getCommandUsage(String name)
Returns the usage string associated with the specified command name. |
String |
Command.getName()
Returns the name of the command that is implemented by the interface. |
String |
Command.getShortDescription()
Returns a short description of the command; this description should be as short as possible. |
String |
Command.getUsage()
Returns the usage string for the command. |
Methods in org.ungoverned.osgi.service.shell with parameters of type String | |
---|---|
void |
Command.execute(String line,
PrintStream out,
PrintStream err)
Executes the command using the supplied command line, output print stream, and error print stream. |
void |
ShellService.executeCommand(String commandLine,
PrintStream out,
PrintStream err)
This method executes the supplied command line using the supplied output and error print stream. |
String |
ShellService.getCommandDescription(String name)
Returns the description associated with the specified command name. |
ServiceReference |
ShellService.getCommandReference(String name)
Returns the service reference associated with the specified command name. |
String |
ShellService.getCommandUsage(String name)
Returns the usage string associated with the specified command name. |
void |
CdCommand.setBaseURL(String s)
Sets the current directory of the impl service. |
Uses of String in samples.dependonservice |
---|
Methods in samples.dependonservice with parameters of type String | |
---|---|
Object |
Store.get(String key)
|
void |
Store.put(String key,
Object value)
|
Uses of String in samples.registerservice |
---|
Methods in samples.registerservice with parameters of type String | |
---|---|
Object |
Store.get(String key)
|
Object |
MemoryStore.get(String key)
|
void |
Store.put(String key,
Object value)
|
void |
MemoryStore.put(String key,
Object value)
|
Uses of String in samples.trackingserviceswithcallbacks |
---|
Methods in samples.trackingserviceswithcallbacks with parameters of type String | |
---|---|
boolean |
Translator.canTranslate(String from,
String to)
|
Document |
Translator.translate(Document document,
String from,
String to)
|
Document |
DocumentTranslator.translate(Document document,
String from,
String to)
|
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |