Home
last modified time | relevance | path

Searched refs:policyType (Results 1 – 3 of 3) sorted by relevance

/packages/apps/Exchange/tests/src/com/android/exchange/eas/
DEasProvisionTests.java45 final String policyType = "Test_Policy"; in testPopulateRequestEntitySerializerPhaseInitialEx2007() local
57 expectedResult.data(Tags.PROVISION_POLICY_TYPE, policyType); in testPopulateRequestEntitySerializerPhaseInitialEx2007()
64 mContext, userAgent, policyKey, policyType, status, phase, protocolVersion); in testPopulateRequestEntitySerializerPhaseInitialEx2007()
75 final String policyType = "Test_Policy"; in testPopulateRequestEntitySerializerPhaseInitialEx2010() local
88 expectedResult.data(Tags.PROVISION_POLICY_TYPE, policyType); in testPopulateRequestEntitySerializerPhaseInitialEx2010()
95 mContext, userAgent, policyKey, policyType, status, phase, protocolVersion); in testPopulateRequestEntitySerializerPhaseInitialEx2010()
106 final String policyType = "Test_Policy"; in testPopulateRequestEntitySerializerPhaseWipe() local
123 mContext, userAgent, policyKey, policyType, status, phase, protocolVersion); in testPopulateRequestEntitySerializerPhaseWipe()
134 final String policyType = "Test_Policy"; in testPopulateRequestEntitySerializerPhaseAcknowledge() local
146 expectedResult.data(Tags.PROVISION_POLICY_TYPE, policyType); in testPopulateRequestEntitySerializerPhaseAcknowledge()
[all …]
/packages/apps/Exchange/src/com/android/exchange/eas/
DEasProvision.java235 final String policyType, final String status, final int phase, in generateRequestEntitySerializer() argument
256 s.data(Tags.PROVISION_POLICY_TYPE, policyType); in generateRequestEntitySerializer()
274 final String policyType = getPolicyType(); in getRequestEntity() local
278 policyType, mStatus, mPhase, protocolVersion); in getRequestEntity()
/packages/apps/Exchange/src/com/android/exchange/adapter/
DProvisionParser.java543 String policyType = null; in parsePolicy() local
547 policyType = getValue(); in parsePolicy()
548 LogUtils.d(TAG, "Policy type: %s", policyType); in parsePolicy()
557 if (policyType.equalsIgnoreCase(EasProvision.EAS_2_POLICY_TYPE)) { in parsePolicy()