This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import scala.util.Random | |
import scala.language.reflectiveCalls | |
class Customer(customerId: String, code: String, customerName: String, host: String, val isEnabled: Boolean, | |
languageCode: String, val isServicesOnly: Boolean, val isEvaluation: Boolean) { | |
def customerId(): String = customerId | |
def customerName(): String = customerName | |
def host(): String = host | |
def languageCode(): String = languageCode | |
override def toString = s"Customer($customerId, $code, $customerName, $host, $isEnabled, $languageCode, $isServicesOnly, $isEvaluation)" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* jQuery.ajaxQueue - A queue for ajax requests | |
* | |
* (c) 2011 Pedro Sland | |
* Original by (c) 2011 Corey Frang | |
* | |
* Dual licensed under the MIT and GPL licenses. | |
* | |
* Requires jQuery 1.5+ | |
*/ |