diff --git a/CHANGELOG.md b/CHANGELOG.md index 0d2c0a73..97b74357 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -29,9 +29,8 @@ All notable changes to this project will be documented in this file. ## [2.4.0](https://github.com/webex/webex-android-sdk/releases/tag/2.4.0) Released on 2020-01-15. #### Added -- Add "WAITING" status to CallStatus, indicate user is now waiting in lobby. -- Add API to admit a CallMembership join meeting from lobby. -- Add API to admit CallMemberships join meeting from lobby. +- Support to join the meeting where lobby is enabled. +- Support to let-in waiting people from looby to the meeting. #### Updated - Fixed users' audio cannot be heard mute/unmute. diff --git a/sdk/src/androidTest/java/com/ciscowebex/androidsdk/WebexTestRunner.java b/sdk/src/androidTest/java/com/ciscowebex/androidsdk/WebexTestRunner.java index 13c8609f..f8b6ff96 100644 --- a/sdk/src/androidTest/java/com/ciscowebex/androidsdk/WebexTestRunner.java +++ b/sdk/src/androidTest/java/com/ciscowebex/androidsdk/WebexTestRunner.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2019 Cisco Systems Inc + * Copyright 2016-2020 Cisco Systems Inc * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/sdk/src/androidTest/java/com/ciscowebex/androidsdk/auth/JWTAuthenticatorTest.java b/sdk/src/androidTest/java/com/ciscowebex/androidsdk/auth/JWTAuthenticatorTest.java index 7e09472a..bd683f83 100644 --- a/sdk/src/androidTest/java/com/ciscowebex/androidsdk/auth/JWTAuthenticatorTest.java +++ b/sdk/src/androidTest/java/com/ciscowebex/androidsdk/auth/JWTAuthenticatorTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2019 Cisco Systems Inc + * Copyright 2016-2020 Cisco Systems Inc * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/sdk/src/main/java/com/ciscowebex/androidsdk/CompletionHandler.java b/sdk/src/main/java/com/ciscowebex/androidsdk/CompletionHandler.java index 1622e214..06b92786 100644 --- a/sdk/src/main/java/com/ciscowebex/androidsdk/CompletionHandler.java +++ b/sdk/src/main/java/com/ciscowebex/androidsdk/CompletionHandler.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2019 Cisco Systems Inc + * Copyright 2016-2020 Cisco Systems Inc * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/sdk/src/main/java/com/ciscowebex/androidsdk/Result.java b/sdk/src/main/java/com/ciscowebex/androidsdk/Result.java index 0ca48372..c2ae958c 100644 --- a/sdk/src/main/java/com/ciscowebex/androidsdk/Result.java +++ b/sdk/src/main/java/com/ciscowebex/androidsdk/Result.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2019 Cisco Systems Inc + * Copyright 2016-2020 Cisco Systems Inc * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/sdk/src/main/java/com/ciscowebex/androidsdk/Webex.java b/sdk/src/main/java/com/ciscowebex/androidsdk/Webex.java index 3030af19..f9e2350c 100644 --- a/sdk/src/main/java/com/ciscowebex/androidsdk/Webex.java +++ b/sdk/src/main/java/com/ciscowebex/androidsdk/Webex.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2019 Cisco Systems Inc + * Copyright 2016-2020 Cisco Systems Inc * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/sdk/src/main/java/com/ciscowebex/androidsdk/WebexError.java b/sdk/src/main/java/com/ciscowebex/androidsdk/WebexError.java index 34450604..2c44c6bb 100644 --- a/sdk/src/main/java/com/ciscowebex/androidsdk/WebexError.java +++ b/sdk/src/main/java/com/ciscowebex/androidsdk/WebexError.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2019 Cisco Systems Inc + * Copyright 2016-2020 Cisco Systems Inc * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/sdk/src/main/java/com/ciscowebex/androidsdk/WebexEvent.java b/sdk/src/main/java/com/ciscowebex/androidsdk/WebexEvent.java index 5b0c8f20..5c938886 100644 --- a/sdk/src/main/java/com/ciscowebex/androidsdk/WebexEvent.java +++ b/sdk/src/main/java/com/ciscowebex/androidsdk/WebexEvent.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2019 Cisco Systems Inc + * Copyright 2016-2020 Cisco Systems Inc * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/sdk/src/main/java/com/ciscowebex/androidsdk/auth/Authenticator.java b/sdk/src/main/java/com/ciscowebex/androidsdk/auth/Authenticator.java index 8e1573ad..05e2e89e 100644 --- a/sdk/src/main/java/com/ciscowebex/androidsdk/auth/Authenticator.java +++ b/sdk/src/main/java/com/ciscowebex/androidsdk/auth/Authenticator.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2019 Cisco Systems Inc + * Copyright 2016-2020 Cisco Systems Inc * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/sdk/src/main/java/com/ciscowebex/androidsdk/auth/JWTAuthenticator.java b/sdk/src/main/java/com/ciscowebex/androidsdk/auth/JWTAuthenticator.java index 5221e922..a1c18603 100644 --- a/sdk/src/main/java/com/ciscowebex/androidsdk/auth/JWTAuthenticator.java +++ b/sdk/src/main/java/com/ciscowebex/androidsdk/auth/JWTAuthenticator.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2019 Cisco Systems Inc + * Copyright 2016-2020 Cisco Systems Inc * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/sdk/src/main/java/com/ciscowebex/androidsdk/auth/OAuthAuthenticator.java b/sdk/src/main/java/com/ciscowebex/androidsdk/auth/OAuthAuthenticator.java index cad91402..26a96a96 100644 --- a/sdk/src/main/java/com/ciscowebex/androidsdk/auth/OAuthAuthenticator.java +++ b/sdk/src/main/java/com/ciscowebex/androidsdk/auth/OAuthAuthenticator.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2019 Cisco Systems Inc + * Copyright 2016-2020 Cisco Systems Inc * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/sdk/src/main/java/com/ciscowebex/androidsdk/auth/OAuthTestUserAuthenticator.java b/sdk/src/main/java/com/ciscowebex/androidsdk/auth/OAuthTestUserAuthenticator.java index 362aeb57..8715ed57 100644 --- a/sdk/src/main/java/com/ciscowebex/androidsdk/auth/OAuthTestUserAuthenticator.java +++ b/sdk/src/main/java/com/ciscowebex/androidsdk/auth/OAuthTestUserAuthenticator.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2019 Cisco Systems Inc + * Copyright 2016-2020 Cisco Systems Inc * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/sdk/src/main/java/com/ciscowebex/androidsdk/auth/OAuthWebViewAuthenticator.java b/sdk/src/main/java/com/ciscowebex/androidsdk/auth/OAuthWebViewAuthenticator.java index 8ac957dc..01db8048 100644 --- a/sdk/src/main/java/com/ciscowebex/androidsdk/auth/OAuthWebViewAuthenticator.java +++ b/sdk/src/main/java/com/ciscowebex/androidsdk/auth/OAuthWebViewAuthenticator.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2019 Cisco Systems Inc + * Copyright 2016-2020 Cisco Systems Inc * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/sdk/src/main/java/com/ciscowebex/androidsdk/auth/SSOAuthenticator.java b/sdk/src/main/java/com/ciscowebex/androidsdk/auth/SSOAuthenticator.java index acddecdc..831ca869 100644 --- a/sdk/src/main/java/com/ciscowebex/androidsdk/auth/SSOAuthenticator.java +++ b/sdk/src/main/java/com/ciscowebex/androidsdk/auth/SSOAuthenticator.java @@ -1,5 +1,5 @@ /** - * Copyright 2016-2019 Cisco Systems Inc + * Copyright 2016-2020 Cisco Systems Inc *

* Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/sdk/src/main/java/com/ciscowebex/androidsdk/auth/internal/OAuthLauncher.java b/sdk/src/main/java/com/ciscowebex/androidsdk/auth/internal/OAuthLauncher.java index b18453a5..e2d21a0b 100644 --- a/sdk/src/main/java/com/ciscowebex/androidsdk/auth/internal/OAuthLauncher.java +++ b/sdk/src/main/java/com/ciscowebex/androidsdk/auth/internal/OAuthLauncher.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2019 Cisco Systems Inc + * Copyright 2016-2020 Cisco Systems Inc * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/sdk/src/main/java/com/ciscowebex/androidsdk/internal/AcquirePermissionActivity.java b/sdk/src/main/java/com/ciscowebex/androidsdk/internal/AcquirePermissionActivity.java index 97acbeb7..c505c3ee 100644 --- a/sdk/src/main/java/com/ciscowebex/androidsdk/internal/AcquirePermissionActivity.java +++ b/sdk/src/main/java/com/ciscowebex/androidsdk/internal/AcquirePermissionActivity.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2019 Cisco Systems Inc + * Copyright 2016-2020 Cisco Systems Inc * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/sdk/src/main/java/com/ciscowebex/androidsdk/internal/MetricsClient.java b/sdk/src/main/java/com/ciscowebex/androidsdk/internal/MetricsClient.java index 3f46515d..b4157895 100644 --- a/sdk/src/main/java/com/ciscowebex/androidsdk/internal/MetricsClient.java +++ b/sdk/src/main/java/com/ciscowebex/androidsdk/internal/MetricsClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2019 Cisco Systems Inc + * Copyright 2016-2020 Cisco Systems Inc * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/sdk/src/main/java/com/ciscowebex/androidsdk/internal/ResultImpl.java b/sdk/src/main/java/com/ciscowebex/androidsdk/internal/ResultImpl.java index 8ec9a2a4..7e154888 100644 --- a/sdk/src/main/java/com/ciscowebex/androidsdk/internal/ResultImpl.java +++ b/sdk/src/main/java/com/ciscowebex/androidsdk/internal/ResultImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2019 Cisco Systems Inc + * Copyright 2016-2020 Cisco Systems Inc * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/sdk/src/main/java/com/ciscowebex/androidsdk/membership/Membership.java b/sdk/src/main/java/com/ciscowebex/androidsdk/membership/Membership.java index b41dffdb..d15fe49a 100644 --- a/sdk/src/main/java/com/ciscowebex/androidsdk/membership/Membership.java +++ b/sdk/src/main/java/com/ciscowebex/androidsdk/membership/Membership.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2019 Cisco Systems Inc + * Copyright 2016-2020 Cisco Systems Inc * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/sdk/src/main/java/com/ciscowebex/androidsdk/membership/MembershipClient.java b/sdk/src/main/java/com/ciscowebex/androidsdk/membership/MembershipClient.java index 085f2791..06b7eb4b 100644 --- a/sdk/src/main/java/com/ciscowebex/androidsdk/membership/MembershipClient.java +++ b/sdk/src/main/java/com/ciscowebex/androidsdk/membership/MembershipClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2019 Cisco Systems Inc + * Copyright 2016-2020 Cisco Systems Inc * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/sdk/src/main/java/com/ciscowebex/androidsdk/membership/MembershipObserver.java b/sdk/src/main/java/com/ciscowebex/androidsdk/membership/MembershipObserver.java index 751b4414..b75e1c92 100644 --- a/sdk/src/main/java/com/ciscowebex/androidsdk/membership/MembershipObserver.java +++ b/sdk/src/main/java/com/ciscowebex/androidsdk/membership/MembershipObserver.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2019 Cisco Systems Inc + * Copyright 2016-2020 Cisco Systems Inc * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/sdk/src/main/java/com/ciscowebex/androidsdk/membership/MembershipReadStatus.java b/sdk/src/main/java/com/ciscowebex/androidsdk/membership/MembershipReadStatus.java index 2de6f0ff..3a88854d 100644 --- a/sdk/src/main/java/com/ciscowebex/androidsdk/membership/MembershipReadStatus.java +++ b/sdk/src/main/java/com/ciscowebex/androidsdk/membership/MembershipReadStatus.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2019 Cisco Systems Inc + * Copyright 2016-2020 Cisco Systems Inc * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/sdk/src/main/java/com/ciscowebex/androidsdk/membership/internal/MembershipClientImpl.java b/sdk/src/main/java/com/ciscowebex/androidsdk/membership/internal/MembershipClientImpl.java index ed579cf4..3000ad4b 100644 --- a/sdk/src/main/java/com/ciscowebex/androidsdk/membership/internal/MembershipClientImpl.java +++ b/sdk/src/main/java/com/ciscowebex/androidsdk/membership/internal/MembershipClientImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2019 Cisco Systems Inc + * Copyright 2016-2020 Cisco Systems Inc * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/sdk/src/main/java/com/ciscowebex/androidsdk/message/Message.java b/sdk/src/main/java/com/ciscowebex/androidsdk/message/Message.java index c4b84a8f..4137d47a 100644 --- a/sdk/src/main/java/com/ciscowebex/androidsdk/message/Message.java +++ b/sdk/src/main/java/com/ciscowebex/androidsdk/message/Message.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2019 Cisco Systems Inc + * Copyright 2016-2020 Cisco Systems Inc * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/sdk/src/main/java/com/ciscowebex/androidsdk/message/MessageClient.java b/sdk/src/main/java/com/ciscowebex/androidsdk/message/MessageClient.java index 6223de3f..1ac0f4d5 100644 --- a/sdk/src/main/java/com/ciscowebex/androidsdk/message/MessageClient.java +++ b/sdk/src/main/java/com/ciscowebex/androidsdk/message/MessageClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2019 Cisco Systems Inc + * Copyright 2016-2020 Cisco Systems Inc * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/sdk/src/main/java/com/ciscowebex/androidsdk/message/internal/MessageClientImpl.java b/sdk/src/main/java/com/ciscowebex/androidsdk/message/internal/MessageClientImpl.java index fff23ac6..082e49e4 100644 --- a/sdk/src/main/java/com/ciscowebex/androidsdk/message/internal/MessageClientImpl.java +++ b/sdk/src/main/java/com/ciscowebex/androidsdk/message/internal/MessageClientImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2019 Cisco Systems Inc + * Copyright 2016-2020 Cisco Systems Inc * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/sdk/src/main/java/com/ciscowebex/androidsdk/people/Person.java b/sdk/src/main/java/com/ciscowebex/androidsdk/people/Person.java index 3ce595e0..eccff828 100644 --- a/sdk/src/main/java/com/ciscowebex/androidsdk/people/Person.java +++ b/sdk/src/main/java/com/ciscowebex/androidsdk/people/Person.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2019 Cisco Systems Inc + * Copyright 2016-2020 Cisco Systems Inc * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/sdk/src/main/java/com/ciscowebex/androidsdk/people/PersonClient.java b/sdk/src/main/java/com/ciscowebex/androidsdk/people/PersonClient.java index 00cff4ad..04c6f668 100644 --- a/sdk/src/main/java/com/ciscowebex/androidsdk/people/PersonClient.java +++ b/sdk/src/main/java/com/ciscowebex/androidsdk/people/PersonClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2019 Cisco Systems Inc + * Copyright 2016-2020 Cisco Systems Inc * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/sdk/src/main/java/com/ciscowebex/androidsdk/people/internal/PersonClientImpl.java b/sdk/src/main/java/com/ciscowebex/androidsdk/people/internal/PersonClientImpl.java index de4b0aeb..08842bb7 100644 --- a/sdk/src/main/java/com/ciscowebex/androidsdk/people/internal/PersonClientImpl.java +++ b/sdk/src/main/java/com/ciscowebex/androidsdk/people/internal/PersonClientImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2019 Cisco Systems Inc + * Copyright 2016-2020 Cisco Systems Inc * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/sdk/src/main/java/com/ciscowebex/androidsdk/phone/Call.java b/sdk/src/main/java/com/ciscowebex/androidsdk/phone/Call.java index a67e411a..d98bb9a5 100644 --- a/sdk/src/main/java/com/ciscowebex/androidsdk/phone/Call.java +++ b/sdk/src/main/java/com/ciscowebex/androidsdk/phone/Call.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2019 Cisco Systems Inc + * Copyright 2016-2020 Cisco Systems Inc * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/sdk/src/main/java/com/ciscowebex/androidsdk/phone/CallMembership.java b/sdk/src/main/java/com/ciscowebex/androidsdk/phone/CallMembership.java index c40a5a08..efb27cb3 100644 --- a/sdk/src/main/java/com/ciscowebex/androidsdk/phone/CallMembership.java +++ b/sdk/src/main/java/com/ciscowebex/androidsdk/phone/CallMembership.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2019 Cisco Systems Inc + * Copyright 2016-2020 Cisco Systems Inc * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/sdk/src/main/java/com/ciscowebex/androidsdk/phone/CallObserver.java b/sdk/src/main/java/com/ciscowebex/androidsdk/phone/CallObserver.java index ec013ffe..87be2821 100644 --- a/sdk/src/main/java/com/ciscowebex/androidsdk/phone/CallObserver.java +++ b/sdk/src/main/java/com/ciscowebex/androidsdk/phone/CallObserver.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2019 Cisco Systems Inc + * Copyright 2016-2020 Cisco Systems Inc * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/sdk/src/main/java/com/ciscowebex/androidsdk/phone/MediaOption.java b/sdk/src/main/java/com/ciscowebex/androidsdk/phone/MediaOption.java index 0f2e3a54..07038d28 100644 --- a/sdk/src/main/java/com/ciscowebex/androidsdk/phone/MediaOption.java +++ b/sdk/src/main/java/com/ciscowebex/androidsdk/phone/MediaOption.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2019 Cisco Systems Inc + * Copyright 2016-2020 Cisco Systems Inc * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/sdk/src/main/java/com/ciscowebex/androidsdk/phone/MediaRenderView.java b/sdk/src/main/java/com/ciscowebex/androidsdk/phone/MediaRenderView.java index f123a071..0f9d693d 100644 --- a/sdk/src/main/java/com/ciscowebex/androidsdk/phone/MediaRenderView.java +++ b/sdk/src/main/java/com/ciscowebex/androidsdk/phone/MediaRenderView.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2019 Cisco Systems Inc + * Copyright 2016-2020 Cisco Systems Inc * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/sdk/src/main/java/com/ciscowebex/androidsdk/phone/Phone.java b/sdk/src/main/java/com/ciscowebex/androidsdk/phone/Phone.java index 3853201e..bdd8a33c 100644 --- a/sdk/src/main/java/com/ciscowebex/androidsdk/phone/Phone.java +++ b/sdk/src/main/java/com/ciscowebex/androidsdk/phone/Phone.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2019 Cisco Systems Inc + * Copyright 2016-2020 Cisco Systems Inc * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/sdk/src/main/java/com/ciscowebex/androidsdk/phone/internal/CallImpl.java b/sdk/src/main/java/com/ciscowebex/androidsdk/phone/internal/CallImpl.java index a233e6f3..49ab4964 100644 --- a/sdk/src/main/java/com/ciscowebex/androidsdk/phone/internal/CallImpl.java +++ b/sdk/src/main/java/com/ciscowebex/androidsdk/phone/internal/CallImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2019 Cisco Systems Inc + * Copyright 2016-2020 Cisco Systems Inc * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/sdk/src/main/java/com/ciscowebex/androidsdk/phone/internal/CallMembershipImpl.java b/sdk/src/main/java/com/ciscowebex/androidsdk/phone/internal/CallMembershipImpl.java index a9decf75..af1ed342 100644 --- a/sdk/src/main/java/com/ciscowebex/androidsdk/phone/internal/CallMembershipImpl.java +++ b/sdk/src/main/java/com/ciscowebex/androidsdk/phone/internal/CallMembershipImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2019 Cisco Systems Inc + * Copyright 2016-2020 Cisco Systems Inc * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/sdk/src/main/java/com/ciscowebex/androidsdk/phone/internal/H264LicensePrompter.java b/sdk/src/main/java/com/ciscowebex/androidsdk/phone/internal/H264LicensePrompter.java index 402d671f..a0da5b28 100644 --- a/sdk/src/main/java/com/ciscowebex/androidsdk/phone/internal/H264LicensePrompter.java +++ b/sdk/src/main/java/com/ciscowebex/androidsdk/phone/internal/H264LicensePrompter.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2019 Cisco Systems Inc + * Copyright 2016-2020 Cisco Systems Inc * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/sdk/src/main/java/com/ciscowebex/androidsdk/phone/internal/PhoneImpl.java b/sdk/src/main/java/com/ciscowebex/androidsdk/phone/internal/PhoneImpl.java index 47998e01..07323729 100644 --- a/sdk/src/main/java/com/ciscowebex/androidsdk/phone/internal/PhoneImpl.java +++ b/sdk/src/main/java/com/ciscowebex/androidsdk/phone/internal/PhoneImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2019 Cisco Systems Inc + * Copyright 2016-2020 Cisco Systems Inc * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/sdk/src/main/java/com/ciscowebex/androidsdk/phone/internal/RotationHandler.java b/sdk/src/main/java/com/ciscowebex/androidsdk/phone/internal/RotationHandler.java index d6dd7e5a..142064a8 100644 --- a/sdk/src/main/java/com/ciscowebex/androidsdk/phone/internal/RotationHandler.java +++ b/sdk/src/main/java/com/ciscowebex/androidsdk/phone/internal/RotationHandler.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2019 Cisco Systems Inc + * Copyright 2016-2020 Cisco Systems Inc * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/sdk/src/main/java/com/ciscowebex/androidsdk/space/Space.java b/sdk/src/main/java/com/ciscowebex/androidsdk/space/Space.java index 0d8de202..eeff3b5e 100644 --- a/sdk/src/main/java/com/ciscowebex/androidsdk/space/Space.java +++ b/sdk/src/main/java/com/ciscowebex/androidsdk/space/Space.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2019 Cisco Systems Inc + * Copyright 2016-2020 Cisco Systems Inc * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/sdk/src/main/java/com/ciscowebex/androidsdk/space/SpaceClient.java b/sdk/src/main/java/com/ciscowebex/androidsdk/space/SpaceClient.java index 98dd3dec..bfeff123 100644 --- a/sdk/src/main/java/com/ciscowebex/androidsdk/space/SpaceClient.java +++ b/sdk/src/main/java/com/ciscowebex/androidsdk/space/SpaceClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2019 Cisco Systems Inc + * Copyright 2016-2020 Cisco Systems Inc * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/sdk/src/main/java/com/ciscowebex/androidsdk/space/SpaceMeetingInfo.java b/sdk/src/main/java/com/ciscowebex/androidsdk/space/SpaceMeetingInfo.java index fdb461e2..941cb8a9 100644 --- a/sdk/src/main/java/com/ciscowebex/androidsdk/space/SpaceMeetingInfo.java +++ b/sdk/src/main/java/com/ciscowebex/androidsdk/space/SpaceMeetingInfo.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2019 Cisco Systems Inc + * Copyright 2016-2020 Cisco Systems Inc * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/sdk/src/main/java/com/ciscowebex/androidsdk/space/SpaceObserver.java b/sdk/src/main/java/com/ciscowebex/androidsdk/space/SpaceObserver.java index eaddadd7..f441fcca 100644 --- a/sdk/src/main/java/com/ciscowebex/androidsdk/space/SpaceObserver.java +++ b/sdk/src/main/java/com/ciscowebex/androidsdk/space/SpaceObserver.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2019 Cisco Systems Inc + * Copyright 2016-2020 Cisco Systems Inc * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/sdk/src/main/java/com/ciscowebex/androidsdk/space/SpaceReadStatus.java b/sdk/src/main/java/com/ciscowebex/androidsdk/space/SpaceReadStatus.java index 4682bac8..9069046f 100644 --- a/sdk/src/main/java/com/ciscowebex/androidsdk/space/SpaceReadStatus.java +++ b/sdk/src/main/java/com/ciscowebex/androidsdk/space/SpaceReadStatus.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2019 Cisco Systems Inc + * Copyright 2016-2020 Cisco Systems Inc * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/sdk/src/main/java/com/ciscowebex/androidsdk/space/internal/SpaceClientImpl.java b/sdk/src/main/java/com/ciscowebex/androidsdk/space/internal/SpaceClientImpl.java index 36f6fe3a..6526c649 100644 --- a/sdk/src/main/java/com/ciscowebex/androidsdk/space/internal/SpaceClientImpl.java +++ b/sdk/src/main/java/com/ciscowebex/androidsdk/space/internal/SpaceClientImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2019 Cisco Systems Inc + * Copyright 2016-2020 Cisco Systems Inc * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/sdk/src/main/java/com/ciscowebex/androidsdk/team/Team.java b/sdk/src/main/java/com/ciscowebex/androidsdk/team/Team.java index 16450f75..9eda88c9 100644 --- a/sdk/src/main/java/com/ciscowebex/androidsdk/team/Team.java +++ b/sdk/src/main/java/com/ciscowebex/androidsdk/team/Team.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2019 Cisco Systems Inc + * Copyright 2016-2020 Cisco Systems Inc * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/sdk/src/main/java/com/ciscowebex/androidsdk/team/TeamClient.java b/sdk/src/main/java/com/ciscowebex/androidsdk/team/TeamClient.java index e775dfac..03615928 100644 --- a/sdk/src/main/java/com/ciscowebex/androidsdk/team/TeamClient.java +++ b/sdk/src/main/java/com/ciscowebex/androidsdk/team/TeamClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2019 Cisco Systems Inc + * Copyright 2016-2020 Cisco Systems Inc * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/sdk/src/main/java/com/ciscowebex/androidsdk/team/TeamMembership.java b/sdk/src/main/java/com/ciscowebex/androidsdk/team/TeamMembership.java index 9046efb1..9c07cecf 100644 --- a/sdk/src/main/java/com/ciscowebex/androidsdk/team/TeamMembership.java +++ b/sdk/src/main/java/com/ciscowebex/androidsdk/team/TeamMembership.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2019 Cisco Systems Inc + * Copyright 2016-2020 Cisco Systems Inc * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/sdk/src/main/java/com/ciscowebex/androidsdk/team/TeamMembershipClient.java b/sdk/src/main/java/com/ciscowebex/androidsdk/team/TeamMembershipClient.java index a7845b66..fd5b0fe3 100644 --- a/sdk/src/main/java/com/ciscowebex/androidsdk/team/TeamMembershipClient.java +++ b/sdk/src/main/java/com/ciscowebex/androidsdk/team/TeamMembershipClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2019 Cisco Systems Inc + * Copyright 2016-2020 Cisco Systems Inc * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/sdk/src/main/java/com/ciscowebex/androidsdk/team/internal/TeamClientImpl.java b/sdk/src/main/java/com/ciscowebex/androidsdk/team/internal/TeamClientImpl.java index 1dd02880..941ef7d9 100644 --- a/sdk/src/main/java/com/ciscowebex/androidsdk/team/internal/TeamClientImpl.java +++ b/sdk/src/main/java/com/ciscowebex/androidsdk/team/internal/TeamClientImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2019 Cisco Systems Inc + * Copyright 2016-2020 Cisco Systems Inc * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/sdk/src/main/java/com/ciscowebex/androidsdk/team/internal/TeamMembershipClientImpl.java b/sdk/src/main/java/com/ciscowebex/androidsdk/team/internal/TeamMembershipClientImpl.java index 9fff4c1f..ec31afb3 100644 --- a/sdk/src/main/java/com/ciscowebex/androidsdk/team/internal/TeamMembershipClientImpl.java +++ b/sdk/src/main/java/com/ciscowebex/androidsdk/team/internal/TeamMembershipClientImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2019 Cisco Systems Inc + * Copyright 2016-2020 Cisco Systems Inc * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/sdk/src/main/java/com/ciscowebex/androidsdk/utils/EmailAddress.java b/sdk/src/main/java/com/ciscowebex/androidsdk/utils/EmailAddress.java index fcf8ba43..da68960e 100644 --- a/sdk/src/main/java/com/ciscowebex/androidsdk/utils/EmailAddress.java +++ b/sdk/src/main/java/com/ciscowebex/androidsdk/utils/EmailAddress.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2019 Cisco Systems Inc + * Copyright 2016-2020 Cisco Systems Inc * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/sdk/src/main/java/com/ciscowebex/androidsdk/utils/Utils.java b/sdk/src/main/java/com/ciscowebex/androidsdk/utils/Utils.java index ba971055..c2513cf3 100644 --- a/sdk/src/main/java/com/ciscowebex/androidsdk/utils/Utils.java +++ b/sdk/src/main/java/com/ciscowebex/androidsdk/utils/Utils.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2019 Cisco Systems Inc + * Copyright 2016-2020 Cisco Systems Inc * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/sdk/src/main/java/com/ciscowebex/androidsdk/utils/http/DefaultHeadersInterceptor.java b/sdk/src/main/java/com/ciscowebex/androidsdk/utils/http/DefaultHeadersInterceptor.java index c33733c4..85c55ccf 100644 --- a/sdk/src/main/java/com/ciscowebex/androidsdk/utils/http/DefaultHeadersInterceptor.java +++ b/sdk/src/main/java/com/ciscowebex/androidsdk/utils/http/DefaultHeadersInterceptor.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2019 Cisco Systems Inc + * Copyright 2016-2020 Cisco Systems Inc * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/sdk/src/main/java/com/ciscowebex/androidsdk/utils/http/ListBody.java b/sdk/src/main/java/com/ciscowebex/androidsdk/utils/http/ListBody.java index 110f724b..69c8dd0a 100644 --- a/sdk/src/main/java/com/ciscowebex/androidsdk/utils/http/ListBody.java +++ b/sdk/src/main/java/com/ciscowebex/androidsdk/utils/http/ListBody.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2019 Cisco Systems Inc + * Copyright 2016-2020 Cisco Systems Inc * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/sdk/src/main/java/com/ciscowebex/androidsdk/utils/http/ListCallback.java b/sdk/src/main/java/com/ciscowebex/androidsdk/utils/http/ListCallback.java index 395dd2ae..51acff5b 100644 --- a/sdk/src/main/java/com/ciscowebex/androidsdk/utils/http/ListCallback.java +++ b/sdk/src/main/java/com/ciscowebex/androidsdk/utils/http/ListCallback.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2019 Cisco Systems Inc + * Copyright 2016-2020 Cisco Systems Inc * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/sdk/src/main/java/com/ciscowebex/androidsdk/utils/http/ObjectCallback.java b/sdk/src/main/java/com/ciscowebex/androidsdk/utils/http/ObjectCallback.java index a6524507..9b55b45b 100644 --- a/sdk/src/main/java/com/ciscowebex/androidsdk/utils/http/ObjectCallback.java +++ b/sdk/src/main/java/com/ciscowebex/androidsdk/utils/http/ObjectCallback.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2019 Cisco Systems Inc + * Copyright 2016-2020 Cisco Systems Inc * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/sdk/src/main/java/com/ciscowebex/androidsdk/utils/http/ServiceBuilder.java b/sdk/src/main/java/com/ciscowebex/androidsdk/utils/http/ServiceBuilder.java index 05c449c8..0f4c368b 100644 --- a/sdk/src/main/java/com/ciscowebex/androidsdk/utils/http/ServiceBuilder.java +++ b/sdk/src/main/java/com/ciscowebex/androidsdk/utils/http/ServiceBuilder.java @@ -1,7 +1,7 @@ package com.ciscowebex.androidsdk.utils.http; /* - * Copyright 2016-2019 Cisco Systems Inc + * Copyright 2016-2020 Cisco Systems Inc * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/sdk/src/main/java/com/ciscowebex/androidsdk/utils/log/DebugLn.java b/sdk/src/main/java/com/ciscowebex/androidsdk/utils/log/DebugLn.java index 95f30c58..ee40f59d 100644 --- a/sdk/src/main/java/com/ciscowebex/androidsdk/utils/log/DebugLn.java +++ b/sdk/src/main/java/com/ciscowebex/androidsdk/utils/log/DebugLn.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2019 Cisco Systems Inc + * Copyright 2016-2020 Cisco Systems Inc * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/sdk/src/main/java/com/ciscowebex/androidsdk/utils/log/NoLn.java b/sdk/src/main/java/com/ciscowebex/androidsdk/utils/log/NoLn.java index 272aa894..4c473d07 100644 --- a/sdk/src/main/java/com/ciscowebex/androidsdk/utils/log/NoLn.java +++ b/sdk/src/main/java/com/ciscowebex/androidsdk/utils/log/NoLn.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2019 Cisco Systems Inc + * Copyright 2016-2020 Cisco Systems Inc * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/sdk/src/main/java/com/ciscowebex/androidsdk/utils/log/WarningLn.java b/sdk/src/main/java/com/ciscowebex/androidsdk/utils/log/WarningLn.java index 9f5440f0..de2e64b8 100644 --- a/sdk/src/main/java/com/ciscowebex/androidsdk/utils/log/WarningLn.java +++ b/sdk/src/main/java/com/ciscowebex/androidsdk/utils/log/WarningLn.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2019 Cisco Systems Inc + * Copyright 2016-2020 Cisco Systems Inc * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/sdk/src/main/java/com/ciscowebex/androidsdk/webhook/Webhook.java b/sdk/src/main/java/com/ciscowebex/androidsdk/webhook/Webhook.java index d4b16eef..ba2424a0 100644 --- a/sdk/src/main/java/com/ciscowebex/androidsdk/webhook/Webhook.java +++ b/sdk/src/main/java/com/ciscowebex/androidsdk/webhook/Webhook.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2019 Cisco Systems Inc + * Copyright 2016-2020 Cisco Systems Inc * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/sdk/src/main/java/com/ciscowebex/androidsdk/webhook/WebhookClient.java b/sdk/src/main/java/com/ciscowebex/androidsdk/webhook/WebhookClient.java index 12205f79..f33e6c15 100644 --- a/sdk/src/main/java/com/ciscowebex/androidsdk/webhook/WebhookClient.java +++ b/sdk/src/main/java/com/ciscowebex/androidsdk/webhook/WebhookClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2019 Cisco Systems Inc + * Copyright 2016-2020 Cisco Systems Inc * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/sdk/src/main/java/com/ciscowebex/androidsdk/webhook/internal/WebhookClientImpl.java b/sdk/src/main/java/com/ciscowebex/androidsdk/webhook/internal/WebhookClientImpl.java index 928b2387..3bf1f2a0 100644 --- a/sdk/src/main/java/com/ciscowebex/androidsdk/webhook/internal/WebhookClientImpl.java +++ b/sdk/src/main/java/com/ciscowebex/androidsdk/webhook/internal/WebhookClientImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2019 Cisco Systems Inc + * Copyright 2016-2020 Cisco Systems Inc * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal