1 23 24 package org.infoglue.cms.entities.content; 25 26 public class ContentRelationVO 27 { 28 29 private java.lang.Integer contentRelationId; 30 private java.lang.String relationInternalName; 31 private java.lang.Integer relationTypeId; 32 33 34 public java.lang.Integer getContentRelationId() 35 { 36 return this.contentRelationId; 37 } 38 39 public void setContentRelationId(java.lang.Integer contentRelationId) 40 { 41 this.contentRelationId = contentRelationId; 42 } 43 44 public java.lang.String getRelationInternalName() 45 { 46 return this.relationInternalName; 47 } 48 49 public void setRelationInternalName(java.lang.String relationInternalName) 50 { 51 this.relationInternalName = relationInternalName; 52 } 53 54 public java.lang.Integer getRelationTypeId() 55 { 56 return this.relationTypeId; 57 } 58 59 public void setRelationTypeId(java.lang.Integer relationTypeId) 60 { 61 this.relationTypeId = relationTypeId; 62 } 63 64 } 65 66 | Popular Tags |