-
- All Implemented Interfaces:
-
android.os.Parcelable
,java.io.Serializable
public class MenigaOrganization implements Serializable, Parcelable
Copyright 2017 Meniga Iceland Inc.
-
-
Field Summary
Fields Modifier and Type Field Description protected long
id
protected String
name
protected String
altName
protected String
identifier
protected int
orderIndex
protected String
iconFilename
protected long
imageDataId
protected List<MenigaRealm>
realms
public final static Parcelable.Creator<MenigaOrganization>
CREATOR
-
Method Summary
Modifier and Type Method Description static void
setOperator(MenigaOrganizationOperations operator)
Sets the api operator for doing api calls boolean
equals(Object o)
int
hashCode()
int
describeContents()
void
writeToParcel(Parcel dest, int flags)
static Result<List<MenigaOrganization>>
fetch()
Get all organizations defined on this server long
getId()
String
getName()
String
getAltName()
String
getIdentifier()
int
getOrderIndex()
String
getIconFilename()
long
getImageDataId()
List<MenigaRealm>
getRealms()
-
-
Method Detail
-
setOperator
static void setOperator(MenigaOrganizationOperations operator)
Sets the api operator for doing api calls
- Parameters:
operator
- An object that implements the MenigaOrganizationOperations interface for carrying out api operations on this class.
-
hashCode
int hashCode()
-
describeContents
int describeContents()
-
writeToParcel
void writeToParcel(Parcel dest, int flags)
-
fetch
static Result<List<MenigaOrganization>> fetch()
Get all organizations defined on this server
-
getId
long getId()
-
getAltName
String getAltName()
-
getIdentifier
String getIdentifier()
-
getOrderIndex
int getOrderIndex()
-
getIconFilename
String getIconFilename()
-
getImageDataId
long getImageDataId()
-
getRealms
List<MenigaRealm> getRealms()
-
-
-
-