
jp.co.moneyforward.autotest.framework.action.WithOid Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of insdog-all Show documentation
Show all versions of insdog-all Show documentation
An action-based testing framework and library
The newest version!
package jp.co.moneyforward.autotest.framework.action;
public interface WithOid {
///
/// Returns an object identifier of this object.
///
/// @return An object identifier of this object.
///
String oid();
///
/// Returns a working variable store name for the object ID of this instance.
///
/// @return A working variable store name.
///
default String workingVariableStoreName() {
String objectId = oid();
return "work-" + objectId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy