net.yadaframework.web.YadaJsonView Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of yadaweb Show documentation
Show all versions of yadaweb Show documentation
Some useful tasks for the Yada Framework
package net.yadaframework.web;
@Deprecated // This was part of the old DataTable implementation
public class YadaJsonView {
// Returns all attributes that are fetched in a single query
public class WithEagerAttributes {};
// Returns only the current localized value, not the whole map
public class WithLocalizedValue extends WithEagerAttributes {};
// Returns also maps of localized attributes
public class WithLocalizedStrings extends WithLocalizedValue {};
// Returns lazy attributes
public class WithLazyAttributes extends WithLocalizedStrings {};
}