Package org.onosproject.netconf.rpc
Class RpcErrorType
- java.lang.Object
-
- org.onosproject.netconf.rpc.RpcErrorType
-
public class RpcErrorType extends java.lang.ObjectJava class for rpcErrorType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="rpcErrorType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="error-type" type="{urn:ietf:params:xml:ns:netconf:base:1.0}ErrorType"/> <element name="error-tag" type="{urn:ietf:params:xml:ns:netconf:base:1.0}ErrorTag"/> <element name="error-severity" type="{urn:ietf:params:xml:ns:netconf:base:1.0}ErrorSeverity"/> <element name="error-app-tag" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> <element name="error-path" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> <element name="error-message" minOccurs="0"> <complexType> <simpleContent> <extension base="<http://www.w3.org/2001/XMLSchema>string"> <attribute ref="{http://www.w3.org/XML/1998/namespace}lang"/> </extension> </simpleContent> </complexType> </element> <element name="error-info" type="{urn:ietf:params:xml:ns:netconf:base:1.0}errorInfoType" minOccurs="0"/> </sequence> </restriction> </complexContent> </complexType>
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classRpcErrorType.ErrorMessageJava class for anonymous complex type.
-
Field Summary
Fields Modifier and Type Field Description protected java.lang.StringerrorAppTagprotected ErrorInfoTypeerrorInfoprotected RpcErrorType.ErrorMessageerrorMessageprotected java.lang.StringerrorPathprotected ErrorSeverityerrorSeverityprotected ErrorTagerrorTagprotected ErrorTypeerrorType
-
Constructor Summary
Constructors Constructor Description RpcErrorType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetErrorAppTag()Gets the value of the errorAppTag property.ErrorInfoTypegetErrorInfo()Gets the value of the errorInfo property.RpcErrorType.ErrorMessagegetErrorMessage()Gets the value of the errorMessage property.java.lang.StringgetErrorPath()Gets the value of the errorPath property.ErrorSeveritygetErrorSeverity()Gets the value of the errorSeverity property.ErrorTaggetErrorTag()Gets the value of the errorTag property.ErrorTypegetErrorType()Gets the value of the errorType property.voidsetErrorAppTag(java.lang.String value)Sets the value of the errorAppTag property.voidsetErrorInfo(ErrorInfoType value)Sets the value of the errorInfo property.voidsetErrorMessage(RpcErrorType.ErrorMessage value)Sets the value of the errorMessage property.voidsetErrorPath(java.lang.String value)Sets the value of the errorPath property.voidsetErrorSeverity(ErrorSeverity value)Sets the value of the errorSeverity property.voidsetErrorTag(ErrorTag value)Sets the value of the errorTag property.voidsetErrorType(ErrorType value)Sets the value of the errorType property.
-
-
-
Field Detail
-
errorType
protected ErrorType errorType
-
errorTag
protected ErrorTag errorTag
-
errorSeverity
protected ErrorSeverity errorSeverity
-
errorAppTag
protected java.lang.String errorAppTag
-
errorPath
protected java.lang.String errorPath
-
errorMessage
protected RpcErrorType.ErrorMessage errorMessage
-
errorInfo
protected ErrorInfoType errorInfo
-
-
Method Detail
-
getErrorType
public ErrorType getErrorType()
Gets the value of the errorType property.- Returns:
- possible object is
ErrorType
-
setErrorType
public void setErrorType(ErrorType value)
Sets the value of the errorType property.- Parameters:
value- allowed object isErrorType
-
getErrorTag
public ErrorTag getErrorTag()
Gets the value of the errorTag property.- Returns:
- possible object is
ErrorTag
-
setErrorTag
public void setErrorTag(ErrorTag value)
Sets the value of the errorTag property.- Parameters:
value- allowed object isErrorTag
-
getErrorSeverity
public ErrorSeverity getErrorSeverity()
Gets the value of the errorSeverity property.- Returns:
- possible object is
ErrorSeverity
-
setErrorSeverity
public void setErrorSeverity(ErrorSeverity value)
Sets the value of the errorSeverity property.- Parameters:
value- allowed object isErrorSeverity
-
getErrorAppTag
public java.lang.String getErrorAppTag()
Gets the value of the errorAppTag property.- Returns:
- possible object is
String
-
setErrorAppTag
public void setErrorAppTag(java.lang.String value)
Sets the value of the errorAppTag property.- Parameters:
value- allowed object isString
-
getErrorPath
public java.lang.String getErrorPath()
Gets the value of the errorPath property.- Returns:
- possible object is
String
-
setErrorPath
public void setErrorPath(java.lang.String value)
Sets the value of the errorPath property.- Parameters:
value- allowed object isString
-
getErrorMessage
public RpcErrorType.ErrorMessage getErrorMessage()
Gets the value of the errorMessage property.- Returns:
- possible object is
RpcErrorType.ErrorMessage
-
setErrorMessage
public void setErrorMessage(RpcErrorType.ErrorMessage value)
Sets the value of the errorMessage property.- Parameters:
value- allowed object isRpcErrorType.ErrorMessage
-
getErrorInfo
public ErrorInfoType getErrorInfo()
Gets the value of the errorInfo property.- Returns:
- possible object is
ErrorInfoType
-
setErrorInfo
public void setErrorInfo(ErrorInfoType value)
Sets the value of the errorInfo property.- Parameters:
value- allowed object isErrorInfoType
-
-