class ExemptClobMD
extends java.lang.Object
Modifier and Type | Field and Description |
---|---|
private boolean |
isClientFramework_
Tells if exempted in the client framework.
|
private boolean |
isEmbeddedFramework_
Tells if exempted in the embedded framework.
|
private java.lang.String |
methodName_
The Name of the method.
|
private java.lang.Class[] |
params_
The parameters of the method.
|
Constructor and Description |
---|
ExemptClobMD(java.lang.String methodName,
java.lang.Class[] params,
boolean isClientFramework,
boolean isEmbeddedFramework)
The Constructor for the ExemptClobMD class that
initialized the object with the details of the
methods that have been exempted
|
Modifier and Type | Method and Description |
---|---|
boolean |
getIfClientFramework()
Returns if the method is exempted from the Client Framework.
|
boolean |
getIfEmbeddedFramework()
Returns if the method is exempted from the Embedded Framework.
|
java.lang.String |
getMethodName()
Returns the name of the method.
|
java.lang.Class[] |
getParams()
Returns a array of Class containing the type of the parameters
of this method.
|
private java.lang.String methodName_
private java.lang.Class[] params_
private boolean isClientFramework_
private boolean isEmbeddedFramework_
public ExemptClobMD(java.lang.String methodName, java.lang.Class[] params, boolean isClientFramework, boolean isEmbeddedFramework)
methodName
- A String that contains the name of the method
that has been exempted.params
- A array of Class that contains the parameters
of the methods.isClientFramework
- true if the method is exempted in the
Client framework.isEmbeddedFramework
- true if the method is exempted in the
Embedded framework.public java.lang.String getMethodName()
public java.lang.Class[] getParams()
public boolean getIfClientFramework()
public boolean getIfEmbeddedFramework()
Apache Derby V10.13 Internals - Copyright © 2004,2016 The Apache Software Foundation. All Rights Reserved.