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 DataFieldgetField()Thefieldthis vault entry is put for.default Stringdefault ItemgetItem()Theitemthis vault entry is put for.default Stringdefault StringA description of the origin of the put request.static StringReturns the local host name.
-
Method Details
-
getField
Thefieldthis vault entry is put for.Implementation may not be able to implement this method, but only
getFieldString(). -
getFieldString
- See Also:
-
getItem
Theitemthis 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().
-