Package com.exedio.cope.vault
Interface VaultPutInfo
public interface VaultPutInfo
Supplies additional information to put methods such as
VaultService.put(String, byte[], VaultPutInfo)
.
Implementations of VaultService
may choose to
store this information for statistical purposes,
but no functionality should depend on it.-
Method Summary
Modifier and TypeMethodDescriptiondefault DataField
getField()
Thefield
this vault entry is put for.default String
default Item
getItem()
Theitem
this vault entry is put for.default String
default String
A description of the origin of the put request.static String
Returns the local host name.
-
Method Details
-
getField
Thefield
this vault entry is put for.Implementation may not be able to implement this method, but only
getFieldString()
. -
getFieldString
- See Also:
-
getItem
Theitem
this vault entry is put for.Implementation may not be able to implement this method, but only
getItemString()
. -
getItemString
- See Also:
-
getOrigin
A description of the origin of the put request. Could be the host name or source IP address for instance. The default implementation returnsgetOriginDefault()
. -
getOriginDefault
Returns the local host name. Is the default implementation ofgetOrigin()
.
-