blob: f635f50519fff17c1eb278d6b6745bc108c61d49 [file] [log] [blame]
/*
* Copyright (c) 1998, 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
*/
// Contributors:
// Oracle - initial API and implementation from Oracle TopLink
package org.eclipse.persistence.internal.oxm.schema.model;
public class Group {
private String name;
private Choice choice;
private Sequence sequence;
private All all;
private Annotation annotation;
private String ref;
private String minOccurs;
private String maxOccurs;
public Group() {
}
public void setChoice(Choice choice) {
this.choice = choice;
}
public Choice getChoice() {
return choice;
}
public void setSequence(Sequence sequence) {
this.sequence = sequence;
}
public Sequence getSequence() {
return sequence;
}
public void setAll(All all) {
this.all = all;
}
public All getAll() {
return all;
}
public void setAnnotation(Annotation annotation) {
this.annotation = annotation;
}
public Annotation getAnnotation() {
return annotation;
}
public void setRef(String ref) {
this.ref = ref;
}
public String getRef() {
return ref;
}
public void setMinOccurs(String minOccurs) {
this.minOccurs = minOccurs;
}
public String getMinOccurs() {
return minOccurs;
}
public void setMaxOccurs(String maxOccurs) {
this.maxOccurs = maxOccurs;
}
public String getMaxOccurs() {
return maxOccurs;
}
public void setName(String name) {
this.name = name;
}
public String getName() {
return name;
}
}