index
int64
repo_id
string
file_path
string
content
string
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/events
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/events/target/DetachedFromTarget.java
package com.github.kklisura.cdt.protocol.v2023.events.target; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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. * #L% */ import com.github.kklisura.cdt.protocol.v2023.support.annotations.Experimental; import com.github.kklisura.cdt.protocol.v2023.support.annotations.Optional; /** * Issued when detached from target for any reason (including `detachFromTarget` command). Can be * issued multiple times per target if multiple sessions have been attached to it. */ @Experimental public class DetachedFromTarget { private String sessionId; @Deprecated @Optional private String targetId; /** Detached session identifier. */ public String getSessionId() { return sessionId; } /** Detached session identifier. */ public void setSessionId(String sessionId) { this.sessionId = sessionId; } /** Deprecated. */ public String getTargetId() { return targetId; } /** Deprecated. */ public void setTargetId(String targetId) { this.targetId = targetId; } }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/events
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/events/target/ReceivedMessageFromTarget.java
package com.github.kklisura.cdt.protocol.v2023.events.target; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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. * #L% */ import com.github.kklisura.cdt.protocol.v2023.support.annotations.Optional; /** * Notifies about a new protocol message received from the session (as reported in * `attachedToTarget` event). */ public class ReceivedMessageFromTarget { private String sessionId; private String message; @Deprecated @Optional private String targetId; /** Identifier of a session which sends a message. */ public String getSessionId() { return sessionId; } /** Identifier of a session which sends a message. */ public void setSessionId(String sessionId) { this.sessionId = sessionId; } public String getMessage() { return message; } public void setMessage(String message) { this.message = message; } /** Deprecated. */ public String getTargetId() { return targetId; } /** Deprecated. */ public void setTargetId(String targetId) { this.targetId = targetId; } }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/events
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/events/target/TargetCrashed.java
package com.github.kklisura.cdt.protocol.v2023.events.target; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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. * #L% */ /** Issued when a target has crashed. */ public class TargetCrashed { private String targetId; private String status; private Integer errorCode; public String getTargetId() { return targetId; } public void setTargetId(String targetId) { this.targetId = targetId; } /** Termination status type. */ public String getStatus() { return status; } /** Termination status type. */ public void setStatus(String status) { this.status = status; } /** Termination error code. */ public Integer getErrorCode() { return errorCode; } /** Termination error code. */ public void setErrorCode(Integer errorCode) { this.errorCode = errorCode; } }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/events
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/events/target/TargetCreated.java
package com.github.kklisura.cdt.protocol.v2023.events.target; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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. * #L% */ import com.github.kklisura.cdt.protocol.v2023.types.target.TargetInfo; /** Issued when a possible inspection target is created. */ public class TargetCreated { private TargetInfo targetInfo; public TargetInfo getTargetInfo() { return targetInfo; } public void setTargetInfo(TargetInfo targetInfo) { this.targetInfo = targetInfo; } }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/events
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/events/target/TargetDestroyed.java
package com.github.kklisura.cdt.protocol.v2023.events.target; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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. * #L% */ /** Issued when a target is destroyed. */ public class TargetDestroyed { private String targetId; public String getTargetId() { return targetId; } public void setTargetId(String targetId) { this.targetId = targetId; } }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/events
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/events/target/TargetInfoChanged.java
package com.github.kklisura.cdt.protocol.v2023.events.target; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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. * #L% */ import com.github.kklisura.cdt.protocol.v2023.types.target.TargetInfo; /** * Issued when some information about a target has changed. This only happens between * `targetCreated` and `targetDestroyed`. */ public class TargetInfoChanged { private TargetInfo targetInfo; public TargetInfo getTargetInfo() { return targetInfo; } public void setTargetInfo(TargetInfo targetInfo) { this.targetInfo = targetInfo; } }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/events
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/events/tethering/Accepted.java
package com.github.kklisura.cdt.protocol.v2023.events.tethering; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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. * #L% */ /** Informs that port was successfully bound and got a specified connection id. */ public class Accepted { private Integer port; private String connectionId; /** Port number that was successfully bound. */ public Integer getPort() { return port; } /** Port number that was successfully bound. */ public void setPort(Integer port) { this.port = port; } /** Connection id to be used. */ public String getConnectionId() { return connectionId; } /** Connection id to be used. */ public void setConnectionId(String connectionId) { this.connectionId = connectionId; } }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/events
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/events/tracing/BufferUsage.java
package com.github.kklisura.cdt.protocol.v2023.events.tracing; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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. * #L% */ import com.github.kklisura.cdt.protocol.v2023.support.annotations.Optional; public class BufferUsage { @Optional private Double percentFull; @Optional private Double eventCount; @Optional private Double value; /** * A number in range [0..1] that indicates the used size of event buffer as a fraction of its * total size. */ public Double getPercentFull() { return percentFull; } /** * A number in range [0..1] that indicates the used size of event buffer as a fraction of its * total size. */ public void setPercentFull(Double percentFull) { this.percentFull = percentFull; } /** An approximate number of events in the trace log. */ public Double getEventCount() { return eventCount; } /** An approximate number of events in the trace log. */ public void setEventCount(Double eventCount) { this.eventCount = eventCount; } /** * A number in range [0..1] that indicates the used size of event buffer as a fraction of its * total size. */ public Double getValue() { return value; } /** * A number in range [0..1] that indicates the used size of event buffer as a fraction of its * total size. */ public void setValue(Double value) { this.value = value; } }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/events
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/events/tracing/DataCollected.java
package com.github.kklisura.cdt.protocol.v2023.events.tracing; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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. * #L% */ import java.util.List; /** * Contains a bucket of collected trace events. When tracing is stopped collected events will be * sent as a sequence of dataCollected events followed by tracingComplete event. */ public class DataCollected { private List<Object> value; public List<Object> getValue() { return value; } public void setValue(List<Object> value) { this.value = value; } }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/events
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/events/tracing/TracingComplete.java
package com.github.kklisura.cdt.protocol.v2023.events.tracing; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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. * #L% */ import com.github.kklisura.cdt.protocol.v2023.support.annotations.Optional; import com.github.kklisura.cdt.protocol.v2023.types.tracing.StreamCompression; import com.github.kklisura.cdt.protocol.v2023.types.tracing.StreamFormat; /** * Signals that tracing is stopped and there is no trace buffers pending flush, all data were * delivered via dataCollected events. */ public class TracingComplete { private Boolean dataLossOccurred; @Optional private String stream; @Optional private StreamFormat traceFormat; @Optional private StreamCompression streamCompression; /** * Indicates whether some trace data is known to have been lost, e.g. because the trace ring * buffer wrapped around. */ public Boolean getDataLossOccurred() { return dataLossOccurred; } /** * Indicates whether some trace data is known to have been lost, e.g. because the trace ring * buffer wrapped around. */ public void setDataLossOccurred(Boolean dataLossOccurred) { this.dataLossOccurred = dataLossOccurred; } /** A handle of the stream that holds resulting trace data. */ public String getStream() { return stream; } /** A handle of the stream that holds resulting trace data. */ public void setStream(String stream) { this.stream = stream; } /** Trace data format of returned stream. */ public StreamFormat getTraceFormat() { return traceFormat; } /** Trace data format of returned stream. */ public void setTraceFormat(StreamFormat traceFormat) { this.traceFormat = traceFormat; } /** Compression format of returned stream. */ public StreamCompression getStreamCompression() { return streamCompression; } /** Compression format of returned stream. */ public void setStreamCompression(StreamCompression streamCompression) { this.streamCompression = streamCompression; } }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/events
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/events/webaudio/AudioListenerCreated.java
package com.github.kklisura.cdt.protocol.v2023.events.webaudio; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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. * #L% */ import com.github.kklisura.cdt.protocol.v2023.types.webaudio.AudioListener; /** Notifies that the construction of an AudioListener has finished. */ public class AudioListenerCreated { private AudioListener listener; public AudioListener getListener() { return listener; } public void setListener(AudioListener listener) { this.listener = listener; } }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/events
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/events/webaudio/AudioListenerWillBeDestroyed.java
package com.github.kklisura.cdt.protocol.v2023.events.webaudio; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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. * #L% */ /** Notifies that a new AudioListener has been created. */ public class AudioListenerWillBeDestroyed { private String contextId; private String listenerId; public String getContextId() { return contextId; } public void setContextId(String contextId) { this.contextId = contextId; } public String getListenerId() { return listenerId; } public void setListenerId(String listenerId) { this.listenerId = listenerId; } }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/events
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/events/webaudio/AudioNodeCreated.java
package com.github.kklisura.cdt.protocol.v2023.events.webaudio; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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. * #L% */ import com.github.kklisura.cdt.protocol.v2023.types.webaudio.AudioNode; /** Notifies that a new AudioNode has been created. */ public class AudioNodeCreated { private AudioNode node; public AudioNode getNode() { return node; } public void setNode(AudioNode node) { this.node = node; } }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/events
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/events/webaudio/AudioNodeWillBeDestroyed.java
package com.github.kklisura.cdt.protocol.v2023.events.webaudio; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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. * #L% */ /** Notifies that an existing AudioNode has been destroyed. */ public class AudioNodeWillBeDestroyed { private String contextId; private String nodeId; public String getContextId() { return contextId; } public void setContextId(String contextId) { this.contextId = contextId; } public String getNodeId() { return nodeId; } public void setNodeId(String nodeId) { this.nodeId = nodeId; } }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/events
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/events/webaudio/AudioParamCreated.java
package com.github.kklisura.cdt.protocol.v2023.events.webaudio; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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. * #L% */ import com.github.kklisura.cdt.protocol.v2023.types.webaudio.AudioParam; /** Notifies that a new AudioParam has been created. */ public class AudioParamCreated { private AudioParam param; public AudioParam getParam() { return param; } public void setParam(AudioParam param) { this.param = param; } }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/events
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/events/webaudio/AudioParamWillBeDestroyed.java
package com.github.kklisura.cdt.protocol.v2023.events.webaudio; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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. * #L% */ /** Notifies that an existing AudioParam has been destroyed. */ public class AudioParamWillBeDestroyed { private String contextId; private String nodeId; private String paramId; public String getContextId() { return contextId; } public void setContextId(String contextId) { this.contextId = contextId; } public String getNodeId() { return nodeId; } public void setNodeId(String nodeId) { this.nodeId = nodeId; } public String getParamId() { return paramId; } public void setParamId(String paramId) { this.paramId = paramId; } }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/events
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/events/webaudio/ContextChanged.java
package com.github.kklisura.cdt.protocol.v2023.events.webaudio; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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. * #L% */ import com.github.kklisura.cdt.protocol.v2023.types.webaudio.BaseAudioContext; /** Notifies that existing BaseAudioContext has changed some properties (id stays the same).. */ public class ContextChanged { private BaseAudioContext context; public BaseAudioContext getContext() { return context; } public void setContext(BaseAudioContext context) { this.context = context; } }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/events
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/events/webaudio/ContextCreated.java
package com.github.kklisura.cdt.protocol.v2023.events.webaudio; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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. * #L% */ import com.github.kklisura.cdt.protocol.v2023.types.webaudio.BaseAudioContext; /** Notifies that a new BaseAudioContext has been created. */ public class ContextCreated { private BaseAudioContext context; public BaseAudioContext getContext() { return context; } public void setContext(BaseAudioContext context) { this.context = context; } }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/events
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/events/webaudio/ContextWillBeDestroyed.java
package com.github.kklisura.cdt.protocol.v2023.events.webaudio; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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. * #L% */ /** Notifies that an existing BaseAudioContext will be destroyed. */ public class ContextWillBeDestroyed { private String contextId; public String getContextId() { return contextId; } public void setContextId(String contextId) { this.contextId = contextId; } }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/events
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/events/webaudio/NodeParamConnected.java
package com.github.kklisura.cdt.protocol.v2023.events.webaudio; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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. * #L% */ import com.github.kklisura.cdt.protocol.v2023.support.annotations.Optional; /** Notifies that an AudioNode is connected to an AudioParam. */ public class NodeParamConnected { private String contextId; private String sourceId; private String destinationId; @Optional private Double sourceOutputIndex; public String getContextId() { return contextId; } public void setContextId(String contextId) { this.contextId = contextId; } public String getSourceId() { return sourceId; } public void setSourceId(String sourceId) { this.sourceId = sourceId; } public String getDestinationId() { return destinationId; } public void setDestinationId(String destinationId) { this.destinationId = destinationId; } public Double getSourceOutputIndex() { return sourceOutputIndex; } public void setSourceOutputIndex(Double sourceOutputIndex) { this.sourceOutputIndex = sourceOutputIndex; } }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/events
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/events/webaudio/NodeParamDisconnected.java
package com.github.kklisura.cdt.protocol.v2023.events.webaudio; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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. * #L% */ import com.github.kklisura.cdt.protocol.v2023.support.annotations.Optional; /** Notifies that an AudioNode is disconnected to an AudioParam. */ public class NodeParamDisconnected { private String contextId; private String sourceId; private String destinationId; @Optional private Double sourceOutputIndex; public String getContextId() { return contextId; } public void setContextId(String contextId) { this.contextId = contextId; } public String getSourceId() { return sourceId; } public void setSourceId(String sourceId) { this.sourceId = sourceId; } public String getDestinationId() { return destinationId; } public void setDestinationId(String destinationId) { this.destinationId = destinationId; } public Double getSourceOutputIndex() { return sourceOutputIndex; } public void setSourceOutputIndex(Double sourceOutputIndex) { this.sourceOutputIndex = sourceOutputIndex; } }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/events
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/events/webaudio/NodesConnected.java
package com.github.kklisura.cdt.protocol.v2023.events.webaudio; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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. * #L% */ import com.github.kklisura.cdt.protocol.v2023.support.annotations.Optional; /** Notifies that two AudioNodes are connected. */ public class NodesConnected { private String contextId; private String sourceId; private String destinationId; @Optional private Double sourceOutputIndex; @Optional private Double destinationInputIndex; public String getContextId() { return contextId; } public void setContextId(String contextId) { this.contextId = contextId; } public String getSourceId() { return sourceId; } public void setSourceId(String sourceId) { this.sourceId = sourceId; } public String getDestinationId() { return destinationId; } public void setDestinationId(String destinationId) { this.destinationId = destinationId; } public Double getSourceOutputIndex() { return sourceOutputIndex; } public void setSourceOutputIndex(Double sourceOutputIndex) { this.sourceOutputIndex = sourceOutputIndex; } public Double getDestinationInputIndex() { return destinationInputIndex; } public void setDestinationInputIndex(Double destinationInputIndex) { this.destinationInputIndex = destinationInputIndex; } }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/events
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/events/webaudio/NodesDisconnected.java
package com.github.kklisura.cdt.protocol.v2023.events.webaudio; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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. * #L% */ import com.github.kklisura.cdt.protocol.v2023.support.annotations.Optional; /** * Notifies that AudioNodes are disconnected. The destination can be null, and it means all the * outgoing connections from the source are disconnected. */ public class NodesDisconnected { private String contextId; private String sourceId; private String destinationId; @Optional private Double sourceOutputIndex; @Optional private Double destinationInputIndex; public String getContextId() { return contextId; } public void setContextId(String contextId) { this.contextId = contextId; } public String getSourceId() { return sourceId; } public void setSourceId(String sourceId) { this.sourceId = sourceId; } public String getDestinationId() { return destinationId; } public void setDestinationId(String destinationId) { this.destinationId = destinationId; } public Double getSourceOutputIndex() { return sourceOutputIndex; } public void setSourceOutputIndex(Double sourceOutputIndex) { this.sourceOutputIndex = sourceOutputIndex; } public Double getDestinationInputIndex() { return destinationInputIndex; } public void setDestinationInputIndex(Double destinationInputIndex) { this.destinationInputIndex = destinationInputIndex; } }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/events
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/events/webauthn/CredentialAdded.java
package com.github.kklisura.cdt.protocol.v2023.events.webauthn; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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. * #L% */ import com.github.kklisura.cdt.protocol.v2023.types.webauthn.Credential; /** Triggered when a credential is added to an authenticator. */ public class CredentialAdded { private String authenticatorId; private Credential credential; public String getAuthenticatorId() { return authenticatorId; } public void setAuthenticatorId(String authenticatorId) { this.authenticatorId = authenticatorId; } public Credential getCredential() { return credential; } public void setCredential(Credential credential) { this.credential = credential; } }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/events
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/events/webauthn/CredentialAsserted.java
package com.github.kklisura.cdt.protocol.v2023.events.webauthn; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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. * #L% */ import com.github.kklisura.cdt.protocol.v2023.types.webauthn.Credential; /** Triggered when a credential is used in a webauthn assertion. */ public class CredentialAsserted { private String authenticatorId; private Credential credential; public String getAuthenticatorId() { return authenticatorId; } public void setAuthenticatorId(String authenticatorId) { this.authenticatorId = authenticatorId; } public Credential getCredential() { return credential; } public void setCredential(Credential credential) { this.credential = credential; } }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/support
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/support/annotations/EventName.java
package com.github.kklisura.cdt.protocol.v2023.support.annotations; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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. * #L% */ import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /** * Event name. * * @author Kenan Klisura */ @Retention(RetentionPolicy.RUNTIME) @Target(value = {ElementType.METHOD}) public @interface EventName { String value(); }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/support
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/support/annotations/Experimental.java
package com.github.kklisura.cdt.protocol.v2023.support.annotations; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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. * #L% */ import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; import static java.lang.annotation.ElementType.*; /** * Experimental annotation type. * * @author Kenan Klisura */ @Retention(RetentionPolicy.RUNTIME) @Target(value = {FIELD, METHOD, PARAMETER, TYPE}) public @interface Experimental {}
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/support
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/support/annotations/Optional.java
package com.github.kklisura.cdt.protocol.v2023.support.annotations; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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. * #L% */ import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; import static java.lang.annotation.ElementType.*; /** * Optional annotation. * * @author Kenan Klisura */ @Retention(RetentionPolicy.RUNTIME) @Target(value = {FIELD, METHOD, PARAMETER, TYPE}) public @interface Optional {}
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/support
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/support/annotations/ParamName.java
package com.github.kklisura.cdt.protocol.v2023.support.annotations; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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. * #L% */ import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /** Param value. */ @Retention(RetentionPolicy.RUNTIME) @Target(value = {ElementType.PARAMETER}) public @interface ParamName { String value(); }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/support
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/support/annotations/ReturnTypeParameter.java
package com.github.kklisura.cdt.protocol.v2023.support.annotations; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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. * #L% */ import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; import static java.lang.annotation.ElementType.METHOD; /** * This describes a type parameter for generics return types, if for return type of List<Metrics> * this will contain Metrics class. If the type parameter is Object or is of primitive type, this * annotation will not be present. * * @author Kenan Klisura */ @Retention(RetentionPolicy.RUNTIME) @Target(value = {METHOD}) public @interface ReturnTypeParameter { Class<?>[] value(); }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/support
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/support/annotations/Returns.java
package com.github.kklisura.cdt.protocol.v2023.support.annotations; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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. * #L% */ import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; import static java.lang.annotation.ElementType.METHOD; /** * Indicates return property. * * @author Kenan Klisura */ @Retention(RetentionPolicy.RUNTIME) @Target(value = {METHOD}) public @interface Returns { String value(); }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/support
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/support/types/EventHandler.java
package com.github.kklisura.cdt.protocol.v2023.support.types; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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. * #L% */ /** * Event handler definition. * * @author Kenan Klisura */ @FunctionalInterface public interface EventHandler<T> { /** * Handles the event of type T. * * @param event Event */ void onEvent(T event); }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/support
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/support/types/EventListener.java
package com.github.kklisura.cdt.protocol.v2023.support.types; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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. * #L% */ /** * Event listener interface. * * @author Kenan Klisura */ public interface EventListener { /** Alias to unsubscribe. */ void off(); /** Unsubscribe this event listener. */ void unsubscribe(); }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/accessibility/AXNode.java
package com.github.kklisura.cdt.protocol.v2023.types.accessibility; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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. * #L% */ import com.github.kklisura.cdt.protocol.v2023.support.annotations.Optional; import java.util.List; /** A node in the accessibility tree. */ public class AXNode { private String nodeId; private Boolean ignored; @Optional private List<AXProperty> ignoredReasons; @Optional private AXValue role; @Optional private AXValue chromeRole; @Optional private AXValue name; @Optional private AXValue description; @Optional private AXValue value; @Optional private List<AXProperty> properties; @Optional private String parentId; @Optional private List<String> childIds; @Optional private Integer backendDOMNodeId; @Optional private String frameId; /** Unique identifier for this node. */ public String getNodeId() { return nodeId; } /** Unique identifier for this node. */ public void setNodeId(String nodeId) { this.nodeId = nodeId; } /** Whether this node is ignored for accessibility */ public Boolean getIgnored() { return ignored; } /** Whether this node is ignored for accessibility */ public void setIgnored(Boolean ignored) { this.ignored = ignored; } /** Collection of reasons why this node is hidden. */ public List<AXProperty> getIgnoredReasons() { return ignoredReasons; } /** Collection of reasons why this node is hidden. */ public void setIgnoredReasons(List<AXProperty> ignoredReasons) { this.ignoredReasons = ignoredReasons; } /** This `Node`'s role, whether explicit or implicit. */ public AXValue getRole() { return role; } /** This `Node`'s role, whether explicit or implicit. */ public void setRole(AXValue role) { this.role = role; } /** This `Node`'s Chrome raw role. */ public AXValue getChromeRole() { return chromeRole; } /** This `Node`'s Chrome raw role. */ public void setChromeRole(AXValue chromeRole) { this.chromeRole = chromeRole; } /** The accessible name for this `Node`. */ public AXValue getName() { return name; } /** The accessible name for this `Node`. */ public void setName(AXValue name) { this.name = name; } /** The accessible description for this `Node`. */ public AXValue getDescription() { return description; } /** The accessible description for this `Node`. */ public void setDescription(AXValue description) { this.description = description; } /** The value for this `Node`. */ public AXValue getValue() { return value; } /** The value for this `Node`. */ public void setValue(AXValue value) { this.value = value; } /** All other properties */ public List<AXProperty> getProperties() { return properties; } /** All other properties */ public void setProperties(List<AXProperty> properties) { this.properties = properties; } /** ID for this node's parent. */ public String getParentId() { return parentId; } /** ID for this node's parent. */ public void setParentId(String parentId) { this.parentId = parentId; } /** IDs for each of this node's child nodes. */ public List<String> getChildIds() { return childIds; } /** IDs for each of this node's child nodes. */ public void setChildIds(List<String> childIds) { this.childIds = childIds; } /** The backend ID for the associated DOM node, if any. */ public Integer getBackendDOMNodeId() { return backendDOMNodeId; } /** The backend ID for the associated DOM node, if any. */ public void setBackendDOMNodeId(Integer backendDOMNodeId) { this.backendDOMNodeId = backendDOMNodeId; } /** The frame ID for the frame associated with this nodes document. */ public String getFrameId() { return frameId; } /** The frame ID for the frame associated with this nodes document. */ public void setFrameId(String frameId) { this.frameId = frameId; } }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/accessibility/AXProperty.java
package com.github.kklisura.cdt.protocol.v2023.types.accessibility; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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. * #L% */ public class AXProperty { private AXPropertyName name; private AXValue value; /** The name of this property. */ public AXPropertyName getName() { return name; } /** The name of this property. */ public void setName(AXPropertyName name) { this.name = name; } /** The value of this property. */ public AXValue getValue() { return value; } /** The value of this property. */ public void setValue(AXValue value) { this.value = value; } }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/accessibility/AXPropertyName.java
package com.github.kklisura.cdt.protocol.v2023.types.accessibility; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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. * #L% */ import com.fasterxml.jackson.annotation.JsonProperty; /** * Values of AXProperty name: - from 'busy' to 'roledescription': states which apply to every AX * node - from 'live' to 'root': attributes which apply to nodes in live regions - from * 'autocomplete' to 'valuetext': attributes which apply to widgets - from 'checked' to 'selected': * states which apply to widgets - from 'activedescendant' to 'owns' - relationships between * elements other than parent/child/sibling. */ public enum AXPropertyName { @JsonProperty("busy") BUSY, @JsonProperty("disabled") DISABLED, @JsonProperty("editable") EDITABLE, @JsonProperty("focusable") FOCUSABLE, @JsonProperty("focused") FOCUSED, @JsonProperty("hidden") HIDDEN, @JsonProperty("hiddenRoot") HIDDEN_ROOT, @JsonProperty("invalid") INVALID, @JsonProperty("keyshortcuts") KEYSHORTCUTS, @JsonProperty("settable") SETTABLE, @JsonProperty("roledescription") ROLEDESCRIPTION, @JsonProperty("live") LIVE, @JsonProperty("atomic") ATOMIC, @JsonProperty("relevant") RELEVANT, @JsonProperty("root") ROOT, @JsonProperty("autocomplete") AUTOCOMPLETE, @JsonProperty("hasPopup") HAS_POPUP, @JsonProperty("level") LEVEL, @JsonProperty("multiselectable") MULTISELECTABLE, @JsonProperty("orientation") ORIENTATION, @JsonProperty("multiline") MULTILINE, @JsonProperty("readonly") READONLY, @JsonProperty("required") REQUIRED, @JsonProperty("valuemin") VALUEMIN, @JsonProperty("valuemax") VALUEMAX, @JsonProperty("valuetext") VALUETEXT, @JsonProperty("checked") CHECKED, @JsonProperty("expanded") EXPANDED, @JsonProperty("modal") MODAL, @JsonProperty("pressed") PRESSED, @JsonProperty("selected") SELECTED, @JsonProperty("activedescendant") ACTIVEDESCENDANT, @JsonProperty("controls") CONTROLS, @JsonProperty("describedby") DESCRIBEDBY, @JsonProperty("details") DETAILS, @JsonProperty("errormessage") ERRORMESSAGE, @JsonProperty("flowto") FLOWTO, @JsonProperty("labelledby") LABELLEDBY, @JsonProperty("owns") OWNS }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/accessibility/AXRelatedNode.java
package com.github.kklisura.cdt.protocol.v2023.types.accessibility; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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. * #L% */ import com.github.kklisura.cdt.protocol.v2023.support.annotations.Optional; public class AXRelatedNode { private Integer backendDOMNodeId; @Optional private String idref; @Optional private String text; /** The BackendNodeId of the related DOM node. */ public Integer getBackendDOMNodeId() { return backendDOMNodeId; } /** The BackendNodeId of the related DOM node. */ public void setBackendDOMNodeId(Integer backendDOMNodeId) { this.backendDOMNodeId = backendDOMNodeId; } /** The IDRef value provided, if any. */ public String getIdref() { return idref; } /** The IDRef value provided, if any. */ public void setIdref(String idref) { this.idref = idref; } /** The text alternative of this node in the current context. */ public String getText() { return text; } /** The text alternative of this node in the current context. */ public void setText(String text) { this.text = text; } }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/accessibility/AXValue.java
package com.github.kklisura.cdt.protocol.v2023.types.accessibility; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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. * #L% */ import com.github.kklisura.cdt.protocol.v2023.support.annotations.Optional; import java.util.List; /** A single computed AX property. */ public class AXValue { private AXValueType type; @Optional private Object value; @Optional private List<AXRelatedNode> relatedNodes; @Optional private List<AXValueSource> sources; /** The type of this value. */ public AXValueType getType() { return type; } /** The type of this value. */ public void setType(AXValueType type) { this.type = type; } /** The computed value of this property. */ public Object getValue() { return value; } /** The computed value of this property. */ public void setValue(Object value) { this.value = value; } /** One or more related nodes, if applicable. */ public List<AXRelatedNode> getRelatedNodes() { return relatedNodes; } /** One or more related nodes, if applicable. */ public void setRelatedNodes(List<AXRelatedNode> relatedNodes) { this.relatedNodes = relatedNodes; } /** The sources which contributed to the computation of this property. */ public List<AXValueSource> getSources() { return sources; } /** The sources which contributed to the computation of this property. */ public void setSources(List<AXValueSource> sources) { this.sources = sources; } }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/accessibility/AXValueNativeSourceType.java
package com.github.kklisura.cdt.protocol.v2023.types.accessibility; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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. * #L% */ import com.fasterxml.jackson.annotation.JsonProperty; /** Enum of possible native property sources (as a subtype of a particular AXValueSourceType). */ public enum AXValueNativeSourceType { @JsonProperty("description") DESCRIPTION, @JsonProperty("figcaption") FIGCAPTION, @JsonProperty("label") LABEL, @JsonProperty("labelfor") LABELFOR, @JsonProperty("labelwrapped") LABELWRAPPED, @JsonProperty("legend") LEGEND, @JsonProperty("rubyannotation") RUBYANNOTATION, @JsonProperty("tablecaption") TABLECAPTION, @JsonProperty("title") TITLE, @JsonProperty("other") OTHER }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/accessibility/AXValueSource.java
package com.github.kklisura.cdt.protocol.v2023.types.accessibility; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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. * #L% */ import com.github.kklisura.cdt.protocol.v2023.support.annotations.Optional; /** A single source for a computed AX property. */ public class AXValueSource { private AXValueSourceType type; @Optional private AXValue value; @Optional private String attribute; @Optional private AXValue attributeValue; @Optional private Boolean superseded; @Optional private AXValueNativeSourceType nativeSource; @Optional private AXValue nativeSourceValue; @Optional private Boolean invalid; @Optional private String invalidReason; /** What type of source this is. */ public AXValueSourceType getType() { return type; } /** What type of source this is. */ public void setType(AXValueSourceType type) { this.type = type; } /** The value of this property source. */ public AXValue getValue() { return value; } /** The value of this property source. */ public void setValue(AXValue value) { this.value = value; } /** The name of the relevant attribute, if any. */ public String getAttribute() { return attribute; } /** The name of the relevant attribute, if any. */ public void setAttribute(String attribute) { this.attribute = attribute; } /** The value of the relevant attribute, if any. */ public AXValue getAttributeValue() { return attributeValue; } /** The value of the relevant attribute, if any. */ public void setAttributeValue(AXValue attributeValue) { this.attributeValue = attributeValue; } /** Whether this source is superseded by a higher priority source. */ public Boolean getSuperseded() { return superseded; } /** Whether this source is superseded by a higher priority source. */ public void setSuperseded(Boolean superseded) { this.superseded = superseded; } /** The native markup source for this value, e.g. a `<label>` element. */ public AXValueNativeSourceType getNativeSource() { return nativeSource; } /** The native markup source for this value, e.g. a `<label>` element. */ public void setNativeSource(AXValueNativeSourceType nativeSource) { this.nativeSource = nativeSource; } /** The value, such as a node or node list, of the native source. */ public AXValue getNativeSourceValue() { return nativeSourceValue; } /** The value, such as a node or node list, of the native source. */ public void setNativeSourceValue(AXValue nativeSourceValue) { this.nativeSourceValue = nativeSourceValue; } /** Whether the value for this property is invalid. */ public Boolean getInvalid() { return invalid; } /** Whether the value for this property is invalid. */ public void setInvalid(Boolean invalid) { this.invalid = invalid; } /** Reason for the value being invalid, if it is. */ public String getInvalidReason() { return invalidReason; } /** Reason for the value being invalid, if it is. */ public void setInvalidReason(String invalidReason) { this.invalidReason = invalidReason; } }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/accessibility/AXValueSourceType.java
package com.github.kklisura.cdt.protocol.v2023.types.accessibility; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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. * #L% */ import com.fasterxml.jackson.annotation.JsonProperty; /** Enum of possible property sources. */ public enum AXValueSourceType { @JsonProperty("attribute") ATTRIBUTE, @JsonProperty("implicit") IMPLICIT, @JsonProperty("style") STYLE, @JsonProperty("contents") CONTENTS, @JsonProperty("placeholder") PLACEHOLDER, @JsonProperty("relatedElement") RELATED_ELEMENT }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/accessibility/AXValueType.java
package com.github.kklisura.cdt.protocol.v2023.types.accessibility; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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. * #L% */ import com.fasterxml.jackson.annotation.JsonProperty; /** Enum of possible property types. */ public enum AXValueType { @JsonProperty("boolean") BOOLEAN, @JsonProperty("tristate") TRISTATE, @JsonProperty("booleanOrUndefined") BOOLEAN_OR_UNDEFINED, @JsonProperty("idref") IDREF, @JsonProperty("idrefList") IDREF_LIST, @JsonProperty("integer") INTEGER, @JsonProperty("node") NODE, @JsonProperty("nodeList") NODE_LIST, @JsonProperty("number") NUMBER, @JsonProperty("string") STRING, @JsonProperty("computedString") COMPUTED_STRING, @JsonProperty("token") TOKEN, @JsonProperty("tokenList") TOKEN_LIST, @JsonProperty("domRelation") DOM_RELATION, @JsonProperty("role") ROLE, @JsonProperty("internalRole") INTERNAL_ROLE, @JsonProperty("valueUndefined") VALUE_UNDEFINED }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/animation/Animation.java
package com.github.kklisura.cdt.protocol.v2023.types.animation; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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. * #L% */ import com.github.kklisura.cdt.protocol.v2023.support.annotations.Optional; /** Animation instance. */ public class Animation { private String id; private String name; private Boolean pausedState; private String playState; private Double playbackRate; private Double startTime; private Double currentTime; private AnimationType type; @Optional private AnimationEffect source; @Optional private String cssId; /** `Animation`'s id. */ public String getId() { return id; } /** `Animation`'s id. */ public void setId(String id) { this.id = id; } /** `Animation`'s name. */ public String getName() { return name; } /** `Animation`'s name. */ public void setName(String name) { this.name = name; } /** `Animation`'s internal paused state. */ public Boolean getPausedState() { return pausedState; } /** `Animation`'s internal paused state. */ public void setPausedState(Boolean pausedState) { this.pausedState = pausedState; } /** `Animation`'s play state. */ public String getPlayState() { return playState; } /** `Animation`'s play state. */ public void setPlayState(String playState) { this.playState = playState; } /** `Animation`'s playback rate. */ public Double getPlaybackRate() { return playbackRate; } /** `Animation`'s playback rate. */ public void setPlaybackRate(Double playbackRate) { this.playbackRate = playbackRate; } /** `Animation`'s start time. */ public Double getStartTime() { return startTime; } /** `Animation`'s start time. */ public void setStartTime(Double startTime) { this.startTime = startTime; } /** `Animation`'s current time. */ public Double getCurrentTime() { return currentTime; } /** `Animation`'s current time. */ public void setCurrentTime(Double currentTime) { this.currentTime = currentTime; } /** Animation type of `Animation`. */ public AnimationType getType() { return type; } /** Animation type of `Animation`. */ public void setType(AnimationType type) { this.type = type; } /** `Animation`'s source animation node. */ public AnimationEffect getSource() { return source; } /** `Animation`'s source animation node. */ public void setSource(AnimationEffect source) { this.source = source; } /** * A unique ID for `Animation` representing the sources that triggered this CSS * animation/transition. */ public String getCssId() { return cssId; } /** * A unique ID for `Animation` representing the sources that triggered this CSS * animation/transition. */ public void setCssId(String cssId) { this.cssId = cssId; } }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/animation/AnimationEffect.java
package com.github.kklisura.cdt.protocol.v2023.types.animation; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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. * #L% */ import com.github.kklisura.cdt.protocol.v2023.support.annotations.Optional; /** AnimationEffect instance */ public class AnimationEffect { private Double delay; private Double endDelay; private Double iterationStart; private Double iterations; private Double duration; private String direction; private String fill; @Optional private Integer backendNodeId; @Optional private KeyframesRule keyframesRule; private String easing; /** `AnimationEffect`'s delay. */ public Double getDelay() { return delay; } /** `AnimationEffect`'s delay. */ public void setDelay(Double delay) { this.delay = delay; } /** `AnimationEffect`'s end delay. */ public Double getEndDelay() { return endDelay; } /** `AnimationEffect`'s end delay. */ public void setEndDelay(Double endDelay) { this.endDelay = endDelay; } /** `AnimationEffect`'s iteration start. */ public Double getIterationStart() { return iterationStart; } /** `AnimationEffect`'s iteration start. */ public void setIterationStart(Double iterationStart) { this.iterationStart = iterationStart; } /** `AnimationEffect`'s iterations. */ public Double getIterations() { return iterations; } /** `AnimationEffect`'s iterations. */ public void setIterations(Double iterations) { this.iterations = iterations; } /** `AnimationEffect`'s iteration duration. */ public Double getDuration() { return duration; } /** `AnimationEffect`'s iteration duration. */ public void setDuration(Double duration) { this.duration = duration; } /** `AnimationEffect`'s playback direction. */ public String getDirection() { return direction; } /** `AnimationEffect`'s playback direction. */ public void setDirection(String direction) { this.direction = direction; } /** `AnimationEffect`'s fill mode. */ public String getFill() { return fill; } /** `AnimationEffect`'s fill mode. */ public void setFill(String fill) { this.fill = fill; } /** `AnimationEffect`'s target node. */ public Integer getBackendNodeId() { return backendNodeId; } /** `AnimationEffect`'s target node. */ public void setBackendNodeId(Integer backendNodeId) { this.backendNodeId = backendNodeId; } /** `AnimationEffect`'s keyframes. */ public KeyframesRule getKeyframesRule() { return keyframesRule; } /** `AnimationEffect`'s keyframes. */ public void setKeyframesRule(KeyframesRule keyframesRule) { this.keyframesRule = keyframesRule; } /** `AnimationEffect`'s timing function. */ public String getEasing() { return easing; } /** `AnimationEffect`'s timing function. */ public void setEasing(String easing) { this.easing = easing; } }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/animation/AnimationType.java
package com.github.kklisura.cdt.protocol.v2023.types.animation; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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. * #L% */ import com.fasterxml.jackson.annotation.JsonProperty; /** Animation type of `Animation`. */ public enum AnimationType { @JsonProperty("CSSTransition") CSS_TRANSITION, @JsonProperty("CSSAnimation") CSS_ANIMATION, @JsonProperty("WebAnimation") WEB_ANIMATION }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/animation/KeyframeStyle.java
package com.github.kklisura.cdt.protocol.v2023.types.animation; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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. * #L% */ /** Keyframe Style */ public class KeyframeStyle { private String offset; private String easing; /** Keyframe's time offset. */ public String getOffset() { return offset; } /** Keyframe's time offset. */ public void setOffset(String offset) { this.offset = offset; } /** `AnimationEffect`'s timing function. */ public String getEasing() { return easing; } /** `AnimationEffect`'s timing function. */ public void setEasing(String easing) { this.easing = easing; } }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/animation/KeyframesRule.java
package com.github.kklisura.cdt.protocol.v2023.types.animation; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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. * #L% */ import com.github.kklisura.cdt.protocol.v2023.support.annotations.Optional; import java.util.List; /** Keyframes Rule */ public class KeyframesRule { @Optional private String name; private List<KeyframeStyle> keyframes; /** CSS keyframed animation's name. */ public String getName() { return name; } /** CSS keyframed animation's name. */ public void setName(String name) { this.name = name; } /** List of animation keyframes. */ public List<KeyframeStyle> getKeyframes() { return keyframes; } /** List of animation keyframes. */ public void setKeyframes(List<KeyframeStyle> keyframes) { this.keyframes = keyframes; } }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/audits/AffectedCookie.java
package com.github.kklisura.cdt.protocol.v2023.types.audits; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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. * #L% */ /** Information about a cookie that is affected by an inspector issue. */ public class AffectedCookie { private String name; private String path; private String domain; /** The following three properties uniquely identify a cookie */ public String getName() { return name; } /** The following three properties uniquely identify a cookie */ public void setName(String name) { this.name = name; } public String getPath() { return path; } public void setPath(String path) { this.path = path; } public String getDomain() { return domain; } public void setDomain(String domain) { this.domain = domain; } }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/audits/AffectedFrame.java
package com.github.kklisura.cdt.protocol.v2023.types.audits; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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. * #L% */ /** Information about the frame affected by an inspector issue. */ public class AffectedFrame { private String frameId; public String getFrameId() { return frameId; } public void setFrameId(String frameId) { this.frameId = frameId; } }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/audits/AffectedRequest.java
package com.github.kklisura.cdt.protocol.v2023.types.audits; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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. * #L% */ import com.github.kklisura.cdt.protocol.v2023.support.annotations.Optional; /** Information about a request that is affected by an inspector issue. */ public class AffectedRequest { private String requestId; @Optional private String url; /** The unique request id. */ public String getRequestId() { return requestId; } /** The unique request id. */ public void setRequestId(String requestId) { this.requestId = requestId; } public String getUrl() { return url; } public void setUrl(String url) { this.url = url; } }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/audits/AttributionReportingIssueDetails.java
package com.github.kklisura.cdt.protocol.v2023.types.audits; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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. * #L% */ import com.github.kklisura.cdt.protocol.v2023.support.annotations.Optional; /** * Details for issues around "Attribution Reporting API" usage. Explainer: * https://github.com/WICG/attribution-reporting-api */ public class AttributionReportingIssueDetails { private AttributionReportingIssueType violationType; @Optional private AffectedRequest request; @Optional private Integer violatingNodeId; @Optional private String invalidParameter; public AttributionReportingIssueType getViolationType() { return violationType; } public void setViolationType(AttributionReportingIssueType violationType) { this.violationType = violationType; } public AffectedRequest getRequest() { return request; } public void setRequest(AffectedRequest request) { this.request = request; } public Integer getViolatingNodeId() { return violatingNodeId; } public void setViolatingNodeId(Integer violatingNodeId) { this.violatingNodeId = violatingNodeId; } public String getInvalidParameter() { return invalidParameter; } public void setInvalidParameter(String invalidParameter) { this.invalidParameter = invalidParameter; } }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/audits/AttributionReportingIssueType.java
package com.github.kklisura.cdt.protocol.v2023.types.audits; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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. * #L% */ import com.fasterxml.jackson.annotation.JsonProperty; public enum AttributionReportingIssueType { @JsonProperty("PermissionPolicyDisabled") PERMISSION_POLICY_DISABLED, @JsonProperty("UntrustworthyReportingOrigin") UNTRUSTWORTHY_REPORTING_ORIGIN, @JsonProperty("InsecureContext") INSECURE_CONTEXT, @JsonProperty("InvalidHeader") INVALID_HEADER, @JsonProperty("InvalidRegisterTriggerHeader") INVALID_REGISTER_TRIGGER_HEADER, @JsonProperty("SourceAndTriggerHeaders") SOURCE_AND_TRIGGER_HEADERS, @JsonProperty("SourceIgnored") SOURCE_IGNORED, @JsonProperty("TriggerIgnored") TRIGGER_IGNORED, @JsonProperty("OsSourceIgnored") OS_SOURCE_IGNORED, @JsonProperty("OsTriggerIgnored") OS_TRIGGER_IGNORED, @JsonProperty("InvalidRegisterOsSourceHeader") INVALID_REGISTER_OS_SOURCE_HEADER, @JsonProperty("InvalidRegisterOsTriggerHeader") INVALID_REGISTER_OS_TRIGGER_HEADER, @JsonProperty("WebAndOsHeaders") WEB_AND_OS_HEADERS, @JsonProperty("NoWebOrOsSupport") NO_WEB_OR_OS_SUPPORT, @JsonProperty("NavigationRegistrationWithoutTransientUserActivation") NAVIGATION_REGISTRATION_WITHOUT_TRANSIENT_USER_ACTIVATION }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/audits/BlockedByResponseIssueDetails.java
package com.github.kklisura.cdt.protocol.v2023.types.audits; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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. * #L% */ import com.github.kklisura.cdt.protocol.v2023.support.annotations.Optional; /** * Details for a request that has been blocked with the BLOCKED_BY_RESPONSE code. Currently only * used for COEP/COOP, but may be extended to include some CSP errors in the future. */ public class BlockedByResponseIssueDetails { private AffectedRequest request; @Optional private AffectedFrame parentFrame; @Optional private AffectedFrame blockedFrame; private BlockedByResponseReason reason; public AffectedRequest getRequest() { return request; } public void setRequest(AffectedRequest request) { this.request = request; } public AffectedFrame getParentFrame() { return parentFrame; } public void setParentFrame(AffectedFrame parentFrame) { this.parentFrame = parentFrame; } public AffectedFrame getBlockedFrame() { return blockedFrame; } public void setBlockedFrame(AffectedFrame blockedFrame) { this.blockedFrame = blockedFrame; } public BlockedByResponseReason getReason() { return reason; } public void setReason(BlockedByResponseReason reason) { this.reason = reason; } }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/audits/BlockedByResponseReason.java
package com.github.kklisura.cdt.protocol.v2023.types.audits; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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. * #L% */ import com.fasterxml.jackson.annotation.JsonProperty; /** * Enum indicating the reason a response has been blocked. These reasons are refinements of the net * error BLOCKED_BY_RESPONSE. */ public enum BlockedByResponseReason { @JsonProperty("CoepFrameResourceNeedsCoepHeader") COEP_FRAME_RESOURCE_NEEDS_COEP_HEADER, @JsonProperty("CoopSandboxedIFrameCannotNavigateToCoopPage") COOP_SANDBOXED_I_FRAME_CANNOT_NAVIGATE_TO_COOP_PAGE, @JsonProperty("CorpNotSameOrigin") CORP_NOT_SAME_ORIGIN, @JsonProperty("CorpNotSameOriginAfterDefaultedToSameOriginByCoep") CORP_NOT_SAME_ORIGIN_AFTER_DEFAULTED_TO_SAME_ORIGIN_BY_COEP, @JsonProperty("CorpNotSameSite") CORP_NOT_SAME_SITE }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/audits/BounceTrackingIssueDetails.java
package com.github.kklisura.cdt.protocol.v2023.types.audits; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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. * #L% */ import java.util.List; /** * This issue warns about sites in the redirect chain of a finished navigation that may be flagged * as trackers and have their state cleared if they don't receive a user interaction. Note that in * this context 'site' means eTLD+1. For example, if the URL `https://example.test:80/bounce` was in * the redirect chain, the site reported would be `example.test`. */ public class BounceTrackingIssueDetails { private List<String> trackingSites; public List<String> getTrackingSites() { return trackingSites; } public void setTrackingSites(List<String> trackingSites) { this.trackingSites = trackingSites; } }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/audits/ClientHintIssueDetails.java
package com.github.kklisura.cdt.protocol.v2023.types.audits; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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. * #L% */ /** * This issue tracks client hints related issues. It's used to deprecate old features, encourage the * use of new ones, and provide general guidance. */ public class ClientHintIssueDetails { private SourceCodeLocation sourceCodeLocation; private ClientHintIssueReason clientHintIssueReason; public SourceCodeLocation getSourceCodeLocation() { return sourceCodeLocation; } public void setSourceCodeLocation(SourceCodeLocation sourceCodeLocation) { this.sourceCodeLocation = sourceCodeLocation; } public ClientHintIssueReason getClientHintIssueReason() { return clientHintIssueReason; } public void setClientHintIssueReason(ClientHintIssueReason clientHintIssueReason) { this.clientHintIssueReason = clientHintIssueReason; } }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/audits/ClientHintIssueReason.java
package com.github.kklisura.cdt.protocol.v2023.types.audits; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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. * #L% */ import com.fasterxml.jackson.annotation.JsonProperty; public enum ClientHintIssueReason { @JsonProperty("MetaTagAllowListInvalidOrigin") META_TAG_ALLOW_LIST_INVALID_ORIGIN, @JsonProperty("MetaTagModifiedHTML") META_TAG_MODIFIED_HTML }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/audits/ContentSecurityPolicyIssueDetails.java
package com.github.kklisura.cdt.protocol.v2023.types.audits; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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. * #L% */ import com.github.kklisura.cdt.protocol.v2023.support.annotations.Optional; public class ContentSecurityPolicyIssueDetails { @Optional private String blockedURL; private String violatedDirective; private Boolean isReportOnly; private ContentSecurityPolicyViolationType contentSecurityPolicyViolationType; @Optional private AffectedFrame frameAncestor; @Optional private SourceCodeLocation sourceCodeLocation; @Optional private Integer violatingNodeId; /** The url not included in allowed sources. */ public String getBlockedURL() { return blockedURL; } /** The url not included in allowed sources. */ public void setBlockedURL(String blockedURL) { this.blockedURL = blockedURL; } /** Specific directive that is violated, causing the CSP issue. */ public String getViolatedDirective() { return violatedDirective; } /** Specific directive that is violated, causing the CSP issue. */ public void setViolatedDirective(String violatedDirective) { this.violatedDirective = violatedDirective; } public Boolean getIsReportOnly() { return isReportOnly; } public void setIsReportOnly(Boolean isReportOnly) { this.isReportOnly = isReportOnly; } public ContentSecurityPolicyViolationType getContentSecurityPolicyViolationType() { return contentSecurityPolicyViolationType; } public void setContentSecurityPolicyViolationType( ContentSecurityPolicyViolationType contentSecurityPolicyViolationType) { this.contentSecurityPolicyViolationType = contentSecurityPolicyViolationType; } public AffectedFrame getFrameAncestor() { return frameAncestor; } public void setFrameAncestor(AffectedFrame frameAncestor) { this.frameAncestor = frameAncestor; } public SourceCodeLocation getSourceCodeLocation() { return sourceCodeLocation; } public void setSourceCodeLocation(SourceCodeLocation sourceCodeLocation) { this.sourceCodeLocation = sourceCodeLocation; } public Integer getViolatingNodeId() { return violatingNodeId; } public void setViolatingNodeId(Integer violatingNodeId) { this.violatingNodeId = violatingNodeId; } }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/audits/ContentSecurityPolicyViolationType.java
package com.github.kklisura.cdt.protocol.v2023.types.audits; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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. * #L% */ import com.fasterxml.jackson.annotation.JsonProperty; public enum ContentSecurityPolicyViolationType { @JsonProperty("kInlineViolation") K_INLINE_VIOLATION, @JsonProperty("kEvalViolation") K_EVAL_VIOLATION, @JsonProperty("kURLViolation") K_URL_VIOLATION, @JsonProperty("kTrustedTypesSinkViolation") K_TRUSTED_TYPES_SINK_VIOLATION, @JsonProperty("kTrustedTypesPolicyViolation") K_TRUSTED_TYPES_POLICY_VIOLATION, @JsonProperty("kWasmEvalViolation") K_WASM_EVAL_VIOLATION }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/audits/CookieExclusionReason.java
package com.github.kklisura.cdt.protocol.v2023.types.audits; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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. * #L% */ import com.fasterxml.jackson.annotation.JsonProperty; public enum CookieExclusionReason { @JsonProperty("ExcludeSameSiteUnspecifiedTreatedAsLax") EXCLUDE_SAME_SITE_UNSPECIFIED_TREATED_AS_LAX, @JsonProperty("ExcludeSameSiteNoneInsecure") EXCLUDE_SAME_SITE_NONE_INSECURE, @JsonProperty("ExcludeSameSiteLax") EXCLUDE_SAME_SITE_LAX, @JsonProperty("ExcludeSameSiteStrict") EXCLUDE_SAME_SITE_STRICT, @JsonProperty("ExcludeInvalidSameParty") EXCLUDE_INVALID_SAME_PARTY, @JsonProperty("ExcludeSamePartyCrossPartyContext") EXCLUDE_SAME_PARTY_CROSS_PARTY_CONTEXT, @JsonProperty("ExcludeDomainNonASCII") EXCLUDE_DOMAIN_NON_ASCII, @JsonProperty("ExcludeThirdPartyCookieBlockedInFirstPartySet") EXCLUDE_THIRD_PARTY_COOKIE_BLOCKED_IN_FIRST_PARTY_SET }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/audits/CookieIssueDetails.java
package com.github.kklisura.cdt.protocol.v2023.types.audits; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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. * #L% */ import com.github.kklisura.cdt.protocol.v2023.support.annotations.Optional; import java.util.List; /** * This information is currently necessary, as the front-end has a difficult time finding a specific * cookie. With this, we can convey specific error information without the cookie. */ public class CookieIssueDetails { @Optional private AffectedCookie cookie; @Optional private String rawCookieLine; private List<CookieWarningReason> cookieWarningReasons; private List<CookieExclusionReason> cookieExclusionReasons; private CookieOperation operation; @Optional private String siteForCookies; @Optional private String cookieUrl; @Optional private AffectedRequest request; /** * If AffectedCookie is not set then rawCookieLine contains the raw Set-Cookie header string. This * hints at a problem where the cookie line is syntactically or semantically malformed in a way * that no valid cookie could be created. */ public AffectedCookie getCookie() { return cookie; } /** * If AffectedCookie is not set then rawCookieLine contains the raw Set-Cookie header string. This * hints at a problem where the cookie line is syntactically or semantically malformed in a way * that no valid cookie could be created. */ public void setCookie(AffectedCookie cookie) { this.cookie = cookie; } public String getRawCookieLine() { return rawCookieLine; } public void setRawCookieLine(String rawCookieLine) { this.rawCookieLine = rawCookieLine; } public List<CookieWarningReason> getCookieWarningReasons() { return cookieWarningReasons; } public void setCookieWarningReasons(List<CookieWarningReason> cookieWarningReasons) { this.cookieWarningReasons = cookieWarningReasons; } public List<CookieExclusionReason> getCookieExclusionReasons() { return cookieExclusionReasons; } public void setCookieExclusionReasons(List<CookieExclusionReason> cookieExclusionReasons) { this.cookieExclusionReasons = cookieExclusionReasons; } /** * Optionally identifies the site-for-cookies and the cookie url, which may be used by the * front-end as additional context. */ public CookieOperation getOperation() { return operation; } /** * Optionally identifies the site-for-cookies and the cookie url, which may be used by the * front-end as additional context. */ public void setOperation(CookieOperation operation) { this.operation = operation; } public String getSiteForCookies() { return siteForCookies; } public void setSiteForCookies(String siteForCookies) { this.siteForCookies = siteForCookies; } public String getCookieUrl() { return cookieUrl; } public void setCookieUrl(String cookieUrl) { this.cookieUrl = cookieUrl; } public AffectedRequest getRequest() { return request; } public void setRequest(AffectedRequest request) { this.request = request; } }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/audits/CookieOperation.java
package com.github.kklisura.cdt.protocol.v2023.types.audits; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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. * #L% */ import com.fasterxml.jackson.annotation.JsonProperty; public enum CookieOperation { @JsonProperty("SetCookie") SET_COOKIE, @JsonProperty("ReadCookie") READ_COOKIE }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/audits/CookieWarningReason.java
package com.github.kklisura.cdt.protocol.v2023.types.audits; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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. * #L% */ import com.fasterxml.jackson.annotation.JsonProperty; public enum CookieWarningReason { @JsonProperty("WarnSameSiteUnspecifiedCrossSiteContext") WARN_SAME_SITE_UNSPECIFIED_CROSS_SITE_CONTEXT, @JsonProperty("WarnSameSiteNoneInsecure") WARN_SAME_SITE_NONE_INSECURE, @JsonProperty("WarnSameSiteUnspecifiedLaxAllowUnsafe") WARN_SAME_SITE_UNSPECIFIED_LAX_ALLOW_UNSAFE, @JsonProperty("WarnSameSiteStrictLaxDowngradeStrict") WARN_SAME_SITE_STRICT_LAX_DOWNGRADE_STRICT, @JsonProperty("WarnSameSiteStrictCrossDowngradeStrict") WARN_SAME_SITE_STRICT_CROSS_DOWNGRADE_STRICT, @JsonProperty("WarnSameSiteStrictCrossDowngradeLax") WARN_SAME_SITE_STRICT_CROSS_DOWNGRADE_LAX, @JsonProperty("WarnSameSiteLaxCrossDowngradeStrict") WARN_SAME_SITE_LAX_CROSS_DOWNGRADE_STRICT, @JsonProperty("WarnSameSiteLaxCrossDowngradeLax") WARN_SAME_SITE_LAX_CROSS_DOWNGRADE_LAX, @JsonProperty("WarnAttributeValueExceedsMaxSize") WARN_ATTRIBUTE_VALUE_EXCEEDS_MAX_SIZE, @JsonProperty("WarnDomainNonASCII") WARN_DOMAIN_NON_ASCII, @JsonProperty("WarnThirdPartyPhaseout") WARN_THIRD_PARTY_PHASEOUT }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/audits/CorsIssueDetails.java
package com.github.kklisura.cdt.protocol.v2023.types.audits; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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. * #L% */ import com.github.kklisura.cdt.protocol.v2023.support.annotations.Optional; import com.github.kklisura.cdt.protocol.v2023.types.network.ClientSecurityState; import com.github.kklisura.cdt.protocol.v2023.types.network.CorsErrorStatus; import com.github.kklisura.cdt.protocol.v2023.types.network.IPAddressSpace; /** * Details for a CORS related issue, e.g. a warning or error related to CORS RFC1918 enforcement. */ public class CorsIssueDetails { private CorsErrorStatus corsErrorStatus; private Boolean isWarning; private AffectedRequest request; @Optional private SourceCodeLocation location; @Optional private String initiatorOrigin; @Optional private IPAddressSpace resourceIPAddressSpace; @Optional private ClientSecurityState clientSecurityState; public CorsErrorStatus getCorsErrorStatus() { return corsErrorStatus; } public void setCorsErrorStatus(CorsErrorStatus corsErrorStatus) { this.corsErrorStatus = corsErrorStatus; } public Boolean getIsWarning() { return isWarning; } public void setIsWarning(Boolean isWarning) { this.isWarning = isWarning; } public AffectedRequest getRequest() { return request; } public void setRequest(AffectedRequest request) { this.request = request; } public SourceCodeLocation getLocation() { return location; } public void setLocation(SourceCodeLocation location) { this.location = location; } public String getInitiatorOrigin() { return initiatorOrigin; } public void setInitiatorOrigin(String initiatorOrigin) { this.initiatorOrigin = initiatorOrigin; } public IPAddressSpace getResourceIPAddressSpace() { return resourceIPAddressSpace; } public void setResourceIPAddressSpace(IPAddressSpace resourceIPAddressSpace) { this.resourceIPAddressSpace = resourceIPAddressSpace; } public ClientSecurityState getClientSecurityState() { return clientSecurityState; } public void setClientSecurityState(ClientSecurityState clientSecurityState) { this.clientSecurityState = clientSecurityState; } }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/audits/DeprecationIssueDetails.java
package com.github.kklisura.cdt.protocol.v2023.types.audits; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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. * #L% */ import com.github.kklisura.cdt.protocol.v2023.support.annotations.Optional; /** * This issue tracks information needed to print a deprecation message. * https://source.chromium.org/chromium/chromium/src/+/main:third_party/blink/renderer/core/frame/third_party/blink/renderer/core/frame/deprecation/README.md */ public class DeprecationIssueDetails { @Optional private AffectedFrame affectedFrame; private SourceCodeLocation sourceCodeLocation; private String type; public AffectedFrame getAffectedFrame() { return affectedFrame; } public void setAffectedFrame(AffectedFrame affectedFrame) { this.affectedFrame = affectedFrame; } public SourceCodeLocation getSourceCodeLocation() { return sourceCodeLocation; } public void setSourceCodeLocation(SourceCodeLocation sourceCodeLocation) { this.sourceCodeLocation = sourceCodeLocation; } /** * One of the deprecation names from * third_party/blink/renderer/core/frame/deprecation/deprecation.json5 */ public String getType() { return type; } /** * One of the deprecation names from * third_party/blink/renderer/core/frame/deprecation/deprecation.json5 */ public void setType(String type) { this.type = type; } }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/audits/EncodedResponse.java
package com.github.kklisura.cdt.protocol.v2023.types.audits; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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. * #L% */ import com.github.kklisura.cdt.protocol.v2023.support.annotations.Optional; public class EncodedResponse { @Optional private String body; private Integer originalSize; private Integer encodedSize; /** * The encoded body as a base64 string. Omitted if sizeOnly is true. (Encoded as a base64 string * when passed over JSON) */ public String getBody() { return body; } /** * The encoded body as a base64 string. Omitted if sizeOnly is true. (Encoded as a base64 string * when passed over JSON) */ public void setBody(String body) { this.body = body; } /** Size before re-encoding. */ public Integer getOriginalSize() { return originalSize; } /** Size before re-encoding. */ public void setOriginalSize(Integer originalSize) { this.originalSize = originalSize; } /** Size after re-encoding. */ public Integer getEncodedSize() { return encodedSize; } /** Size after re-encoding. */ public void setEncodedSize(Integer encodedSize) { this.encodedSize = encodedSize; } }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/audits/FailedRequestInfo.java
package com.github.kklisura.cdt.protocol.v2023.types.audits; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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. * #L% */ import com.github.kklisura.cdt.protocol.v2023.support.annotations.Optional; public class FailedRequestInfo { private String url; private String failureMessage; @Optional private String requestId; /** The URL that failed to load. */ public String getUrl() { return url; } /** The URL that failed to load. */ public void setUrl(String url) { this.url = url; } /** The failure message for the failed request. */ public String getFailureMessage() { return failureMessage; } /** The failure message for the failed request. */ public void setFailureMessage(String failureMessage) { this.failureMessage = failureMessage; } public String getRequestId() { return requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/audits/FederatedAuthRequestIssueDetails.java
package com.github.kklisura.cdt.protocol.v2023.types.audits; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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. * #L% */ public class FederatedAuthRequestIssueDetails { private FederatedAuthRequestIssueReason federatedAuthRequestIssueReason; public FederatedAuthRequestIssueReason getFederatedAuthRequestIssueReason() { return federatedAuthRequestIssueReason; } public void setFederatedAuthRequestIssueReason( FederatedAuthRequestIssueReason federatedAuthRequestIssueReason) { this.federatedAuthRequestIssueReason = federatedAuthRequestIssueReason; } }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/audits/FederatedAuthRequestIssueReason.java
package com.github.kklisura.cdt.protocol.v2023.types.audits; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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. * #L% */ import com.fasterxml.jackson.annotation.JsonProperty; /** * Represents the failure reason when a federated authentication reason fails. Should be updated * alongside RequestIdTokenStatus in third_party/blink/public/mojom/devtools/inspector_issue.mojom * to include all cases except for success. */ public enum FederatedAuthRequestIssueReason { @JsonProperty("ShouldEmbargo") SHOULD_EMBARGO, @JsonProperty("TooManyRequests") TOO_MANY_REQUESTS, @JsonProperty("WellKnownHttpNotFound") WELL_KNOWN_HTTP_NOT_FOUND, @JsonProperty("WellKnownNoResponse") WELL_KNOWN_NO_RESPONSE, @JsonProperty("WellKnownInvalidResponse") WELL_KNOWN_INVALID_RESPONSE, @JsonProperty("WellKnownListEmpty") WELL_KNOWN_LIST_EMPTY, @JsonProperty("WellKnownInvalidContentType") WELL_KNOWN_INVALID_CONTENT_TYPE, @JsonProperty("ConfigNotInWellKnown") CONFIG_NOT_IN_WELL_KNOWN, @JsonProperty("WellKnownTooBig") WELL_KNOWN_TOO_BIG, @JsonProperty("ConfigHttpNotFound") CONFIG_HTTP_NOT_FOUND, @JsonProperty("ConfigNoResponse") CONFIG_NO_RESPONSE, @JsonProperty("ConfigInvalidResponse") CONFIG_INVALID_RESPONSE, @JsonProperty("ConfigInvalidContentType") CONFIG_INVALID_CONTENT_TYPE, @JsonProperty("ClientMetadataHttpNotFound") CLIENT_METADATA_HTTP_NOT_FOUND, @JsonProperty("ClientMetadataNoResponse") CLIENT_METADATA_NO_RESPONSE, @JsonProperty("ClientMetadataInvalidResponse") CLIENT_METADATA_INVALID_RESPONSE, @JsonProperty("ClientMetadataInvalidContentType") CLIENT_METADATA_INVALID_CONTENT_TYPE, @JsonProperty("DisabledInSettings") DISABLED_IN_SETTINGS, @JsonProperty("ErrorFetchingSignin") ERROR_FETCHING_SIGNIN, @JsonProperty("InvalidSigninResponse") INVALID_SIGNIN_RESPONSE, @JsonProperty("AccountsHttpNotFound") ACCOUNTS_HTTP_NOT_FOUND, @JsonProperty("AccountsNoResponse") ACCOUNTS_NO_RESPONSE, @JsonProperty("AccountsInvalidResponse") ACCOUNTS_INVALID_RESPONSE, @JsonProperty("AccountsListEmpty") ACCOUNTS_LIST_EMPTY, @JsonProperty("AccountsInvalidContentType") ACCOUNTS_INVALID_CONTENT_TYPE, @JsonProperty("IdTokenHttpNotFound") ID_TOKEN_HTTP_NOT_FOUND, @JsonProperty("IdTokenNoResponse") ID_TOKEN_NO_RESPONSE, @JsonProperty("IdTokenInvalidResponse") ID_TOKEN_INVALID_RESPONSE, @JsonProperty("IdTokenInvalidRequest") ID_TOKEN_INVALID_REQUEST, @JsonProperty("IdTokenInvalidContentType") ID_TOKEN_INVALID_CONTENT_TYPE, @JsonProperty("ErrorIdToken") ERROR_ID_TOKEN, @JsonProperty("Canceled") CANCELED, @JsonProperty("RpPageNotVisible") RP_PAGE_NOT_VISIBLE, @JsonProperty("SilentMediationFailure") SILENT_MEDIATION_FAILURE, @JsonProperty("ThirdPartyCookiesBlocked") THIRD_PARTY_COOKIES_BLOCKED }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/audits/FederatedAuthUserInfoRequestIssueDetails.java
package com.github.kklisura.cdt.protocol.v2023.types.audits; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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. * #L% */ public class FederatedAuthUserInfoRequestIssueDetails { private FederatedAuthUserInfoRequestIssueReason federatedAuthUserInfoRequestIssueReason; public FederatedAuthUserInfoRequestIssueReason getFederatedAuthUserInfoRequestIssueReason() { return federatedAuthUserInfoRequestIssueReason; } public void setFederatedAuthUserInfoRequestIssueReason( FederatedAuthUserInfoRequestIssueReason federatedAuthUserInfoRequestIssueReason) { this.federatedAuthUserInfoRequestIssueReason = federatedAuthUserInfoRequestIssueReason; } }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/audits/FederatedAuthUserInfoRequestIssueReason.java
package com.github.kklisura.cdt.protocol.v2023.types.audits; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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. * #L% */ import com.fasterxml.jackson.annotation.JsonProperty; /** * Represents the failure reason when a getUserInfo() call fails. Should be updated alongside * FederatedAuthUserInfoRequestResult in * third_party/blink/public/mojom/devtools/inspector_issue.mojom. */ public enum FederatedAuthUserInfoRequestIssueReason { @JsonProperty("NotSameOrigin") NOT_SAME_ORIGIN, @JsonProperty("NotIframe") NOT_IFRAME, @JsonProperty("NotPotentiallyTrustworthy") NOT_POTENTIALLY_TRUSTWORTHY, @JsonProperty("NoApiPermission") NO_API_PERMISSION, @JsonProperty("NotSignedInWithIdp") NOT_SIGNED_IN_WITH_IDP, @JsonProperty("NoAccountSharingPermission") NO_ACCOUNT_SHARING_PERMISSION, @JsonProperty("InvalidConfigOrWellKnown") INVALID_CONFIG_OR_WELL_KNOWN, @JsonProperty("InvalidAccountsResponse") INVALID_ACCOUNTS_RESPONSE, @JsonProperty("NoReturningUserFromFetchedAccounts") NO_RETURNING_USER_FROM_FETCHED_ACCOUNTS }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/audits/GenericIssueDetails.java
package com.github.kklisura.cdt.protocol.v2023.types.audits; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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. * #L% */ import com.github.kklisura.cdt.protocol.v2023.support.annotations.Optional; /** Depending on the concrete errorType, different properties are set. */ public class GenericIssueDetails { private GenericIssueErrorType errorType; @Optional private String frameId; @Optional private Integer violatingNodeId; @Optional private String violatingNodeAttribute; @Optional private AffectedRequest request; /** Issues with the same errorType are aggregated in the frontend. */ public GenericIssueErrorType getErrorType() { return errorType; } /** Issues with the same errorType are aggregated in the frontend. */ public void setErrorType(GenericIssueErrorType errorType) { this.errorType = errorType; } public String getFrameId() { return frameId; } public void setFrameId(String frameId) { this.frameId = frameId; } public Integer getViolatingNodeId() { return violatingNodeId; } public void setViolatingNodeId(Integer violatingNodeId) { this.violatingNodeId = violatingNodeId; } public String getViolatingNodeAttribute() { return violatingNodeAttribute; } public void setViolatingNodeAttribute(String violatingNodeAttribute) { this.violatingNodeAttribute = violatingNodeAttribute; } public AffectedRequest getRequest() { return request; } public void setRequest(AffectedRequest request) { this.request = request; } }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/audits/GenericIssueErrorType.java
package com.github.kklisura.cdt.protocol.v2023.types.audits; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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. * #L% */ import com.fasterxml.jackson.annotation.JsonProperty; public enum GenericIssueErrorType { @JsonProperty("CrossOriginPortalPostMessageError") CROSS_ORIGIN_PORTAL_POST_MESSAGE_ERROR, @JsonProperty("FormLabelForNameError") FORM_LABEL_FOR_NAME_ERROR, @JsonProperty("FormDuplicateIdForInputError") FORM_DUPLICATE_ID_FOR_INPUT_ERROR, @JsonProperty("FormInputWithNoLabelError") FORM_INPUT_WITH_NO_LABEL_ERROR, @JsonProperty("FormAutocompleteAttributeEmptyError") FORM_AUTOCOMPLETE_ATTRIBUTE_EMPTY_ERROR, @JsonProperty("FormEmptyIdAndNameAttributesForInputError") FORM_EMPTY_ID_AND_NAME_ATTRIBUTES_FOR_INPUT_ERROR, @JsonProperty("FormAriaLabelledByToNonExistingId") FORM_ARIA_LABELLED_BY_TO_NON_EXISTING_ID, @JsonProperty("FormInputAssignedAutocompleteValueToIdOrNameAttributeError") FORM_INPUT_ASSIGNED_AUTOCOMPLETE_VALUE_TO_ID_OR_NAME_ATTRIBUTE_ERROR, @JsonProperty("FormLabelHasNeitherForNorNestedInput") FORM_LABEL_HAS_NEITHER_FOR_NOR_NESTED_INPUT, @JsonProperty("FormLabelForMatchesNonExistingIdError") FORM_LABEL_FOR_MATCHES_NON_EXISTING_ID_ERROR, @JsonProperty("FormInputHasWrongButWellIntendedAutocompleteValueError") FORM_INPUT_HAS_WRONG_BUT_WELL_INTENDED_AUTOCOMPLETE_VALUE_ERROR, @JsonProperty("ResponseWasBlockedByORB") RESPONSE_WAS_BLOCKED_BY_ORB }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/audits/GetEncodedResponseEncoding.java
package com.github.kklisura.cdt.protocol.v2023.types.audits; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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. * #L% */ import com.fasterxml.jackson.annotation.JsonProperty; /** The encoding to use. */ public enum GetEncodedResponseEncoding { @JsonProperty("webp") WEBP, @JsonProperty("jpeg") JPEG, @JsonProperty("png") PNG }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/audits/HeavyAdIssueDetails.java
package com.github.kklisura.cdt.protocol.v2023.types.audits; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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. * #L% */ public class HeavyAdIssueDetails { private HeavyAdResolutionStatus resolution; private HeavyAdReason reason; private AffectedFrame frame; /** The resolution status, either blocking the content or warning. */ public HeavyAdResolutionStatus getResolution() { return resolution; } /** The resolution status, either blocking the content or warning. */ public void setResolution(HeavyAdResolutionStatus resolution) { this.resolution = resolution; } /** The reason the ad was blocked, total network or cpu or peak cpu. */ public HeavyAdReason getReason() { return reason; } /** The reason the ad was blocked, total network or cpu or peak cpu. */ public void setReason(HeavyAdReason reason) { this.reason = reason; } /** The frame that was blocked. */ public AffectedFrame getFrame() { return frame; } /** The frame that was blocked. */ public void setFrame(AffectedFrame frame) { this.frame = frame; } }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/audits/HeavyAdReason.java
package com.github.kklisura.cdt.protocol.v2023.types.audits; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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. * #L% */ import com.fasterxml.jackson.annotation.JsonProperty; public enum HeavyAdReason { @JsonProperty("NetworkTotalLimit") NETWORK_TOTAL_LIMIT, @JsonProperty("CpuTotalLimit") CPU_TOTAL_LIMIT, @JsonProperty("CpuPeakLimit") CPU_PEAK_LIMIT }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/audits/HeavyAdResolutionStatus.java
package com.github.kklisura.cdt.protocol.v2023.types.audits; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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. * #L% */ import com.fasterxml.jackson.annotation.JsonProperty; public enum HeavyAdResolutionStatus { @JsonProperty("HeavyAdBlocked") HEAVY_AD_BLOCKED, @JsonProperty("HeavyAdWarning") HEAVY_AD_WARNING }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/audits/InspectorIssue.java
package com.github.kklisura.cdt.protocol.v2023.types.audits; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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. * #L% */ import com.github.kklisura.cdt.protocol.v2023.support.annotations.Optional; /** An inspector issue reported from the back-end. */ public class InspectorIssue { private InspectorIssueCode code; private InspectorIssueDetails details; @Optional private String issueId; public InspectorIssueCode getCode() { return code; } public void setCode(InspectorIssueCode code) { this.code = code; } public InspectorIssueDetails getDetails() { return details; } public void setDetails(InspectorIssueDetails details) { this.details = details; } /** * A unique id for this issue. May be omitted if no other entity (e.g. exception, CDP message, * etc.) is referencing this issue. */ public String getIssueId() { return issueId; } /** * A unique id for this issue. May be omitted if no other entity (e.g. exception, CDP message, * etc.) is referencing this issue. */ public void setIssueId(String issueId) { this.issueId = issueId; } }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/audits/InspectorIssueCode.java
package com.github.kklisura.cdt.protocol.v2023.types.audits; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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. * #L% */ import com.fasterxml.jackson.annotation.JsonProperty; /** * A unique identifier for the type of issue. Each type may use one of the optional fields in * InspectorIssueDetails to convey more specific information about the kind of issue. */ public enum InspectorIssueCode { @JsonProperty("CookieIssue") COOKIE_ISSUE, @JsonProperty("MixedContentIssue") MIXED_CONTENT_ISSUE, @JsonProperty("BlockedByResponseIssue") BLOCKED_BY_RESPONSE_ISSUE, @JsonProperty("HeavyAdIssue") HEAVY_AD_ISSUE, @JsonProperty("ContentSecurityPolicyIssue") CONTENT_SECURITY_POLICY_ISSUE, @JsonProperty("SharedArrayBufferIssue") SHARED_ARRAY_BUFFER_ISSUE, @JsonProperty("LowTextContrastIssue") LOW_TEXT_CONTRAST_ISSUE, @JsonProperty("CorsIssue") CORS_ISSUE, @JsonProperty("AttributionReportingIssue") ATTRIBUTION_REPORTING_ISSUE, @JsonProperty("QuirksModeIssue") QUIRKS_MODE_ISSUE, @JsonProperty("NavigatorUserAgentIssue") NAVIGATOR_USER_AGENT_ISSUE, @JsonProperty("GenericIssue") GENERIC_ISSUE, @JsonProperty("DeprecationIssue") DEPRECATION_ISSUE, @JsonProperty("ClientHintIssue") CLIENT_HINT_ISSUE, @JsonProperty("FederatedAuthRequestIssue") FEDERATED_AUTH_REQUEST_ISSUE, @JsonProperty("BounceTrackingIssue") BOUNCE_TRACKING_ISSUE, @JsonProperty("StylesheetLoadingIssue") STYLESHEET_LOADING_ISSUE, @JsonProperty("FederatedAuthUserInfoRequestIssue") FEDERATED_AUTH_USER_INFO_REQUEST_ISSUE }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/audits/InspectorIssueDetails.java
package com.github.kklisura.cdt.protocol.v2023.types.audits; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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. * #L% */ import com.github.kklisura.cdt.protocol.v2023.support.annotations.Optional; /** * This struct holds a list of optional fields with additional information specific to the kind of * issue. When adding a new issue code, please also add a new optional field to this type. */ public class InspectorIssueDetails { @Optional private CookieIssueDetails cookieIssueDetails; @Optional private MixedContentIssueDetails mixedContentIssueDetails; @Optional private BlockedByResponseIssueDetails blockedByResponseIssueDetails; @Optional private HeavyAdIssueDetails heavyAdIssueDetails; @Optional private ContentSecurityPolicyIssueDetails contentSecurityPolicyIssueDetails; @Optional private SharedArrayBufferIssueDetails sharedArrayBufferIssueDetails; @Optional private LowTextContrastIssueDetails lowTextContrastIssueDetails; @Optional private CorsIssueDetails corsIssueDetails; @Optional private AttributionReportingIssueDetails attributionReportingIssueDetails; @Optional private QuirksModeIssueDetails quirksModeIssueDetails; @Deprecated @Optional private NavigatorUserAgentIssueDetails navigatorUserAgentIssueDetails; @Optional private GenericIssueDetails genericIssueDetails; @Optional private DeprecationIssueDetails deprecationIssueDetails; @Optional private ClientHintIssueDetails clientHintIssueDetails; @Optional private FederatedAuthRequestIssueDetails federatedAuthRequestIssueDetails; @Optional private BounceTrackingIssueDetails bounceTrackingIssueDetails; @Optional private StylesheetLoadingIssueDetails stylesheetLoadingIssueDetails; @Optional private FederatedAuthUserInfoRequestIssueDetails federatedAuthUserInfoRequestIssueDetails; public CookieIssueDetails getCookieIssueDetails() { return cookieIssueDetails; } public void setCookieIssueDetails(CookieIssueDetails cookieIssueDetails) { this.cookieIssueDetails = cookieIssueDetails; } public MixedContentIssueDetails getMixedContentIssueDetails() { return mixedContentIssueDetails; } public void setMixedContentIssueDetails(MixedContentIssueDetails mixedContentIssueDetails) { this.mixedContentIssueDetails = mixedContentIssueDetails; } public BlockedByResponseIssueDetails getBlockedByResponseIssueDetails() { return blockedByResponseIssueDetails; } public void setBlockedByResponseIssueDetails( BlockedByResponseIssueDetails blockedByResponseIssueDetails) { this.blockedByResponseIssueDetails = blockedByResponseIssueDetails; } public HeavyAdIssueDetails getHeavyAdIssueDetails() { return heavyAdIssueDetails; } public void setHeavyAdIssueDetails(HeavyAdIssueDetails heavyAdIssueDetails) { this.heavyAdIssueDetails = heavyAdIssueDetails; } public ContentSecurityPolicyIssueDetails getContentSecurityPolicyIssueDetails() { return contentSecurityPolicyIssueDetails; } public void setContentSecurityPolicyIssueDetails( ContentSecurityPolicyIssueDetails contentSecurityPolicyIssueDetails) { this.contentSecurityPolicyIssueDetails = contentSecurityPolicyIssueDetails; } public SharedArrayBufferIssueDetails getSharedArrayBufferIssueDetails() { return sharedArrayBufferIssueDetails; } public void setSharedArrayBufferIssueDetails( SharedArrayBufferIssueDetails sharedArrayBufferIssueDetails) { this.sharedArrayBufferIssueDetails = sharedArrayBufferIssueDetails; } public LowTextContrastIssueDetails getLowTextContrastIssueDetails() { return lowTextContrastIssueDetails; } public void setLowTextContrastIssueDetails( LowTextContrastIssueDetails lowTextContrastIssueDetails) { this.lowTextContrastIssueDetails = lowTextContrastIssueDetails; } public CorsIssueDetails getCorsIssueDetails() { return corsIssueDetails; } public void setCorsIssueDetails(CorsIssueDetails corsIssueDetails) { this.corsIssueDetails = corsIssueDetails; } public AttributionReportingIssueDetails getAttributionReportingIssueDetails() { return attributionReportingIssueDetails; } public void setAttributionReportingIssueDetails( AttributionReportingIssueDetails attributionReportingIssueDetails) { this.attributionReportingIssueDetails = attributionReportingIssueDetails; } public QuirksModeIssueDetails getQuirksModeIssueDetails() { return quirksModeIssueDetails; } public void setQuirksModeIssueDetails(QuirksModeIssueDetails quirksModeIssueDetails) { this.quirksModeIssueDetails = quirksModeIssueDetails; } public NavigatorUserAgentIssueDetails getNavigatorUserAgentIssueDetails() { return navigatorUserAgentIssueDetails; } public void setNavigatorUserAgentIssueDetails( NavigatorUserAgentIssueDetails navigatorUserAgentIssueDetails) { this.navigatorUserAgentIssueDetails = navigatorUserAgentIssueDetails; } public GenericIssueDetails getGenericIssueDetails() { return genericIssueDetails; } public void setGenericIssueDetails(GenericIssueDetails genericIssueDetails) { this.genericIssueDetails = genericIssueDetails; } public DeprecationIssueDetails getDeprecationIssueDetails() { return deprecationIssueDetails; } public void setDeprecationIssueDetails(DeprecationIssueDetails deprecationIssueDetails) { this.deprecationIssueDetails = deprecationIssueDetails; } public ClientHintIssueDetails getClientHintIssueDetails() { return clientHintIssueDetails; } public void setClientHintIssueDetails(ClientHintIssueDetails clientHintIssueDetails) { this.clientHintIssueDetails = clientHintIssueDetails; } public FederatedAuthRequestIssueDetails getFederatedAuthRequestIssueDetails() { return federatedAuthRequestIssueDetails; } public void setFederatedAuthRequestIssueDetails( FederatedAuthRequestIssueDetails federatedAuthRequestIssueDetails) { this.federatedAuthRequestIssueDetails = federatedAuthRequestIssueDetails; } public BounceTrackingIssueDetails getBounceTrackingIssueDetails() { return bounceTrackingIssueDetails; } public void setBounceTrackingIssueDetails(BounceTrackingIssueDetails bounceTrackingIssueDetails) { this.bounceTrackingIssueDetails = bounceTrackingIssueDetails; } public StylesheetLoadingIssueDetails getStylesheetLoadingIssueDetails() { return stylesheetLoadingIssueDetails; } public void setStylesheetLoadingIssueDetails( StylesheetLoadingIssueDetails stylesheetLoadingIssueDetails) { this.stylesheetLoadingIssueDetails = stylesheetLoadingIssueDetails; } public FederatedAuthUserInfoRequestIssueDetails getFederatedAuthUserInfoRequestIssueDetails() { return federatedAuthUserInfoRequestIssueDetails; } public void setFederatedAuthUserInfoRequestIssueDetails( FederatedAuthUserInfoRequestIssueDetails federatedAuthUserInfoRequestIssueDetails) { this.federatedAuthUserInfoRequestIssueDetails = federatedAuthUserInfoRequestIssueDetails; } }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/audits/LowTextContrastIssueDetails.java
package com.github.kklisura.cdt.protocol.v2023.types.audits; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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. * #L% */ public class LowTextContrastIssueDetails { private Integer violatingNodeId; private String violatingNodeSelector; private Double contrastRatio; private Double thresholdAA; private Double thresholdAAA; private String fontSize; private String fontWeight; public Integer getViolatingNodeId() { return violatingNodeId; } public void setViolatingNodeId(Integer violatingNodeId) { this.violatingNodeId = violatingNodeId; } public String getViolatingNodeSelector() { return violatingNodeSelector; } public void setViolatingNodeSelector(String violatingNodeSelector) { this.violatingNodeSelector = violatingNodeSelector; } public Double getContrastRatio() { return contrastRatio; } public void setContrastRatio(Double contrastRatio) { this.contrastRatio = contrastRatio; } public Double getThresholdAA() { return thresholdAA; } public void setThresholdAA(Double thresholdAA) { this.thresholdAA = thresholdAA; } public Double getThresholdAAA() { return thresholdAAA; } public void setThresholdAAA(Double thresholdAAA) { this.thresholdAAA = thresholdAAA; } public String getFontSize() { return fontSize; } public void setFontSize(String fontSize) { this.fontSize = fontSize; } public String getFontWeight() { return fontWeight; } public void setFontWeight(String fontWeight) { this.fontWeight = fontWeight; } }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/audits/MixedContentIssueDetails.java
package com.github.kklisura.cdt.protocol.v2023.types.audits; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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. * #L% */ import com.github.kklisura.cdt.protocol.v2023.support.annotations.Optional; public class MixedContentIssueDetails { @Optional private MixedContentResourceType resourceType; private MixedContentResolutionStatus resolutionStatus; private String insecureURL; private String mainResourceURL; @Optional private AffectedRequest request; @Optional private AffectedFrame frame; /** * The type of resource causing the mixed content issue (css, js, iframe, form,...). Marked as * optional because it is mapped to from blink::mojom::RequestContextType, which will be replaced * by network::mojom::RequestDestination */ public MixedContentResourceType getResourceType() { return resourceType; } /** * The type of resource causing the mixed content issue (css, js, iframe, form,...). Marked as * optional because it is mapped to from blink::mojom::RequestContextType, which will be replaced * by network::mojom::RequestDestination */ public void setResourceType(MixedContentResourceType resourceType) { this.resourceType = resourceType; } /** The way the mixed content issue is being resolved. */ public MixedContentResolutionStatus getResolutionStatus() { return resolutionStatus; } /** The way the mixed content issue is being resolved. */ public void setResolutionStatus(MixedContentResolutionStatus resolutionStatus) { this.resolutionStatus = resolutionStatus; } /** The unsafe http url causing the mixed content issue. */ public String getInsecureURL() { return insecureURL; } /** The unsafe http url causing the mixed content issue. */ public void setInsecureURL(String insecureURL) { this.insecureURL = insecureURL; } /** The url responsible for the call to an unsafe url. */ public String getMainResourceURL() { return mainResourceURL; } /** The url responsible for the call to an unsafe url. */ public void setMainResourceURL(String mainResourceURL) { this.mainResourceURL = mainResourceURL; } /** The mixed content request. Does not always exist (e.g. for unsafe form submission urls). */ public AffectedRequest getRequest() { return request; } /** The mixed content request. Does not always exist (e.g. for unsafe form submission urls). */ public void setRequest(AffectedRequest request) { this.request = request; } /** Optional because not every mixed content issue is necessarily linked to a frame. */ public AffectedFrame getFrame() { return frame; } /** Optional because not every mixed content issue is necessarily linked to a frame. */ public void setFrame(AffectedFrame frame) { this.frame = frame; } }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/audits/MixedContentResolutionStatus.java
package com.github.kklisura.cdt.protocol.v2023.types.audits; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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. * #L% */ import com.fasterxml.jackson.annotation.JsonProperty; public enum MixedContentResolutionStatus { @JsonProperty("MixedContentBlocked") MIXED_CONTENT_BLOCKED, @JsonProperty("MixedContentAutomaticallyUpgraded") MIXED_CONTENT_AUTOMATICALLY_UPGRADED, @JsonProperty("MixedContentWarning") MIXED_CONTENT_WARNING }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/audits/MixedContentResourceType.java
package com.github.kklisura.cdt.protocol.v2023.types.audits; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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. * #L% */ import com.fasterxml.jackson.annotation.JsonProperty; public enum MixedContentResourceType { @JsonProperty("AttributionSrc") ATTRIBUTION_SRC, @JsonProperty("Audio") AUDIO, @JsonProperty("Beacon") BEACON, @JsonProperty("CSPReport") CSP_REPORT, @JsonProperty("Download") DOWNLOAD, @JsonProperty("EventSource") EVENT_SOURCE, @JsonProperty("Favicon") FAVICON, @JsonProperty("Font") FONT, @JsonProperty("Form") FORM, @JsonProperty("Frame") FRAME, @JsonProperty("Image") IMAGE, @JsonProperty("Import") IMPORT, @JsonProperty("Manifest") MANIFEST, @JsonProperty("Ping") PING, @JsonProperty("PluginData") PLUGIN_DATA, @JsonProperty("PluginResource") PLUGIN_RESOURCE, @JsonProperty("Prefetch") PREFETCH, @JsonProperty("Resource") RESOURCE, @JsonProperty("Script") SCRIPT, @JsonProperty("ServiceWorker") SERVICE_WORKER, @JsonProperty("SharedWorker") SHARED_WORKER, @JsonProperty("Stylesheet") STYLESHEET, @JsonProperty("Track") TRACK, @JsonProperty("Video") VIDEO, @JsonProperty("Worker") WORKER, @JsonProperty("XMLHttpRequest") XML_HTTP_REQUEST, @JsonProperty("XSLT") XSLT }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/audits/NavigatorUserAgentIssueDetails.java
package com.github.kklisura.cdt.protocol.v2023.types.audits; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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. * #L% */ import com.github.kklisura.cdt.protocol.v2023.support.annotations.Optional; @Deprecated public class NavigatorUserAgentIssueDetails { private String url; @Optional private SourceCodeLocation location; public String getUrl() { return url; } public void setUrl(String url) { this.url = url; } public SourceCodeLocation getLocation() { return location; } public void setLocation(SourceCodeLocation location) { this.location = location; } }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/audits/QuirksModeIssueDetails.java
package com.github.kklisura.cdt.protocol.v2023.types.audits; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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. * #L% */ /** * Details for issues about documents in Quirks Mode or Limited Quirks Mode that affects page * layouting. */ public class QuirksModeIssueDetails { private Boolean isLimitedQuirksMode; private Integer documentNodeId; private String url; private String frameId; private String loaderId; /** If false, it means the document's mode is "quirks" instead of "limited-quirks". */ public Boolean getIsLimitedQuirksMode() { return isLimitedQuirksMode; } /** If false, it means the document's mode is "quirks" instead of "limited-quirks". */ public void setIsLimitedQuirksMode(Boolean isLimitedQuirksMode) { this.isLimitedQuirksMode = isLimitedQuirksMode; } public Integer getDocumentNodeId() { return documentNodeId; } public void setDocumentNodeId(Integer documentNodeId) { this.documentNodeId = documentNodeId; } public String getUrl() { return url; } public void setUrl(String url) { this.url = url; } public String getFrameId() { return frameId; } public void setFrameId(String frameId) { this.frameId = frameId; } public String getLoaderId() { return loaderId; } public void setLoaderId(String loaderId) { this.loaderId = loaderId; } }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/audits/SharedArrayBufferIssueDetails.java
package com.github.kklisura.cdt.protocol.v2023.types.audits; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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. * #L% */ /** * Details for a issue arising from an SAB being instantiated in, or transferred to a context that * is not cross-origin isolated. */ public class SharedArrayBufferIssueDetails { private SourceCodeLocation sourceCodeLocation; private Boolean isWarning; private SharedArrayBufferIssueType type; public SourceCodeLocation getSourceCodeLocation() { return sourceCodeLocation; } public void setSourceCodeLocation(SourceCodeLocation sourceCodeLocation) { this.sourceCodeLocation = sourceCodeLocation; } public Boolean getIsWarning() { return isWarning; } public void setIsWarning(Boolean isWarning) { this.isWarning = isWarning; } public SharedArrayBufferIssueType getType() { return type; } public void setType(SharedArrayBufferIssueType type) { this.type = type; } }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/audits/SharedArrayBufferIssueType.java
package com.github.kklisura.cdt.protocol.v2023.types.audits; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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. * #L% */ import com.fasterxml.jackson.annotation.JsonProperty; public enum SharedArrayBufferIssueType { @JsonProperty("TransferIssue") TRANSFER_ISSUE, @JsonProperty("CreationIssue") CREATION_ISSUE }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/audits/SourceCodeLocation.java
package com.github.kklisura.cdt.protocol.v2023.types.audits; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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. * #L% */ import com.github.kklisura.cdt.protocol.v2023.support.annotations.Optional; public class SourceCodeLocation { @Optional private String scriptId; private String url; private Integer lineNumber; private Integer columnNumber; public String getScriptId() { return scriptId; } public void setScriptId(String scriptId) { this.scriptId = scriptId; } public String getUrl() { return url; } public void setUrl(String url) { this.url = url; } public Integer getLineNumber() { return lineNumber; } public void setLineNumber(Integer lineNumber) { this.lineNumber = lineNumber; } public Integer getColumnNumber() { return columnNumber; } public void setColumnNumber(Integer columnNumber) { this.columnNumber = columnNumber; } }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/audits/StyleSheetLoadingIssueReason.java
package com.github.kklisura.cdt.protocol.v2023.types.audits; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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. * #L% */ import com.fasterxml.jackson.annotation.JsonProperty; public enum StyleSheetLoadingIssueReason { @JsonProperty("LateImportRule") LATE_IMPORT_RULE, @JsonProperty("RequestFailed") REQUEST_FAILED }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/audits/StylesheetLoadingIssueDetails.java
package com.github.kklisura.cdt.protocol.v2023.types.audits; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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. * #L% */ import com.github.kklisura.cdt.protocol.v2023.support.annotations.Optional; /** This issue warns when a referenced stylesheet couldn't be loaded. */ public class StylesheetLoadingIssueDetails { private SourceCodeLocation sourceCodeLocation; private StyleSheetLoadingIssueReason styleSheetLoadingIssueReason; @Optional private FailedRequestInfo failedRequestInfo; /** Source code position that referenced the failing stylesheet. */ public SourceCodeLocation getSourceCodeLocation() { return sourceCodeLocation; } /** Source code position that referenced the failing stylesheet. */ public void setSourceCodeLocation(SourceCodeLocation sourceCodeLocation) { this.sourceCodeLocation = sourceCodeLocation; } /** Reason why the stylesheet couldn't be loaded. */ public StyleSheetLoadingIssueReason getStyleSheetLoadingIssueReason() { return styleSheetLoadingIssueReason; } /** Reason why the stylesheet couldn't be loaded. */ public void setStyleSheetLoadingIssueReason( StyleSheetLoadingIssueReason styleSheetLoadingIssueReason) { this.styleSheetLoadingIssueReason = styleSheetLoadingIssueReason; } /** Contains additional info when the failure was due to a request. */ public FailedRequestInfo getFailedRequestInfo() { return failedRequestInfo; } /** Contains additional info when the failure was due to a request. */ public void setFailedRequestInfo(FailedRequestInfo failedRequestInfo) { this.failedRequestInfo = failedRequestInfo; } }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/autofill/Address.java
package com.github.kklisura.cdt.protocol.v2023.types.autofill; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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. * #L% */ import java.util.List; public class Address { private List<AddressField> fields; /** fields and values defining a test address. */ public List<AddressField> getFields() { return fields; } /** fields and values defining a test address. */ public void setFields(List<AddressField> fields) { this.fields = fields; } }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/autofill/AddressField.java
package com.github.kklisura.cdt.protocol.v2023.types.autofill; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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. * #L% */ public class AddressField { private String name; private String value; /** address field name, for example GIVEN_NAME. */ public String getName() { return name; } /** address field name, for example GIVEN_NAME. */ public void setName(String name) { this.name = name; } /** address field name, for example Jon Doe. */ public String getValue() { return value; } /** address field name, for example Jon Doe. */ public void setValue(String value) { this.value = value; } }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/autofill/CreditCard.java
package com.github.kklisura.cdt.protocol.v2023.types.autofill; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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. * #L% */ public class CreditCard { private String number; private String name; private String expiryMonth; private String expiryYear; private String cvc; /** 16-digit credit card number. */ public String getNumber() { return number; } /** 16-digit credit card number. */ public void setNumber(String number) { this.number = number; } /** Name of the credit card owner. */ public String getName() { return name; } /** Name of the credit card owner. */ public void setName(String name) { this.name = name; } /** 2-digit expiry month. */ public String getExpiryMonth() { return expiryMonth; } /** 2-digit expiry month. */ public void setExpiryMonth(String expiryMonth) { this.expiryMonth = expiryMonth; } /** 4-digit expiry year. */ public String getExpiryYear() { return expiryYear; } /** 4-digit expiry year. */ public void setExpiryYear(String expiryYear) { this.expiryYear = expiryYear; } /** 3-digit card verification code. */ public String getCvc() { return cvc; } /** 3-digit card verification code. */ public void setCvc(String cvc) { this.cvc = cvc; } }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/backgroundservice/BackgroundServiceEvent.java
package com.github.kklisura.cdt.protocol.v2023.types.backgroundservice; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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. * #L% */ import java.util.List; public class BackgroundServiceEvent { private Double timestamp; private String origin; private String serviceWorkerRegistrationId; private ServiceName service; private String eventName; private String instanceId; private List<EventMetadata> eventMetadata; private String storageKey; /** Timestamp of the event (in seconds). */ public Double getTimestamp() { return timestamp; } /** Timestamp of the event (in seconds). */ public void setTimestamp(Double timestamp) { this.timestamp = timestamp; } /** The origin this event belongs to. */ public String getOrigin() { return origin; } /** The origin this event belongs to. */ public void setOrigin(String origin) { this.origin = origin; } /** The Service Worker ID that initiated the event. */ public String getServiceWorkerRegistrationId() { return serviceWorkerRegistrationId; } /** The Service Worker ID that initiated the event. */ public void setServiceWorkerRegistrationId(String serviceWorkerRegistrationId) { this.serviceWorkerRegistrationId = serviceWorkerRegistrationId; } /** The Background Service this event belongs to. */ public ServiceName getService() { return service; } /** The Background Service this event belongs to. */ public void setService(ServiceName service) { this.service = service; } /** A description of the event. */ public String getEventName() { return eventName; } /** A description of the event. */ public void setEventName(String eventName) { this.eventName = eventName; } /** An identifier that groups related events together. */ public String getInstanceId() { return instanceId; } /** An identifier that groups related events together. */ public void setInstanceId(String instanceId) { this.instanceId = instanceId; } /** A list of event-specific information. */ public List<EventMetadata> getEventMetadata() { return eventMetadata; } /** A list of event-specific information. */ public void setEventMetadata(List<EventMetadata> eventMetadata) { this.eventMetadata = eventMetadata; } /** Storage key this event belongs to. */ public String getStorageKey() { return storageKey; } /** Storage key this event belongs to. */ public void setStorageKey(String storageKey) { this.storageKey = storageKey; } }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/backgroundservice/EventMetadata.java
package com.github.kklisura.cdt.protocol.v2023.types.backgroundservice; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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. * #L% */ /** A key-value pair for additional event information to pass along. */ public class EventMetadata { private String key; private String value; public String getKey() { return key; } public void setKey(String key) { this.key = key; } public String getValue() { return value; } public void setValue(String value) { this.value = value; } }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/backgroundservice/ServiceName.java
package com.github.kklisura.cdt.protocol.v2023.types.backgroundservice; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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. * #L% */ import com.fasterxml.jackson.annotation.JsonProperty; /** * The Background Service that will be associated with the commands/events. Every Background Service * operates independently, but they share the same API. */ public enum ServiceName { @JsonProperty("backgroundFetch") BACKGROUND_FETCH, @JsonProperty("backgroundSync") BACKGROUND_SYNC, @JsonProperty("pushMessaging") PUSH_MESSAGING, @JsonProperty("notifications") NOTIFICATIONS, @JsonProperty("paymentHandler") PAYMENT_HANDLER, @JsonProperty("periodicBackgroundSync") PERIODIC_BACKGROUND_SYNC }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/browser/Bounds.java
package com.github.kklisura.cdt.protocol.v2023.types.browser; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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. * #L% */ import com.github.kklisura.cdt.protocol.v2023.support.annotations.Experimental; import com.github.kklisura.cdt.protocol.v2023.support.annotations.Optional; /** Browser window bounds information */ @Experimental public class Bounds { @Optional private Integer left; @Optional private Integer top; @Optional private Integer width; @Optional private Integer height; @Optional private WindowState windowState; /** The offset from the left edge of the screen to the window in pixels. */ public Integer getLeft() { return left; } /** The offset from the left edge of the screen to the window in pixels. */ public void setLeft(Integer left) { this.left = left; } /** The offset from the top edge of the screen to the window in pixels. */ public Integer getTop() { return top; } /** The offset from the top edge of the screen to the window in pixels. */ public void setTop(Integer top) { this.top = top; } /** The window width in pixels. */ public Integer getWidth() { return width; } /** The window width in pixels. */ public void setWidth(Integer width) { this.width = width; } /** The window height in pixels. */ public Integer getHeight() { return height; } /** The window height in pixels. */ public void setHeight(Integer height) { this.height = height; } /** The window state. Default to normal. */ public WindowState getWindowState() { return windowState; } /** The window state. Default to normal. */ public void setWindowState(WindowState windowState) { this.windowState = windowState; } }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/browser/BrowserCommandId.java
package com.github.kklisura.cdt.protocol.v2023.types.browser; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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. * #L% */ import com.fasterxml.jackson.annotation.JsonProperty; /** Browser command ids used by executeBrowserCommand. */ public enum BrowserCommandId { @JsonProperty("openTabSearch") OPEN_TAB_SEARCH, @JsonProperty("closeTabSearch") CLOSE_TAB_SEARCH }
0
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types
java-sources/ai/platon/pulsar/pulsar-browser/3.0.15/com/github/kklisura/cdt/protocol/v2023/types/browser/Bucket.java
package com.github.kklisura.cdt.protocol.v2023.types.browser; /*- * #%L * cdt-java-client * %% * Copyright (C) 2018 - 2023 Kenan Klisura * %% * 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. * #L% */ import com.github.kklisura.cdt.protocol.v2023.support.annotations.Experimental; /** Chrome histogram bucket. */ @Experimental public class Bucket { private Integer low; private Integer high; private Integer count; /** Minimum value (inclusive). */ public Integer getLow() { return low; } /** Minimum value (inclusive). */ public void setLow(Integer low) { this.low = low; } /** Maximum value (exclusive). */ public Integer getHigh() { return high; } /** Maximum value (exclusive). */ public void setHigh(Integer high) { this.high = high; } /** Number of samples. */ public Integer getCount() { return count; } /** Number of samples. */ public void setCount(Integer count) { this.count = count; } }