object
loadServiceDenied extends GlobalFlag[Set[String]]
Value Members
-
final
def
!=(arg0: Any): Boolean
-
final
def
##(): Int
-
final
def
==(arg0: Any): Boolean
-
def
apply(): Set[String]
-
final
def
asInstanceOf[T0]: T0
-
def
clone(): AnyRef
-
def
defaultString(): String
-
-
-
def
finalize(): Unit
-
val
flaggable: Flaggable[Set[String]]
-
def
get: Option[Set[String]]
-
final
def
getClass(): Class[_]
-
def
getGlobalFlag: Flag[_]
-
def
getValue: Option[Set[String]]
-
def
getWithDefault: Option[Set[String]]
-
def
hashCode(): Int
-
val
help: String
-
def
isDefined: Boolean
-
final
def
isInstanceOf[T0]: Boolean
-
def
let(t: Set[String])(f: ⇒ Unit): Unit
-
val
name: String
-
-
def
noArgumentOk: Boolean
-
final
def
notify(): Unit
-
final
def
notifyAll(): Unit
-
def
parse(): Unit
-
def
parse(raw: String): Unit
-
def
parsingDone: Boolean
-
def
reset(): Unit
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
-
def
toString(): String
-
def
usageString: String
-
final
def
wait(): Unit
-
final
def
wait(arg0: Long, arg1: Int): Unit
-
final
def
wait(arg0: Long): Unit
Inherited from Flag[Set[String]]
A deny list of implementations to ignore. Keys are the fully qualified class names. Any other implementations that are found via
LoadService.applyare eligible to be used.As an example, here's how to filter out
OstrichStatsReceiver,OstrichExporterandCommonsStatsReceiverusing a global flag:We need to pass the arguments as Java property values instead of as Java application arguments (regular TwitterServer flags) because LoadService may be loaded before application arguments are parsed.