Class: UU::BinaryStore::BinaryStoreRepository::BinaryStoreRepositoryAttributes

Inherits:
OS::REST::DTO
  • Object
show all
Defined in:
lib/uu_binarystore/binary_store_repository/binary_store_repository_attributes.rb

Overview

DTO representing binary store repository attributes.

Instance Attribute Summary collapse

Instance Attribute Details

#binary_store_countFixnum

Current count of binary stores in repository.

Returns:

  • (Fixnum)


38
39
40
# File 'lib/uu_binarystore/binary_store_repository/binary_store_repository_attributes.rb', line 38

def binary_store_count
  @binary_store_count
end

#codeString

Code of the binary store repository.

Returns:

  • (String)


22
23
24
# File 'lib/uu_binarystore/binary_store_repository/binary_store_repository_attributes.rb', line 22

def code
  @code
end

#connection_uriString

Connection URI for repository storage database.

Returns:

  • (String)


42
43
44
# File 'lib/uu_binarystore/binary_store_repository/binary_store_repository_attributes.rb', line 42

def connection_uri
  @connection_uri
end

#current_sizeFixnum

Current total size of the binary store repository (in KB).

Returns:

  • (Fixnum)


34
35
36
# File 'lib/uu_binarystore/binary_store_repository/binary_store_repository_attributes.rb', line 34

def current_size
  @current_size
end

#descriptionString

Description of the binary store repository.

Returns:

  • (String)


26
27
28
# File 'lib/uu_binarystore/binary_store_repository/binary_store_repository_attributes.rb', line 26

def description
  @description
end

#max_sizeFixnum

Maximum size of the binary store repository (in KB).

Returns:

  • (Fixnum)


30
31
32
# File 'lib/uu_binarystore/binary_store_repository/binary_store_repository_attributes.rb', line 30

def max_size
  @max_size
end

#nameString

Name of the binary store repository.

Returns:

  • (String)


18
19
20
# File 'lib/uu_binarystore/binary_store_repository/binary_store_repository_attributes.rb', line 18

def name
  @name
end

#uriUU::OS::UESURI

URI of the binary store repository.

Returns:

  • (UU::OS::UESURI)


14
15
16
# File 'lib/uu_binarystore/binary_store_repository/binary_store_repository_attributes.rb', line 14

def uri
  @uri
end