001/*
002 *                    BioJava development code
003 *
004 * This code may be freely distributed and modified under the
005 * terms of the GNU Lesser General Public Licence.  This should
006 * be distributed with the code.  If you do not have a copy,
007 * see:
008 *
009 *      http://www.gnu.org/copyleft/lesser.html
010 *
011 * Copyright for this code is held jointly by the individual
012 * authors.  These should be listed in @author doc comments.
013 *
014 * For more information on the BioJava project and its aims,
015 * or to join the biojava-l mailing list, visit the home page
016 * at:
017 *
018 *      http://www.biojava.org/
019 *
020 */
021package org.biojava.nbio.structure.io.mmcif.model;
022
023/** A bean for the PDBX_NONPOLY_SCHEME category, which provides residue level nomenclature
024 * mapping for non-polymer entities.
025 * @author Andreas Prlic
026 * @since 1.7
027 */
028public class PdbxNonPolyScheme {
029        String asym_id;
030        String entity_id;
031        String seq_id;
032        String mon_id;
033        String ndb_seq_num;
034        String pdb_seq_num ;
035        String auth_seq_num ;
036        String  pdb_mon_id;
037        String auth_mon_id;
038        String pdb_strand_id;
039        String pdb_ins_code;
040        public String getAsym_id() {
041                return asym_id;
042        }
043        public void setAsym_id(String asym_id) {
044                this.asym_id = asym_id;
045        }
046        public String getEntity_id() {
047                return entity_id;
048        }
049        public void setEntity_id(String entity_id) {
050                this.entity_id = entity_id;
051        }
052        public String getSeq_id() {
053                return seq_id;
054        }
055        public void setSeq_id(String seq_id) {
056                this.seq_id = seq_id;
057        }
058        public String getMon_id() {
059                return mon_id;
060        }
061        public void setMon_id(String mon_id) {
062                this.mon_id = mon_id;
063        }
064        public String getNdb_seq_num() {
065                return ndb_seq_num;
066        }
067        public void setNdb_seq_num(String ndb_seq_num) {
068                this.ndb_seq_num = ndb_seq_num;
069        }
070        public String getPdb_seq_num() {
071                return pdb_seq_num;
072        }
073        public void setPdb_seq_num(String pdb_seq_num) {
074                this.pdb_seq_num = pdb_seq_num;
075        }
076        public String getAuth_seq_num() {
077                return auth_seq_num;
078        }
079        public void setAuth_seq_num(String auth_seq_num) {
080                this.auth_seq_num = auth_seq_num;
081        }
082        public String getPdb_mon_id() {
083                return pdb_mon_id;
084        }
085        public void setPdb_mon_id(String pdb_mon_id) {
086                this.pdb_mon_id = pdb_mon_id;
087        }
088        public String getAuth_mon_id() {
089                return auth_mon_id;
090        }
091        public void setAuth_mon_id(String auth_mon_id) {
092                this.auth_mon_id = auth_mon_id;
093        }
094        public String getPdb_strand_id() {
095                return pdb_strand_id;
096        }
097        public void setPdb_strand_id(String pdb_strand_id) {
098                this.pdb_strand_id = pdb_strand_id;
099        }
100        public String getPdb_ins_code() {
101                return pdb_ins_code;
102        }
103        public void setPdb_ins_code(String pdb_ins_code) {
104                this.pdb_ins_code = pdb_ins_code;
105        }
106
107}