23 lines
684 B
Java
23 lines
684 B
Java
package com.eua.controller;
|
|
|
|
import com.foundation.application.*;
|
|
import com.eua.application.*;
|
|
|
|
/**
|
|
*
|
|
*/
|
|
public abstract class AbstractController extends com.foundation.controller.Controller {
|
|
/**
|
|
* AbstractController constructor.
|
|
*/
|
|
public AbstractController() {
|
|
super();
|
|
}//AbstractController()//
|
|
/**
|
|
* Gets the application object that this object is running under. The application object provides the object various services that it will need.
|
|
* @return The application reference for the application this object is running under.
|
|
*/
|
|
public IApplication getApplication() {
|
|
return EncryptionUtilityApplication.getSingleton();
|
|
}//getApplication()//
|
|
}//AbstractController// |