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

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

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

import com.alogient.cameleon.sdk.content.dao.model.Nav;
import org.springframework.transaction.annotation.Propagation;
import org.springframework.transaction.annotation.Transactional;

@Transactional(propagation = Propagation.REQUIRED, readOnly = true)
public interface MenuDao {
    /**
     * Returns a specific navigation node by it's id
     * @param navId The primary of the desired navigation node
     * @return The requested navigation node (if it exists, null otherwise)
     */
    Nav getNav(Integer navId);

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy