com.casper.sdk.model.deploy.executabledeploy.ExecutableDeployItem Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of casper-java-sdk Show documentation
Show all versions of casper-java-sdk Show documentation
SDK to streamline the 3rd party Java client integration processes. Such 3rd parties include exchanges & app developers.
The newest version!
package com.casper.sdk.model.deploy.executabledeploy;
import com.casper.sdk.exception.NoSuchTypeException;
import com.casper.sdk.model.clvalue.serde.CasperSerializableObject;
import com.casper.sdk.model.clvalue.serde.Target;
import com.casper.sdk.model.deploy.NamedArg;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonSubTypes;
import com.fasterxml.jackson.annotation.JsonTypeInfo;
import dev.oak3.sbs4j.SerializerBuffer;
import dev.oak3.sbs4j.exception.ValueSerializationException;
import java.util.List;
/**
* Abstract Executable Deploy Item containing the runtime args of the contract.
* It can be any of the following types:
*
* @author Alexandre Carvalho
* @author Andre Bertolace
* @see ModuleBytes
* @see StoredContractByHash
* @see StoredContractByName
* @see StoredVersionedContractByHash
* @see StoredVersionedContractByName
* @see Transfer
* @since 0.0.1
*/
@JsonTypeInfo(use = JsonTypeInfo.Id.NAME, include = JsonTypeInfo.As.WRAPPER_OBJECT)
@JsonSubTypes({@JsonSubTypes.Type(value = ModuleBytes.class, name = "ModuleBytes"),
@JsonSubTypes.Type(value = StoredContractByHash.class, name = "StoredContractByHash"),
@JsonSubTypes.Type(value = StoredContractByName.class, name = "StoredContractByName"),
@JsonSubTypes.Type(value = StoredVersionedContractByHash.class, name = "StoredVersionedContractByHash"),
@JsonSubTypes.Type(value = StoredVersionedContractByName.class, name = "StoredVersionedContractByName"),
@JsonSubTypes.Type(value = Transfer.class, name = "Transfer")})
public abstract class ExecutableDeployItem implements CasperSerializableObject {
public abstract List> getArgs();
@JsonIgnore
abstract byte getOrder();
void serializeNamedArgs(final SerializerBuffer ser, final Target target) throws ValueSerializationException, NoSuchTypeException {
ser.writeI32(getArgs().size());
for (NamedArg> namedArg : getArgs()) {
namedArg.serialize(ser, target);
}
}
}