summaryrefslogtreecommitdiffstats
path: root/quantum-client/src/main/java/com/woorea/openstack/quantum/api/RoutersResource.java
blob: ed2f22d797d60f95e4bf6d5747ea79368c025947 (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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
/*-
 * ============LICENSE_START=======================================================
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 * ============LICENSE_END=========================================================
 */

package com.woorea.openstack.quantum.api;

import com.woorea.openstack.base.client.Entity;
import com.woorea.openstack.base.client.HttpMethod;
import com.woorea.openstack.base.client.OpenStackClient;
import com.woorea.openstack.base.client.OpenStackRequest;
import com.woorea.openstack.quantum.model.Router;
import com.woorea.openstack.quantum.model.RouterForAddInterface;
import com.woorea.openstack.quantum.model.RouterForCreate;
import com.woorea.openstack.quantum.model.RouterInterface;
import com.woorea.openstack.quantum.model.Routers;

public class RoutersResource {

    private final OpenStackClient CLIENT;

    public RoutersResource(OpenStackClient client) {
        CLIENT = client;
    }

    public List list() {
        return new List();
    }

    public Create create(RouterForCreate router) {
        return new Create(router);
    }

    public Delete delete(String netId) {
        return new Delete(netId);
    }

    public Show show(String netId) {
        return new Show(netId);
    }

    public class List extends OpenStackRequest<Routers> {

        public List() {
            super(CLIENT, HttpMethod.GET, "routers", null, Routers.class);
        }
    }

    public class Query extends OpenStackRequest<Routers> {

        public Query(Router router) {}
    }
    public class Create extends OpenStackRequest<Router> {

        public Create(RouterForCreate router) {
            super(CLIENT, HttpMethod.POST, "routers", Entity.json(router), Router.class);
        }
    }



    public class Show extends OpenStackRequest<Router> {

        public Show(String id) {
            super(CLIENT, HttpMethod.GET, buildPath("routers/", id), null, Router.class);
        }
    }

    public class Delete extends OpenStackRequest<Void> {

        public Delete(String id) {
            super(CLIENT, HttpMethod.DELETE, buildPath("routers/", id), null, Void.class);
        }
    }

    public Attach addInterface(RouterForAddInterface interfaceToAdd) {
        return new Attach(interfaceToAdd);
    }

    public class Attach extends OpenStackRequest<RouterInterface> {

        public Attach(RouterForAddInterface interfaceToAdd) {
            super(CLIENT, HttpMethod.PUT, buildPath("routers/", interfaceToAdd.getRouterId(), "/add_router_interface"),
                    Entity.json(interfaceToAdd), RouterInterface.class);
        }

    }

    public Detach deleteInterface(RouterForAddInterface interfaceRouter) {
        return new Detach(interfaceRouter);
    }

    public class Detach extends OpenStackRequest<RouterInterface> {

        public Detach(RouterForAddInterface interfaceToAdd) {
            super(CLIENT, HttpMethod.PUT,
                    buildPath("routers/", interfaceToAdd.getRouterId(), "/remove_router_interface"),
                    Entity.json(interfaceToAdd), RouterInterface.class);
        }

    }



}