mirror of
https://github.com/moparisthebest/k-9
synced 2024-11-10 03:25:04 -05:00
67 lines
1.7 KiB
Java
67 lines
1.7 KiB
Java
|
package com.fsck.k9.search;
|
||
|
|
||
|
import java.util.UUID;
|
||
|
|
||
|
import com.fsck.k9.BaseAccount;
|
||
|
|
||
|
/**
|
||
|
* This class is basically a wrapper around a LocalSearch. It allows to expose it as
|
||
|
* an account. This is a meta-account containing all the e-mail that matches the search.
|
||
|
*/
|
||
|
public class SearchAccount implements BaseAccount {
|
||
|
|
||
|
private String mEmail = null;
|
||
|
private String mDescription = null;
|
||
|
private LocalSearch mSearch = null;
|
||
|
private String mFakeUuid = null;
|
||
|
|
||
|
public SearchAccount(LocalSearch search, String description, String email) throws IllegalArgumentException{
|
||
|
if (search == null) {
|
||
|
throw new IllegalArgumentException("Provided LocalSearch was null");
|
||
|
}
|
||
|
|
||
|
this.mSearch = search;
|
||
|
this.mDescription = description;
|
||
|
this.mEmail = email;
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public synchronized String getEmail() {
|
||
|
return mEmail;
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public synchronized void setEmail(String email) {
|
||
|
this.mEmail = email;
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public String getDescription() {
|
||
|
return mDescription;
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public void setDescription(String description) {
|
||
|
this.mDescription = description;
|
||
|
}
|
||
|
|
||
|
public LocalSearch getRelatedSearch() {
|
||
|
return mSearch;
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
/*
|
||
|
* This will only be used when accessed as an Account. If that
|
||
|
* is the case we don't want to return the uuid of a real account since
|
||
|
* this is posing as a fake meta-account. If this object is accesed as
|
||
|
* a Search then methods from LocalSearch will be called which do handle
|
||
|
* things nice.
|
||
|
*/
|
||
|
public String getUuid() {
|
||
|
if (mFakeUuid == null){
|
||
|
mFakeUuid = UUID.randomUUID().toString();
|
||
|
}
|
||
|
return mFakeUuid;
|
||
|
}
|
||
|
}
|