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

com.eurodyn.qlack.fuse.aaa.repository.SessionAttributeRepository Maven / Gradle / Ivy

There is a newer version: 3.8.9
Show newest version
package com.eurodyn.qlack.fuse.aaa.repository;

import com.eurodyn.qlack.fuse.aaa.model.SessionAttribute;
import org.springframework.data.repository.CrudRepository;
import org.springframework.stereotype.Repository;

/**
 * A session Attribute Repository interface written to define a number of crud
 * methods for the SessionAttribute model.
 *
 * @author European Dynamics SA
 */
@Repository
public interface SessionAttributeRepository extends
  CrudRepository {

  /**
   * A retrieve method to find the @{@link SessionAttribute} object
   *
   * @param sessionId the id of Session
   * @param name the name
   * @return the {@link SessionAttribute} object by its name and the id
   */
  SessionAttribute findBySessionIdAndName(String sessionId, String name);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy