blob: 28101c0e7d588ff74c1384e172a52cae16e1d85d [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with this
* work for additional information regarding copyright ownership. The ASF
* licenses this file to you 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.
*/
package org.apache.knox.gateway.shell.alias;
import org.apache.knox.gateway.shell.KnoxSession;
import java.util.List;
public class DeleteRequest extends AbstractAliasRequest {
private String alias;
DeleteRequest(final KnoxSession session, final String alias) {
this(session, null, alias);
}
DeleteRequest(final KnoxSession session, final String clusterName, final String alias) {
this(session, clusterName, alias, null);
}
DeleteRequest(final KnoxSession session,
final String clusterName,
final String alias,
final String doAsUser) {
super(session, clusterName, doAsUser);
this.alias = alias;
requestURI = buildURI();
}
@Override
protected RequestType getRequestType() {
return RequestType.DELETE;
}
@Override
protected List<String> getPathElements() {
List<String> elements = super.getPathElements();
elements.add("/");
elements.add(alias);
return elements;
}
}