From 69d87ab1e83ff2aa189f4a297b4586ff0f03c801 Mon Sep 17 00:00:00 2001 From: Christian Garcia Date: Sun, 12 Mar 2017 13:41:00 +0000 Subject: [PATCH] CR headers --- build.gradle | 16 ++++++++++++++++ monzo-retrofit/build.gradle | 18 +++++++++++++++++- .../monzoapi/AuthorizationInterceptor.java | 16 ++++++++++++++++ .../com/christiangp/monzoapi/MonzoApi.java | 16 ++++++++++++++++ .../monzoapi/RxMonzoApiService.java | 16 ++++++++++++++++ .../monzoapi/function/SimpleProvider.java | 16 ++++++++++++++++ .../christiangp/monzoapi/model/Account.java | 16 ++++++++++++++++ .../christiangp/monzoapi/model/Address.java | 16 ++++++++++++++++ .../christiangp/monzoapi/model/Attachment.java | 16 ++++++++++++++++ .../christiangp/monzoapi/model/Balance.java | 16 ++++++++++++++++ .../christiangp/monzoapi/model/Merchant.java | 16 ++++++++++++++++ .../monzoapi/model/MerchantMetadata.java | 16 ++++++++++++++++ .../monzoapi/model/Transaction.java | 16 ++++++++++++++++ .../model/TransactionWithMerchant.java | 16 ++++++++++++++++ .../model/TransactionWithMerchantId.java | 16 ++++++++++++++++ .../christiangp/monzoapi/model/Webhook.java | 16 ++++++++++++++++ .../model/request/BasicFeedItemMap.java | 16 ++++++++++++++++ .../monzoapi/model/request/FeedItemMap.java | 16 ++++++++++++++++ .../model/request/ImmutableHashMap.java | 16 ++++++++++++++++ .../monzoapi/model/request/MetadataMap.java | 16 ++++++++++++++++ .../model/request/PaginationOptions.java | 16 ++++++++++++++++ .../model/response/AccountsResponse.java | 16 ++++++++++++++++ .../AttachFileToTransactionResponse.java | 16 ++++++++++++++++ .../ExchangeAuthorizationResponse.java | 16 ++++++++++++++++ .../response/RegisteredWebhookResponse.java | 16 ++++++++++++++++ .../response/TransactionListResponse.java | 16 ++++++++++++++++ .../model/response/TransactionResponse.java | 16 ++++++++++++++++ .../model/response/TransactionsResponse.java | 16 ++++++++++++++++ .../model/response/UploadFileUrls.java | 16 ++++++++++++++++ .../model/response/WebhooksResponse.java | 16 ++++++++++++++++ .../model/response/WhoAmIResponse.java | 16 ++++++++++++++++ 31 files changed, 497 insertions(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 184a093..58b037c 100644 --- a/build.gradle +++ b/build.gradle @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2017 Christian García + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + buildscript { repositories { jcenter() diff --git a/monzo-retrofit/build.gradle b/monzo-retrofit/build.gradle index 9399e68..e452d13 100644 --- a/monzo-retrofit/build.gradle +++ b/monzo-retrofit/build.gradle @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2017 Christian García + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + apply plugin: 'java' dependencies { @@ -9,4 +25,4 @@ dependencies { } sourceCompatibility = "1.7" -targetCompatibility = "1.7" +targetCompatibility = "1.7" \ No newline at end of file diff --git a/monzo-retrofit/src/main/java/com/christiangp/monzoapi/AuthorizationInterceptor.java b/monzo-retrofit/src/main/java/com/christiangp/monzoapi/AuthorizationInterceptor.java index 0e601d4..1628be4 100644 --- a/monzo-retrofit/src/main/java/com/christiangp/monzoapi/AuthorizationInterceptor.java +++ b/monzo-retrofit/src/main/java/com/christiangp/monzoapi/AuthorizationInterceptor.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2017 Christian García + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package com.christiangp.monzoapi; import com.christiangp.monzoapi.function.SimpleProvider; diff --git a/monzo-retrofit/src/main/java/com/christiangp/monzoapi/MonzoApi.java b/monzo-retrofit/src/main/java/com/christiangp/monzoapi/MonzoApi.java index c3b948d..8f530d1 100644 --- a/monzo-retrofit/src/main/java/com/christiangp/monzoapi/MonzoApi.java +++ b/monzo-retrofit/src/main/java/com/christiangp/monzoapi/MonzoApi.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2017 Christian García + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package com.christiangp.monzoapi; import retrofit2.Retrofit; diff --git a/monzo-retrofit/src/main/java/com/christiangp/monzoapi/RxMonzoApiService.java b/monzo-retrofit/src/main/java/com/christiangp/monzoapi/RxMonzoApiService.java index 6afe4b3..c282cc3 100644 --- a/monzo-retrofit/src/main/java/com/christiangp/monzoapi/RxMonzoApiService.java +++ b/monzo-retrofit/src/main/java/com/christiangp/monzoapi/RxMonzoApiService.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2017 Christian García + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package com.christiangp.monzoapi; import com.christiangp.monzoapi.model.Balance; diff --git a/monzo-retrofit/src/main/java/com/christiangp/monzoapi/function/SimpleProvider.java b/monzo-retrofit/src/main/java/com/christiangp/monzoapi/function/SimpleProvider.java index 5b9f7af..64a560f 100644 --- a/monzo-retrofit/src/main/java/com/christiangp/monzoapi/function/SimpleProvider.java +++ b/monzo-retrofit/src/main/java/com/christiangp/monzoapi/function/SimpleProvider.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2017 Christian García + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package com.christiangp.monzoapi.function; public interface SimpleProvider { diff --git a/monzo-retrofit/src/main/java/com/christiangp/monzoapi/model/Account.java b/monzo-retrofit/src/main/java/com/christiangp/monzoapi/model/Account.java index 012c9ae..30b784e 100644 --- a/monzo-retrofit/src/main/java/com/christiangp/monzoapi/model/Account.java +++ b/monzo-retrofit/src/main/java/com/christiangp/monzoapi/model/Account.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2017 Christian García + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package com.christiangp.monzoapi.model; import com.squareup.moshi.Json; diff --git a/monzo-retrofit/src/main/java/com/christiangp/monzoapi/model/Address.java b/monzo-retrofit/src/main/java/com/christiangp/monzoapi/model/Address.java index 8da9775..7200e8a 100644 --- a/monzo-retrofit/src/main/java/com/christiangp/monzoapi/model/Address.java +++ b/monzo-retrofit/src/main/java/com/christiangp/monzoapi/model/Address.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2017 Christian García + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package com.christiangp.monzoapi.model; import com.squareup.moshi.Json; diff --git a/monzo-retrofit/src/main/java/com/christiangp/monzoapi/model/Attachment.java b/monzo-retrofit/src/main/java/com/christiangp/monzoapi/model/Attachment.java index 1bd46e2..270a9df 100644 --- a/monzo-retrofit/src/main/java/com/christiangp/monzoapi/model/Attachment.java +++ b/monzo-retrofit/src/main/java/com/christiangp/monzoapi/model/Attachment.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2017 Christian García + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package com.christiangp.monzoapi.model; import com.squareup.moshi.Json; diff --git a/monzo-retrofit/src/main/java/com/christiangp/monzoapi/model/Balance.java b/monzo-retrofit/src/main/java/com/christiangp/monzoapi/model/Balance.java index 71b1054..b1db25e 100644 --- a/monzo-retrofit/src/main/java/com/christiangp/monzoapi/model/Balance.java +++ b/monzo-retrofit/src/main/java/com/christiangp/monzoapi/model/Balance.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2017 Christian García + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package com.christiangp.monzoapi.model; import com.squareup.moshi.Json; diff --git a/monzo-retrofit/src/main/java/com/christiangp/monzoapi/model/Merchant.java b/monzo-retrofit/src/main/java/com/christiangp/monzoapi/model/Merchant.java index af95065..0ce028d 100644 --- a/monzo-retrofit/src/main/java/com/christiangp/monzoapi/model/Merchant.java +++ b/monzo-retrofit/src/main/java/com/christiangp/monzoapi/model/Merchant.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2017 Christian García + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package com.christiangp.monzoapi.model; import com.squareup.moshi.Json; diff --git a/monzo-retrofit/src/main/java/com/christiangp/monzoapi/model/MerchantMetadata.java b/monzo-retrofit/src/main/java/com/christiangp/monzoapi/model/MerchantMetadata.java index 81c3672..0131a09 100644 --- a/monzo-retrofit/src/main/java/com/christiangp/monzoapi/model/MerchantMetadata.java +++ b/monzo-retrofit/src/main/java/com/christiangp/monzoapi/model/MerchantMetadata.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2017 Christian García + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package com.christiangp.monzoapi.model; import com.squareup.moshi.Json; diff --git a/monzo-retrofit/src/main/java/com/christiangp/monzoapi/model/Transaction.java b/monzo-retrofit/src/main/java/com/christiangp/monzoapi/model/Transaction.java index 2427c28..ab6758d 100644 --- a/monzo-retrofit/src/main/java/com/christiangp/monzoapi/model/Transaction.java +++ b/monzo-retrofit/src/main/java/com/christiangp/monzoapi/model/Transaction.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2017 Christian García + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package com.christiangp.monzoapi.model; import com.squareup.moshi.Json; diff --git a/monzo-retrofit/src/main/java/com/christiangp/monzoapi/model/TransactionWithMerchant.java b/monzo-retrofit/src/main/java/com/christiangp/monzoapi/model/TransactionWithMerchant.java index 345a428..fcf805a 100644 --- a/monzo-retrofit/src/main/java/com/christiangp/monzoapi/model/TransactionWithMerchant.java +++ b/monzo-retrofit/src/main/java/com/christiangp/monzoapi/model/TransactionWithMerchant.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2017 Christian García + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package com.christiangp.monzoapi.model; import com.squareup.moshi.Json; diff --git a/monzo-retrofit/src/main/java/com/christiangp/monzoapi/model/TransactionWithMerchantId.java b/monzo-retrofit/src/main/java/com/christiangp/monzoapi/model/TransactionWithMerchantId.java index df66e1f..b9be747 100644 --- a/monzo-retrofit/src/main/java/com/christiangp/monzoapi/model/TransactionWithMerchantId.java +++ b/monzo-retrofit/src/main/java/com/christiangp/monzoapi/model/TransactionWithMerchantId.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2017 Christian García + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package com.christiangp.monzoapi.model; import com.squareup.moshi.Json; diff --git a/monzo-retrofit/src/main/java/com/christiangp/monzoapi/model/Webhook.java b/monzo-retrofit/src/main/java/com/christiangp/monzoapi/model/Webhook.java index aac31bc..4dc8e34 100644 --- a/monzo-retrofit/src/main/java/com/christiangp/monzoapi/model/Webhook.java +++ b/monzo-retrofit/src/main/java/com/christiangp/monzoapi/model/Webhook.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2017 Christian García + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package com.christiangp.monzoapi.model; import com.squareup.moshi.Json; diff --git a/monzo-retrofit/src/main/java/com/christiangp/monzoapi/model/request/BasicFeedItemMap.java b/monzo-retrofit/src/main/java/com/christiangp/monzoapi/model/request/BasicFeedItemMap.java index 52d6d62..c60f7e5 100644 --- a/monzo-retrofit/src/main/java/com/christiangp/monzoapi/model/request/BasicFeedItemMap.java +++ b/monzo-retrofit/src/main/java/com/christiangp/monzoapi/model/request/BasicFeedItemMap.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2017 Christian García + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package com.christiangp.monzoapi.model.request; import java.util.HashMap; diff --git a/monzo-retrofit/src/main/java/com/christiangp/monzoapi/model/request/FeedItemMap.java b/monzo-retrofit/src/main/java/com/christiangp/monzoapi/model/request/FeedItemMap.java index 2150585..6ab1388 100644 --- a/monzo-retrofit/src/main/java/com/christiangp/monzoapi/model/request/FeedItemMap.java +++ b/monzo-retrofit/src/main/java/com/christiangp/monzoapi/model/request/FeedItemMap.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2017 Christian García + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package com.christiangp.monzoapi.model.request; import java.util.HashMap; diff --git a/monzo-retrofit/src/main/java/com/christiangp/monzoapi/model/request/ImmutableHashMap.java b/monzo-retrofit/src/main/java/com/christiangp/monzoapi/model/request/ImmutableHashMap.java index aff4889..df7ec68 100644 --- a/monzo-retrofit/src/main/java/com/christiangp/monzoapi/model/request/ImmutableHashMap.java +++ b/monzo-retrofit/src/main/java/com/christiangp/monzoapi/model/request/ImmutableHashMap.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2017 Christian García + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package com.christiangp.monzoapi.model.request; import java.util.HashMap; diff --git a/monzo-retrofit/src/main/java/com/christiangp/monzoapi/model/request/MetadataMap.java b/monzo-retrofit/src/main/java/com/christiangp/monzoapi/model/request/MetadataMap.java index 83a05b9..2b480c6 100644 --- a/monzo-retrofit/src/main/java/com/christiangp/monzoapi/model/request/MetadataMap.java +++ b/monzo-retrofit/src/main/java/com/christiangp/monzoapi/model/request/MetadataMap.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2017 Christian García + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package com.christiangp.monzoapi.model.request; import java.util.HashMap; diff --git a/monzo-retrofit/src/main/java/com/christiangp/monzoapi/model/request/PaginationOptions.java b/monzo-retrofit/src/main/java/com/christiangp/monzoapi/model/request/PaginationOptions.java index 20736f7..1986af3 100644 --- a/monzo-retrofit/src/main/java/com/christiangp/monzoapi/model/request/PaginationOptions.java +++ b/monzo-retrofit/src/main/java/com/christiangp/monzoapi/model/request/PaginationOptions.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2017 Christian García + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package com.christiangp.monzoapi.model.request; import java.util.Collections; diff --git a/monzo-retrofit/src/main/java/com/christiangp/monzoapi/model/response/AccountsResponse.java b/monzo-retrofit/src/main/java/com/christiangp/monzoapi/model/response/AccountsResponse.java index a626d1f..1299c03 100644 --- a/monzo-retrofit/src/main/java/com/christiangp/monzoapi/model/response/AccountsResponse.java +++ b/monzo-retrofit/src/main/java/com/christiangp/monzoapi/model/response/AccountsResponse.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2017 Christian García + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package com.christiangp.monzoapi.model.response; import com.christiangp.monzoapi.model.Account; diff --git a/monzo-retrofit/src/main/java/com/christiangp/monzoapi/model/response/AttachFileToTransactionResponse.java b/monzo-retrofit/src/main/java/com/christiangp/monzoapi/model/response/AttachFileToTransactionResponse.java index dba86c0..1f03442 100644 --- a/monzo-retrofit/src/main/java/com/christiangp/monzoapi/model/response/AttachFileToTransactionResponse.java +++ b/monzo-retrofit/src/main/java/com/christiangp/monzoapi/model/response/AttachFileToTransactionResponse.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2017 Christian García + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package com.christiangp.monzoapi.model.response; import com.christiangp.monzoapi.model.Attachment; diff --git a/monzo-retrofit/src/main/java/com/christiangp/monzoapi/model/response/ExchangeAuthorizationResponse.java b/monzo-retrofit/src/main/java/com/christiangp/monzoapi/model/response/ExchangeAuthorizationResponse.java index 618174a..79bc790 100644 --- a/monzo-retrofit/src/main/java/com/christiangp/monzoapi/model/response/ExchangeAuthorizationResponse.java +++ b/monzo-retrofit/src/main/java/com/christiangp/monzoapi/model/response/ExchangeAuthorizationResponse.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2017 Christian García + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package com.christiangp.monzoapi.model.response; import com.squareup.moshi.Json; diff --git a/monzo-retrofit/src/main/java/com/christiangp/monzoapi/model/response/RegisteredWebhookResponse.java b/monzo-retrofit/src/main/java/com/christiangp/monzoapi/model/response/RegisteredWebhookResponse.java index aabfa78..e3f1330 100644 --- a/monzo-retrofit/src/main/java/com/christiangp/monzoapi/model/response/RegisteredWebhookResponse.java +++ b/monzo-retrofit/src/main/java/com/christiangp/monzoapi/model/response/RegisteredWebhookResponse.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2017 Christian García + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package com.christiangp.monzoapi.model.response; import com.christiangp.monzoapi.model.Webhook; diff --git a/monzo-retrofit/src/main/java/com/christiangp/monzoapi/model/response/TransactionListResponse.java b/monzo-retrofit/src/main/java/com/christiangp/monzoapi/model/response/TransactionListResponse.java index 9d187ed..eaf620f 100644 --- a/monzo-retrofit/src/main/java/com/christiangp/monzoapi/model/response/TransactionListResponse.java +++ b/monzo-retrofit/src/main/java/com/christiangp/monzoapi/model/response/TransactionListResponse.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2017 Christian García + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package com.christiangp.monzoapi.model.response; import com.christiangp.monzoapi.model.Transaction; diff --git a/monzo-retrofit/src/main/java/com/christiangp/monzoapi/model/response/TransactionResponse.java b/monzo-retrofit/src/main/java/com/christiangp/monzoapi/model/response/TransactionResponse.java index 23bbe9f..c82ca2e 100644 --- a/monzo-retrofit/src/main/java/com/christiangp/monzoapi/model/response/TransactionResponse.java +++ b/monzo-retrofit/src/main/java/com/christiangp/monzoapi/model/response/TransactionResponse.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2017 Christian García + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package com.christiangp.monzoapi.model.response; import com.christiangp.monzoapi.model.Transaction; diff --git a/monzo-retrofit/src/main/java/com/christiangp/monzoapi/model/response/TransactionsResponse.java b/monzo-retrofit/src/main/java/com/christiangp/monzoapi/model/response/TransactionsResponse.java index 7cb0ee1..41ef3d4 100644 --- a/monzo-retrofit/src/main/java/com/christiangp/monzoapi/model/response/TransactionsResponse.java +++ b/monzo-retrofit/src/main/java/com/christiangp/monzoapi/model/response/TransactionsResponse.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2017 Christian García + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package com.christiangp.monzoapi.model.response; import com.christiangp.monzoapi.model.TransactionWithMerchantId; diff --git a/monzo-retrofit/src/main/java/com/christiangp/monzoapi/model/response/UploadFileUrls.java b/monzo-retrofit/src/main/java/com/christiangp/monzoapi/model/response/UploadFileUrls.java index 620cb4b..ffd1a72 100644 --- a/monzo-retrofit/src/main/java/com/christiangp/monzoapi/model/response/UploadFileUrls.java +++ b/monzo-retrofit/src/main/java/com/christiangp/monzoapi/model/response/UploadFileUrls.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2017 Christian García + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package com.christiangp.monzoapi.model.response; import com.squareup.moshi.Json; diff --git a/monzo-retrofit/src/main/java/com/christiangp/monzoapi/model/response/WebhooksResponse.java b/monzo-retrofit/src/main/java/com/christiangp/monzoapi/model/response/WebhooksResponse.java index 401a135..09fd309 100644 --- a/monzo-retrofit/src/main/java/com/christiangp/monzoapi/model/response/WebhooksResponse.java +++ b/monzo-retrofit/src/main/java/com/christiangp/monzoapi/model/response/WebhooksResponse.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2017 Christian García + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package com.christiangp.monzoapi.model.response; import com.christiangp.monzoapi.model.Webhook; diff --git a/monzo-retrofit/src/main/java/com/christiangp/monzoapi/model/response/WhoAmIResponse.java b/monzo-retrofit/src/main/java/com/christiangp/monzoapi/model/response/WhoAmIResponse.java index 390483f..c5be311 100644 --- a/monzo-retrofit/src/main/java/com/christiangp/monzoapi/model/response/WhoAmIResponse.java +++ b/monzo-retrofit/src/main/java/com/christiangp/monzoapi/model/response/WhoAmIResponse.java @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2017 Christian García + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + package com.christiangp.monzoapi.model.response; import com.squareup.moshi.Json;