/* ******************************************************************** Licensed to Jasig under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. Jasig licenses this file to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at: http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ package org.bedework.calfacade.svc; import org.bedework.calfacade.annotations.Dump; import org.bedework.calfacade.base.BwDbentity; import org.bedework.calfacade.svc.prefs.BwAuthUserPrefs; import org.bedework.util.misc.ToString; /** Value object to represent an authorised calendar user - that is a user * with some special privilege. This could also be represented by users * with roles. * * @author Mike Douglass douglm@rpi.edu * @version 1.0 */ @Dump(elementName="authuser", keyFields={"user"}) public class BwAuthUser extends BwDbentity { protected String userHref; // Related user entry href protected BwAuthUserPrefs prefs; // Related user prefs entry private int usertype; /* ==================================================================== * Constructors * ==================================================================== */ /** No-arg constructor */ public BwAuthUser() { } /** Factory method: Create an authuser by specifying all its fields * * @param user href representing user * @param usertype int type of user * @return auth user object. */ public static BwAuthUser makeAuthUser(final String user, final int usertype) { final BwAuthUser au = new BwAuthUser(); au.setUserHref(user); au.setUsertype(usertype); au.setPrefs(BwAuthUserPrefs.makeAuthUserPrefs()); return au; } /* ==================================================================== * Bean methods * ==================================================================== */ /** * @param val href */ public void setUserHref(final String val) { userHref = val; } /** * @return String user entry */ public String getUserHref() { return userHref; } /** * @param val BwAuthUserPrefs auth prefs */ public void setPrefs(final BwAuthUserPrefs val) { prefs = val; } /** * @return BwAuthUserPrefs auth prefs */ @Dump(compound = true) public BwAuthUserPrefs getPrefs() { return prefs; } /** * @param val rights */ public void setUsertype(final int val) { usertype = val; } /** * @return int user rights */ public int getUsertype() { return usertype; } /* ==================================================================== * Convenience methods * ==================================================================== */ /** * @return boolean true for unauthorized user */ public boolean isUnauthorized() { return (getUsertype() == UserAuth.noPrivileges); } /** * @return boolean true for public event user */ public boolean isPublicEventUser() { return ((getUsertype() & UserAuth.publicEventUser) != 0); } /** * @return boolean true for content admin user */ public boolean isContentAdminUser() { return ((getUsertype() & UserAuth.contentAdminUser) != 0); } /** * @return boolean true for approver user */ public boolean isApproverUser() { return ((getUsertype() & UserAuth.approverUser) != 0); } /* ==================================================================== * Object methods * ==================================================================== */ @Override public boolean equals(final Object obj) { if (this == obj) { return true; } if (!(obj instanceof BwAuthUser)) { return false; } final BwAuthUser that = (BwAuthUser)obj; return getUserHref().equals(that.getUserHref()); } @Override public int hashCode() { return 7 * getUserHref().hashCode(); } @Override public String toString() { final ToString ts = new ToString(this); toStringSegment(ts); ts.append("user", getUserHref()); ts.append("usertype", getUsertype()); ts.append("publicEventUser", isPublicEventUser()); ts.append("contentAdminUser", isContentAdminUser()); ts.append("approverUser", isApproverUser()); return ts.toString(); } @Override public Object clone() { final BwAuthUser au = new BwAuthUser(); au.setUserHref(getUserHref()); au.setUsertype(getUsertype()); BwAuthUserPrefs aup = getPrefs(); if (aup != null) { aup = (BwAuthUserPrefs)aup.clone(); au.setPrefs(aup); } return au; } }