artifactIdSerializer.write(encoder, value.getArtifactId());
}
public ArtifactAtRepositoryKey read(Decoder decoder) throws Exception {
String repositoryId = decoder.readString();
ModuleComponentArtifactIdentifier artifactIdentifier = artifactIdSerializer.read(decoder);
return new ArtifactAtRepositoryKey(repositoryId, artifactIdentifier);
}