blob: 893aa9dd1450ed3fcff9881d02f004f9ad5ec752 [file] [log] [blame]
/*
* Copyright (c) 2018, 2020 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0,
* or the Eclipse Distribution License v. 1.0 which is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause
*/
package org.eclipse.persistence.testing.jaxb.externalizedmetadata.xmlelement;
import java.io.Serializable;
import java.util.List;
public class Team implements Serializable {
private List players;
private String name;
public Team() {
}
public Team(String name, List players) {
setName(name);
setPlayers(players);
}
public void setName(String name) {
this.name = name;
}
public String getName() {
return name;
}
public void setPlayers(List players) {
this.players = players;
}
public List getPlayers() {
return players;
}
public void setRosterCount(int n) {
} // no-op but needed for property
public int getRosterCount() {
return (players == null) ? 0 : players.size();
}
}