CreateCaseRequest.getServiceCode
Code IndexAdd Codota to your IDE (free)

Best code snippets using com.amazonaws.services.support.model.CreateCaseRequest.getServiceCode(Showing top 12 results out of 315)

origin: aws/aws-sdk-java

@Override
public int hashCode() {
  final int prime = 31;
  int hashCode = 1;
  hashCode = prime * hashCode + ((getSubject() == null) ? 0 : getSubject().hashCode());
  hashCode = prime * hashCode + ((getServiceCode() == null) ? 0 : getServiceCode().hashCode());
  hashCode = prime * hashCode + ((getSeverityCode() == null) ? 0 : getSeverityCode().hashCode());
  hashCode = prime * hashCode + ((getCategoryCode() == null) ? 0 : getCategoryCode().hashCode());
  hashCode = prime * hashCode + ((getCommunicationBody() == null) ? 0 : getCommunicationBody().hashCode());
  hashCode = prime * hashCode + ((getCcEmailAddresses() == null) ? 0 : getCcEmailAddresses().hashCode());
  hashCode = prime * hashCode + ((getLanguage() == null) ? 0 : getLanguage().hashCode());
  hashCode = prime * hashCode + ((getIssueType() == null) ? 0 : getIssueType().hashCode());
  hashCode = prime * hashCode + ((getAttachmentSetId() == null) ? 0 : getAttachmentSetId().hashCode());
  return hashCode;
}
origin: aws/aws-sdk-java

/**
 * Marshall the given parameter object.
 */
public void marshall(CreateCaseRequest createCaseRequest, ProtocolMarshaller protocolMarshaller) {
  if (createCaseRequest == null) {
    throw new SdkClientException("Invalid argument passed to marshall(...)");
  }
  try {
    protocolMarshaller.marshall(createCaseRequest.getSubject(), SUBJECT_BINDING);
    protocolMarshaller.marshall(createCaseRequest.getServiceCode(), SERVICECODE_BINDING);
    protocolMarshaller.marshall(createCaseRequest.getSeverityCode(), SEVERITYCODE_BINDING);
    protocolMarshaller.marshall(createCaseRequest.getCategoryCode(), CATEGORYCODE_BINDING);
    protocolMarshaller.marshall(createCaseRequest.getCommunicationBody(), COMMUNICATIONBODY_BINDING);
    protocolMarshaller.marshall(createCaseRequest.getCcEmailAddresses(), CCEMAILADDRESSES_BINDING);
    protocolMarshaller.marshall(createCaseRequest.getLanguage(), LANGUAGE_BINDING);
    protocolMarshaller.marshall(createCaseRequest.getIssueType(), ISSUETYPE_BINDING);
    protocolMarshaller.marshall(createCaseRequest.getAttachmentSetId(), ATTACHMENTSETID_BINDING);
  } catch (Exception e) {
    throw new SdkClientException("Unable to marshall request to JSON: " + e.getMessage(), e);
  }
}
origin: aws/aws-sdk-java

if (getSubject() != null)
  sb.append("Subject: ").append(getSubject()).append(",");
if (getServiceCode() != null)
  sb.append("ServiceCode: ").append(getServiceCode()).append(",");
if (getSeverityCode() != null)
  sb.append("SeverityCode: ").append(getSeverityCode()).append(",");
origin: aws/aws-sdk-java

if (other.getSubject() != null && other.getSubject().equals(this.getSubject()) == false)
  return false;
if (other.getServiceCode() == null ^ this.getServiceCode() == null)
  return false;
if (other.getServiceCode() != null && other.getServiceCode().equals(this.getServiceCode()) == false)
  return false;
if (other.getSeverityCode() == null ^ this.getSeverityCode() == null)
origin: com.amazonaws/aws-java-sdk-bundle

@Override
public int hashCode() {
  final int prime = 31;
  int hashCode = 1;
  hashCode = prime * hashCode + ((getSubject() == null) ? 0 : getSubject().hashCode());
  hashCode = prime * hashCode + ((getServiceCode() == null) ? 0 : getServiceCode().hashCode());
  hashCode = prime * hashCode + ((getSeverityCode() == null) ? 0 : getSeverityCode().hashCode());
  hashCode = prime * hashCode + ((getCategoryCode() == null) ? 0 : getCategoryCode().hashCode());
  hashCode = prime * hashCode + ((getCommunicationBody() == null) ? 0 : getCommunicationBody().hashCode());
  hashCode = prime * hashCode + ((getCcEmailAddresses() == null) ? 0 : getCcEmailAddresses().hashCode());
  hashCode = prime * hashCode + ((getLanguage() == null) ? 0 : getLanguage().hashCode());
  hashCode = prime * hashCode + ((getIssueType() == null) ? 0 : getIssueType().hashCode());
  hashCode = prime * hashCode + ((getAttachmentSetId() == null) ? 0 : getAttachmentSetId().hashCode());
  return hashCode;
}
origin: com.amazonaws/aws-java-sdk-osgi

@Override
public int hashCode() {
  final int prime = 31;
  int hashCode = 1;
  hashCode = prime * hashCode + ((getSubject() == null) ? 0 : getSubject().hashCode());
  hashCode = prime * hashCode + ((getServiceCode() == null) ? 0 : getServiceCode().hashCode());
  hashCode = prime * hashCode + ((getSeverityCode() == null) ? 0 : getSeverityCode().hashCode());
  hashCode = prime * hashCode + ((getCategoryCode() == null) ? 0 : getCategoryCode().hashCode());
  hashCode = prime * hashCode + ((getCommunicationBody() == null) ? 0 : getCommunicationBody().hashCode());
  hashCode = prime * hashCode + ((getCcEmailAddresses() == null) ? 0 : getCcEmailAddresses().hashCode());
  hashCode = prime * hashCode + ((getLanguage() == null) ? 0 : getLanguage().hashCode());
  hashCode = prime * hashCode + ((getIssueType() == null) ? 0 : getIssueType().hashCode());
  hashCode = prime * hashCode + ((getAttachmentSetId() == null) ? 0 : getAttachmentSetId().hashCode());
  return hashCode;
}
origin: com.amazonaws/aws-java-sdk-bundle

/**
 * Marshall the given parameter object.
 */
public void marshall(CreateCaseRequest createCaseRequest, ProtocolMarshaller protocolMarshaller) {
  if (createCaseRequest == null) {
    throw new SdkClientException("Invalid argument passed to marshall(...)");
  }
  try {
    protocolMarshaller.marshall(createCaseRequest.getSubject(), SUBJECT_BINDING);
    protocolMarshaller.marshall(createCaseRequest.getServiceCode(), SERVICECODE_BINDING);
    protocolMarshaller.marshall(createCaseRequest.getSeverityCode(), SEVERITYCODE_BINDING);
    protocolMarshaller.marshall(createCaseRequest.getCategoryCode(), CATEGORYCODE_BINDING);
    protocolMarshaller.marshall(createCaseRequest.getCommunicationBody(), COMMUNICATIONBODY_BINDING);
    protocolMarshaller.marshall(createCaseRequest.getCcEmailAddresses(), CCEMAILADDRESSES_BINDING);
    protocolMarshaller.marshall(createCaseRequest.getLanguage(), LANGUAGE_BINDING);
    protocolMarshaller.marshall(createCaseRequest.getIssueType(), ISSUETYPE_BINDING);
    protocolMarshaller.marshall(createCaseRequest.getAttachmentSetId(), ATTACHMENTSETID_BINDING);
  } catch (Exception e) {
    throw new SdkClientException("Unable to marshall request to JSON: " + e.getMessage(), e);
  }
}
origin: com.amazonaws/aws-java-sdk-osgi

/**
 * Marshall the given parameter object.
 */
public void marshall(CreateCaseRequest createCaseRequest, ProtocolMarshaller protocolMarshaller) {
  if (createCaseRequest == null) {
    throw new SdkClientException("Invalid argument passed to marshall(...)");
  }
  try {
    protocolMarshaller.marshall(createCaseRequest.getSubject(), SUBJECT_BINDING);
    protocolMarshaller.marshall(createCaseRequest.getServiceCode(), SERVICECODE_BINDING);
    protocolMarshaller.marshall(createCaseRequest.getSeverityCode(), SEVERITYCODE_BINDING);
    protocolMarshaller.marshall(createCaseRequest.getCategoryCode(), CATEGORYCODE_BINDING);
    protocolMarshaller.marshall(createCaseRequest.getCommunicationBody(), COMMUNICATIONBODY_BINDING);
    protocolMarshaller.marshall(createCaseRequest.getCcEmailAddresses(), CCEMAILADDRESSES_BINDING);
    protocolMarshaller.marshall(createCaseRequest.getLanguage(), LANGUAGE_BINDING);
    protocolMarshaller.marshall(createCaseRequest.getIssueType(), ISSUETYPE_BINDING);
    protocolMarshaller.marshall(createCaseRequest.getAttachmentSetId(), ATTACHMENTSETID_BINDING);
  } catch (Exception e) {
    throw new SdkClientException("Unable to marshall request to JSON: " + e.getMessage(), e);
  }
}
origin: com.amazonaws/aws-java-sdk-osgi

if (getSubject() != null)
  sb.append("Subject: ").append(getSubject()).append(",");
if (getServiceCode() != null)
  sb.append("ServiceCode: ").append(getServiceCode()).append(",");
if (getSeverityCode() != null)
  sb.append("SeverityCode: ").append(getSeverityCode()).append(",");
origin: com.amazonaws/aws-java-sdk-bundle

if (getSubject() != null)
  sb.append("Subject: ").append(getSubject()).append(",");
if (getServiceCode() != null)
  sb.append("ServiceCode: ").append(getServiceCode()).append(",");
if (getSeverityCode() != null)
  sb.append("SeverityCode: ").append(getSeverityCode()).append(",");
origin: com.amazonaws/aws-java-sdk-bundle

if (other.getSubject() != null && other.getSubject().equals(this.getSubject()) == false)
  return false;
if (other.getServiceCode() == null ^ this.getServiceCode() == null)
  return false;
if (other.getServiceCode() != null && other.getServiceCode().equals(this.getServiceCode()) == false)
  return false;
if (other.getSeverityCode() == null ^ this.getSeverityCode() == null)
origin: com.amazonaws/aws-java-sdk-osgi

if (other.getSubject() != null && other.getSubject().equals(this.getSubject()) == false)
  return false;
if (other.getServiceCode() == null ^ this.getServiceCode() == null)
  return false;
if (other.getServiceCode() != null && other.getServiceCode().equals(this.getServiceCode()) == false)
  return false;
if (other.getSeverityCode() == null ^ this.getSeverityCode() == null)
com.amazonaws.services.support.modelCreateCaseRequestgetServiceCode

Javadoc

The code for the AWS service returned by the call to DescribeServices.

Popular methods of CreateCaseRequest

  • getAttachmentSetId
    The ID of a set of one or more attachments for the case. Create the set by using AddAttachmentsToSe
  • getCategoryCode
    The category of problem for the AWS Support case.
  • getCcEmailAddresses
    A list of email addresses that AWS Support copies on case correspondence.
  • getCommunicationBody
    The communication body text when you create an AWS Support case by calling CreateCase.
  • getIssueType
    The type of issue for the case. You can specify either "customer-service" or "technical." If you do
  • getLanguage
    The ISO 639-1 code for the language in which AWS provides support. AWS Support currently supports E
  • getSeverityCode
    The code for the severity level returned by the call to DescribeSeverityLevels. The availability
  • getSubject
    The title of the AWS Support case.
  • setAttachmentSetId
    The ID of a set of one or more attachments for the case. Create the set by using AddAttachmentsToSe
  • setCategoryCode
    The category of problem for the AWS Support case.
  • setCcEmailAddresses
    A list of email addresses that AWS Support copies on case correspondence.
  • setCommunicationBody
    The communication body text when you create an AWS Support case by calling CreateCase.
  • setCcEmailAddresses,
  • setCommunicationBody,
  • setIssueType,
  • setLanguage,
  • setServiceCode,
  • setSeverityCode,
  • setSubject

Popular classes and methods

  • setScale (BigDecimal)
    Returns a new BigDecimal instance with the specified scale. If the new scale is greater than the old
  • notifyDataSetChanged (ArrayAdapter)
  • getContentResolver (Context)
  • Thread (java.lang)
    A Thread is a concurrent unit of execution. It has its own call stack for methods being invoked, the
  • InetAddress (java.net)
    An Internet Protocol (IP) address. This can be either an IPv4 address or an IPv6 address, and in pra
  • DateFormat (java.text)
    DateFormat is an abstract class for date/time formatting subclasses which formats and parses dates
  • SortedMap (java.util)
    A Map that further provides a total ordering on its keys. The map is ordered according to the Compar
  • TimeZone (java.util)
    TimeZone represents a time zone, primarily used for configuring a Calendar or java.text.SimpleDateF
  • DataSource (javax.sql)
    An interface for the creation of Connection objects which represent a connection to a database. This
  • Reflections (org.reflections)
    Reflections one-stop-shop objectReflections scans your classpath, indexes the metadata, allows you t

For IntelliJ IDEA,
Android Studio or Eclipse

  • Codota IntelliJ IDEA pluginCodota Android Studio pluginCode IndexSign in
  • EnterpriseFAQAboutContact Us
  • Terms of usePrivacy policyCodeboxFind Usages
Add Codota to your IDE (free)