View Javadoc

1   /*
2   * Licensed to the Apache Software Foundation (ASF) under one or more
3   * contributor license agreements.  See the NOTICE file distributed with
4   * this work for additional information regarding copyright ownership.
5   * The ASF licenses this file to You under the Apache License, Version 2.0
6   * (the "License"); you may not use this file except in compliance with
7   * the License.  You may obtain a copy of the License at
8   *
9   *     http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  */
17  package org.apache.jetspeed.om.portlet.impl;
18  
19  import javax.portlet.PortletMode;
20  
21  import org.apache.jetspeed.om.common.portlet.CustomPortletMode;
22  
23  public class CustomPortletModeImpl implements CustomPortletMode
24  {
25      /*** The application id. */
26      protected long                  appId;
27  
28      protected long                  id;
29  
30      protected String                customName;
31  
32      protected String                mappedName;
33  
34      protected String                description;
35  
36      protected transient PortletMode customMode;
37  
38      protected transient PortletMode mappedMode;
39  
40      public CustomPortletModeImpl()
41      {
42      }
43  
44      public void setCustomName(String customName)
45      {
46          if (customName == null)
47          {
48              throw new IllegalArgumentException("CustomName is required");
49          } else if (this.customName != null)
50          {
51              throw new IllegalStateException("CustomName already set");
52          }
53          this.customName = customName.toLowerCase();
54      }
55  
56      public void setDescription(String description)
57      {
58          this.description = description;
59      }
60  
61      public void setMappedName(String mappedName)
62      {
63          if (this.mappedName != null || this.mappedMode != null)
64          {
65              throw new IllegalArgumentException("MappedName already set");
66          } else if (mappedName != null)
67          {
68              this.mappedName = mappedName.toLowerCase();
69          }
70      }
71  
72      public PortletMode getCustomMode()
73      {
74          if (customMode == null)
75          {
76              customMode = new PortletMode(customName);
77          }
78          return customMode;
79      }
80  
81      public PortletMode getMappedMode()
82      {
83          if (mappedMode == null)
84          {
85              if (mappedName != null)
86              {
87                  mappedMode = new PortletMode(mappedName);
88              } else
89              {
90                  mappedMode = getCustomMode();
91              }
92          }
93          return mappedMode;
94      }
95  
96      public String getDescription()
97      {
98          return description;
99      }
100 
101     public int hashCode()
102     {
103         return customName != null ? customName.hashCode() : super.hashCode();
104     }
105 
106     public boolean equals(Object object)
107     {
108         if (object instanceof CustomPortletModeImpl)
109             return customName.equals(((CustomPortletModeImpl) object).customName);
110         else
111             return false;
112     }
113 }