swim.warp.SyncedResponse Maven / Gradle / Ivy
// Copyright 2015-2024 Nstream, 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 SyncedResponse extends LaneAddressed {
public SyncedResponse(Uri nodeUri, Uri laneUri, Value body) {
super(nodeUri, laneUri, body);
}
public SyncedResponse(Uri nodeUri, Uri laneUri) {
this(nodeUri, laneUri, Value.absent());
}
public SyncedResponse(String nodeUri, String laneUri, Value body) {
this(Uri.parse(nodeUri), Uri.parse(laneUri), body);
}
public SyncedResponse(String nodeUri, String laneUri) {
this(Uri.parse(nodeUri), Uri.parse(laneUri), Value.absent());
}
@Override
public String tag() {
return "synced";
}
@Override
public Form form() {
return SyncedResponse.FORM;
}
@Override
public SyncedResponse nodeUri(Uri nodeUri) {
return new SyncedResponse(nodeUri, this.laneUri, this.body);
}
@Override
public SyncedResponse laneUri(Uri laneUri) {
return new SyncedResponse(this.nodeUri, laneUri, this.body);
}
@Override
public SyncedResponse body(Value body) {
return new SyncedResponse(this.nodeUri, this.laneUri, body);
}
@Kind
public static final Form FORM = new SyncedResponseForm();
}
final class SyncedResponseForm extends LaneAddressedForm {
@Override
public String tag() {
return "synced";
}
@Override
public Class> type() {
return SyncedResponse.class;
}
@Override
public SyncedResponse create(Uri nodeUri, Uri laneUri, Value body) {
return new SyncedResponse(nodeUri, laneUri, body);
}
}