/*
* JBoss, Home of Professional Open Source.
* Copyright 2006, Red Hat Middleware LLC, and individual contributors
* as indicated by the @author tags. See the copyright.txt file in the
* distribution for a full listing of individual contributors.
*
* This is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 2.1 of
* the License, or (at your option) any later version.
*
* This software is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this software; if not, write to the Free
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package javax.management.relation;
import java.io.IOException;
import java.io.ObjectInputStream;
import java.io.ObjectOutputStream;
import java.io.ObjectStreamField;
import java.io.Serializable;
import org.jboss.mx.util.Serialization;
/**
* Represents the result of multiple access to roles.
*
* @author Adrian Brock
* @version $Revision: 57200 $
*
*
Revisions:
*
20020716 Adrian Brock:
*
*/
public class RoleResult
implements Serializable
{
// Attributes ----------------------------------------------------
/**
* The successful roles
*/
private RoleList roleList;
/**
* The unresolved roles.
*/
private RoleUnresolvedList unresolvedRoleList;
// Static --------------------------------------------------------
private static final long serialVersionUID;
private static final ObjectStreamField[] serialPersistentFields;
static
{
switch (Serialization.version)
{
case Serialization.V1R0:
serialVersionUID = 3786616013762091099L;
serialPersistentFields = new ObjectStreamField[]
{
new ObjectStreamField("myRoleList", RoleList.class),
new ObjectStreamField("myRoleUnresList", RoleUnresolvedList.class)
};
break;
default:
serialVersionUID = -6304063118040985512L;
serialPersistentFields = new ObjectStreamField[]
{
new ObjectStreamField("roleList", RoleList.class),
new ObjectStreamField("unresolvedRoleList", RoleUnresolvedList.class)
};
}
}
// Constructors --------------------------------------------------
/**
* Construct a new role result.
*
* @param roleList the successful roles
* @param roleUnresolvedList the roles not accessed
*/
public RoleResult(RoleList roleList, RoleUnresolvedList roleUnresolvedList)
{
this.roleList = roleList;
this.unresolvedRoleList = roleUnresolvedList;
}
// Public ---------------------------------------------------------
/**
* Retrieve the successful roles.
*
* @return the successful roles.
*/
public RoleList getRoles()
{
return roleList;
}
/**
* Retrieve the unsuccessful roles.
*
* @return the unsuccessful roles.
*/
public RoleUnresolvedList getRolesUnresolved()
{
return unresolvedRoleList;
}
/**
* Set the successful roles.
*
* @param roleList the successful roles.
*/
public void setRoles(RoleList roleList)
{
this.roleList = roleList;
}
/**
* Set the unsuccessful roles.
*
* @param roleUnresolvedList the unsuccessful roles.
*/
public void setRolesUnresolved(RoleUnresolvedList roleUnresolvedList)
{
this.unresolvedRoleList = roleUnresolvedList;
}
// Object overrides --------------------------------------------
public String toString()
{
StringBuffer buffer = new StringBuffer("Resolved Roles:\n");
buffer.append(roleList);
buffer.append("\nUnresolved Roles\n");
buffer.append(unresolvedRoleList);
return buffer.toString();
}
// Private -----------------------------------------------------
private void readObject(ObjectInputStream ois)
throws IOException, ClassNotFoundException
{
switch (Serialization.version)
{
case Serialization.V1R0:
ObjectInputStream.GetField getField = ois.readFields();
roleList = (RoleList) getField.get("myRoleList", null);
unresolvedRoleList = (RoleUnresolvedList) getField.get("myRoleUnresList", null);
break;
default:
ois.defaultReadObject();
}
}
private void writeObject(ObjectOutputStream oos)
throws IOException
{
switch (Serialization.version)
{
case Serialization.V1R0:
ObjectOutputStream.PutField putField = oos.putFields();
putField.put("myRoleList", roleList);
putField.put("myRoleUnresList", unresolvedRoleList);
oos.writeFields();
break;
default:
oos.defaultWriteObject();
}
}
}