public class

Owner

extends Object
implements Serializable
java.lang.Object
   ↳ org.mule.module.s3.model.Owner

Class Overview

Represents the owner of an Amazon S3 bucket.

Summary

Constants
long serialVersionUID
Fields
private String displayName
private String id
Public Constructors
Owner()

Constructs a new Owner without specifying an ID or display name.

Owner(String id, String displayName)

Constructs a new Owner with the specified ID and display name.

Public Methods
boolean equals(Object o)
String getDisplayName()

Gets the display name of the owner.

String getId()

Gets the ID of the owner.

int hashCode()
void setDisplayName(String name)

Sets the display name of the owner.

void setId(String id)

Sets the ID of the owner.

String toString()
[Expand]
Inherited Methods
From class java.lang.Object

Constants

private static final long serialVersionUID

Constant Value: 3545685213134690647 (0x3134cdea5e3f9957)

Fields

private String displayName

private String id

Public Constructors

public Owner ()

Constructs a new Owner without specifying an ID or display name.

public Owner (String id, String displayName)

Constructs a new Owner with the specified ID and display name.

Parameters
id The ID for the owner.
displayName The display name for the owner.
See Also

Public Methods

public boolean equals (Object o)

Parameters
o

public String getDisplayName ()

Gets the display name of the owner.

Returns
  • The display name of the owner.

public String getId ()

Gets the ID of the owner.

Returns
  • The ID of the owner.
See Also

public int hashCode ()

public void setDisplayName (String name)

Sets the display name of the owner.

Parameters
name The display name of the owner.
See Also

public void setId (String id)

Sets the ID of the owner.

Parameters
id The ID of the owner.
See Also

public String toString ()