com.trigyn.jws.dashboard.repository.interfaces.IDashboardRepository Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dashboard Show documentation
Show all versions of dashboard Show documentation
Dashboard and dashlet utils
package com.trigyn.jws.dashboard.repository.interfaces;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.stereotype.Repository;
import com.trigyn.jws.dashboard.entities.Dashboard;
@Repository
public interface IDashboardRepository extends JpaRepository{
}