All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.formkiq.server.domain.AssetHolder Maven / Gradle / Ivy

There is a newer version: 0.6.1
Show newest version
package com.formkiq.server.domain;

/**
 * Interface for objects whom has Assets.
 *
 */
public interface AssetHolder {

    /**
     * Asset Identifier.
     * @return {@link String}
     */
    String getAssetid();

    /**
     * Set Asset Identifier.
     * @param assetId {@link String}
     */
    void setAssetid(String assetId);

    /**
     * @param hash {@link String}
     */
    void setSha1hash(String hash);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy