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/**
024 * Created by Matt on 10/31/2015.
025 */
026public class StructSiteGen extends AbstractBean {
027        String id;
028        String site_id;
029        String auth_asym_id;
030        String auth_atom_id;
031        String auth_comp_id;
032        String auth_seq_id;
033        String label_alt_id;
034        String label_asym_id;
035        String label_atom_id;
036        String label_comp_id;
037        String label_seq_id;
038        String details;
039        String pdbx_auth_ins_code;
040        String pdbx_num_res;
041        String symmetry;
042
043        public StructSiteGen() {
044                super();
045        }
046
047        public String getId() {
048                return id;
049        }
050
051        public void setId(String id) {
052                this.id = id;
053        }
054
055        public String getSite_id() {
056                return site_id;
057        }
058
059        public void setSite_id(String site_id) {
060                this.site_id = site_id;
061        }
062
063        public String getAuth_asym_id() {
064                return auth_asym_id;
065        }
066
067        public void setAuth_asym_id(String auth_asym_id) {
068                this.auth_asym_id = auth_asym_id;
069        }
070
071        public String getAuth_atom_id() {
072                return auth_atom_id;
073        }
074
075        public void setAuth_atom_id(String auth_atom_id) {
076                this.auth_atom_id = auth_atom_id;
077        }
078
079        public String getAuth_comp_id() {
080                return auth_comp_id;
081        }
082
083        public void setAuth_comp_id(String auth_comp_id) {
084                this.auth_comp_id = auth_comp_id;
085        }
086
087        public String getAuth_seq_id() {
088                return auth_seq_id;
089        }
090
091        public void setAuth_seq_id(String auth_seq_id) {
092                this.auth_seq_id = auth_seq_id;
093        }
094
095        public String getLabel_alt_id() {
096                return label_alt_id;
097        }
098
099        public void setLabel_alt_id(String label_alt_id) {
100                this.label_alt_id = label_alt_id;
101        }
102
103        public String getLabel_asym_id() {
104                return label_asym_id;
105        }
106
107        public void setLabel_asym_id(String label_asym_id) {
108                this.label_asym_id = label_asym_id;
109        }
110
111        public String getLabel_atom_id() {
112                return label_atom_id;
113        }
114
115        public void setLabel_atom_id(String label_atom_id) {
116                this.label_atom_id = label_atom_id;
117        }
118
119        public String getLabel_comp_id() {
120                return label_comp_id;
121        }
122
123        public void setLabel_comp_id(String label_comp_id) {
124                this.label_comp_id = label_comp_id;
125        }
126
127        public String getLabel_seq_id() {
128                return label_seq_id;
129        }
130
131        public void setLabel_seq_id(String label_seq_id) {
132                this.label_seq_id = label_seq_id;
133        }
134
135        public String getDetails() {
136                return details;
137        }
138
139        public void setDetails(String details) {
140                this.details = details;
141        }
142
143        public String getPdbx_auth_ins_code() {
144                return pdbx_auth_ins_code;
145        }
146
147        public void setPdbx_auth_ins_code(String pdbx_auth_ins_code) {
148                this.pdbx_auth_ins_code = pdbx_auth_ins_code;
149        }
150
151        public String getPdbx_num_res() {
152                return pdbx_num_res;
153        }
154
155        public void setPdbx_num_res(String pdbx_num_res) {
156                this.pdbx_num_res = pdbx_num_res;
157        }
158
159        public String getSymmetry() {
160                return symmetry;
161        }
162
163        public void setSymmetry(String symmetry) {
164                this.symmetry = symmetry;
165        }
166}