FrameBodyEncryptedpublic class FrameBodyEncrypted extends AbstractID3v2FrameBody implements ID3v24FrameBody, ID3v23FrameBodyEncrypted frame.
Container for an encrypted frame, we cannot decrypt encrypted frame but it may be possible
for the calling application to decrypt the frame if they understand how it has been encrypted,
information on this will be held within an ENCR frame |
Fields Summary |
---|
private String | identifier |
Constructors Summary |
---|
public FrameBodyEncrypted(String identifier)Creates a new FrameBodyEncrypted dataType.
this.identifier=identifier;
| public FrameBodyEncrypted(FrameBodyEncrypted body)
super(body);
| public FrameBodyEncrypted(String identifier, ByteBuffer byteBuffer, int frameSize)Read from file
super(byteBuffer, frameSize);
this.identifier=identifier;
|
Methods Summary |
---|
public java.lang.String | getIdentifier()The ID3v2 frame identifier
return identifier;
| protected void | setupObjectList()TODO:proper mapping
objectList.add(new ByteArraySizeTerminated(DataTypes.OBJ_DATA, this));
|
|