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

com.alogient.cameleon.sdk.content.dao.MediaDao Maven / Gradle / Ivy

The newest version!
package com.alogient.cameleon.sdk.content.dao;

import org.springframework.transaction.annotation.Propagation;
import org.springframework.transaction.annotation.Transactional;

import com.alogient.cameleon.sdk.content.dao.model.Video;

@Transactional(propagation = Propagation.REQUIRED, readOnly = true)
public interface MediaDao {
    /**
     * Gets a video by it's primary key
     * 
     * @param videoId The video id
     * @return The video if it exists
     */
    Video getVideo(Integer videoId);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy