All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.googlecode.openbox.phone.PhoneFactory Maven / Gradle / Ivy

package com.googlecode.openbox.phone;

import com.googlecode.openbox.phone.listeners.PhoneType;

public final class PhoneFactory {
	private PhoneFactory() {
	}

	public static RegistedPhone createRegistedPhone(String domain,
			String phoneNumber, String password) {
		return RegistedPhone.createPhone(domain, phoneNumber, password);
	}

	public static AnonymousPhone createAnymousPhone(String phoneNumber) {
		AnonymousPhone anymousPhone = AnonymousPhone.createPhone(phoneNumber);
		anymousPhone.setPhoneType(PhoneType.AUTO_PICKUP);
		return anymousPhone;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy