forked from TrueCloudLab/frostfs-sdk-java
parent
c9a54d56fb
commit
23bbe08893
70 changed files with 1375 additions and 587 deletions
|
@ -0,0 +1,21 @@
|
|||
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;
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue