Coverage Report - org.kuali.rice.kim.util.KIMWebServiceConstants
 
Classes in this File Line Coverage Branch Coverage Complexity
KIMWebServiceConstants
0%
0/2
N/A
2
KIMWebServiceConstants$GroupUpdateService
0%
0/2
N/A
2
KIMWebServiceConstants$IdentityManagementNotificationService
0%
0/2
N/A
2
KIMWebServiceConstants$IdentityService
0%
0/2
N/A
2
KIMWebServiceConstants$PermissionService
0%
0/2
N/A
2
KIMWebServiceConstants$PermissionUpdateService
0%
0/2
N/A
2
KIMWebServiceConstants$RoleUpdateService
0%
0/2
N/A
2
 
 1  
 /*
 2  
  * Copyright 2007-2009 The Kuali Foundation
 3  
  *
 4  
  * Licensed under the Educational Community License, Version 2.0 (the "License");
 5  
  * you may not use this file except in compliance with the License.
 6  
  * You may obtain a copy of the License at
 7  
  *
 8  
  * http://www.opensource.org/licenses/ecl2.php
 9  
  *
 10  
  * Unless required by applicable law or agreed to in writing, software
 11  
  * distributed under the License is distributed on an "AS IS" BASIS,
 12  
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 13  
  * See the License for the specific language governing permissions and
 14  
  * limitations under the License.
 15  
  */
 16  
 package org.kuali.rice.kim.util;
 17  
 
 18  
 import org.kuali.rice.core.util.RiceConstants;
 19  
 
 20  
 
 21  
 /**
 22  
  * This class is used to hold constants that are used when exposing services to the bus
 23  
  *
 24  
  * @author Kuali Rice Team (rice.collab@kuali.org)
 25  
  *
 26  
  */
 27  
 public class KIMWebServiceConstants {
 28  
 
 29  
         public static final String MODULE_TARGET_NAMESPACE = RiceConstants.RICE_JAXWS_TARGET_NAMESPACE_BASE + "/kim";
 30  
 
 31  
         public static final class PermissionService {
 32  
                 public static final String WEB_SERVICE_NAME = "kimPermissionServiceSOAP";
 33  
                 public static final String INTERFACE_CLASS = "org.kuali.rice.kim.service.PermissionService";
 34  
                 public static final String WEB_SERVICE_PORT = "KimPermissionServicePort";
 35  
                 
 36  0
                 private PermissionService() {
 37  0
                         throw new UnsupportedOperationException("do not call");
 38  
                 }
 39  
         }
 40  
 
 41  
         public static final class PermissionUpdateService {
 42  
                 public static final String WEB_SERVICE_NAME = "kimPermissionUpdateServiceSOAP";
 43  
                 public static final String INTERFACE_CLASS = "org.kuali.rice.kim.service.PermissionUpdateService";
 44  
                 public static final String WEB_SERVICE_PORT = "KimPermissionUpdateServicePort";
 45  
                 
 46  0
                 private PermissionUpdateService() {
 47  0
                         throw new UnsupportedOperationException("do not call");
 48  
                 }
 49  
         }
 50  
 
 51  
         public static final class RoleUpdateService {
 52  
                 public static final String WEB_SERVICE_NAME = "kimRoleUpdateServiceSOAP";
 53  
                 public static final String INTERFACE_CLASS = "org.kuali.rice.kim.service.RoleUpdateService";
 54  
                 public static final String WEB_SERVICE_PORT = "RoleUpdateServicePort";
 55  
                 
 56  0
                 private RoleUpdateService() {
 57  0
                         throw new UnsupportedOperationException("do not call");
 58  
                 }
 59  
         }
 60  
 
 61  
         public static final class GroupUpdateService {
 62  
                 public static final String WEB_SERVICE_NAME = "kimGroupUpdateServiceSOAP";
 63  
                 public static final String INTERFACE_CLASS = "org.kuali.rice.kim.api.group.GroupUpdateService";
 64  
                 public static final String WEB_SERVICE_PORT = "GroupUpdateServicePort";
 65  
                 
 66  0
                 private GroupUpdateService() {
 67  0
                         throw new UnsupportedOperationException("do not call");
 68  
                 }
 69  
         }
 70  
 
 71  
         public static final class IdentityService {
 72  
                 public static final String WEB_SERVICE_NAME = "kimIdentityServiceSOAP";
 73  
                 public static final String INTERFACE_CLASS = "org.kuali.rice.kim.api.services.IdentityService";
 74  
                 public static final String WEB_SERVICE_PORT = "IdentityServicePort";
 75  
                 
 76  0
                 private IdentityService() {
 77  0
                         throw new UnsupportedOperationException("do not call");
 78  
                 }
 79  
         }
 80  
 
 81  
         public final static class IdentityManagementNotificationService {
 82  
                 public static final String WEB_SERVICE_NAME = "kimIdentityManagementNotificationServiceSOAP";
 83  
                 
 84  0
                 private IdentityManagementNotificationService() {
 85  0
                         throw new UnsupportedOperationException("do not call");
 86  
                 }
 87  
         }
 88  
 
 89  0
         private KIMWebServiceConstants() {
 90  0
                 throw new UnsupportedOperationException("do not call");
 91  
         }
 92  
 }