All Downloads are FREE. Search and download functionalities are using the official Maven repository.

quickfix.fix50.component.RootSubParties Maven / Gradle / Ivy

There is a newer version: 2.3.1
Show newest version

package quickfix.fix50.component;

import quickfix.FieldNotFound;

import quickfix.Group;

public class RootSubParties extends quickfix.MessageComponent {

	static final long serialVersionUID = 20050617;
	public static final String MSGTYPE = "";
	
	private int[] componentFields = {  };
	@Override
	protected int[] getFields() { return componentFields; }
	private int[] componentGroups = { 1120,  };
	@Override
	protected int[] getGroupFields() { return componentGroups; }
	

	public RootSubParties() {
		super();
	}
	
	public void set(quickfix.field.NoRootPartySubIDs value) {
		setField(value);
	}

	public quickfix.field.NoRootPartySubIDs get(quickfix.field.NoRootPartySubIDs value) throws FieldNotFound {
		getField(value);
		return value;
	}

	public quickfix.field.NoRootPartySubIDs getNoRootPartySubIDs() throws FieldNotFound {
		return get(new quickfix.field.NoRootPartySubIDs());
	}

	public boolean isSet(quickfix.field.NoRootPartySubIDs field) {
		return isSetField(field);
	}

	public boolean isSetNoRootPartySubIDs() {
		return isSetField(1120);
	}

	public static class NoRootPartySubIDs extends Group {

		static final long serialVersionUID = 20050617;
		private static final int[] ORDER = {1121, 1122, 0};

		public NoRootPartySubIDs() {
			super(1120, 1121, ORDER);
		}
		
	public void set(quickfix.field.RootPartySubID value) {
		setField(value);
	}

	public quickfix.field.RootPartySubID get(quickfix.field.RootPartySubID value) throws FieldNotFound {
		getField(value);
		return value;
	}

	public quickfix.field.RootPartySubID getRootPartySubID() throws FieldNotFound {
		return get(new quickfix.field.RootPartySubID());
	}

	public boolean isSet(quickfix.field.RootPartySubID field) {
		return isSetField(field);
	}

	public boolean isSetRootPartySubID() {
		return isSetField(1121);
	}

	public void set(quickfix.field.RootPartySubIDType value) {
		setField(value);
	}

	public quickfix.field.RootPartySubIDType get(quickfix.field.RootPartySubIDType value) throws FieldNotFound {
		getField(value);
		return value;
	}

	public quickfix.field.RootPartySubIDType getRootPartySubIDType() throws FieldNotFound {
		return get(new quickfix.field.RootPartySubIDType());
	}

	public boolean isSet(quickfix.field.RootPartySubIDType field) {
		return isSetField(field);
	}

	public boolean isSetRootPartySubIDType() {
		return isSetField(1122);
	}

	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy