system.web.HttpCachePolicy Maven / Gradle / Ivy
/*
* MIT License
*
* Copyright (c) 2024 MASES s.r.l.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
/**************************************************************************************
*
* This code was generated from a template using JCOReflector v. 1.14.0.0
*
* Manual changes to this file may cause unexpected behavior in your application.
* Manual changes to this file will be overwritten if the code is regenerated.
*
*************************************************************************************/
package system.web;
import org.mases.jcobridge.*;
import org.mases.jcobridge.netreflection.*;
import java.util.ArrayList;
// Import section
import system.DateTime;
import system.TimeSpan;
import system.web.HttpCacheability;
import system.web.HttpCacheRevalidation;
import system.web.HttpCacheValidateHandler;
import system.web.HttpCacheVaryByContentEncodings;
import system.web.HttpCacheVaryByHeaders;
import system.web.HttpCacheVaryByParams;
/**
* The base .NET class managing System.Web.HttpCachePolicy, System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a.
*
*
* .NET documentation at https://docs.microsoft.com/en-us/dotnet/api/System.Web.HttpCachePolicy
*
*
* Powered by JCOBridge: more info at https://www.jcobridge.com
*
* @author MASES s.r.l https://masesgroup.com
* @version 1.14.0.0
*/
public class HttpCachePolicy extends NetObject {
/**
* Fully assembly qualified name: System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
*/
public static final String assemblyFullName = "System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a";
/**
* Assembly name: System.Web
*/
public static final String assemblyShortName = "System.Web";
/**
* Qualified class name: System.Web.HttpCachePolicy
*/
public static final String className = "System.Web.HttpCachePolicy";
static JCOBridge bridge = JCOBridgeInstance.getInstance(assemblyFullName);
/**
* The type managed from JCOBridge. See {@link JCType}
*/
public static JCType classType = createType();
static JCEnum enumInstance = null;
JCObject classInstance = null;
static JCType createType() {
try {
String classToCreate = className + ", "
+ (JCOReflector.getUseFullAssemblyName() ? assemblyFullName : assemblyShortName);
if (JCOReflector.getDebug())
JCOReflector.writeLog("Creating %s", classToCreate);
JCType typeCreated = bridge.GetType(classToCreate);
if (JCOReflector.getDebug())
JCOReflector.writeLog("Created: %s",
(typeCreated != null) ? typeCreated.toString() : "Returned null value");
return typeCreated;
} catch (JCException e) {
JCOReflector.writeLog(e);
return null;
}
}
void addReference(String ref) throws Throwable {
try {
bridge.AddReference(ref);
} catch (JCNativeException jcne) {
throw translateException(jcne);
}
}
/**
* Internal constructor. Use with caution
*/
public HttpCachePolicy(java.lang.Object instance) throws Throwable {
super(instance);
if (instance instanceof JCObject) {
classInstance = (JCObject) instance;
} else
throw new Exception("Cannot manage object, it is not a JCObject");
}
public String getJCOAssemblyName() {
return assemblyFullName;
}
public String getJCOClassName() {
return className;
}
public String getJCOObjectName() {
return className + ", " + (JCOReflector.getUseFullAssemblyName() ? assemblyFullName : assemblyShortName);
}
public java.lang.Object getJCOInstance() {
return classInstance;
}
public void setJCOInstance(JCObject instance) {
classInstance = instance;
super.setJCOInstance(classInstance);
}
public JCType getJCOType() {
return classType;
}
/**
* Try to cast the {@link IJCOBridgeReflected} instance into {@link HttpCachePolicy}, a cast assert is made to check if types are compatible.
* @param from {@link IJCOBridgeReflected} instance to be casted
* @return {@link HttpCachePolicy} instance
* @throws java.lang.Throwable in case of error during cast operation
*/
public static HttpCachePolicy cast(IJCOBridgeReflected from) throws Throwable {
NetType.AssertCast(classType, from);
return new HttpCachePolicy(from.getJCOInstance());
}
// Constructors section
public HttpCachePolicy() throws Throwable {
}
// Methods section
public boolean GetETagFromFileDependencies() throws Throwable {
if (classInstance == null)
throw new UnsupportedOperationException("classInstance is null.");
try {
return (boolean)classInstance.Invoke("GetETagFromFileDependencies");
} catch (JCNativeException jcne) {
throw translateException(jcne);
}
}
public boolean GetIgnoreRangeRequests() throws Throwable {
if (classInstance == null)
throw new UnsupportedOperationException("classInstance is null.");
try {
return (boolean)classInstance.Invoke("GetIgnoreRangeRequests");
} catch (JCNativeException jcne) {
throw translateException(jcne);
}
}
public boolean GetLastModifiedFromFileDependencies() throws Throwable {
if (classInstance == null)
throw new UnsupportedOperationException("classInstance is null.");
try {
return (boolean)classInstance.Invoke("GetLastModifiedFromFileDependencies");
} catch (JCNativeException jcne) {
throw translateException(jcne);
}
}
public boolean GetNoServerCaching() throws Throwable {
if (classInstance == null)
throw new UnsupportedOperationException("classInstance is null.");
try {
return (boolean)classInstance.Invoke("GetNoServerCaching");
} catch (JCNativeException jcne) {
throw translateException(jcne);
}
}
public boolean GetNoStore() throws Throwable {
if (classInstance == null)
throw new UnsupportedOperationException("classInstance is null.");
try {
return (boolean)classInstance.Invoke("GetNoStore");
} catch (JCNativeException jcne) {
throw translateException(jcne);
}
}
public boolean GetNoTransforms() throws Throwable {
if (classInstance == null)
throw new UnsupportedOperationException("classInstance is null.");
try {
return (boolean)classInstance.Invoke("GetNoTransforms");
} catch (JCNativeException jcne) {
throw translateException(jcne);
}
}
public boolean HasSlidingExpiration() throws Throwable {
if (classInstance == null)
throw new UnsupportedOperationException("classInstance is null.");
try {
return (boolean)classInstance.Invoke("HasSlidingExpiration");
} catch (JCNativeException jcne) {
throw translateException(jcne);
}
}
public boolean IsModified() throws Throwable {
if (classInstance == null)
throw new UnsupportedOperationException("classInstance is null.");
try {
return (boolean)classInstance.Invoke("IsModified");
} catch (JCNativeException jcne) {
throw translateException(jcne);
}
}
public boolean IsValidUntilExpires() throws Throwable {
if (classInstance == null)
throw new UnsupportedOperationException("classInstance is null.");
try {
return (boolean)classInstance.Invoke("IsValidUntilExpires");
} catch (JCNativeException jcne) {
throw translateException(jcne);
}
}
public int GetOmitVaryStar() throws Throwable {
if (classInstance == null)
throw new UnsupportedOperationException("classInstance is null.");
try {
return (int)classInstance.Invoke("GetOmitVaryStar");
} catch (JCNativeException jcne) {
throw translateException(jcne);
}
}
public DateTime GetExpires() throws Throwable {
if (classInstance == null)
throw new UnsupportedOperationException("classInstance is null.");
try {
JCObject objGetExpires = (JCObject)classInstance.Invoke("GetExpires");
return new DateTime(objGetExpires);
} catch (JCNativeException jcne) {
throw translateException(jcne);
}
}
public DateTime GetUtcLastModified() throws Throwable {
if (classInstance == null)
throw new UnsupportedOperationException("classInstance is null.");
try {
JCObject objGetUtcLastModified = (JCObject)classInstance.Invoke("GetUtcLastModified");
return new DateTime(objGetUtcLastModified);
} catch (JCNativeException jcne) {
throw translateException(jcne);
}
}
public java.lang.String GetCacheExtensions() throws Throwable {
if (classInstance == null)
throw new UnsupportedOperationException("classInstance is null.");
try {
return (java.lang.String)classInstance.Invoke("GetCacheExtensions");
} catch (JCNativeException jcne) {
throw translateException(jcne);
}
}
public java.lang.String GetETag() throws Throwable {
if (classInstance == null)
throw new UnsupportedOperationException("classInstance is null.");
try {
return (java.lang.String)classInstance.Invoke("GetETag");
} catch (JCNativeException jcne) {
throw translateException(jcne);
}
}
public java.lang.String GetVaryByCustom() throws Throwable {
if (classInstance == null)
throw new UnsupportedOperationException("classInstance is null.");
try {
return (java.lang.String)classInstance.Invoke("GetVaryByCustom");
} catch (JCNativeException jcne) {
throw translateException(jcne);
}
}
public TimeSpan GetMaxAge() throws Throwable {
if (classInstance == null)
throw new UnsupportedOperationException("classInstance is null.");
try {
JCObject objGetMaxAge = (JCObject)classInstance.Invoke("GetMaxAge");
return new TimeSpan(objGetMaxAge);
} catch (JCNativeException jcne) {
throw translateException(jcne);
}
}
public TimeSpan GetProxyMaxAge() throws Throwable {
if (classInstance == null)
throw new UnsupportedOperationException("classInstance is null.");
try {
JCObject objGetProxyMaxAge = (JCObject)classInstance.Invoke("GetProxyMaxAge");
return new TimeSpan(objGetProxyMaxAge);
} catch (JCNativeException jcne) {
throw translateException(jcne);
}
}
public HttpCacheability GetCacheability() throws Throwable {
if (classInstance == null)
throw new UnsupportedOperationException("classInstance is null.");
try {
JCObject objGetCacheability = (JCObject)classInstance.Invoke("GetCacheability");
return new HttpCacheability(objGetCacheability);
} catch (JCNativeException jcne) {
throw translateException(jcne);
}
}
public HttpCacheRevalidation GetRevalidation() throws Throwable {
if (classInstance == null)
throw new UnsupportedOperationException("classInstance is null.");
try {
JCObject objGetRevalidation = (JCObject)classInstance.Invoke("GetRevalidation");
return new HttpCacheRevalidation(objGetRevalidation);
} catch (JCNativeException jcne) {
throw translateException(jcne);
}
}
public void AddValidationCallback(HttpCacheValidateHandler handler, NetObject data) throws Throwable, system.ArgumentNullException, system.ArgumentOutOfRangeException {
if (classInstance == null)
throw new UnsupportedOperationException("classInstance is null.");
try {
classInstance.Invoke("AddValidationCallback", handler, data == null ? null : data.getJCOInstance());
} catch (JCNativeException jcne) {
throw translateException(jcne);
}
}
public void AppendCacheExtension(java.lang.String extension) throws Throwable, system.ArgumentNullException, system.IndexOutOfRangeException {
if (classInstance == null)
throw new UnsupportedOperationException("classInstance is null.");
try {
classInstance.Invoke("AppendCacheExtension", extension);
} catch (JCNativeException jcne) {
throw translateException(jcne);
}
}
public void SetAllowResponseInBrowserHistory(boolean allow) throws Throwable {
if (classInstance == null)
throw new UnsupportedOperationException("classInstance is null.");
try {
classInstance.Invoke("SetAllowResponseInBrowserHistory", allow);
} catch (JCNativeException jcne) {
throw translateException(jcne);
}
}
public void SetCacheability(HttpCacheability cacheability) throws Throwable, system.ArgumentOutOfRangeException {
if (classInstance == null)
throw new UnsupportedOperationException("classInstance is null.");
try {
classInstance.Invoke("SetCacheability", cacheability == null ? null : cacheability.getJCOInstance());
} catch (JCNativeException jcne) {
throw translateException(jcne);
}
}
public void SetCacheability(HttpCacheability cacheability, java.lang.String field) throws Throwable, system.ArgumentNullException, system.ArgumentOutOfRangeException, system.ArgumentException, system.IndexOutOfRangeException, system.globalization.CultureNotFoundException, system.InvalidOperationException, system.NotImplementedException, system.resources.MissingManifestResourceException, system.ObjectDisposedException, system.NotSupportedException {
if (classInstance == null)
throw new UnsupportedOperationException("classInstance is null.");
try {
classInstance.Invoke("SetCacheability", cacheability == null ? null : cacheability.getJCOInstance(), field);
} catch (JCNativeException jcne) {
throw translateException(jcne);
}
}
public void SetETag(java.lang.String etag) throws Throwable, system.ArgumentNullException, system.ArgumentException, system.InvalidOperationException, system.MissingMethodException, system.reflection.TargetInvocationException, system.NotImplementedException, system.NotSupportedException, system.ArgumentOutOfRangeException, system.globalization.CultureNotFoundException, system.resources.MissingManifestResourceException, system.ObjectDisposedException {
if (classInstance == null)
throw new UnsupportedOperationException("classInstance is null.");
try {
classInstance.Invoke("SetETag", etag);
} catch (JCNativeException jcne) {
throw translateException(jcne);
}
}
public void SetETagFromFileDependencies() throws Throwable, system.ArgumentNullException, system.ArgumentException, system.InvalidOperationException, system.MissingMethodException, system.reflection.TargetInvocationException, system.NotImplementedException, system.NotSupportedException, system.ArgumentOutOfRangeException, system.globalization.CultureNotFoundException, system.resources.MissingManifestResourceException, system.ObjectDisposedException {
if (classInstance == null)
throw new UnsupportedOperationException("classInstance is null.");
try {
classInstance.Invoke("SetETagFromFileDependencies");
} catch (JCNativeException jcne) {
throw translateException(jcne);
}
}
public void SetExpires(DateTime date) throws Throwable, system.ArgumentException, system.ArgumentNullException, system.ArgumentOutOfRangeException, system.InvalidTimeZoneException, system.NotSupportedException, system.OverflowException {
if (classInstance == null)
throw new UnsupportedOperationException("classInstance is null.");
try {
classInstance.Invoke("SetExpires", date == null ? null : date.getJCOInstance());
} catch (JCNativeException jcne) {
throw translateException(jcne);
}
}
public void SetLastModified(DateTime date) throws Throwable, system.ArgumentException, system.ArgumentNullException, system.ArgumentOutOfRangeException, system.InvalidTimeZoneException, system.NotSupportedException, system.OverflowException {
if (classInstance == null)
throw new UnsupportedOperationException("classInstance is null.");
try {
classInstance.Invoke("SetLastModified", date == null ? null : date.getJCOInstance());
} catch (JCNativeException jcne) {
throw translateException(jcne);
}
}
public void SetLastModifiedFromFileDependencies() throws Throwable {
if (classInstance == null)
throw new UnsupportedOperationException("classInstance is null.");
try {
classInstance.Invoke("SetLastModifiedFromFileDependencies");
} catch (JCNativeException jcne) {
throw translateException(jcne);
}
}
public void SetMaxAge(TimeSpan delta) throws Throwable, system.ArgumentOutOfRangeException {
if (classInstance == null)
throw new UnsupportedOperationException("classInstance is null.");
try {
classInstance.Invoke("SetMaxAge", delta == null ? null : delta.getJCOInstance());
} catch (JCNativeException jcne) {
throw translateException(jcne);
}
}
public void SetNoServerCaching() throws Throwable {
if (classInstance == null)
throw new UnsupportedOperationException("classInstance is null.");
try {
classInstance.Invoke("SetNoServerCaching");
} catch (JCNativeException jcne) {
throw translateException(jcne);
}
}
public void SetNoStore() throws Throwable {
if (classInstance == null)
throw new UnsupportedOperationException("classInstance is null.");
try {
classInstance.Invoke("SetNoStore");
} catch (JCNativeException jcne) {
throw translateException(jcne);
}
}
public void SetNoTransforms() throws Throwable {
if (classInstance == null)
throw new UnsupportedOperationException("classInstance is null.");
try {
classInstance.Invoke("SetNoTransforms");
} catch (JCNativeException jcne) {
throw translateException(jcne);
}
}
public void SetOmitVaryStar(boolean omit) throws Throwable {
if (classInstance == null)
throw new UnsupportedOperationException("classInstance is null.");
try {
classInstance.Invoke("SetOmitVaryStar", omit);
} catch (JCNativeException jcne) {
throw translateException(jcne);
}
}
public void SetProxyMaxAge(TimeSpan delta) throws Throwable, system.ArgumentOutOfRangeException {
if (classInstance == null)
throw new UnsupportedOperationException("classInstance is null.");
try {
classInstance.Invoke("SetProxyMaxAge", delta == null ? null : delta.getJCOInstance());
} catch (JCNativeException jcne) {
throw translateException(jcne);
}
}
public void SetRevalidation(HttpCacheRevalidation revalidation) throws Throwable, system.ArgumentOutOfRangeException {
if (classInstance == null)
throw new UnsupportedOperationException("classInstance is null.");
try {
classInstance.Invoke("SetRevalidation", revalidation == null ? null : revalidation.getJCOInstance());
} catch (JCNativeException jcne) {
throw translateException(jcne);
}
}
public void SetSlidingExpiration(boolean slide) throws Throwable {
if (classInstance == null)
throw new UnsupportedOperationException("classInstance is null.");
try {
classInstance.Invoke("SetSlidingExpiration", slide);
} catch (JCNativeException jcne) {
throw translateException(jcne);
}
}
public void SetValidUntilExpires(boolean validUntilExpires) throws Throwable {
if (classInstance == null)
throw new UnsupportedOperationException("classInstance is null.");
try {
classInstance.Invoke("SetValidUntilExpires", validUntilExpires);
} catch (JCNativeException jcne) {
throw translateException(jcne);
}
}
public void SetVaryByCustom(java.lang.String custom) throws Throwable, system.ArgumentNullException, system.ArgumentException, system.InvalidOperationException, system.MissingMethodException, system.reflection.TargetInvocationException, system.NotImplementedException, system.NotSupportedException, system.ArgumentOutOfRangeException, system.globalization.CultureNotFoundException, system.resources.MissingManifestResourceException, system.ObjectDisposedException {
if (classInstance == null)
throw new UnsupportedOperationException("classInstance is null.");
try {
classInstance.Invoke("SetVaryByCustom", custom);
} catch (JCNativeException jcne) {
throw translateException(jcne);
}
}
// Properties section
public DateTime getUtcTimestampCreated() throws Throwable {
if (classInstance == null)
throw new UnsupportedOperationException("classInstance is null.");
try {
JCObject val = (JCObject)classInstance.Get("UtcTimestampCreated");
return new DateTime(val);
} catch (JCNativeException jcne) {
throw translateException(jcne);
}
}
public void setUtcTimestampCreated(DateTime UtcTimestampCreated) throws Throwable {
if (classInstance == null)
throw new UnsupportedOperationException("classInstance is null.");
try {
classInstance.Set("UtcTimestampCreated", UtcTimestampCreated == null ? null : UtcTimestampCreated.getJCOInstance());
} catch (JCNativeException jcne) {
throw translateException(jcne);
}
}
public HttpCacheVaryByContentEncodings getVaryByContentEncodings() throws Throwable {
if (classInstance == null)
throw new UnsupportedOperationException("classInstance is null.");
try {
JCObject val = (JCObject)classInstance.Get("VaryByContentEncodings");
return new HttpCacheVaryByContentEncodings(val);
} catch (JCNativeException jcne) {
throw translateException(jcne);
}
}
public HttpCacheVaryByHeaders getVaryByHeaders() throws Throwable {
if (classInstance == null)
throw new UnsupportedOperationException("classInstance is null.");
try {
JCObject val = (JCObject)classInstance.Get("VaryByHeaders");
return new HttpCacheVaryByHeaders(val);
} catch (JCNativeException jcne) {
throw translateException(jcne);
}
}
public HttpCacheVaryByParams getVaryByParams() throws Throwable {
if (classInstance == null)
throw new UnsupportedOperationException("classInstance is null.");
try {
JCObject val = (JCObject)classInstance.Get("VaryByParams");
return new HttpCacheVaryByParams(val);
} catch (JCNativeException jcne) {
throw translateException(jcne);
}
}
// Instance Events section
}