Package org.hcjf.layers.crud
Class CrudLayer<O>
- java.lang.Object
-
- org.hcjf.layers.Layer
-
- org.hcjf.layers.crud.CrudLayer<O>
-
- All Implemented Interfaces:
java.lang.reflect.InvocationHandler,AdaptableLayer,LayerInterface
public abstract class CrudLayer<O> extends Layer implements AdaptableLayer
- Author:
- javaito
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.hcjf.layers.Layer
Layer.Access, Layer.LayerAgent, Layer.LayerAgentMBean
-
-
Method Summary
Modifier and Type Method Description java.lang.Object[]adaptArguments(java.lang.reflect.Method method, java.lang.Object[] args)Adapt the arrays of arguments to force the layer call.java.lang.Class<O>getResourceType()This method return the resource class of the layer.-
Methods inherited from class org.hcjf.layers.Layer
checkAccess, getAliases, getImplName, getLayer, getProxy, getSession, getTarget, invoke, isOverwritable, isPlugin, isStateful
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.hcjf.layers.LayerInterface
getRegex, isDistributed
-
-
-
-
Method Detail
-
getResourceType
public final java.lang.Class<O> getResourceType()
This method return the resource class of the layer.- Returns:
- Resource class.
-
adaptArguments
public java.lang.Object[] adaptArguments(java.lang.reflect.Method method, java.lang.Object[] args)Description copied from interface:AdaptableLayerAdapt the arrays of arguments to force the layer call.- Specified by:
adaptArgumentsin interfaceAdaptableLayer- Parameters:
method- Method to call.args- Original array of arguments.- Returns:
- New array of arguments.
-
-