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.client.console.rest;
20  
21  import java.util.List;
22  import javax.ws.rs.core.GenericType;
23  import javax.ws.rs.core.Response;
24  import org.apache.syncope.common.lib.to.DynRealmTO;
25  import org.apache.syncope.common.lib.to.PagedResult;
26  import org.apache.syncope.common.lib.to.ProvisioningResult;
27  import org.apache.syncope.common.lib.to.RealmTO;
28  import org.apache.syncope.common.rest.api.beans.RealmQuery;
29  import org.apache.syncope.common.rest.api.service.DynRealmService;
30  import org.apache.syncope.common.rest.api.service.RealmService;
31  
32  /**
33   * Console client for invoking REST Realm's services.
34   */
35  public class RealmRestClient extends BaseRestClient {
36  
37      private static final long serialVersionUID = -8549081557283519638L;
38  
39      public PagedResult<RealmTO> search(final RealmQuery query) {
40          return getService(RealmService.class).search(query);
41      }
42  
43      public List<DynRealmTO> listDynRealms() {
44          return getService(DynRealmService.class).list();
45      }
46  
47      public DynRealmTO readDynRealm(final String key) {
48          return getService(DynRealmService.class).read(key);
49      }
50  
51      public ProvisioningResult<RealmTO> create(final String parentPath, final RealmTO realmTO) {
52          final Response response = getService(RealmService.class).create(parentPath, realmTO);
53          return response.readEntity(new GenericType<>() {
54          });
55      }
56  
57      public ProvisioningResult<RealmTO> update(final RealmTO realmTO) {
58          final Response response = getService(RealmService.class).update(realmTO);
59          return response.readEntity(new GenericType<>() {
60          });
61      }
62  
63      public void delete(final String fullPath) {
64          getService(RealmService.class).delete(fullPath);
65      }
66  }