|
RSE Release 3.3 |
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
public interface IRemotePropertyHolder
This interface should be implemented by any remote artifact that contains remote properties and (optionally) caches them.
| Method Summary | |
|---|---|
java.lang.Object[] |
getProperties(java.lang.String[] keys)
Returns the value of the properties with the given keys. |
java.lang.Object |
getProperty(java.lang.String key)
Returns the value of the property with the given key. |
boolean |
isPropertyStale(java.lang.String key)
Returns whether the property with the given key is stale. |
void |
markAllPropertiesStale()
Marks all properties as stale. |
void |
markPropertyStale(java.lang.String key)
Marks the property with the given key as stale. |
void |
setProperties(java.lang.String[] keys,
java.lang.Object[] values)
Sets the values of the properties with the given keys. |
void |
setProperty(java.lang.String key,
java.lang.Object value)
Sets the value of the property with the given key. |
| Method Detail |
|---|
java.lang.Object getProperty(java.lang.String key)
key - the property key.
java.lang.Object[] getProperties(java.lang.String[] keys)
keys - the property keys.
void setProperty(java.lang.String key,
java.lang.Object value)
key - the property key.value - the value of the property.
void setProperties(java.lang.String[] keys,
java.lang.Object[] values)
keys - the property keys.values - the corresponding values of the properties.boolean isPropertyStale(java.lang.String key)
key - the property key.
true if the property is stale, false otherwise.void markPropertyStale(java.lang.String key)
key - the property key.void markAllPropertiesStale()
|
RSE Release 3.3 |
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||