swim.warp.UnlinkedResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of swim-warp Show documentation
Show all versions of swim-warp Show documentation
Uploads all artifacts belonging to configuration ':swim-warp:archives'
// Copyright 2015-2019 SWIM.AI inc.
//
// 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.
package swim.warp;
import swim.structure.Form;
import swim.structure.Kind;
import swim.structure.Value;
import swim.uri.Uri;
public final class UnlinkedResponse extends LaneAddressed {
public UnlinkedResponse(Uri nodeUri, Uri laneUri, Value body) {
super(nodeUri, laneUri, body);
}
public UnlinkedResponse(Uri nodeUri, Uri laneUri) {
this(nodeUri, laneUri, Value.absent());
}
public UnlinkedResponse(String nodeUri, String laneUri, Value body) {
this(Uri.parse(nodeUri), Uri.parse(laneUri), body);
}
public UnlinkedResponse(String nodeUri, String laneUri) {
this(Uri.parse(nodeUri), Uri.parse(laneUri), Value.absent());
}
@Override
public String tag() {
return "unlinked";
}
@Override
public Form form() {
return FORM;
}
@Override
public UnlinkedResponse nodeUri(Uri nodeUri) {
return new UnlinkedResponse(nodeUri, this.laneUri, this.body);
}
@Override
public UnlinkedResponse laneUri(Uri laneUri) {
return new UnlinkedResponse(this.nodeUri, laneUri, this.body);
}
@Override
public UnlinkedResponse body(Value body) {
return new UnlinkedResponse(this.nodeUri, this.laneUri, body);
}
@Kind
public static final Form FORM = new UnlinkedForm();
}
final class UnlinkedForm extends LaneAddressedForm {
@Override
public String tag() {
return "unlinked";
}
@Override
public Class> type() {
return UnlinkedResponse.class;
}
@Override
public UnlinkedResponse from(Uri nodeUri, Uri laneUri, Value body) {
return new UnlinkedResponse(nodeUri, laneUri, body);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy