Example usage for org.springframework.context.support ApplicationObjectSupport subclass-usage

List of usage examples for org.springframework.context.support ApplicationObjectSupport subclass-usage

Introduction

In this page you can find the example usage for org.springframework.context.support ApplicationObjectSupport subclass-usage.

Usage

From source file org.zht.framework.spring.SpringCtxLoaderFromObjectSupport.java

public class SpringCtxLoaderFromObjectSupport extends ApplicationObjectSupport {

}

From source file com.rockagen.gnext.service.spring.SpringContextHelper.java

/**
 * Spring context helper
 * 
 * @author RA
 * @see org.springframework.context.support.ApplicationObjectSupport
 */

From source file org.kmnet.com.fw.common.codelist.validator.AbstractExistInCodeListValidator.java

/**
 *  Abstract validation implementation class for {@link ExistInCodeList} custom annotation.
 * <p>
 * Validates whether the value of field for which the custom annotation is used, is 
 * a valid code existing in the {@link CodeList} specified as a parameter to the 
 * {@link ExistInCodeList} annotation.

From source file org.terasoluna.gfw.common.codelist.validator.AbstractExistInCodeListValidator.java

/**
 * Abstract validation implementation class for {@link ExistInCodeList} custom annotation.
 * <p>
 * Validates whether the value of field for which the custom annotation is used, is a valid code existing in the
 * {@link CodeList} specified as a parameter to the {@link ExistInCodeList} annotation.
 * </p>

From source file org.terasoluna.gfw.tutorial.selenium.WebDriverCreator.java

public class WebDriverCreator extends ApplicationObjectSupport {

    /**
     * Create a default WebDriver (WebDriver defined in the bean file).
     * @return Default WebDriver
     */

From source file sample.service.BookServiceImpl.java

public class BookServiceImpl extends ApplicationObjectSupport implements BookService {

    private final SortedMap<Integer, Book> books = Collections.synchronizedSortedMap(new TreeMap<Integer, Book>());

    private byte[] loadPngFile(String location) {
        try {

From source file org.fcrepo.http.commons.api.HttpHeaderInjector.java

/**
 * Inject optional headers from external processes
 *
 * @author whikloj
 * @since 2015-10-30
 */

From source file com.openfeed.service.BookServiceImpl.java

@Service(value = "bookService")
public class BookServiceImpl extends ApplicationObjectSupport implements BookService {

    private final SortedMap<Integer, Book> books = Collections.synchronizedSortedMap(new TreeMap<Integer, Book>());

    private byte[] loadPngFile(String location) {

From source file com.opencredo.service.BookServiceImpl.java

@Service(value = "bookService")
public class BookServiceImpl extends ApplicationObjectSupport implements BookService {

    private final SortedMap<Integer, Book> books = Collections.synchronizedSortedMap(new TreeMap<Integer, Book>());

    private byte[] loadPngFile(String location) {

From source file sample.contact.service.impl.MenuServiceImpl.java

/**
 * Concrete implementation of {@link MenuService}.
 *
 * @author Ben Alex
 */
@Transactional