1# Copyright 2015 Michael Lotz
2# Copyright 2016 Jerome Duval
3# Distributed under the terms of the MIT License.
4
5class BuilderState:
6	"""Provides mapping of builder state to string."""
7	AVAILABLE = 'Available'
8	LOST = 'Lost'
9	NOT_AVAILABLE = 'Not Available'
10	RECONNECT = 'Reconnecting'
11