Class SMDRevocationList
- java.lang.Object
-
- com.verisign.epp.codec.signedMark.SMDRevocationList
-
public class SMDRevocationList extends java.lang.ObjectClass that holds the attributes for a Signed Mark Data (SMD) Revocation List and provides the following:
- Encode the SMD Revocation List to a
String, that can be written to a file. - Decode the SMD Revocation List from a
Stringor anInputStream. - Check if a specific
EPPSignedMarkis revoked.
- Encode the SMD Revocation List to a
-
-
Field Summary
Fields Modifier and Type Field Description static intDEFAULT_VERSIONDefault value of theversionattribute.
-
Constructor Summary
Constructors Constructor Description SMDRevocationList()Default constructor.SMDRevocationList(java.util.Date aCreatedDate)Constructor that takes the requirement attribute value.SMDRevocationList(java.util.Date aCreatedDate, java.util.List<RevokedSMD> aRevokedSMDs)Constructor that takes the requirement created date attribute value and the optional list of revoked SMD's.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaddRevokedSMD(RevokedSMD aRevokedSMD)Adds a revoked SMD to the list of revoked SMD's.java.lang.Objectclone()CloneSMDRevocationList.voiddecode(java.io.InputStream aSMDRevocationListStream)Decodes the SMD Revocation List from anInputStream.voiddecode(java.lang.String aSMDRevocationListStr)Decodes the SMD Revocation List from aString.java.lang.Stringencode()Encodes the SMD Revocation List to aString.booleanequals(java.lang.Object aObject)implements a deepSMDRevocationListcompare.java.util.DategetCreatedDate()Gets the datetime in UTC that the SMD Revocation List was created.java.util.List<RevokedSMD>getRevokedSMDs()Gets the list of revoked SMD's.intgetVersion()Gets the version of the SMD Revocation List format.booleanisRevoked(EPPSignedMark aSignedMark)Is the passed signed mark revoked?voidsetCreatedDate(java.util.Date aCreatedDate)Sets the datetime in UTC that the SMD Revocation List was created.voidsetRevokedSMDs(java.util.List<RevokedSMD> aRevokedSMDs)Sets the list of revoked SMD's.voidsetVersion(int aVersion)Sets the version of the SMD Revocation List format.java.lang.StringtoString()Implementation ofObject.toString, which will result in the full SMD revocation list being converted to aString.
-
-
-
Field Detail
-
DEFAULT_VERSION
public static final int DEFAULT_VERSION
Default value of theversionattribute.- See Also:
- Constant Field Values
-
-
Constructor Detail
-
SMDRevocationList
public SMDRevocationList()
Default constructor. The createdDate must be set prior to calling theencode()method.
-
SMDRevocationList
public SMDRevocationList(java.util.Date aCreatedDate)
Constructor that takes the requirement attribute value. The version defaults to theDEFAULT_VERSIONvalue, and the removed SMD list defaults to an empty list.- Parameters:
aCreatedDate- Datetime in UTC that the SMD Revocation List was created.
-
SMDRevocationList
public SMDRevocationList(java.util.Date aCreatedDate, java.util.List<RevokedSMD> aRevokedSMDs)Constructor that takes the requirement created date attribute value and the optional list of revoked SMD's. The version defaults to theDEFAULT_VERSIONvalue.- Parameters:
aCreatedDate- Datetime in UTC that the SMD Revocation List was created.aRevokedSMDs- List of revoked SMD's
-
-
Method Detail
-
getVersion
public int getVersion()
Gets the version of the SMD Revocation List format.- Returns:
- Version of the SMD Revocation List format with the default of
DEFAULT_VERSION.
-
setVersion
public void setVersion(int aVersion)
Sets the version of the SMD Revocation List format.- Parameters:
aVersion- Version of the SMD Revocation List format
-
getCreatedDate
public java.util.Date getCreatedDate()
Gets the datetime in UTC that the SMD Revocation List was created.- Returns:
- Datetime in UTC that the SMD Revocation List was created.
-
setCreatedDate
public void setCreatedDate(java.util.Date aCreatedDate)
Sets the datetime in UTC that the SMD Revocation List was created.- Parameters:
aCreatedDate- Datetime in UTC that the SMD Revocation List was created.
-
getRevokedSMDs
public java.util.List<RevokedSMD> getRevokedSMDs()
Gets the list of revoked SMD's.- Returns:
- List of revoked SMD's
-
setRevokedSMDs
public void setRevokedSMDs(java.util.List<RevokedSMD> aRevokedSMDs)
Sets the list of revoked SMD's.- Parameters:
aRevokedSMDs- List of revoked SMD's
-
addRevokedSMD
public void addRevokedSMD(RevokedSMD aRevokedSMD)
Adds a revoked SMD to the list of revoked SMD's.- Parameters:
aRevokedSMD- Revoked SMD to add to the list of revoked SMD's
-
isRevoked
public boolean isRevoked(EPPSignedMark aSignedMark)
Is the passed signed mark revoked?- Parameters:
aSignedMark- Signed mark to check if revoked.- Returns:
trueif the signed mark is revoked;falseotherwise.
-
encode
public java.lang.String encode() throws EPPEncodeExceptionEncodes the SMD Revocation List to aString.- Returns:
- Encoded revoked SMD Revocation List
- Throws:
EPPEncodeException- Error encoding the SMD Revocation List.
-
decode
public void decode(java.lang.String aSMDRevocationListStr) throws EPPDecodeExceptionDecodes the SMD Revocation List from aString.- Parameters:
aSMDRevocationListStr- String containing the full SMD Revocation List.- Throws:
EPPDecodeException- Error decoding the SMD Revocation List
-
decode
public void decode(java.io.InputStream aSMDRevocationListStream) throws EPPDecodeExceptionDecodes the SMD Revocation List from anInputStream.- Parameters:
aSMDRevocationListStream-InputStreamcontaining the full SMD Revocation List.- Throws:
EPPDecodeException- Error decoding the SMD Revocation List
-
clone
public java.lang.Object clone() throws java.lang.CloneNotSupportedExceptionCloneSMDRevocationList.- Overrides:
clonein classjava.lang.Object- Returns:
- clone of
SMDRevocationList - Throws:
java.lang.CloneNotSupportedException- standard Object.clone exception
-
equals
public boolean equals(java.lang.Object aObject)
implements a deepSMDRevocationListcompare.- Overrides:
equalsin classjava.lang.Object- Parameters:
aObject-SMDRevocationListinstance to compare with- Returns:
- true if equal false otherwise
-
toString
public java.lang.String toString()
Implementation ofObject.toString, which will result in the full SMD revocation list being converted to aString. If there is an error encoding the Revocation List, aRuntimeExceptionis thrown.- Overrides:
toStringin classjava.lang.Object- Returns:
- Encoded SMD Revocation List
-
-