com.ibm.streams.management
Interface ApplicationConfiguration
-
public interface ApplicationConfigurationApplicationConfiguration contains information about an application configuration store. An application configuration store provides secure storage and retrieval of name/value pairs.
-
-
Field Summary
Fields Modifier and Type Field and Description static java.lang.StringIBM_COPYRIGHT
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method and Description longgetCreationTime()Returns the time (in milliseconds since the epoch) when the application configuration store was created.java.lang.StringgetDescription()Returns the description of the application configuration store.longgetLastModifiedTime()Returns the time (in milliseconds since the epoch) when the application configuration store was last modified.java.lang.StringgetName()Returns the name of the application configuration store.java.lang.StringgetOwner()Returns the name of the Streams user who created the application configuration store.java.util.Map<java.lang.String,java.lang.String>getProperties()Returns the names and values of the properties contained in the application configuration store.
-
-
-
Field Detail
-
IBM_COPYRIGHT
static final java.lang.String IBM_COPYRIGHT
- See Also:
- Constant Field Values
-
-
Method Detail
-
getCreationTime
long getCreationTime()
Returns the time (in milliseconds since the epoch) when the application configuration store was created.- Returns:
- the application configuration store creation time.
-
getDescription
java.lang.String getDescription()
Returns the description of the application configuration store.- Returns:
- the application configuration store description.
-
getLastModifiedTime
long getLastModifiedTime()
Returns the time (in milliseconds since the epoch) when the application configuration store was last modified.- Returns:
- the time the application configuration store was last modified.
-
getName
java.lang.String getName()
Returns the name of the application configuration store.- Returns:
- the application configuration store name.
-
getOwner
java.lang.String getOwner()
Returns the name of the Streams user who created the application configuration store.- Returns:
- the application configuration store owner.
-
getProperties
java.util.Map<java.lang.String,java.lang.String> getProperties()
Returns the names and values of the properties contained in the application configuration store.- Returns:
- the application configuration store contents.
-
-