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

org.yestech.publish.objectmodel.IArtifactMetaData Maven / Gradle / Ivy

Go to download

Framework to publish ascii or binary data to different sources. Currently Episodic, Bitgravity, Local, Cloudfs, and S3 are supported

There is a newer version: 1.1.0
Show newest version
/*
 * Copyright LGPL3
 * YES Technology Association
 * http://yestech.org
 *
 * http://www.opensource.org/licenses/lgpl-3.0.html
 */

/*
 *
 * Author:  Artie Copeland
 * Last Modified Date: $DateTime: $
 */
package org.yestech.publish.objectmodel;

import org.joda.time.DateTime;

import java.io.Serializable;

/**
 * @author Artie Copeland
 * @version $Revision: $
 */
public interface IArtifactMetaData extends Serializable {
    I getArtifactMetaDataIdentifier();

    void setArtifactMetaDataIdentifier(I metaDataIdentifier);

    ArtifactType getArtifactType();

    void setArtifactType(ArtifactType type);

    void setArtifactOwner(O owner);

    O getArtifactOwner();

    public DateTime getCreated();

    public void setCreated(DateTime created);

    public DateTime getModified();

    public void setModified(DateTime modified);
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy