View Javadoc
1   /*
2    * Licensed to the Apache Software Foundation (ASF) under one
3    * or more contributor license agreements.  See the NOTICE file
4    * distributed with this work for additional information
5    * regarding copyright ownership.  The ASF licenses this file
6    * to you under the Apache License, Version 2.0 (the
7    * "License"); you may not use this file except in compliance
8    * with the License.  You may obtain a copy of the License at
9    *
10   *   http://www.apache.org/licenses/LICENSE-2.0
11   *
12   * Unless required by applicable law or agreed to in writing,
13   * software distributed under the License is distributed on an
14   * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15   * KIND, either express or implied.  See the License for the
16   * specific language governing permissions and limitations
17   * under the License.
18   */
19  package org.apache.syncope.common.lib.auth;
20  
21  import java.util.Map;
22  import org.apache.syncope.common.lib.to.AuthModuleTO;
23  
24  public class AppleOIDCAuthModuleConf extends AbstractOIDCAuthModuleConf implements AuthModuleConf {
25  
26      private static final long serialVersionUID = -471527731042579522L;
27  
28      /**
29       * Client secret expiration timeout.
30       * This settings supports the java.time.Duration syntax.
31       */
32      protected String timeout = "PT30S";
33  
34      /**
35       * Apple team identifier.
36       * Usually, 10 character string given to you by Apple.
37       */
38      protected String teamId;
39  
40      /**
41       * Private key obtained from Apple.
42       * Must point to a resource that resolved to an elliptic curve (EC) private key.
43       */
44      protected String privateKey;
45  
46      /**
47       * The identifier for the private key.
48       * Usually the 10 character Key ID of the private key you create in Apple.
49       */
50      protected String privateKeyId;
51  
52      public String getTimeout() {
53          return timeout;
54      }
55  
56      public void setTimeout(final String timeout) {
57          this.timeout = timeout;
58      }
59  
60      public String getPrivateKey() {
61          return privateKey;
62      }
63  
64      public void setPrivateKey(final String privateKey) {
65          this.privateKey = privateKey;
66      }
67  
68      public String getPrivateKeyId() {
69          return privateKeyId;
70      }
71  
72      public void setPrivateKeyId(final String privateKeyId) {
73          this.privateKeyId = privateKeyId;
74      }
75  
76      public String getTeamId() {
77          return teamId;
78      }
79  
80      public void setTeamId(final String teamId) {
81          this.teamId = teamId;
82      }
83  
84      @Override
85      public Map<String, Object> map(final AuthModuleTO authModule, final Mapper mapper) {
86          return mapper.map(authModule, this);
87      }
88  }