Home | History | Annotate | Download | only in policy

Lines Matching defs:domain

94      * The only argument (with the key FIND_PROVIDER) is a string containing the domain that the
96 * "MyEmailAddress@gmail.com", the domain will be "gmail.com".
98 * If no server information is provided for this domain, simply return Bundle.EMPTY.
99 * If server information is available for this domain, it can be returned in the following
146 * $domain - the value after the @ signin the email address the user entered
202 * Policy: For a known domain, configure to the servers for that domain
205 String domain = arguments.getString(FIND_PROVIDER);
206 if (domain != null) {
207 domain = domain.toLowerCase();
210 if (knownDomain.equals(domain)) {