aboutsummaryrefslogtreecommitdiffstats
path: root/lib/python2.7/site-packages/autobuilder/release/git.py
blob: 508966bc6da12c91b924050876b38c55a755e4b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
class Git(object):
    def __init__(self):
        self._cgit_link = None
        self._git_branch = None
        self._git_clone_command = None
        self._git_tag = None
        self._git_url = None

    @property
    def cgit_link(self):
        return self._cgit_link

    @cgit_link.setter
    def cgit_link(self, cgit_link):
        self._cgit_link = cgit_link

    @property
    def git_branch(self):
        return self._git_branch

    @git_branch.setter
    def git_branch(self, git_branch):
        self._git_branch = git_branch

    @property
    def git_clone_command(self):
        return self._git_clone_command

    @git_clone_command.setter
    def git_clone_command(self, git_clone_command):
        self._git_clone_command = git_clone_command

    @property
    def git_tag(self):
        return self._git_tag

    @git_tag.setter
    def git_tag(self, git_tag):
        self._git_tag = git_tag

    @property
    def git_url(self):
        return self._git_url

    @git_url.setter
    def git_url(self, git_url):
        self._git_url = git_url