swim.warp.CommandMessage 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 CommandMessage extends LaneAddressed {
public CommandMessage(Uri nodeUri, Uri laneUri, Value body) {
super(nodeUri, laneUri, body);
}
public CommandMessage(Uri nodeUri, Uri laneUri) {
this(nodeUri, laneUri, Value.absent());
}
public CommandMessage(String nodeUri, String laneUri, Value body) {
this(Uri.parse(nodeUri), Uri.parse(laneUri), body);
}
public CommandMessage(String nodeUri, String laneUri) {
this(Uri.parse(nodeUri), Uri.parse(laneUri), Value.absent());
}
@Override
public String tag() {
return "command";
}
@Override
public Form form() {
return CommandMessage.FORM;
}
@Override
public CommandMessage nodeUri(Uri nodeUri) {
return new CommandMessage(nodeUri, this.laneUri, this.body);
}
@Override
public CommandMessage laneUri(Uri laneUri) {
return new CommandMessage(this.nodeUri, laneUri, this.body);
}
@Override
public CommandMessage body(Value body) {
return new CommandMessage(this.nodeUri, this.laneUri, body);
}
@Kind
public static final Form FORM = new CommandMessageForm();
}
final class CommandMessageForm extends LaneAddressedForm {
@Override
public String tag() {
return "command";
}
@Override
public Class> type() {
return CommandMessage.class;
}
@Override
public CommandMessage create(Uri nodeUri, Uri laneUri, Value body) {
return new CommandMessage(nodeUri, laneUri, body);
}
}