001 package railo.runtime.cache.eh.remote.soap; 002 003 public class Element 004 { 005 private Boolean eternal; 006 private Long expirationDate; 007 private Object key; 008 private String mimeType; 009 private String resourceUri; 010 private Integer timeToIdleSeconds; 011 private Integer timeToLiveSeconds; 012 private byte[] value; 013 014 public final Boolean getEternal() { 015 return eternal; 016 } 017 018 public final void setEternal(Boolean eternal) { 019 this.eternal = eternal; 020 } 021 022 public final Long getExpirationDate() { 023 return expirationDate; 024 } 025 026 public final void setExpirationDate(Long expirationDate) { 027 this.expirationDate = expirationDate; 028 } 029 030 public final Object getKey() { 031 return key; 032 } 033 034 public final void setKey(Object key) { 035 this.key = key; 036 } 037 038 public final String getMimeType() { 039 return mimeType; 040 } 041 042 public final void setMimeType(String mimeType) { 043 this.mimeType = mimeType; 044 } 045 046 public final String getResourceUri() { 047 return resourceUri; 048 } 049 050 public final void setResourceUri(String resourceUri) { 051 this.resourceUri = resourceUri; 052 } 053 054 public final Integer getTimeToIdleSeconds() { 055 return timeToIdleSeconds; 056 } 057 058 public final void setTimeToIdleSeconds(Integer timeToIdleSeconds) { 059 this.timeToIdleSeconds = timeToIdleSeconds; 060 } 061 062 public final Integer getTimeToLiveSeconds() { 063 return timeToLiveSeconds; 064 } 065 066 public final void setTimeToLiveSeconds(Integer timeToLiveSeconds) { 067 this.timeToLiveSeconds = timeToLiveSeconds; 068 } 069 070 public final byte[] getValue() { 071 return value; 072 } 073 074 public final void setValue(byte[] value) { 075 this.value = value; 076 } 077 }