package com.supaham.commons; /** * Represents a class that is versioned. * * @since 0.1 */ public interface Version { /** * Gets the version of this object. * * @return version of this object */ String getVersion(); }