jford 2004/07/28 20:44:32
Added: src/java/org/apache/jetspeed/services/security
SecurityMessage.java
Log:
Message for security cache
Revision Changes Path
1.1
jakarta-jetspeed/src/java/org/apache/jetspeed/services/security/SecurityMessage.java
Index: SecurityMessage.java
===================================================================
/*
* Copyright 2004 The Apache Software Foundation.
*
* Licensed 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.apache.jetspeed.services.security;
import java.io.Serializable;
/**
* @author <a href="mailto:[EMAIL PROTECTED]">Jeremy Ford</a>
* @version $Id: SecurityMessage.java,v 1.1 2004/07/29 03:44:31 jford Exp $
*/
public class SecurityMessage implements Serializable
{
private String user;
private String role;
/**
* @return Returns the user.
*/
public String getUser()
{
return user;
}
/**
* @param user The user to set.
*/
public void setUser(String user)
{
this.user = user;
}
/**
* @return Returns the role.
*/
public String getRole()
{
return role;
}
/**
* @param role The role to set.
*/
public void setRole(String role)
{
this.role = role;
}
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]