blob: 365f371bfa0712afc9c65e6f5b22188641a7c6dc [file] [log] [blame]
/**
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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.camel.dataformat.bindy.model.fix.withoutsection;
import org.apache.camel.dataformat.bindy.annotation.KeyValuePairField;
import org.apache.camel.dataformat.bindy.annotation.Link;
import org.apache.camel.dataformat.bindy.annotation.Message;
// No section has been defined
@Message(keyValuePairSeparator = "=", pairSeparator = "\\u0001", type = "FIX", version = "4.1", isOrdered = true)
public class Order {
@KeyValuePairField(tag = 1)
// Client reference
private String account;
@KeyValuePairField(tag = 11)
// Order reference
private String clOrdId;
@KeyValuePairField(tag = 22)
// Fund ID type (Sedol, ISIN, ...)
private String iDSource;
@KeyValuePairField(tag = 48)
// Fund code
private String securityId;
@KeyValuePairField(tag = 54)
// Movement type ( 1 = Buy, 2 = sell)
private String side;
@KeyValuePairField(tag = 58)
// Free text
private String text;
public String getAccount() {
return account;
}
public void setAccount(String account) {
this.account = account;
}
public String getClOrdId() {
return clOrdId;
}
public void setClOrdId(String clOrdId) {
this.clOrdId = clOrdId;
}
public String getIDSource() {
return iDSource;
}
public void setIDSource(String source) {
this.iDSource = source;
}
public String getSecurityId() {
return securityId;
}
public void setSecurityId(String securityId) {
this.securityId = securityId;
}
public String getSide() {
return side;
}
public void setSide(String side) {
this.side = side;
}
public String getText() {
return this.text;
}
public void setText(String text) {
this.text = text;
}
@Override
public String toString() {
return Order.class.getName() + " --> 1: " + this.account + ", 11: " + this.clOrdId + ", 22: " + this.iDSource
+ ", 48: " + this.securityId + ", 54: " + this.side + ", 58: " + this.text;
}
}