View Javadoc

1   /*
2    * Copyright 2007-2008 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.kew.rule;
17  
18  import java.util.ArrayList;
19  import java.util.List;
20  
21  import org.kuali.rice.kew.api.rule.RoleName;
22  import org.kuali.rice.kew.identity.Id;
23  import org.kuali.rice.kew.identity.PrincipalName;
24  
25  
26  /**
27   * A generic Role Attribute that can be used to route to a Network ID.  Can take as configuration the
28   * label to use for the element name in the XML.  This allows for re-use of this component in different
29   * contexts.
30   * 
31   * @author Kuali Rice Team (rice.collab@kuali.org)
32   */
33  public class NetworkIdRoleAttribute extends AbstractIdRoleAttribute {
34  
35      private static final long serialVersionUID = 8784036641718163820L;
36      
37      private static final String NETWORK_ID_ROLE_NAME = "networkId";
38      private static final String ATTRIBUTE_ELEMENT = "NetworkIdRoleAttribute";
39      private static final String NETWORK_ID_ELEMENT = "networkId";
40          
41      public List<RoleName> getRoleNames() {
42  	List<RoleName> roleNames = new ArrayList<RoleName>();
43  	roleNames.add(new RoleName(getClass().getName(), NETWORK_ID_ROLE_NAME, "Network ID"));
44  	return roleNames;
45      }
46      
47      protected String getAttributeElementName() {
48  	return ATTRIBUTE_ELEMENT;
49      }
50      
51      protected Id resolveId(String id) {
52  	return id == null ? null : new PrincipalName(id);
53      }
54      
55      protected String getIdName() {
56  	return NETWORK_ID_ELEMENT;
57      }
58  
59      public String getNetworkId() {
60  	return getIdValue();
61      }
62  
63      public void setNetworkId(String networkId) {
64          setIdValue(networkId);
65      }
66  
67  }