Top Description Fields Constructors Methods
org.osgi.service.tr069todmt

public Class TR069Exception

extends RuntimeException
Class Inheritance
Imports
org.osgi.service.dmt.DmtException

This exception is defined in terms of applicable TR-069 fault codes. The TR-069 specification defines the fault codes that can occur in different situations.

Field Summary

Modifier and TypeField and Description
pack-priv final DmtException
pack-priv final int
public static final int
INTERNAL_ERROR

9002 Internal error

public static final int
INVALID_ARGUMENTS

9003 Invalid Arguments

public static final int
INVALID_PARAMETER_NAME

9005 Invalid parameter name (associated with Set/GetParameterValues, GetParameterNames, Set/GetParameterAttributes, AddObject, and DeleteObject)

public static final int
INVALID_PARAMETER_TYPE

9006 Invalid parameter type (associated with SetParameterValues)

public static final int
INVALID_PARAMETER_VALUE

9007 Invalid parameter value (associated with SetParameterValues)

public static final int
METHOD_NOT_SUPPORTED

9000 Method not supported

public static final int
NON_WRITABLE_PARAMETER

9008 Attempt to set a non-writable parameter (associated with SetParameterValues)

public static final int
NOTIFICATION_REJECTED

9009 Notification request rejected (associated with SetParameterAttributes method).

public static final int
REQUEST_DENIED

9001 Request denied (no reason specified

public static final int
RESOURCES_EXCEEDED

9004 Resources exceeded (when used in association with SetParameterValues, this MUST NOT be used to indicate parameters in error)

private static final long

Constructor Summary

AccessConstructor and Description
public
TR069Exception(String
The message
message
)

A default constructor when only a message is known.

public
TR069Exception(String
The message
message
,
int
The TR-069 defined fault code
faultCode
,
DmtException e)

A Constructor with a message and a fault code.

public
TR069Exception(String
The message
message
,
int
The TR-069 defined fault code
faultCode
)

A Constructor with a message and a fault code.

public
TR069Exception(DmtException
The Dmt Exception
e
)

Create a TR069Exception from a Dmt Exception.

Method Summary

Modifier and TypeMethod and Description
public DmtException

Returns:

the corresponding Dmt Exception
getDmtException
()

private int
public int

Returns:

Answer the associated TR-069 fault code.
getFaultCode
()

Answer the associated TR-069 fault code.

Field Detail

dmtExceptionback to summary
pack-priv final DmtException dmtException
faultCodeback to summary
pack-priv final int faultCode
INTERNAL_ERRORback to summary
public static final int INTERNAL_ERROR

9002 Internal error

INVALID_ARGUMENTSback to summary
public static final int INVALID_ARGUMENTS

9003 Invalid Arguments

INVALID_PARAMETER_NAMEback to summary
public static final int INVALID_PARAMETER_NAME

9005 Invalid parameter name (associated with Set/GetParameterValues, GetParameterNames, Set/GetParameterAttributes, AddObject, and DeleteObject)

INVALID_PARAMETER_TYPEback to summary
public static final int INVALID_PARAMETER_TYPE

9006 Invalid parameter type (associated with SetParameterValues)

INVALID_PARAMETER_VALUEback to summary
public static final int INVALID_PARAMETER_VALUE

9007 Invalid parameter value (associated with SetParameterValues)

METHOD_NOT_SUPPORTEDback to summary
public static final int METHOD_NOT_SUPPORTED

9000 Method not supported

NON_WRITABLE_PARAMETERback to summary
public static final int NON_WRITABLE_PARAMETER

9008 Attempt to set a non-writable parameter (associated with SetParameterValues)

NOTIFICATION_REJECTEDback to summary
public static final int NOTIFICATION_REJECTED

9009 Notification request rejected (associated with SetParameterAttributes method).

REQUEST_DENIEDback to summary
public static final int REQUEST_DENIED

9001 Request denied (no reason specified

RESOURCES_EXCEEDEDback to summary
public static final int RESOURCES_EXCEEDED

9004 Resources exceeded (when used in association with SetParameterValues, this MUST NOT be used to indicate parameters in error)

serialVersionUIDback to summary
private static final long serialVersionUID

Hides java.lang.RuntimeException.serialVersionUID.

Constructor Detail

TR069Exceptionback to summary
public TR069Exception(String message)

A default constructor when only a message is known. This will generate a INTERNAL_ERROR fault.

Parameters
message:String

The message

TR069Exceptionback to summary
public TR069Exception(String message, int faultCode, DmtException e)

A Constructor with a message and a fault code.

Parameters
message:String

The message

faultCode:int

The TR-069 defined fault code

TR069Exceptionback to summary
public TR069Exception(String message, int faultCode)

A Constructor with a message and a fault code.

Parameters
message:String

The message

faultCode:int

The TR-069 defined fault code

TR069Exceptionback to summary
public TR069Exception(DmtException e)

Create a TR069Exception from a Dmt Exception.

Parameters
e:DmtException

The Dmt Exception

Method Detail

getDmtExceptionback to summary
public DmtException getDmtException()
Returns:DmtException

the corresponding Dmt Exception

getFaultCodeback to summary
private int getFaultCode(DmtException e)
getFaultCodeback to summary
public int getFaultCode()

Answer the associated TR-069 fault code.

Returns:int

Answer the associated TR-069 fault code.