boolean |
SxmpProcessor.authenticate(Account account) |
SubmitResponse |
SubmitRequest.createResponse() |
abstract E |
Request.createResponse() |
DeliveryReportResponse |
DeliveryReportRequest.createResponse() |
DeliverResponse |
DeliverRequest.createResponse() |
static String |
SxmpWriter.createString(Operation operation)
static public byte[] createByteArray(Operation operation) throws SxmpErrorException, IOException {
// most requests will be ~1000 bytes
//FastByteArrayOutputStream baos = new FastByteArrayOutputStream(1000);
ByteArrayOutputStream baos = new ByteArrayOutputStream(1000);
OutputStreamWriter out = new OutputStreamWriter(baos, "ISO-8859-1");
SxmpWriter.write(out, operation);
byte[] data = baos.toByteArray();
//out.close();
//baos.close();
return data;
}
|
DeliverResponse |
SxmpProcessor.deliver(Account account,
DeliverRequest deliverRequest) |
static DeliverResponse |
SxmpSender.deliver(String url,
DeliverRequest request,
boolean shouldParseResponse) |
DeliveryReportResponse |
SxmpProcessor.deliveryReport(Account account,
DeliveryReportRequest deliveryRequest) |
static Response |
SxmpSender.send(String url,
Request request,
boolean shouldParseResponse) |
void |
MobileAddress.setAddress(MobileAddress.Type type,
String address) |
void |
MessageRequest.setOperatorId(Integer value) |
void |
Operation.setReferenceId(String value) |
SubmitResponse |
SxmpProcessor.submit(Account account,
SubmitRequest submitRequest) |
static SubmitResponse |
SxmpSender.submit(String url,
SubmitRequest request) |
void |
SubmitResponse.validate() |
abstract void |
Operation.validate()
Validates the operation whether it contains all required properties
per the SXMP protocol specifications.
|
void |
DeliveryReportResponse.validate() |
void |
SubmitRequest.validate() |
void |
Response.validate() |
void |
Request.validate() |
void |
DeliveryReportRequest.validate() |
void |
DeliverResponse.validate() |
void |
PartialOperation.validate() |
void |
ErrorResponse.validate() |
void |
MessageRequest.validate() |
void |
DeliverRequest.validate() |
static void |
SxmpWriter.write(Writer out,
Operation operation) |
static void |
SxmpWriter.write(Writer out,
Operation operation,
boolean withXmlHeader) |