package info.frostfs.sdk.jdo; import info.frostfs.sdk.dto.object.ObjectId; public class PutObjectResult { private final ObjectId objectId; private final int objectSize; public PutObjectResult(ObjectId objectId, int objectSize) { this.objectId = objectId; this.objectSize = objectSize; } public ObjectId getObjectId() { return objectId; } public int getObjectSize() { return objectSize; } }